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.

155 lines
8.3 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="product_template_only_form_view" model="ir.ui.view">
  38. <field name="name">product.template.product.form</field>
  39. <field name="model">product.template</field>
  40. <field name="inherit_id" ref="product.product_template_only_form_view"/>
  41. <field name="arch" type="xml">
  42. <field name="default_code" position="attributes">
  43. <attribute name="attrs">{'required': [('is_share', '=', True)]}</attribute>
  44. </field>
  45. </field>
  46. </record>
  47. <record id="share_product_action" model="ir.actions.act_window">
  48. <field name="name">Share type</field>
  49. <field name="type">ir.actions.act_window</field>
  50. <field name="res_model">product.template</field>
  51. <field name="view_type">form</field>
  52. <field name="view_mode">kanban,tree,form</field>
  53. <!-- <field name="context">{"search_default_filter_to_purchase":1}</field> -->
  54. <field name="search_view_id" eval="False"/> <!-- Force empty -->
  55. <field name="view_id" eval="False"/> <!-- Force empty -->
  56. <field name="domain">[('is_share','=',True)]</field>
  57. <field name="help" type="html">
  58. <p class="oe_view_nocontent_create">
  59. Click to define a new share product.
  60. </p>
  61. </field>
  62. </record>
  63. <!-- overriding product views to not display share product in the purchase and sale views-->
  64. <record id="product.product_normal_action" model="ir.actions.act_window">
  65. <field name="name">Product</field>
  66. <field name="type">ir.actions.act_window</field>
  67. <field name="res_model">product.product</field>
  68. <field name="view_mode">tree,form,kanban</field>
  69. <field name="view_type">form</field>
  70. <field name="search_view_id" ref="product.product_search_form_view"/>
  71. <field name="view_id" eval="False"/> <!-- Force empty -->
  72. <field name="domain">[('is_share','=',False)]</field>
  73. <field name="help" type="html">
  74. <p class="oe_view_nocontent_create">
  75. Click to define a new product.
  76. </p><p>
  77. You must define a product for everything you sell, whether it's
  78. a physical product, a consumable or a service you offer to
  79. customers.
  80. </p><p>
  81. The product form contains information to simplify the sale
  82. process: price, notes in the quotation, accounting data,
  83. procurement methods, etc.
  84. </p>
  85. </field>
  86. </record>
  87. <record id="product.product_template_action" model="ir.actions.act_window">
  88. <field name="name">Products</field>
  89. <field name="type">ir.actions.act_window</field>
  90. <field name="res_model">product.template</field>
  91. <field name="view_mode">tree,form,kanban</field>
  92. <field name="view_type">form</field>
  93. <field name="view_id" ref="product.product_template_kanban_view"/>
  94. <field name="context">{"search_default_filter_to_sell":1}</field>
  95. <field name="domain">[('is_share','=',False)]</field>
  96. <field name="help" type="html">
  97. <p class="oe_view_nocontent_create">
  98. Click to define a new product.
  99. </p><p>
  100. You must define a product for everything you sell, whether it's a physical product, a consumable or a service you offer to customers.
  101. </p><p>
  102. The product form contains information to simplify the sale process: price, notes in the quotation, accounting data, procurement methods, etc.
  103. </p>
  104. </field>
  105. </record>
  106. <record id="product.product_template_action_product" model="ir.actions.act_window">
  107. <field name="name">Products</field>
  108. <field name="type">ir.actions.act_window</field>
  109. <field name="res_model">product.template</field>
  110. <field name="view_mode">tree,form,kanban</field>
  111. <field name="view_type">form</field>
  112. <field name="context">{"search_default_products": 1, 'default_type': 'product'}</field>
  113. <field name="domain">[('is_share','=',False)]</field>
  114. <field name="help" type="html">
  115. <p class="oe_view_nocontent_create">
  116. Click to define a new product.
  117. </p>
  118. </field>
  119. </record>
  120. <record id="product.product_normal_action_puchased" model="ir.actions.act_window">
  121. <field name="name">Products</field>
  122. <field name="type">ir.actions.act_window</field>
  123. <field name="res_model">product.template</field>
  124. <field name="view_type">form</field>
  125. <field name="view_mode">kanban,tree,form</field>
  126. <field name="context">{"search_default_filter_to_purchase":1}</field>
  127. <field name="search_view_id" eval="False"/> <!-- Force empty -->
  128. <field name="view_id" eval="False"/> <!-- Force empty -->
  129. <field name="domain">[('is_share','=',False)]</field>
  130. <field name="help" type="html">
  131. <p class="oe_view_nocontent_create">
  132. Click to define a new product.
  133. </p><p>
  134. You must define a product for everything you purchase, whether
  135. it's a physical product, a consumable or services you buy to
  136. subcontractants.
  137. </p><p>
  138. The product form contains detailed information to improve the
  139. purchase process: prices, procurement logistics, accounting data,
  140. available vendors, etc.
  141. </p>
  142. </field>
  143. </record>
  144. </data>
  145. </openerp>