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.
16 lines
642 B
16 lines
642 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
<!--showing pricelist in partner form-->
|
|
<record id="pos_pricelist_customer_form" model="ir.ui.view">
|
|
<field name="name">pos.pricelist.customer</field>
|
|
<field name="model">res.partner</field>
|
|
<field name="inherit_id" ref="point_of_sale.view_partner_property_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='point_of_sale']" position="inside">
|
|
<field name="pos_pricelist_id" />
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp>
|