[FIX]crm: crm lead/opp merge, when opp has stage with state cancel, then it is less...
[odoo/odoo.git] / addons / procurement / wizard / orderpoint_procurement_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <!--  Compute Stock Minimum Rules Only -->
6
7         <record id="view_procurement_compute_wizard" model="ir.ui.view">
8             <field name="name">Compute Stock Minimum Rules Only</field>
9             <field name="model">procurement.orderpoint.compute</field>
10             <field name="arch" type="xml">
11                 <form string="Parameters" version="7.0">
12                     <group>
13                         <label string="Wizard checks all the stock minimum rules and generate procurement order."/>
14                     </group>
15                     <group col="2">
16                         <field name="automatic"/>
17                     </group>
18                     <footer>
19                         <button name="procure_calculation" string="Compute Stock" type="object"  class="oe_highlight"  />
20                         or
21                         <button string="Cancel" class="oe_link" special="cancel" />
22                     </footer>
23                 </form>
24             </field>
25         </record>
26
27         <act_window name="Compute Stock Minimum Rules Only"
28             res_model="procurement.orderpoint.compute"
29             src_model="procurement.order"
30             view_mode="form"
31             target="new"
32             key2="client_action_multi"
33             id="action_procurement_compute"/>
34
35     </data>
36 </openerp>