mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
- constraints - display related payment lines - set mandates to expired after 36 months of inactivity (via a cron) - add tracking/chatter - add default draft state + validate button [FIX] In Debit mode, don't use the partner_bank_id of the customer invoice ! In the wizard 'Select invoices to pay', add maturity date in the view of the account move lines
23 lines
719 B
XML
23 lines
719 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2013 Akretion (http://www.akretion.com)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="view_create_payment_order_lines" model="ir.ui.view">
|
|
<field name="name">add.context.to.display.maturity.date</field>
|
|
<field name="model">payment.order.create</field>
|
|
<field name="inherit_id" ref="account_payment.view_create_payment_order_lines"/>
|
|
<field name="arch" type="xml">
|
|
<field name="entries" position="attributes">
|
|
<attribute name="context">{'journal_type': 'sale'}</attribute>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|