~vauxoo/addons-vauxoo/7.0-account_voucher_category-dev-hbto

« back to all changes in this revision

Viewing changes to psm/view/stock_view.xml

  • Committer: Jose Morales
  • Date: 2013-05-16 15:44:16 UTC
  • mfrom: (544.1.9 addons-vauxoo)
  • Revision ID: jose@vauxoo.com-20130516154416-eago8zbxslb2scq8
 
[MERGE] Added new features in the user_story module to make easy the user story management, these improvements are:
         [IMP] Added a priority field in the user story to define the priority level for each user story for ease of handling and delivery
         [IMP] Added filter to show user story for priority level
         [IMP] Added automatically project in the task when you create a new task from user story view, this project is the seted in the user story
         [IMP] Added filter to show user story for state, to ease the user story management
         [IMP] Added sum in the planned hours field to control, the hours used for each user story, for we can see the progress in any project easily
         [IMP] Added translations in the user_story module
         [IMP] Added branch to clone field in the project task module
         
       [MERGE] Merge from trunk to apply pep8 and V7 migrate in all modules
       

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
 
    <record id="pedigree_serialization_manager_out_view" model="ir.ui.view">
5
 
      <field name="name">pedigree.serialization.manager.view.form</field>
6
 
      <field name="model">stock.picking</field>
7
 
      <field name="type">form</field>
8
 
      <field name="inherit_id" ref="stock.view_picking_out_form" />
9
 
      <field name="arch" type="xml">
10
 
        <xpath expr='/form/notebook/page[@string="Products"]/field[@name="move_lines"]/tree[@string="Stock Moves"]/button[@string="Split in production lots"]' position="replace">
11
 
          <button name="%(track_line2)d" string="Split in production lots" type="action" icon="terp-stock_effects-object-colorize" states="draft,waiting,confirmed,assigned" groups="base.group_extended" />
12
 
        </xpath>
13
 
      </field>
14
 
    </record>
15
 
    
16
 
    <record id="pedigree_serialization_manager_view" model="ir.ui.view">
17
 
      <field name="name">pedigree.serialization.manager.view.form</field>
18
 
      <field name="model">stock.picking</field>
19
 
      <field name="type">form</field>
20
 
      <field name="inherit_id" ref="stock.view_picking_form" />
21
 
      <field name="arch" type="xml">
22
 
        <xpath expr='/form/notebook/page[@string="Products"]/field[@name="move_lines"]/tree[@string="Stock Moves"]/button[@string="Split in production lots"]' position="replace">
23
 
          <button name="%(track_line2)d" string="Split in production lots" type="action" icon="terp-stock_effects-object-colorize" states="draft,waiting,confirmed,assigned" groups="base.group_extended" />
24
 
        </xpath>
25
 
      </field>
26
 
    </record>
27
 
    
28
 
    <record id="pedigree_serialization_manager_in_view" model="ir.ui.view">
29
 
      <field name="name">pedigree.serialization.manager.view.form</field>
30
 
      <field name="model">stock.picking</field>
31
 
      <field name="type">form</field>
32
 
      <field name="inherit_id" ref="stock.view_picking_in_form" />
33
 
      <field name="arch" type="xml">
34
 
        <xpath expr='/form/notebook/page[@string="General Information"]/field[@name="move_lines"]/tree[@string="Stock Moves"]/button[@string="Split in production lots"]' position="replace">
35
 
          <button name="%(track_line2)d" string="Split in production lots" type="action" icon="terp-stock_effects-object-colorize" states="draft,waiting,confirmed,assigned" groups="base.group_extended" />
36
 
        </xpath>
37
 
      </field>
38
 
    </record>
39
 
    
40
 
    <record id="psm_view_production_lot_form" model="ir.ui.view">
41
 
      <field name="name">psm.stock.production.lot.form</field>
42
 
      <field name="model">stock.production.lot</field>
43
 
      <field name="type">form</field>
44
 
      <field name="inherit_id" ref="stock.view_production_lot_form" />
45
 
      <field name="arch" type="xml">
46
 
        <xpath expr='//field[@name="ref"]' position="replace">
47
 
          <field name="ref" readonly="1" colspan="4" />
48
 
        </xpath>
49
 
        <xpath expr='//button[@string="Downstream Traceability"]' position="after">
50
 
          <field name="check_serial" readonly="1" colspan="4" />
51
 
        </xpath>
52
 
      </field>
53
 
    </record>
54
 
    
55
 
  </data>
56
 
</openerp>
 
1
<?xml version='1.0' encoding='UTF-8'?>
 
2
<openerp>
 
3
  <data>
 
4
    <record id="2pedigree_serialization_manager_out_view" model="ir.ui.view">
 
5
      <field name="name">pedigree.serialization.manager.view.form</field>
 
6
      <field name="model">stock.move</field>
 
7
      <field name="inherit_id" ref="stock.view_move_picking_tree"/>
 
8
      <field name="arch" type="xml">
 
9
        <xpath expr="//button[@string='Split in Serial Number']" position="replace">
 
10
          <button name="%(track_line2)d" string="Split in Serial Numbers" type="action" icon="terp-stock_effects-object-colorize" states="draft,waiting,confirmed,assigned" groups="base.group_extended"/>
 
11
        </xpath>
 
12
      </field>
 
13
    </record>
 
14
    
 
15
    
 
16
    <record id="psm_view_production_lot_form" model="ir.ui.view">
 
17
      <field name="name">psm.stock.production.lot.form</field>
 
18
      <field name="model">stock.production.lot</field>
 
19
      <field name="inherit_id" ref="stock.view_production_lot_form"/>
 
20
      <field name="arch" type="xml">
 
21
        <xpath expr="//field[@name=&quot;ref&quot;]" position="replace">
 
22
          <field name="ref" readonly="1" colspan="4"/>
 
23
        </xpath>
 
24
        <xpath expr="//button[@string=&quot;Downstream Traceability&quot;]" position="after">
 
25
          <field name="check_serial" readonly="1" colspan="4"/>
 
26
        </xpath>
 
27
      </field>
 
28
    </record>
 
29
    
 
30
  </data>
 
31
</openerp>