feat: show contributed qty in transaction summary
(cherry picked from commit a823f16dff52ed8a92086aebbfa1b0a326eb2425)
This commit is contained in:
parent
194f46be57
commit
38abfdb8ae
@ -36,6 +36,7 @@ def execute(filters=None):
|
|||||||
d.base_net_amount,
|
d.base_net_amount,
|
||||||
d.sales_person,
|
d.sales_person,
|
||||||
d.allocated_percentage,
|
d.allocated_percentage,
|
||||||
|
(d.stock_qty * d.allocated_percentage / 100),
|
||||||
d.contribution_amt,
|
d.contribution_amt,
|
||||||
company_currency,
|
company_currency,
|
||||||
]
|
]
|
||||||
@ -103,7 +104,7 @@ def get_columns(filters):
|
|||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"width": 140,
|
"width": 140,
|
||||||
},
|
},
|
||||||
{"label": _("Qty"), "fieldname": "qty", "fieldtype": "Float", "width": 140},
|
{"label": _("SO Total Qty"), "fieldname": "qty", "fieldtype": "Float", "width": 140},
|
||||||
{
|
{
|
||||||
"label": _("Amount"),
|
"label": _("Amount"),
|
||||||
"options": "currency",
|
"options": "currency",
|
||||||
@ -119,6 +120,12 @@ def get_columns(filters):
|
|||||||
"width": 140,
|
"width": 140,
|
||||||
},
|
},
|
||||||
{"label": _("Contribution %"), "fieldname": "contribution", "fieldtype": "Float", "width": 140},
|
{"label": _("Contribution %"), "fieldname": "contribution", "fieldtype": "Float", "width": 140},
|
||||||
|
{
|
||||||
|
"label": _("Contribution Qty"),
|
||||||
|
"fieldname": "contribution_qty",
|
||||||
|
"fieldtype": "Float",
|
||||||
|
"width": 140,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": _("Contribution Amount"),
|
"label": _("Contribution Amount"),
|
||||||
"options": "currency",
|
"options": "currency",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user