Skip to content

Commit

Permalink
fix: show bill_date and bill_no in Purchase Register
Browse files Browse the repository at this point in the history
  • Loading branch information
ljain112 committed Dec 14, 2023
1 parent c68ad73 commit f53ba17
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit f53ba17

Please sign in to comment.