~unifield-team/unifield-wm/us-826

« back to all changes in this revision

Viewing changes to kit/kit_sequence.xml

UF-358 [ADD] Initial creation : backup of this day

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="utf-8" ?>
2
 
<openerp>
3
 
        <data>
4
 
 
5
 
        <!-- Sequence for automated created lots -->
6
 
        <record id="seq_type_kit_lot" model="ir.sequence.type">
7
 
            <field name="name">Kit Lot</field>
8
 
            <field name="code">kit.lot</field>
9
 
        </record>
10
 
 
11
 
        <record id="seq_kit_lot" model="ir.sequence">
12
 
            <field name="name">Kit Lot</field>
13
 
            <field name="code">kit.lot</field>
14
 
            <field name="prefix">MSFK/</field>
15
 
            <field name="padding">5</field>
16
 
        </record>
17
 
        
18
 
        <!-- Sequence for Kitting Order -->
19
 
        <record id="seq_type_kit_creation" model="ir.sequence.type">
20
 
            <field name="name">Kit Creation</field>
21
 
            <field name="code">kit.creation</field>
22
 
        </record>
23
 
 
24
 
        <record id="seq_kit_creation" model="ir.sequence">
25
 
            <field name="name">Kit Creation</field>
26
 
            <field name="code">kit.creation</field>
27
 
            <field name="prefix">KO/</field>
28
 
            <field name="padding">5</field>
29
 
        </record>
30
 
 
31
 
        </data>
32
 
</openerp>
33