fix: fieldtype to Currency for discount amounts

(cherry picked from commit f781a39dbe)
This commit is contained in:
priyanshshah2442
2025-06-09 19:20:40 +05:30
committed by Mergify
parent 35035c2a31
commit 59dd5fee26

View File

@@ -57,13 +57,13 @@ def get_columns():
{
"fieldname": "actual_discount_amount",
"label": _("Discount Amount in Transaction"),
"fieldtype": "Data",
"fieldtype": "Currency",
"width": 180,
},
{
"fieldname": "suspected_discount_amount",
"label": _("Suspected Discount Amount"),
"fieldtype": "Data",
"fieldtype": "Currency",
"width": 180,
},
]