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

« back to all changes in this revision

Viewing changes to kit/kit_sequence.xml

  • Committer: Olivier DOSSMANN
  • Date: 2013-05-31 14:22:09 UTC
  • mto: This revision was merged to the branch mainline in revision 1687.
  • Revision ID: od@tempo-consulting.fr-20130531142209-sbcwvzuema11guzz
UF-1991 [FIX] Problem with wizard on "msg" field. Change it to "name".

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