[MIG] sale_usability_akretion: migrate to v18
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2015-2022 Akretion France (http://www.akretion.com/)
|
||||
Copyright 2015-2024 Akretion France (https://www.akretion.com/)
|
||||
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
@@ -12,77 +12,49 @@
|
||||
<field name="model">sale.order</field>
|
||||
<field name="inherit_id" ref="sale.view_order_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="fiscal_position_id" position="attributes">
|
||||
<attribute name="widget">selection</attribute>
|
||||
</field>
|
||||
<field name="partner_shipping_id" position="attributes">
|
||||
<attribute name="context" operation="update">{"show_address": 1}</attribute>
|
||||
</field>
|
||||
<button name="action_cancel" type="object" position="attributes">
|
||||
<attribute name="confirm">Are you sure you want to cancel this sale order?</attribute>
|
||||
</button>
|
||||
<!-- client_order_ref is an important field, so we should put it in the top like in v8, not hidden in the second tab -->
|
||||
<field name="date_order" position="after">
|
||||
<!-- client_order_ref is an important field, so we should put it in the top like in v8, not in the "Other Info" tab -->
|
||||
<field name="has_active_pricelist" position="before">
|
||||
<field name="client_order_ref" position="move"/>
|
||||
</field>
|
||||
<button name="action_quotation_send" states="sent,sale" position="after">
|
||||
<button name="%(sale.action_report_saleorder)d" type="action" string="Print" states="draft,sent,sale,done"/>
|
||||
<button id="send_by_email_primary" position="after">
|
||||
<button name="%(sale.action_report_saleorder)d" type="action" string="Print" invisible="state == 'cancel'"/>
|
||||
</button>
|
||||
<xpath expr="//field[@name='order_line']/tree/field[@name='product_template_id']" position="after">
|
||||
<xpath expr="//field[@name='order_line']/list/field[@name='product_template_id']" position="after">
|
||||
<field name="product_barcode" optional="hide"/>
|
||||
</xpath>
|
||||
<button name="action_quotation_send" attrs="{'invisible': ['|', ('state', '=', 'draft'), ('invoice_count','>=',1)]}" position="before">
|
||||
<button name="action_quotation_send" type="object" string="Send Order Acknowledgement" attrs="{'invisible': ['|', ('state', 'not in', ('sale', 'done')), ('invoice_count','>=',1)]}"/>
|
||||
<button id="send_proforma_primary" position="before">
|
||||
<button name="action_quotation_send" type="object" string="Send Order Acknowledgement" invisible="state != 'sale' or invoice_count >= 1" id="send_order_ack_by_email"/>
|
||||
</button>
|
||||
<xpath expr="//field[@name='order_line']/tree/field[@name='product_uom_qty']" position="attributes">
|
||||
<xpath expr="//field[@name='order_line']/list/field[@name='product_uom_qty']" position="attributes">
|
||||
<attribute name="sum">1</attribute>
|
||||
</xpath>
|
||||
<!-- it doesn't work... I don't know why ! -->
|
||||
<xpath expr="//field[@name='order_line']/tree/field[@name='qty_delivered']" position="attributes">
|
||||
<xpath expr="//field[@name='order_line']/list/field[@name='qty_delivered']" position="attributes">
|
||||
<attribute name="sum">1</attribute>
|
||||
</xpath>
|
||||
<!-- it doesn't work... I don't know why ! -->
|
||||
<xpath expr="//field[@name='order_line']/tree/field[@name='qty_invoiced']" position="attributes">
|
||||
<xpath expr="//field[@name='order_line']/list/field[@name='qty_invoiced']" position="attributes">
|
||||
<attribute name="sum">1</attribute>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_quotation_tree" model="ir.ui.view">
|
||||
<field name="name">usability.sale.quotation.tree</field>
|
||||
<field name="model">sale.order</field>
|
||||
<field name="inherit_id" ref="sale.view_quotation_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="amount_untaxed" position="attributes">
|
||||
<attribute name="optional">show</attribute>
|
||||
</field>
|
||||
<field name="partner_id" position="after">
|
||||
<field name="client_order_ref" optional="hide"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_order_tree" model="ir.ui.view">
|
||||
<record id="sale_order_tree" model="ir.ui.view">
|
||||
<field name="name">usability.sale.order.tree</field>
|
||||
<field name="model">sale.order</field>
|
||||
<field name="inherit_id" ref="sale.view_order_tree"/>
|
||||
<field name="inherit_id" ref="sale.sale_order_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="amount_untaxed" position="attributes">
|
||||
<attribute name="optional">show</attribute>
|
||||
</field>
|
||||
<field name="state" position="attributes">
|
||||
<attribute name="invisible">0</attribute>
|
||||
<attribute name="optional">hide</attribute>
|
||||
<attribute name="widget">badge</attribute>
|
||||
<attribute name="decoration-success">state == 'done'</attribute>
|
||||
<attribute name="decoration-info">state == 'sale'</attribute>
|
||||
</field>
|
||||
<field name="partner_id" position="after">
|
||||
<field name="client_order_ref" optional="show"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
<record id="view_sales_order_filter" model="ir.ui.view">
|
||||
<field name="name">usability.sale.order.search</field>
|
||||
<field name="model">sale.order</field>
|
||||
|
||||
Reference in New Issue
Block a user