config_for_custom_bills.py 1.1 KB

123456789101112131415161718192021
  1. # Docx Builder
  2. DOCX_INPUT_PATH = r'C:\Users\Danny\Desktop\EnD and Investment\Tools\fast_excel_to_bill\test_folder\Templates\templeta.docx'
  3. LIST_OF_KEYS = ['Arbeitszeit', 'Task']
  4. ROUND_TIME = 300
  5. 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
  6. list_of_place_holders = ['?Netto?','?zzgl.?', '?gesamt?', 'insertdate'] # variable cuz search can be implemented
  7. # Burden Date
  8. payment_request_range = 30 # variable cuz customer contract data can be found
  9. income_per_hour = 28 # variable cuz search of employee core data
  10. FIRST_TABLE_KEYS = ['KW', 'Zeit in Stunden', 'Betrag in Euro']
  11. NUMBER_OF_COLUMNS_FIRST_TABLE = len(FIRST_TABLE_KEYS)
  12. SECOND_TABLE_KEYS = ['KW', 'Leistungsübersicht']
  13. NUMBER_OF_COLUMNS_SECOND_TABLE = len(SECOND_TABLE_KEYS) # variable cuz searching of number of columns can be done
  14. # Excel Pathes
  15. 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