mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
* clear order terms if user rejects agreement * set payment transaction amount to amount_due_today * fix bad view inheritance spec * fix default selected term when partner_term is not in website_terms * do not render payment bypass form if amount_total is 0 H5924
16 lines
560 B
XML
16 lines
560 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
|
|
<record id="view_payment_term_form" model="ir.ui.view">
|
|
<field name="name">view.payment.term.form.inherit.website</field>
|
|
<field name="model">account.payment.term</field>
|
|
<field name="inherit_id" ref="sale_payment_deposit.view_payment_term_form_inherit"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='deposit_flat']" position="after">
|
|
<field name="allow_in_website_sale"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|