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.

201 lines
11 KiB

10 years ago
10 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <template id="assets_backend" name="mis_builder" inherit_id="web.assets_backend">
  5. <xpath expr="." position="inside">
  6. <link rel="stylesheet" href="/mis_builder/static/src/css/custom.css"/>
  7. <script type="text/javascript" src="/mis_builder/static/src/js/mis_builder.js"></script>
  8. </xpath>
  9. </template>
  10. <record model="ir.ui.view" id="mis_report_view_tree">
  11. <field name="name">mis.report.view.tree</field>
  12. <field name="model">mis.report</field>
  13. <field name="arch" type="xml">
  14. <tree string="MIS Reports">
  15. <field name="name"/>
  16. <field name="description"/>
  17. </tree>
  18. </field>
  19. </record>
  20. <record model="ir.ui.view" id="mis_report_view_form">
  21. <field name="name">mis.report.view.form</field>
  22. <field name="model">mis.report</field>
  23. <field name="arch" type="xml">
  24. <form string="MIS Report" version="7.0">
  25. <sheet>
  26. <group col="2">
  27. <field name="name"/>
  28. <field name="description"/>
  29. <field name="query_ids">
  30. <tree string="Queries" editable="bottom">
  31. <field name="name"/>
  32. <field name="model_id"/>
  33. <field name="field_ids" domain="[('model_id', '=', model_id)]" widget="many2many_tags"
  34. on_change="onchange_field_ids(field_ids, context)"/>
  35. <field name="field_names"/>
  36. <field name="aggregate"/>
  37. <field name="date_field" domain="[('model_id', '=', model_id), ('ttype', 'in', ('date', 'datetime'))]"/>
  38. <field name="domain"/>
  39. </tree>
  40. </field>
  41. <field name="kpi_ids">
  42. <tree string="KPI's" editable="bottom">
  43. <field name="sequence" widget="handle"/>
  44. <field name="description" on_change="onchange_description(description, name, context)"/>
  45. <field name="name" on_change="onchange_name(name, context)"/>
  46. <field name="expression"/>
  47. <field name="type" on_change="onchange_type(type, context)"/>
  48. <field name="dp" attrs="{'invisible': [('type', '=', 'str')]}"/>
  49. <field name="divider" attrs="{'invisible': [('type', '=', 'str')]}"/>
  50. <field name="suffix"/>
  51. <field name="compare_method" attrs="{'invisible': [('type', '=', 'str')]}"/>
  52. <field name="default_css_style"/>
  53. <field name="css_style"/>
  54. </tree>
  55. </field>
  56. </group>
  57. <group col="2" string="Legend (for expression)">
  58. <group>
  59. <label colspan="2" string="Expressions are of the form &lt;field&gt;&lt;mode&gt;[accounts][domain]"/>
  60. <label colspan="2" string="Possible values for 'field' can be:"/>
  61. <group>
  62. <label colspan="2" string="* bal for balance (debit - credit)"/>
  63. <label colspan="2" string="* crd for credit"/>
  64. <label colspan="2" string="* deb for debit"/>
  65. </group>
  66. <label colspan="2" string="Possible values for 'mode' are:"/>
  67. <group>
  68. <label colspan="2" string="* nothing or p: variation over the period"/>
  69. <label colspan="2" string="* i: at the beginning of the period"/>
  70. <label colspan="2" string="* e: at the end of the period"/>
  71. </group>
  72. <label colspan="2" string="'accounts' is a comma-separated list of account codes, possibly containing %% wildcards"/>
  73. <label colspan="2" string="'domain' is an optional filter on move lines (eg to filter on analytic accounts or journal)"/>
  74. </group>
  75. <group>
  76. <label colspan="2" string="Examples"/>
  77. <group>
  78. <label colspan="2" string="* bal[70]: variation of the balance of account 70 over the period (it is the same as balp[70]);"/>
  79. <label colspan="2" string="* bali[70,60]: initial balance of accounts 70 and 60;"/>
  80. <label colspan="2" string="* bale[1%%]: balance of accounts starting with 1 at end of period."/>
  81. </group>
  82. </group>
  83. </group>
  84. </sheet>
  85. </form>
  86. </field>
  87. </record>
  88. <record model="ir.actions.act_window" id="mis_report_view_action">
  89. <field name="name">MIS Report Templates</field>
  90. <field name="view_id" ref="mis_report_view_tree"/>
  91. <field name="res_model">mis.report</field>
  92. <field name="view_type">form</field>
  93. <field name="view_mode">tree,form</field>
  94. </record>
  95. <menuitem id="mis_report_view_menu" parent="account.menu_account_reports" name="MIS Report Templates" action="mis_report_view_action" sequence="21"/>
  96. <record id="xls_export" model="ir.actions.report.xml">
  97. <field name="name">Export report instance result</field>
  98. <field name="model">mis.report.instance</field>
  99. <field name="type">ir.actions.report.xml</field>
  100. <field name="report_name">mis.report.instance.xls</field>
  101. <field name="report_type">xls</field>
  102. <field name="auto" eval="False"/>
  103. </record>
  104. <record model="ir.ui.view" id="mis_report_instance_result_view_form">
  105. <field name="name">mis.report.instance.result.view.form</field>
  106. <field name="model">mis.report.instance</field>
  107. <field name="priority" eval="17"/>
  108. <field name="arch" type="xml">
  109. <form string="MIS Report Result" version="7.0">
  110. <widget type="mis_report"></widget>
  111. <button icon="gtk-execute" name="%(xls_export)d" string="XLS Export" type="action" colspan="2"/>
  112. </form>
  113. </field>
  114. </record>
  115. <record model="ir.ui.view" id="mis_report_instance_view_tree">
  116. <field name="name">mis.report.instance.view.tree</field>
  117. <field name="model">mis.report.instance</field>
  118. <field name="arch" type="xml">
  119. <tree string="MIS Report Instances">
  120. <field name="name"/>
  121. <field name="description"/>
  122. <field name="report_id"/>
  123. <field name="target_move"/>
  124. <field name="pivot_date"/>
  125. <field name="company_id"/>
  126. </tree>
  127. </field>
  128. </record>
  129. <record model="ir.ui.view" id="mis_report_instance_view_form">
  130. <field name="name">mis.report.instance.view.form</field>
  131. <field name="model">mis.report.instance</field>
  132. <field name="priority" eval="16"/>
  133. <field name="arch" type="xml">
  134. <form string="MIS Report Instance" version="7.0">
  135. <sheet>
  136. <div class="oe_title">
  137. <div class="oe_edit_only">
  138. <label for="name"/>
  139. </div>
  140. <h1>
  141. <field name="name" placeholder="Name"/>
  142. </h1>
  143. </div>
  144. <div class="oe_right oe_button_box" name="buttons">
  145. <button type="object" name="preview" string="Preview" icon="gtk-print-preview" />
  146. <button type="action" name="%(xls_export)d" string="XLS Export" icon="gtk-execute" />
  147. <button type="action" name="%(mis_report_instance_add_to_dashboard_action)d" string="Add to dashboard" icon="gtk-add" />
  148. </div>
  149. <group col="2">
  150. <field name="description"/>
  151. <field name="report_id"/>
  152. <field name="company_id" groups="base.group_multi_company"/>
  153. <field name="root_account"/>
  154. <field name="target_move"/>
  155. <field name="date"/>
  156. <field name="period_ids">
  157. <tree string="KPI's" editable="bottom" colors="red:valid==False">
  158. <field name="sequence" widget="handle"/>
  159. <field name="name"/>
  160. <field name="type"/>
  161. <field name="offset"/>
  162. <field name="duration"/>
  163. <field name="normalize_factor"/>
  164. <field name="date_from"/>
  165. <field name="date_to"/>
  166. <field name="period_from"/>
  167. <field name="period_to"/>
  168. <field name="valid" invisible="1"/>
  169. <field name="report_instance_id" invisible="1"/>
  170. <field name="id" invisible="1"/>
  171. <field name="comparison_column_ids" domain="[('report_instance_id', '=', report_instance_id), ('id', '!=', id)]" widget="many2many_tags"/>
  172. <field name="company_id" groups="base.group_multi_company"/>
  173. </tree>
  174. </field>
  175. </group>
  176. </sheet>
  177. </form>
  178. </field>
  179. </record>
  180. <record model="ir.actions.act_window" id="mis_report_instance_view_action">
  181. <field name="name">MIS Reports</field>
  182. <field name="view_id" ref="mis_report_instance_view_tree"/>
  183. <field name="res_model">mis.report.instance</field>
  184. <field name="view_type">form</field>
  185. <field name="view_mode">tree,form</field>
  186. </record>
  187. <menuitem id="mis_report_instance_view_menu" parent="account.menu_finance_reports" name="MIS Reports" action="mis_report_instance_view_action" sequence="101"/>
  188. </data>
  189. </openerp>