mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
[FIX] Bank import writes to browse object
[ADD] direct debit order: process storno during bank import [ADD] bank import: add hooks for processing debit orders and stornos [ADD] direct debit order: pre-select move lines on reference substring configured in payment mode [ADD] payment term for direct debit invoices [ADD] payment line views: add storno field [RFR] standardize storno and debit order processing during bank import
This commit is contained in:
16
account_direct_debit/data/account_payment_term.xml
Normal file
16
account_direct_debit/data/account_payment_term.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data noupdate="1">
|
||||
<record id="payment_term_direct_debit" model="account.payment.term">
|
||||
<field name="name">Direct debit</field>
|
||||
<field name="note">Direct debit in 14 days</field>
|
||||
</record>
|
||||
<record id="payment_term_line_direct_debit" model="account.payment.term.line">
|
||||
<field name="name">Direct debit in 14 days</field>
|
||||
<field name="value">balance</field>
|
||||
<field eval="14" name="days"/>
|
||||
<field eval="0" name="days2"/>
|
||||
<field eval="payment_term_direct_debit" name="payment_id"/>
|
||||
</record>
|
||||
</data>
|
||||
</openerp>
|
||||
Reference in New Issue
Block a user