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.

211 lines
11 KiB

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