fix: consider qty field precision
This commit is contained in:
parent
7c42b72ee7
commit
6ec7590c21
@ -186,12 +186,15 @@ def validate_uom_is_integer(doc, uom_field, qty_fields, child_dt=None):
|
|||||||
for f in qty_fields:
|
for f in qty_fields:
|
||||||
qty = d.get(f)
|
qty = d.get(f)
|
||||||
if qty:
|
if qty:
|
||||||
if abs(cint(qty) - flt(qty)) > 0.0000001:
|
if abs(cint(qty) - flt(qty, d.precision(f))) > 0.0000001:
|
||||||
frappe.throw(
|
frappe.throw(
|
||||||
_(
|
_(
|
||||||
"Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}."
|
"Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}."
|
||||||
).format(
|
).format(
|
||||||
qty, d.idx, frappe.bold(_("Must be Whole Number")), frappe.bold(d.get(uom_field))
|
flt(qty, d.precision(f)),
|
||||||
|
d.idx,
|
||||||
|
frappe.bold(_("Must be Whole Number")),
|
||||||
|
frappe.bold(d.get(uom_field)),
|
||||||
),
|
),
|
||||||
UOMMustBeIntegerError,
|
UOMMustBeIntegerError,
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user