mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
23 lines
794 B
XML
23 lines
794 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
crm_claim_rma for OpenERP
|
|
Copyright (C) 2011 Akretion Benoît GUILLOT <benoit.guillot@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="action_claim_picking_loss" model="ir.actions.act_window">
|
|
<field name="name">Create Products Loss</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">claim_make_picking.wizard</field>
|
|
<field name="src_model">crm.claim</field>
|
|
<field name="view_type">form</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
<field name="context">{'picking_type': 'loss'}</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|