12345678910111213141516171819202122 |
- # Docx Builder
- DOCX_INPUT_PATH = r'C:\Users\Danny\Desktop\EnD and Investment\Tools\fast_excel_to_bill\test_folder\Templates\templeta.docx'
- LIST_OF_KEYS = ['Arbeitszeit', 'Task']
- ROUND_TIME = 300
- SAVE_OVERTIME_IN_TABLE = r'C:\Users\Danny\Desktop\EnD and Investment\Tools\time_recoder\time_recorded_tables\overtime_danny.xlsx'
- docx_output_dir_path = r'C:\Users\Danny\Desktop\EnD and Investment\Tools\fast_excel_to_bill\test_folder'# Variable cuz search of dir of customer can be implemeted
- list_of_place_holders = ['?Netto?','?zzgl.?', '?gesamt?', 'insertdate'] # variable cuz search can be implemented
- # Burden Date
- payment_request_range = 30 # variable cuz customer contract data can be found
- income_per_hour = 28 # variable cuz search of employee core data
- FIRST_TABLE_KEYS = ['KW', 'Zeit in Stunden', 'Betrag in Euro']
- NUMBER_OF_COLUMNS_FIRST_TABLE = len(FIRST_TABLE_KEYS)
- SECOND_TABLE_KEYS = ['KW', 'Leistungsübersicht']
- NUMBER_OF_COLUMNS_SECOND_TABLE = len(SECOND_TABLE_KEYS) # variable cuz searching of number of columns can be done
- # Excel Pathes
- employee_worktime_table_pathes = [r'C:\Users\Danny\Desktop\EnD and Investment\Tools\time_recoder\time_recorded_tables\work_time_danny.xlsx'] # Variable cuz search of dir of tables can be implemented
|