fix(pe): show split alert only on splitting

(cherry picked from commit 96b13c59c1)
This commit is contained in:
Dany Robert
2023-11-30 06:20:15 +00:00
committed by Mergify
parent 0df52d2c4f
commit 8d6d74c237

View File

@@ -1566,12 +1566,13 @@ def split_invoices_based_on_payment_terms(outstanding_invoices, company) -> list
if not split_rows:
continue
frappe.msgprint(
_("Splitting {0} {1} into {2} rows as per Payment Terms").format(
_(entry.voucher_type), frappe.bold(entry.voucher_no), len(split_rows)
),
alert=True,
)
if len(split_rows) > 1:
frappe.msgprint(
_("Splitting {0} {1} into {2} rows as per Payment Terms").format(
_(entry.voucher_type), frappe.bold(entry.voucher_no), len(split_rows)
),
alert=True,
)
outstanding_invoices_after_split += split_rows
continue