Merge pull request #38787 from frappe/mergify/bp/version-15-hotfix/pr-38742

fix(Purchase Register): show bill_date and bill_no (backport #38742)
This commit is contained in:
Raffael Meyer 2023-12-15 15:39:45 +01:00 committed by GitHub
commit a70be4299e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,6 +89,8 @@ def _execute(filters=None, additional_table_columns=None):
"payable_account": inv.credit_to,
"mode_of_payment": inv.mode_of_payment,
"project": ", ".join(project) if inv.doctype == "Purchase Invoice" else inv.project,
"bill_no": inv.bill_no,
"bill_date": inv.bill_date,
"remarks": inv.remarks,
"purchase_order": ", ".join(purchase_order),
"purchase_receipt": ", ".join(purchase_receipt),