mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
We drop the bank statement related part and we manage the state of payment order with workflow transitions triggered by the reconciliation of moves lines on the transfer account.
24 lines
774 B
XML
24 lines
774 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<!--
|
|
Add the payment mode type settings
|
|
-->
|
|
<record id="view_payment_mode_form_inherit" model="ir.ui.view">
|
|
<field name="name">payment.mode.form.inherit</field>
|
|
<field name="model">payment.mode</field>
|
|
<field name="inherit_id" ref="account_payment.view_payment_mode_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="company_id" position="after">
|
|
<field name="active"/>
|
|
<field name="type"/>
|
|
<field name="purchase_ok"/>
|
|
<field name="sale_ok"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|