~vauxoo/addons-vauxoo/8.0-import_tax_tariff-dev-yani-rev-2

« back to all changes in this revision

Viewing changes to price_structure/view/product_pricelist_view.xml

  • Committer: Jose Morales
  • Date: 2013-03-20 19:12:38 UTC
  • mto: This revision was merged to the branch mainline in revision 519.
  • Revision ID: jose@vauxoo.com-20130320191238-h1ndo5du24m6ler9
 
[ADD] To have a price structure management was created this module
      [ADD] Added price management directly for products and categories in the form view
      [ADD] Added price selection on sale order line to set price for sale line, it filter for product in the line 
      [ADD] Added a validation to not sell products at a price lower or higher that indicated in the margin

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 model="ir.ui.view" id="inherit_price_list_item_cost_structure">
 
5
      <field name="name">inherit_price_list_item_cost_structure</field>
 
6
      <field name="model">product.pricelist.item</field>
 
7
      <field name="inherit_id" ref="product.product_pricelist_item_tree_view" />
 
8
      <field name="type">form</field>
 
9
      <field name="arch" type="xml">
 
10
        <xpath expr='//field[@name="sequence"]' position="after">
 
11
        <field name='price_list_id' />
 
12
        </xpath>
 
13
      </field>
 
14
    </record>
 
15
  </data>
 
16
</openerp>