From 71d3bb760a6845139e82cefa461e2bbacb90a682 Mon Sep 17 00:00:00 2001 From: Risvana Cybro Date: Thu, 13 Nov 2025 22:01:03 +0530 Subject: [PATCH] Nov 13: [FIX] Bug Fixed 'inventory_turnover_report_analysis' --- .../static/description/index.html | 24 ++++++++++++++++++- .../wizard/turnover_report.py | 8 +++---- 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/inventory_turnover_report_analysis/static/description/index.html b/inventory_turnover_report_analysis/static/description/index.html index 14ff30385..0325a41ca 100644 --- a/inventory_turnover_report_analysis/static/description/index.html +++ b/inventory_turnover_report_analysis/static/description/index.html @@ -169,7 +169,29 @@ >Email Us - + + + Skype Us +
= self.start_date) or - (not self.start_date and self.end_date and - record_date <= self.end_date)): + (not self.start_date and self.end_date and record_date and + record_date <= self.end_date) ): if record['id'] in filtered_records: filtered_record = filtered_records[record['id']] filtered_record['opening_stock'] += record['opening_stock']