12345678910111213141516171819202122232425262728293031323334353637 |
- @call "%~dp0"scripts\config.bat 0 > nul
- echo Taeglich
- call c11_reportoutput.bat taeglich
- call versand.bat taeglich.csv
- if "%Mo-Fr%"=="J" (
- echo Taeglich Montag - Freitag
- call c11_reportoutput.bat taeglich_Mo-Fr
- call versand.bat taeglich_Mo-Fr.csv
- )
- if "%Wochentag%"=="Di" (
- echo Jeden Dienstag
- call c11_reportoutput.bat Dienstag
- call versand.bat Dienstag.csv
- )
- if "%Wochentag%"=="Do" if "%UngeradeWoche%"=="J" (
- echo Jeden 2. Donnerstag (ungerade KW)
- call c11_reportoutput.bat 14taeglich_Donnerstag
- call versand.bat 14taeglich_Donnerstag.csv
- )
- if "%Tag%"=="01" (
- echo Jeden 1. des Monats
- call c11_reportoutput.bat monatlich_01
- call versand.bat monatlich_01.csv
- )
- if "%Tag%"=="13" (
- echo Jeden 13. des Monats
- call c11_reportoutput.bat monatlich_13
- call versand.bat monatlich_13.csv
- )
|