From a82b19bfbb0680c7701cacd04e6c08d9998f256e Mon Sep 17 00:00:00 2001 From: Abdou Nasser Date: Fri, 17 Apr 2020 14:30:12 +0100 Subject: [PATCH 1/2] [11.0][FIX] AttributeError: object has no attribute 'qty_at_date' --- .../reports/stock_inventory_valuation_report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py b/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py index c9152d8..9cfd027 100644 --- a/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py +++ b/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py @@ -55,7 +55,7 @@ class StockInventoryValuationReport(models.TransientModel): for product in products: line = { 'display_name': product.display_name, - 'qty_at_date': product.qty_at_date, + 'qty_at_date': product.qty_available, 'uom_id': product.uom_id, 'currency_id': product.currency_id, 'cost_currency_id': product.cost_currency_id, @@ -63,7 +63,7 @@ class StockInventoryValuationReport(models.TransientModel): 'stock_value': product.stock_value, 'cost_method': product.cost_method, } - if product.qty_at_date != 0: + if product.qty_available != 0: self.results += ReportLine.new(line) @api.multi From 986d0089373b5558538e109ffddc641674282949 Mon Sep 17 00:00:00 2001 From: Abdou Nasser Date: Fri, 17 Apr 2020 14:33:22 +0100 Subject: [PATCH 2/2] [11.0][FIX] AttributeError: object has no attribute 'cost_currency_id' --- stock_inventory_valuation_report/readme/CONTRIBUTORS.rst | 1 + .../reports/stock_inventory_valuation_report.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/stock_inventory_valuation_report/readme/CONTRIBUTORS.rst b/stock_inventory_valuation_report/readme/CONTRIBUTORS.rst index 0ef1f84..ccdaa15 100644 --- a/stock_inventory_valuation_report/readme/CONTRIBUTORS.rst +++ b/stock_inventory_valuation_report/readme/CONTRIBUTORS.rst @@ -1 +1,2 @@ * Pimolnat Suntian +* Abdou Nasser diff --git a/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py b/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py index 9cfd027..031fb17 100644 --- a/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py +++ b/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py @@ -58,7 +58,7 @@ class StockInventoryValuationReport(models.TransientModel): 'qty_at_date': product.qty_available, 'uom_id': product.uom_id, 'currency_id': product.currency_id, - 'cost_currency_id': product.cost_currency_id, + 'cost_currency_id': product.currency_id, 'standard_price': product.standard_price, 'stock_value': product.stock_value, 'cost_method': product.cost_method,