~camptocamp/openerp-rma/7.0-crm_claim_rma-fix-lp1317045_rde

« back to all changes in this revision

Viewing changes to crm_rma_advance_location/stock_data.xml

  • Committer: Joel Grand-Guillaume
  • Date: 2013-11-14 10:07:54 UTC
  • mto: This revision was merged to the branch mainline in revision 69.
  • Revision ID: joel.grandguillaume@camptocamp.com-20131114100754-9vb3p3q2i8m2k9ya
[IMP] Split the mass return in a new module
[IMP] Split the new location added on WH in a new module for advance location management
[IMP] Clean the wizards code in crm_claim_rma
[IMP]move wizard in the new module and adapt the view and buttons

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<openerp>
 
3
    <data noupdate="1">
 
4
        <!--
 
5
        Default Values for : Stock Location
 
6
        -->
 
7
        <record id="stock_location_carrier_loss" model="stock.location">
 
8
            <field name="name">Carrier Loss</field>
 
9
            <field name="usage">internal</field>
 
10
            <field name="location_id" ref="stock.stock_location_company"/>
 
11
        </record>
 
12
        <record id="stock_location_rma" model="stock.location">
 
13
            <field name="name">RMA</field>
 
14
            <field name="usage">internal</field>
 
15
            <field name="location_id" ref="stock.stock_location_company"/>
 
16
        </record>
 
17
        <record id="stock_location_breakage_loss" model="stock.location">
 
18
            <field name="name">Breakage Loss</field>
 
19
            <field name="usage">internal</field>
 
20
            <field name="location_id" ref="stock.stock_location_company"/>
 
21
        </record>
 
22
        <record id="stock_location_refurbish" model="stock.location">
 
23
            <field name="name">Refurbish</field>
 
24
            <field name="usage">internal</field>
 
25
            <field name="location_id" ref="stock.stock_location_company"/>
 
26
        </record>
 
27
        <record id="stock_location_mistake_loss" model="stock.location">
 
28
            <field name="name">Mistake Loss</field>
 
29
            <field name="usage">internal</field>
 
30
            <field name="location_id" ref="stock.stock_location_company"/>
 
31
        </record>
 
32
        <!--
 
33
        Default Values for : Stock Warehouse
 
34
        -->
 
35
        <record id="stock.warehouse0" model="stock.warehouse">
 
36
            <field name="lot_rma_id" ref="stock_location_rma"/>
 
37
            <field name="lot_breakage_loss_id" ref="stock_location_breakage_loss"/>
 
38
            <field name="lot_carrier_loss_id" ref="stock_location_carrier_loss"/>
 
39
            <field name="lot_refurbish_id" ref="stock_location_refurbish"/>
 
40
        </record>
 
41
    </data>
 
42
</openerp>