~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to price_structure/workflow/sale_workflow.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
 
 
5
        <record id="sale.trans_draft_router" model="workflow.transition">
 
6
            <field name="act_from" ref="sale.act_draft"/>
 
7
            <field name="act_to" ref="sale.act_router"/>
 
8
            <field name="signal">order_confirm</field>
 
9
            <field name="condition">price_unit_confirm()</field>
 
10
        </record>
 
11
 
 
12
    </data>
 
13
</openerp>