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,