Skip to content

Commit

Permalink
payment method
Browse files Browse the repository at this point in the history
  • Loading branch information
bosd committed Mar 14, 2023
1 parent 0f51a21 commit c496a3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions account_invoice_import_invoice2data/readme/CONFIGURE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ Invoice Fields (on document level)
| note | char | The contents of this field will be imported in the chatter. |
| narration | char | The contents of this field will be imported in the narration field. (on the bottom of the invoice.) |
| payment_reference | char | If the invoice is pre-paid an reference can be used for payment reconciliation |
| payment_unece_code | char | The unece code of the payment means according to 4461 code list |



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ def invoice2data_to_parsed_inv(self, invoice2data_res):
"purchase_order_id": invoice2data_res.get("purchase_order_id"),
"mandate_id": invoice2data_res.get("mandate_id"),
"payment_reference": invoice2data_res.get("payment_reference"),
"payment_unece_code": invoice2data_res.get("payment_unece_code"),
"lines": lines,
}
for field in ["invoice_number", "description"]:
Expand Down

0 comments on commit c496a3e

Please sign in to comment.