freight charges

This commit is contained in:
Raman Marikanti 2026-02-10 13:21:35 +05:30
parent b1b0396c72
commit ee77872c62
1 changed files with 2 additions and 1 deletions

View File

@ -212,7 +212,7 @@ class SamashtiDashboard(models.AbstractModel):
], ],
[ [
'id', 'name', 'amount_untaxed', 'partner_id', '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, 'weight': weight,
'tags': product_tags, 'tags': product_tags,
'invoice': invoice, 'invoice': invoice,
'freight':order_data['freight_charges'],
'customer': customer, 'customer': customer,
'quantity': quantity, 'quantity': quantity,
'cost': cost, 'cost': cost,