mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
25 lines
897 B
XML
25 lines
897 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<data>
|
|
<record id="stock_location_refurbish" model="stock.location">
|
|
<field name="name">Refurbish</field>
|
|
<field name="location_id" ref="stock.stock_location_locations_virtual" />
|
|
<field name="usage">production</field>
|
|
<field name="company_id" />
|
|
</record>
|
|
</data>
|
|
<data noupdate="1">
|
|
<record forcecreate="True" id="property_stock_refurbish" model="ir.property">
|
|
<field name="name">property_stock_refurbish</field>
|
|
<field
|
|
name="fields_id"
|
|
search="[('model','=','product.template'),('name','=','property_stock_refurbish')]"
|
|
/>
|
|
<field
|
|
eval="'stock.location,'+str(stock_location_refurbish)"
|
|
name="value"
|
|
/>
|
|
</record>
|
|
</data>
|
|
</odoo>
|