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.

107 lines
5.6 KiB

  1. <openerp>
  2. <data>
  3. <record id="operation_request_tree" model="ir.ui.view">
  4. <field name="name">operation.request.tree</field>
  5. <field name="model">operation.request</field>
  6. <field name="arch" type="xml">
  7. <tree string="Operation requests" colors="green:state in ('approved'); blue:state in ('draft');grey: state in ('done')">
  8. <field name="request_date"/>
  9. <field name="partner_id"/>
  10. <field name="operation_type"/>
  11. <field name="quantity"/>
  12. <field name="user_id"/>
  13. <field name="state"/>
  14. </tree>
  15. </field>
  16. </record>
  17. <record id="operation_request_form" model="ir.ui.view">
  18. <field name="name">operation.request.form</field>
  19. <field name="model">operation.request</field>
  20. <field name="arch" type="xml">
  21. <form string="Operation request">
  22. <header>
  23. <button string="Submit" type="object" name="submit_operation" states="draft"/>
  24. <button string="Approve" type="object" name="approve_operation" states="waiting"/>
  25. <button string="Refuse" type="object" name="refuse_operation" states="waiting"/>
  26. <button string="Cancel" type="object" name="cancel_operation" states="draft,waiting,approved"/>
  27. <button string="Draft" type="object" name="reset_to_draft" states="waiting,cancelled"/>
  28. <button string="Execute" type="object" name="execute_operation" states="approved"/>
  29. <field name="state" widget="statusbar" statusbar_visible="draft,done,cancelled,refused" statusbar_colors='{"draft":"grey","done":"green","cancelled":"orange","refused":"red"}'/>
  30. </header>
  31. <sheet>
  32. <group>
  33. <group>
  34. <field name="request_date" attrs="{'readonly':[('state','!=','draft')]}"/>
  35. <field name="effective_date" attrs="{'readonly':[('state','!=','draft')]}"/>
  36. <field name="operation_type" attrs="{'readonly':[('state','!=','draft')]}"/>
  37. <field name="receiver_not_member" attrs="{'invisible':[('operation_type','!=','transfer')],'readonly':[('state','!=','draft')]}"/>
  38. <field name="partner_id" options="{'no_create':True}" attrs="{'readonly':[('state','!=','draft')]}"/>
  39. <field name="partner_id_to" options="{'no_create':True}" attrs="{'invisible':['|',('operation_type','!=','transfer'), ('receiver_not_member','=',True)],'readonly':[('state','!=','draft')]}"/>
  40. </group>
  41. <group>
  42. <field name="user_id"/>,
  43. <field name="share_product_id" attrs="{'readonly':[('state','!=','draft')]}" widget="selection"/>
  44. <field name="share_short_name" readonly="True"/>
  45. <field name="share_to_product_id" attrs="{'invisible':[('operation_type','!=','convert')],'required':[('operation_type','=','convert')],'readonly':[('state','!=','draft')]}" widget="selection"/>
  46. <field name="share_to_short_name" readonly="True"/>
  47. <field name="quantity" attrs="{'readonly':[('state','!=','draft')]}"/>
  48. <field name="share_unit_price" readonly="True"/>
  49. <field name="subscription_amount" readonly="True" />
  50. </group>
  51. </group>
  52. <group>
  53. <field name="subscription_request" attrs="{'invisible':['|',('operation_type','!=','transfer'),('receiver_not_member','=',False)]}" context="{'default_is_operation': True, 'default_ordered_parts':quantity,'default_share_product_id': share_product_id, 'default_source':'operation'}">
  54. <tree>
  55. <field name="name"/>
  56. <field name="email"/>
  57. <field name="birthdate"/>
  58. <field name="phone"/>
  59. <field name="iban"/>
  60. <field name="state" invisible="True"/>
  61. </tree>
  62. <form string="Subscription Requests">
  63. <sheet>
  64. <group>
  65. <group>
  66. <field name="name"/>
  67. <field name="firstname"/>
  68. <field name="lastname"/>
  69. <field name="email"/>
  70. <field name="birthdate"/>
  71. <field name="gender"/>
  72. <field name="phone"/>
  73. <field name="iban"/>
  74. </group>
  75. <group>
  76. <field name="address"/>
  77. <field name="zip_code"/>
  78. <field name="city"/>
  79. <field name="country_id"/>
  80. <field name="lang"/>
  81. <field name="validated"/>
  82. <field name="skip_control_ng"/>
  83. <field name="ordered_parts" invisible="True"/>
  84. <field name="source" invisible="True"/>
  85. <field name="state" invisible="True"/>
  86. <field name="share_product_id" invisible="True"/>
  87. </group>
  88. </group>
  89. </sheet>
  90. </form>
  91. </field>
  92. </group>
  93. </sheet>
  94. </form>
  95. </field>
  96. </record>
  97. <record id="operation_request_action" model="ir.actions.act_window">
  98. <field name="name">Operation request</field>
  99. <field name="res_model">operation.request</field>
  100. <field name="view_type">form</field>
  101. <field name="view_id" ref="operation_request_tree"/>
  102. </record>
  103. </data>
  104. </openerp>