Merge pull request #38440 from rtdany10/pe-split-message

fix(pe): show split alert only on splitting
This commit is contained in:
ruthra kumar 2023-12-01 12:39:39 +05:30 committed by GitHub
commit 9656412bba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1691,12 +1691,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