You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

61 lines
2.9 KiB

<odoo>
<data>
<!--Configuration Layout View-->
<record id="documents_custom_tempates_purchase" model="ir.ui.view">
<field name="name">document.custom.layout.purchase</field>
<field name="model">doc.layout.purchase</field>
<field name="arch" type="xml">
<form string="Customize Document">
<sheet>
<div class="oe_title">
<h1>
<field name="name"/>
</h1>
</div>
<group>
<group>
<field name="text_color" widget="color"/>
<field name="heading_text_color"
widget="color"/>
<field name="customer_text_color"
widget="color"/>
<field name="company_text_color"
widget="color"/>
</group>
<group>
<field name="base_color" widget="color"/>
<field name="customer_position"/>
<field name="company_position"/>
<field name="shipping_address"/>
<field name="shipping_address_position" attrs="{'invisible':[('shipping_address','=',False)]}"/>
<field name="logo_position"/>
</group>
</group>
<notebook colspan="4">
<page string="Invoice Details" name="invoice_info">
<group>
<group string="View Fields">
<field name="purchase_rep"/>
<field name="description"/>
<field name="tax_value"/>
<field name="code"/>
<field name="reference"/>
<field name="source"/>
</group>
<group string="Customer Details"
name="customer_info">
<field name="address"/>
<field name="city"/>
<field name="country"/>
</group>
</group>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
</data>
</odoo>