ARI_Versand.bat 467 B

1234567891011121314151617181920
  1. @call "%~dp0"scripts\config.bat 0 > nul
  2. if "%Mo-So%"=="J" (
  3. echo Taeglich Montag - Sonntag
  4. call c11_reportoutput.bat taeglich
  5. call versand.bat taeglich.csv
  6. )
  7. if "%Wochentag%"=="Mo" (
  8. echo Jeden Montag
  9. call c11_reportoutput.bat montags
  10. call versand.bat montags.csv
  11. )
  12. if "%Wochentag%"=="Mo" if "%UngeradeWoche%"=="J" (
  13. echo Jeden 2. Montag - ungerade KW
  14. call c11_reportoutput.bat montags_alle_2_Wochen
  15. call versand.bat montags_alle_2_Wochen.csv
  16. )