CARLO_Versand.bat 820 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @call "%~dp0"scripts\config.bat 0 > nul
  2. echo Taeglich
  3. call c11_reportoutput.bat taeglich
  4. call versand.bat taeglich.csv
  5. if "%Mo-Fr%"=="J" (
  6. echo Taeglich Montag - Freitag
  7. call c11_reportoutput.bat taeglich_Mo-Fr
  8. call versand.bat taeglich_Mo-Fr.csv
  9. )
  10. if "%Wochentag%"=="Di" (
  11. echo Jeden Dienstag
  12. call c11_reportoutput.bat Dienstag
  13. call versand.bat Dienstag.csv
  14. )
  15. if "%Wochentag%"=="Do" if "%UngeradeWoche%"=="J" (
  16. echo Jeden 2. Donnerstag (ungerade KW)
  17. call c11_reportoutput.bat 14taeglich_Donnerstag
  18. call versand.bat 14taeglich_Donnerstag.csv
  19. )
  20. if "%Tag%"=="01" (
  21. echo Jeden 1. des Monats
  22. call c11_reportoutput.bat monatlich_01
  23. call versand.bat monatlich_01.csv
  24. )
  25. if "%Tag%"=="13" (
  26. echo Jeden 13. des Monats
  27. call c11_reportoutput.bat monatlich_13
  28. call versand.bat monatlich_13.csv
  29. )