sale_view.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <record id="action_unified_order" model="ir.actions.act_window">
  5. <field name="name">Pedidos de Venta</field>
  6. <field name="type">ir.actions.act_window</field>
  7. <field name="res_model">sale.order</field>
  8. <field name="view_type">form</field>
  9. <field name="view_id" ref="sale.view_quotation_tree"/>
  10. <field name="view_mode">tree,form,calendar,graph</field>
  11. <field name="search_view_id" ref="sale.view_sales_order_filter"/>
  12. <field name="help" type="html">
  13. <p class="oe_view_nocontent_create">
  14. Click to create a quotation, the first step of a new sale.
  15. </p><p>
  16. Odoo will help you handle efficiently the complete sale flow:
  17. from the quotation to the sales order, the
  18. delivery, the invoicing and the payment collection.
  19. </p><p>
  20. The social feature helps you organize discussions on each sales
  21. order, and allow your customers to keep track of the evolution
  22. of the sales order.
  23. </p>
  24. </field>
  25. </record>
  26. <menuitem id="menu_unified_order"
  27. action="action_unified_order" parent="base.menu_sales"
  28. sequence="7"/>
  29. </data>
  30. </openerp>