Just review this link:
General Ledger Report with custom filed
In the last post the Mr.kxt5258 suggest to check the make_entry method in general_ledger.py file.
def make_entry(args, adv_adj, update_outstanding, from_repost=False):
args.update({“doctype”: “GL Entry”})
gle = frappe.get_doc(args)
gle.flags.ignore_permissions = 1
gle.flags.from_repost = from_repost
gle.insert()
gle.run_method(“on_update_with_args”, adv_adj, update_outstanding, from_repost)
gle.submit()
Is it possible to copy the value of Journal Entry Account Description filed to GL Entry? if yes, how to adjust the above code?
Regards,
–Ashfaq