blob: dda07a856ba573287e6473b6f68846850a35e1d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="sale_order_form_quote_design" model="ir.ui.view">
<field name="name">sale.order.form.sale_quotation_builder</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale_management.sale_order_form_quote"/>
<field name="arch" type="xml">
<xpath expr="//page/field[@name='order_line']/tree/field[@name='name']" position="after">
<field name="website_description" invisible="1"/>
</xpath>
<xpath expr="//page/field[@name='order_line']/form/field[@name='name']" position="after">
<field name="website_description" invisible="1"/>
</xpath>
<xpath expr="//page/field[@name='sale_order_option_ids']/kanban/field[@name='product_id']" position="after">
<field name="website_description" invisible="1" readonly="1" force_save="1"/>
</xpath>
<xpath expr="//page/field[@name='sale_order_option_ids']/form//field[@name='name']" position="after">
<field name="website_description" invisible="1" readonly="1" force_save="1"/>
</xpath>
<xpath expr="//page/field[@name='sale_order_option_ids']/tree/field[@name='name']" position="after">
<field name="website_description" invisible="1" readonly="1" force_save="1"/>
</xpath>
<xpath expr="//button[@name='button_add_to_order']" position="after">
<field name="website_description" invisible="1"/>
</xpath>
<xpath expr="//field[@name='require_payment']" position="after">
<field name="website_description" invisible="1"/>
</xpath>
</field>
</record>
</odoo>
|