77 lines
3.1 KiB
XML
77 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!--
|
|
Copyright 2017-2021 Akretion France (http://www.akretion.com/)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
<odoo>
|
|
|
|
<record id="sale_confirm_form" model="ir.ui.view">
|
|
<field name="name">sale.confirm.form</field>
|
|
<field name="model">sale.confirm</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Confirm Order">
|
|
<div><p
|
|
>At this stage, you have received the Purchase Order from the customer and you are about to convert the related quotation to an order.</p></div>
|
|
<group
|
|
name="warn"
|
|
groups="sale.group_warning_sale"
|
|
attrs="{'invisible': ['|', ('sale_warn', '=', False), ('sale_warn', '=', 'no-message')]}"
|
|
string="Warning"
|
|
col="4"
|
|
>
|
|
<field name="sale_warn" nolabel="1" />
|
|
<field name="sale_warn_msg" nolabel="1" colspan="3" />
|
|
</group>
|
|
<group name="main" attrs="{'invisible': [('sale_warn', '=', 'block')]}">
|
|
<field name="sale_id" invisible="1" />
|
|
<field name="client_order_ref" />
|
|
<field
|
|
name="partner_invoice_id"
|
|
context="{'default_type': 'invoice'}"
|
|
groups="sale.group_delivery_invoice_address"
|
|
/>
|
|
<!-- partner_invoice_id can't show the full address because
|
|
we are in edit mode -->
|
|
<field
|
|
name="show_partner_invoice_id"
|
|
options="{'always_reload': True}"
|
|
context="{'show_address': 1}"
|
|
groups="sale.group_delivery_invoice_address"
|
|
/>
|
|
<field
|
|
name="partner_shipping_id"
|
|
context="{'default_type': 'delivery'}"
|
|
groups="sale.group_delivery_invoice_address"
|
|
/>
|
|
<field
|
|
name="show_partner_shipping_id"
|
|
options="{'always_reload': True}"
|
|
context="{'show_address': 1}"
|
|
groups="sale.group_delivery_invoice_address"
|
|
/>
|
|
<field name="payment_term_id" />
|
|
</group>
|
|
<footer>
|
|
<button
|
|
type="object"
|
|
name="confirm"
|
|
string="Confirm Sale"
|
|
class="btn-primary"
|
|
attrs="{'invisible': [('sale_warn', '=', 'block')]}"
|
|
/>
|
|
<button special="cancel" string="Annuler" class="btn-default" />
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="sale_confirm_action" model="ir.actions.act_window">
|
|
<field name="name">Confirm Order</field>
|
|
<field name="res_model">sale.confirm</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
|
|
</odoo>
|