~savoirfairelinux-openerp/purchase-wkfl/pallet-delivery-optimized

« back to all changes in this revision

Viewing changes to purchase_crate_pallet/purchase_crate_pallet_view.xml

  • Committer: Alexandre Boily
  • Date: 2013-08-12 19:28:55 UTC
  • Revision ID: alexandre.boily@savoirfairelinux.com-20130812192855-16et2uxzb9sju7lm
Rename purchase_crate_pallet to a more evocative name

* Now called landed_cost_per_pallet

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="view_purchase_pallet_crate_order_line" model="ir.ui.view">
5
 
      <field name="name">purchase.order.form</field>
6
 
      <field name="model">purchase.order</field>
7
 
      <field name="inherit_id" ref="purchase.purchase_order_form"/>
8
 
      <field name="arch" type="xml">
9
 
        <field name="product_qty" position="before">
10
 
          <field name="nb_pallets"/>
11
 
          <field name="nb_crates_per_pallet"/>
12
 
        </field>
13
 
      </field>
14
 
    </record>
15
 
 
16
 
    <record id="view_purchase_pallet_crate_thing" model="ir.ui.view">
17
 
      <field name="name">purchase.order.landing.form</field>
18
 
      <field name="model">purchase.order</field>
19
 
      <field name="inherit_id" ref="purchase_landed_costs.c2c_purchase_order_landed_cost_view" />
20
 
      <field name="arch" type="xml">
21
 
        <field name="landed_cost_base_value" position="after">
22
 
          <field name="landed_cost_base_pallet" />
23
 
        </field>
24
 
      </field>
25
 
    </record>
26
 
  </data>
27
 
</openerp>