[FIX] procurement: typo/wording in product procurement wizard
[odoo/odoo.git] / addons / procurement / wizard / make_procurement_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <!--  Make Procurement -->
6
7         <record id="view_make_procurment_wizard" model="ir.ui.view">
8             <field name="name">Procurement Request</field>
9             <field name="model">make.procurement</field>
10             <field name="arch" type="xml">
11                 <form string="Procurement Request" version="7.0">
12                     <p class="oe_gray">
13                         Use this assistant to generate a procurement request for this
14                         product. According to the product configuration, this may
15                         trigger a draft purchase order, a manufacturing order or
16                         a new task.
17                     </p>
18                     <group>
19                         <field name="warehouse_id" groups="stock.group_locations"/>
20                         <field name="product_id" on_change="onchange_product_id(product_id)"/>
21                         <label for="qty"/>
22                         <div>
23                             <field name="qty" class="oe_inline"/>
24                             <field name="uom_id" groups="product.group_uom"/>
25                         </div>
26                         <field name="date_planned"/>
27                     </group>
28                     <footer>
29                         <button name="make_procurement" string="Ask New Products" type="object"  class="oe_highlight"  />
30                         or
31                         <button string="Cancel" class="oe_link" special="cancel" />
32                     </footer>
33                 </form>
34             </field>
35         </record>
36
37         <record model="ir.actions.act_window" id="act_make_procurement">
38             <field name="name">Procurement Request</field>
39             <field name="res_model">make.procurement</field>
40             <field name="src_model">product.product</field>
41             <field name="view_mode">form</field>
42             <field name="target">new</field>
43         </record>
44
45     </data>
46 </openerp>