mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[REF] Contract Sale Invoicing: update translations [IMP] - Assert that the predecessor is available for new link at uncancel [RMV] - remove usless changes [RMV] - Remove usless field recurring_invoices after the total isolation between contract model and account analytic one. recurring_invoices which was used to mark analytic account as contract became usless [IMP] - P3 syntax [IMP] - use @openupgrade.migrate() and openupgrade.logged_query [IMP] - drop transient table in migration script
18 lines
575 B
XML
18 lines
575 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright 2018 Tecnativa - Carlos Dauden
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
|
|
<odoo>
|
|
|
|
<record id="contract_contract_form_view" model="ir.ui.view">
|
|
<field name="model">contract.contract</field>
|
|
<field name="inherit_id" ref="contract.contract_contract_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<field name="recurring_next_date" position="after">
|
|
<field name="invoicing_sales"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|