diff --git a/backend/api/blueprints/reports/in_out_report.py b/backend/api/blueprints/reports/in_out_report.py index 4137124..02f552b 100644 --- a/backend/api/blueprints/reports/in_out_report.py +++ b/backend/api/blueprints/reports/in_out_report.py @@ -277,8 +277,6 @@ async def in_out_report_generate( ): break if from_date.month < 12: from_date = from_date.replace(month = from_date.month + 1) else: from_date = from_date.replace(year = from_date.year + 1, month = 1) - print("MODEL:", inbound_data) - print(f"DATES ({len(dates_list)})") for d in dates_list: print(d) # Login to TCAOFF: @@ -327,7 +325,6 @@ async def in_out_report_generate( # Sort the records: cumulative_register = sorted(cumulative_register, key = lambda x: x["date"]) - print(f"REGISTER ({len(cumulative_register)}):", json.to_string(cumulative_register[-10:])) # Note down successful actions: success = True