mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-29 17:11:33 +02:00
feat: Add posting date param for reverse GL entries
(cherry picked from commit 38988bf797)
This commit is contained in:
@@ -648,6 +648,7 @@ def make_reverse_gl_entries(
|
|||||||
adv_adj=False,
|
adv_adj=False,
|
||||||
update_outstanding="Yes",
|
update_outstanding="Yes",
|
||||||
partial_cancel=False,
|
partial_cancel=False,
|
||||||
|
posting_date=None
|
||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
Get original gl entries of the voucher
|
Get original gl entries of the voucher
|
||||||
@@ -745,6 +746,8 @@ def make_reverse_gl_entries(
|
|||||||
if immutable_ledger_enabled:
|
if immutable_ledger_enabled:
|
||||||
new_gle["is_cancelled"] = 0
|
new_gle["is_cancelled"] = 0
|
||||||
new_gle["posting_date"] = frappe.form_dict.get("posting_date") or getdate()
|
new_gle["posting_date"] = frappe.form_dict.get("posting_date") or getdate()
|
||||||
|
elif posting_date:
|
||||||
|
new_gle["posting_date"] = posting_date
|
||||||
|
|
||||||
if new_gle["debit"] or new_gle["credit"]:
|
if new_gle["debit"] or new_gle["credit"]:
|
||||||
make_entry(new_gle, adv_adj, "Yes")
|
make_entry(new_gle, adv_adj, "Yes")
|
||||||
|
|||||||
Reference in New Issue
Block a user