You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
7.9 KiB

  1. <openerp>
  2. <data>
  3. <record id="product_template_share_form_view" model="ir.ui.view">
  4. <field name="name">product.template.share.form</field>
  5. <field name="model">product.template</field>
  6. <field name="inherit_id" ref="purchase.view_product_supplier_inherit"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//label[@for='purchase_ok']/.." position="after">
  9. <div groups="easy_my_coop.group_energiris_super_manager">
  10. <field name="is_share"/>
  11. <label for="is_share"/>
  12. </div>
  13. <div attrs="{'invisible':[('is_share','=',False)]}" groups="easy_my_coop.group_energiris_user">
  14. <field name="display_on_website"/>
  15. <label for="display_on_website"/>
  16. </div>
  17. </xpath>
  18. </field>
  19. </record>
  20. <record id="product_template_form_view" model="ir.ui.view">
  21. <field name="name">product.template.common.form</field>
  22. <field name="model">product.template</field>
  23. <field name="inherit_id" ref="product.product_template_form_view"/>
  24. <field name="arch" type="xml">
  25. <xpath expr="//field[@name='type']" position="after">
  26. <field name="short_name" attrs="{'invisible':[('is_share','=',False)]}" groups="easy_my_coop.group_energiris_user"/>
  27. <field name="default_share_product" attrs="{'invisible':[('is_share','=',False)]}" groups="easy_my_coop.group_energiris_user"/>
  28. <field name="force_min_qty" attrs="{'invisible':[('is_share','=',False)]}" groups="easy_my_coop.group_energiris_user"/>
  29. <field name="minimum_quantity" attrs="{'invisible':[('is_share','=',False)]}" groups="easy_my_coop.group_energiris_user"/>
  30. <field name="customer" attrs="{'invisible':[('is_share','=',False)]}"/>
  31. <field name="by_company" attrs="{'invisible':[('is_share','=',False)]}" groups="easy_my_coop.group_energiris_user"/>
  32. <field name="by_individual" attrs="{'invisible':[('is_share','=',False)]}" groups="easy_my_coop.group_energiris_user"/>
  33. <field name="mail_template" attrs="{'invisible':[('is_share','=',False)]}" groups="easy_my_coop.group_energiris_user"/>
  34. </xpath>
  35. </field>
  36. </record>
  37. <record id="share_product_action" model="ir.actions.act_window">
  38. <field name="name">Share type</field>
  39. <field name="type">ir.actions.act_window</field>
  40. <field name="res_model">product.template</field>
  41. <field name="view_type">form</field>
  42. <field name="view_mode">kanban,tree,form</field>
  43. <!-- <field name="context">{"search_default_filter_to_purchase":1}</field> -->
  44. <field name="search_view_id" eval="False"/> <!-- Force empty -->
  45. <field name="view_id" eval="False"/> <!-- Force empty -->
  46. <field name="domain">[('is_share','=',True)]</field>
  47. <field name="help" type="html">
  48. <p class="oe_view_nocontent_create">
  49. Click to define a new share product.
  50. </p>
  51. </field>
  52. </record>
  53. <menuitem action="share_product_action" name="Share type" id="menu_easy_my_coop_share_product" parent="menu_easy_my_coop_main_subscription" sequence="20"/>
  54. <!-- overriding product views to not display share product in the purchase and sale views-->
  55. <record id="product.product_normal_action" model="ir.actions.act_window">
  56. <field name="name">Product</field>
  57. <field name="type">ir.actions.act_window</field>
  58. <field name="res_model">product.product</field>
  59. <field name="view_mode">tree,form,kanban</field>
  60. <field name="view_type">form</field>
  61. <field name="search_view_id" ref="product.product_search_form_view"/>
  62. <field name="view_id" eval="False"/> <!-- Force empty -->
  63. <field name="domain">[('is_share','=',False)]</field>
  64. <field name="help" type="html">
  65. <p class="oe_view_nocontent_create">
  66. Click to define a new product.
  67. </p><p>
  68. You must define a product for everything you sell, whether it's
  69. a physical product, a consumable or a service you offer to
  70. customers.
  71. </p><p>
  72. The product form contains information to simplify the sale
  73. process: price, notes in the quotation, accounting data,
  74. procurement methods, etc.
  75. </p>
  76. </field>
  77. </record>
  78. <record id="product.product_template_action" model="ir.actions.act_window">
  79. <field name="name">Products</field>
  80. <field name="type">ir.actions.act_window</field>
  81. <field name="res_model">product.template</field>
  82. <field name="view_mode">tree,form,kanban</field>
  83. <field name="view_type">form</field>
  84. <field name="view_id" ref="product.product_template_kanban_view"/>
  85. <field name="context">{"search_default_filter_to_sell":1}</field>
  86. <field name="domain">[('is_share','=',False)]</field>
  87. <field name="help" type="html">
  88. <p class="oe_view_nocontent_create">
  89. Click to define a new product.
  90. </p><p>
  91. You must define a product for everything you sell, whether it's a physical product, a consumable or a service you offer to customers.
  92. </p><p>
  93. The product form contains information to simplify the sale process: price, notes in the quotation, accounting data, procurement methods, etc.
  94. </p>
  95. </field>
  96. </record>
  97. <record id="product.product_template_action_product" model="ir.actions.act_window">
  98. <field name="name">Products</field>
  99. <field name="type">ir.actions.act_window</field>
  100. <field name="res_model">product.template</field>
  101. <field name="view_mode">tree,form,kanban</field>
  102. <field name="view_type">form</field>
  103. <field name="context">{"search_default_products": 1, 'default_type': 'product'}</field>
  104. <field name="domain">[('is_share','=',False)]</field>
  105. <field name="help" type="html">
  106. <p class="oe_view_nocontent_create">
  107. Click to define a new product.
  108. </p>
  109. </field>
  110. </record>
  111. <record id="product.product_normal_action_puchased" model="ir.actions.act_window">
  112. <field name="name">Products</field>
  113. <field name="type">ir.actions.act_window</field>
  114. <field name="res_model">product.template</field>
  115. <field name="view_type">form</field>
  116. <field name="view_mode">kanban,tree,form</field>
  117. <field name="context">{"search_default_filter_to_purchase":1}</field>
  118. <field name="search_view_id" eval="False"/> <!-- Force empty -->
  119. <field name="view_id" eval="False"/> <!-- Force empty -->
  120. <field name="domain">[('is_share','=',False)]</field>
  121. <field name="help" type="html">
  122. <p class="oe_view_nocontent_create">
  123. Click to define a new product.
  124. </p><p>
  125. You must define a product for everything you purchase, whether
  126. it's a physical product, a consumable or services you buy to
  127. subcontractants.
  128. </p><p>
  129. The product form contains detailed information to improve the
  130. purchase process: prices, procurement logistics, accounting data,
  131. available vendors, etc.
  132. </p>
  133. </field>
  134. </record>
  135. </data>
  136. </openerp>