1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0"?>
<openerp>
<data noupdate="1">
<record id="edi_request" model="res.request.link">
<field name="name">EDI Log</field>
<field name="object">edi.log</field>
</record>
<record model="product.pricelist.type" id="pricelist_type_sale">
<field name="name">Customer Pricelist</field>
<field name="key">edi_customer</field>
</record>
<record model="ir.property" id="property_product_pricelist_customer" forcecreate="True">
<field name="name">property_product_pricelist_customer</field>
<field name="fields_id" search="[('model','=','res.partner'),('name','=','property_product_pricelist_customer')]"/>
<field name="value" eval="False"/>
</record>
</data>
</openerp>
|