fix(purchase-invoice): add rounded total property setter for purchase invoice (#18841)

This commit is contained in:
Mangesh-Khairnar 2019-09-03 14:18:15 +05:30 committed by Nabin Hait
parent c174e4d01a
commit cb44f3a7c3

View File

@ -58,7 +58,7 @@ class GlobalDefaults(Document):
# Make property setters to hide rounded total fields
for doctype in ("Quotation", "Sales Order", "Sales Invoice", "Delivery Note",
"Supplier Quotation", "Purchase Order"):
"Supplier Quotation", "Purchase Order", "Purchase Invoice"):
make_property_setter(doctype, "base_rounded_total", "hidden", self.disable_rounded_total, "Check")
make_property_setter(doctype, "base_rounded_total", "print_hide", 1, "Check")