From ee77872c62056d47cdb89da14403a6a79ceda069 Mon Sep 17 00:00:00 2001 From: Raman Marikanti Date: Tue, 10 Feb 2026 13:21:35 +0530 Subject: [PATCH] freight charges --- custom_addons/dashboard/models/stock_dashboard.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/custom_addons/dashboard/models/stock_dashboard.py b/custom_addons/dashboard/models/stock_dashboard.py index a42870bc4..c54e28c1a 100644 --- a/custom_addons/dashboard/models/stock_dashboard.py +++ b/custom_addons/dashboard/models/stock_dashboard.py @@ -212,7 +212,7 @@ class SamashtiDashboard(models.AbstractModel): ], [ 'id', 'name', 'amount_untaxed', 'partner_id', - 'total_production_cost', 'date_order', 'order_line' + 'total_production_cost', 'date_order', 'order_line', 'freight_charges' ] ) @@ -249,6 +249,7 @@ class SamashtiDashboard(models.AbstractModel): 'weight': weight, 'tags': product_tags, 'invoice': invoice, + 'freight':order_data['freight_charges'], 'customer': customer, 'quantity': quantity, 'cost': cost,