-
-
Notifications
You must be signed in to change notification settings - Fork 700
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] partner_invoicing_mode_cash_on_delivery: Add Cash On Delivery p…
…ayment mode data
- Loading branch information
1 parent
663126b
commit cb70061
Showing
3 changed files
with
34 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
partner_invoicing_mode_cash_on_delivery/data/account_payment_mode.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!-- Copyright 2024 ACSONE SA/NV | ||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). --> | ||
<odoo noupdate="1"> | ||
|
||
<record id="payment_mode_cash_on_delivery" model="account.payment.mode"> | ||
<field name="name">Cash On Delivery</field> | ||
<field name="cash_on_delivery" eval="True" /> | ||
<field name="auto_validate_invoice_cash_on_delivery" eval="True" /> | ||
<field | ||
name="payment_method_id" | ||
ref="account.account_payment_method_manual_in" | ||
/> | ||
<field name="bank_account_link">variable</field> | ||
</record> | ||
|
||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters