config_for_custom_bills.py 1.2 KB

12345678910111213141516171819202122
  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. SAVE_OVERTIME_IN_TABLE = r'C:\Users\Danny\Desktop\EnD and Investment\Tools\time_recoder\time_recorded_tables\overtime_danny.xlsx'
  6. 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
  7. list_of_place_holders = ['?Netto?','?zzgl.?', '?gesamt?', 'insertdate'] # variable cuz search can be implemented
  8. # Burden Date
  9. payment_request_range = 30 # variable cuz customer contract data can be found
  10. income_per_hour = 28 # variable cuz search of employee core data
  11. FIRST_TABLE_KEYS = ['KW', 'Zeit in Stunden', 'Betrag in Euro']
  12. NUMBER_OF_COLUMNS_FIRST_TABLE = len(FIRST_TABLE_KEYS)
  13. SECOND_TABLE_KEYS = ['KW', 'Leistungsübersicht']
  14. NUMBER_OF_COLUMNS_SECOND_TABLE = len(SECOND_TABLE_KEYS) # variable cuz searching of number of columns can be done
  15. # Excel Pathes
  16. 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