mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
21 lines
753 B
XML
21 lines
753 B
XML
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<!--
|
||
|
Copyright 2014-2020 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
-->
|
||
|
<flectra>
|
||
|
<record id="view_order_form" model="ir.ui.view">
|
||
|
<field name="name">account_payment_sale.sale_order.form</field>
|
||
|
<field name="model">sale.order</field>
|
||
|
<field name="inherit_id" ref="sale.view_order_form" />
|
||
|
<field name="arch" type="xml">
|
||
|
<field name="payment_term_id" position="after">
|
||
|
<field
|
||
|
name="payment_mode_id"
|
||
|
options="{'no_open': True, 'no_create': True}"
|
||
|
/>
|
||
|
</field>
|
||
|
</field>
|
||
|
</record>
|
||
|
</flectra>
|