Files
suite/rma/data/rma_demo.xml
Jared Kipe 8b6c6a7ce2 IMP rma add the ability to relate RMA's to pickings.
Additionally, improve tests to add lines by the wizard instead of manually (especially since manually is not an option in the UI).
2018-08-16 14:24:32 -07:00

24 lines
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="template_missing_item" model="rma.template">
<field name="name">Missing Item</field>
<field name="valid_days" eval="10"/>
<field name="create_out_picking" eval="True"/>
<field name="out_type_id" ref="stock.picking_type_out"/>
<field name="out_location_id" ref="stock.stock_location_stock"/>
<field name="out_location_dest_id" ref="stock.stock_location_customers"/>
<field name="out_procure_method">make_to_stock</field>
</record>
<record id="template_picking_return" model="rma.template">
<field name="name">Picking Return</field>
<field name="usage">stock_picking</field>
<field name="valid_days" eval="10"/>
<field name="create_in_picking" eval="True"/>
<field name="in_type_id" ref="stock.picking_type_in"/>
<field name="in_location_id" ref="stock.stock_location_customers"/>
<field name="in_location_dest_id" ref="stock.stock_location_stock"/>
<field name="in_procure_method">make_to_stock</field>
<field name="in_require_return" eval="True"/>
</record>
</odoo>