[RFR] l10n_nl_mis_reports -> mis_template_financial_report
parent
9f3c12bbcf
commit
c36d31f900
|
@ -0,0 +1,93 @@
|
|||
===========================================
|
||||
Profit & Loss / Balance sheet MIS templates
|
||||
===========================================
|
||||
|
||||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--reporting--lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/account-financial-reporting/tree/12.0/mis_template_financial_report
|
||||
:alt: OCA/account-financial-reporting
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-mis_template_financial_report
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/176/12.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This addon provides MIS builder templates to generate Dutch style Profit&Loss and Balance Sheet reports.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
Select one of the `Profit & Loss` or `Balance Sheet` templates in a new MIS report.
|
||||
|
||||
For details, refer to the `MIS Builder documentation <https://github.com/OCA/mis-builder/tree/12.0/mis_builder#usage>`_
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
* support horizontal mode for xslx export
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-financial-reporting/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/account-financial-reporting/issues/new?body=module:%20mis_template_financial_report%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* Hunki Enterprises BV
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Holger Brunn <mail@hunki-enterprises.nl> (https://hunki-enterprises.nl)
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
.. |maintainer-hbrunn| image:: https://github.com/hbrunn.png?size=40px
|
||||
:target: https://github.com/hbrunn
|
||||
:alt: hbrunn
|
||||
|
||||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
||||
|
||||
|maintainer-hbrunn|
|
||||
|
||||
This module is part of the `OCA/account-financial-reporting <https://github.com/OCA/account-financial-reporting/tree/12.0/mis_template_financial_report>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@ -0,0 +1 @@
|
|||
from . import models
|
|
@ -0,0 +1,21 @@
|
|||
# Copyright 2020 Hunki Enterprises BV
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
"name": "Profit & Loss / Balance sheet MIS templates",
|
||||
"version": "12.0.1.1.0",
|
||||
"license": "AGPL-3",
|
||||
"author": "Hunki Enterprises BV,Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/account-financial-reporting",
|
||||
"category": "Localization",
|
||||
"depends": ["mis_builder"],
|
||||
"data": [
|
||||
"data/mis_report_style.xml",
|
||||
"data/mis_report.xml",
|
||||
"data/mis_report_kpi.xml",
|
||||
"data/mis_report_subreport.xml",
|
||||
"views/templates.xml",
|
||||
],
|
||||
"qweb": ["static/src/xml/mis_template_financial_report.xml"],
|
||||
"maintainers": ["hbrunn"],
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
<odoo>
|
||||
<record id="report_pl" model="mis.report">
|
||||
<field name="name">Profit & Loss</field>
|
||||
<field name="style_id" ref="style_default" />
|
||||
</record>
|
||||
<record id="report_bs" model="mis.report">
|
||||
<field name="name">Balance Sheet</field>
|
||||
<field name="style_id" ref="style_default" />
|
||||
</record>
|
||||
</odoo>
|
|
@ -0,0 +1,103 @@
|
|||
<odoo>
|
||||
<record id="kpi_loss" model="mis.report.kpi">
|
||||
<field name="name">loss</field>
|
||||
<field name="description">Loss</field>
|
||||
<field
|
||||
name="expression"
|
||||
>balp[('user_type_id', 'in', (ref('account.data_account_type_depreciation').id, ref('account.data_account_type_expenses').id, ref('account.data_account_type_direct_costs').id))][]</field>
|
||||
<field name="auto_expand_accounts">true</field>
|
||||
<field name="auto_expand_accounts_style_id" ref="style_details" />
|
||||
<field name="style_id" ref="style_header" />
|
||||
<field name="type">num</field>
|
||||
<field name="compare_method">diff</field>
|
||||
<field name="accumulation_method">sum</field>
|
||||
<field name="sequence">100</field>
|
||||
<field name="report_id" ref="report_pl" />
|
||||
</record>
|
||||
<record id="kpi_profit" model="mis.report.kpi">
|
||||
<field name="name">profit</field>
|
||||
<field name="description">Profit</field>
|
||||
<field
|
||||
name="expression"
|
||||
>-balp[('user_type_id', 'in', (ref('account.data_account_type_revenue').id, ref('account.data_account_type_other_income').id, ref('account.data_unaffected_earnings').id))][]</field>
|
||||
<field name="auto_expand_accounts">true</field>
|
||||
<field name="auto_expand_accounts_style_id" ref="style_details" />
|
||||
<field name="style_id" ref="style_header" />
|
||||
<field name="type">num</field>
|
||||
<field name="compare_method">diff</field>
|
||||
<field name="accumulation_method">sum</field>
|
||||
<field name="sequence">0</field>
|
||||
<field name="report_id" ref="report_pl" />
|
||||
</record>
|
||||
<record id="kpi_pl_to_report" model="mis.report.kpi">
|
||||
<field name="id">3</field>
|
||||
<field name="name">pl_to_report</field>
|
||||
<field name="description">Profit or loss to report</field>
|
||||
<field name="expression">profit - loss</field>
|
||||
<field name="auto_expand_accounts">false</field>
|
||||
<field name="style_id" ref="style_header" />
|
||||
<field name="type">num</field>
|
||||
<field name="compare_method">diff</field>
|
||||
<field name="accumulation_method">none</field>
|
||||
<field name="sequence">101</field>
|
||||
<field name="report_id" ref="report_pl" />
|
||||
</record>
|
||||
<record id="kpi_liability_total" model="mis.report.kpi">
|
||||
<field name="id">8</field>
|
||||
<field name="name">liability_header</field>
|
||||
<field name="description">Liability</field>
|
||||
<field name="expression">liability + subreport_pl.pl_to_report</field>
|
||||
<field name="auto_expand_accounts">false</field>
|
||||
<field name="style_id" ref="style_header" />
|
||||
<field name="type">num</field>
|
||||
<field name="compare_method">none</field>
|
||||
<field name="accumulation_method">none</field>
|
||||
<field name="sequence">100</field>
|
||||
<field name="report_id" ref="report_bs" />
|
||||
</record>
|
||||
<record id="kpi_liability_pl_subreport" model="mis.report.kpi">
|
||||
<field name="id">7</field>
|
||||
<field name="name">pl</field>
|
||||
<field name="description">Profit / Loss</field>
|
||||
<field name="expression">subreport_pl.pl_to_report</field>
|
||||
<field name="auto_expand_accounts">false</field>
|
||||
<field name="style_id" ref="style_header_indent" />
|
||||
<field name="type">num</field>
|
||||
<field name="compare_method">pct</field>
|
||||
<field name="accumulation_method">sum</field>
|
||||
<field name="sequence">102</field>
|
||||
<field name="report_id" ref="report_bs" />
|
||||
</record>
|
||||
<record id="kpi_liability" model="mis.report.kpi">
|
||||
<field name="id">5</field>
|
||||
<field name="name">liability</field>
|
||||
<field name="description">Liabilities</field>
|
||||
<field
|
||||
name="expression"
|
||||
>-bale[('user_type_id', 'in', (ref('account.data_account_type_payable').id, ref('account.data_account_type_current_liabilities').id, ref('account.data_account_type_non_current_liabilities').id, ref('account.data_account_type_equity').id))][]</field>
|
||||
<field name="auto_expand_accounts">true</field>
|
||||
<field name="auto_expand_accounts_style_id" ref="style_details_double_indent" />
|
||||
<field name="style_id" ref="style_header_indent" />
|
||||
<field name="type">num</field>
|
||||
<field name="compare_method">diff</field>
|
||||
<field name="accumulation_method">sum</field>
|
||||
<field name="sequence">101</field>
|
||||
<field name="report_id" ref="report_bs" />
|
||||
</record>
|
||||
<record id="kpi_assets" model="mis.report.kpi">
|
||||
<field name="id">4</field>
|
||||
<field name="name">assets</field>
|
||||
<field name="description">Assets</field>
|
||||
<field
|
||||
name="expression"
|
||||
>bale[('user_type_id', 'in', (ref('account.data_account_type_receivable').id, ref('account.data_account_type_liquidity').id, ref('account.data_account_type_current_assets').id, ref('account.data_account_type_non_current_assets').id, ref('account.data_account_type_fixed_assets').id))][]</field>
|
||||
<field name="auto_expand_accounts">true</field>
|
||||
<field name="auto_expand_accounts_style_id" ref="style_details" />
|
||||
<field name="style_id" ref="style_header" />
|
||||
<field name="type">num</field>
|
||||
<field name="compare_method">diff</field>
|
||||
<field name="accumulation_method">sum</field>
|
||||
<field name="sequence">0</field>
|
||||
<field name="report_id" ref="report_bs" />
|
||||
</record>
|
||||
</odoo>
|
|
@ -0,0 +1,31 @@
|
|||
<odoo>
|
||||
<record id="style_default" model="mis.report.style">
|
||||
<field name="name">PL/BS default</field>
|
||||
<field name="dp_inherit">false</field>
|
||||
<field name="dp">2</field>
|
||||
<field name="hide_empty_inherit">false</field>
|
||||
<field name="hide_empty">true</field>
|
||||
</record>
|
||||
<record id="style_header" model="mis.report.style">
|
||||
<field name="name">PL/BS header</field>
|
||||
<field name="font_weight_inherit">false</field>
|
||||
<field name="font_weight">bold</field>
|
||||
</record>
|
||||
<record id="style_details_double_indent" model="mis.report.style">
|
||||
<field name="name">PL/BS double indented details</field>
|
||||
<field name="indent_level_inherit">false</field>
|
||||
<field name="indent_level">2</field>
|
||||
</record>
|
||||
<record id="style_header_indent" model="mis.report.style">
|
||||
<field name="name">PL/BS indented header</field>
|
||||
<field name="font_weight_inherit">false</field>
|
||||
<field name="font_weight">bold</field>
|
||||
<field name="indent_level_inherit">false</field>
|
||||
<field name="indent_level">1</field>
|
||||
</record>
|
||||
<record id="style_details" model="mis.report.style">
|
||||
<field name="name">PL/BS details</field>
|
||||
<field name="indent_level_inherit">false</field>
|
||||
<field name="indent_level">1</field>
|
||||
</record>
|
||||
</odoo>
|
|
@ -0,0 +1,7 @@
|
|||
<odoo>
|
||||
<record id="subreport_pl" model="mis.report.subreport">
|
||||
<field name="report_id" ref="report_bs" />
|
||||
<field name="subreport_id" ref="report_pl" />
|
||||
<field name="name">subreport_pl</field>
|
||||
</record>
|
||||
</odoo>
|
|
@ -0,0 +1 @@
|
|||
from . import mis_report_instance
|
|
@ -0,0 +1,81 @@
|
|||
# Copyright 2020 Hunki Enterprises BV
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
import copy
|
||||
from collections import OrderedDict
|
||||
|
||||
from odoo import api, models
|
||||
|
||||
|
||||
class MisReportInstance(models.Model):
|
||||
_inherit = "mis.report.instance"
|
||||
|
||||
@api.multi
|
||||
def compute(self):
|
||||
if not self._is_horizontal():
|
||||
return super().compute()
|
||||
|
||||
full_matrix = self._compute_matrix()
|
||||
|
||||
matrices = self._compute_horizontal_matrices(full_matrix)
|
||||
|
||||
result = full_matrix.as_dict()
|
||||
result["horizontal_matrices"] = [
|
||||
extra_matrix.as_dict() for extra_matrix in matrices
|
||||
]
|
||||
|
||||
return result
|
||||
|
||||
@api.multi
|
||||
def _is_horizontal(self):
|
||||
"""Determine if the report template is a horizontal one"""
|
||||
self.ensure_one()
|
||||
return set(self.report_id.get_external_id().values()) & {
|
||||
"mis_template_financial_report.report_bs",
|
||||
"mis_template_financial_report.report_pl",
|
||||
}
|
||||
|
||||
@api.multi
|
||||
def _compute_horizontal_matrices(self, matrix=None):
|
||||
"""Compute the matrix (if not passed) and return the split versions"""
|
||||
return self._split_matrix(
|
||||
matrix or self._compute_matrix(),
|
||||
[
|
||||
(
|
||||
self.env.ref("mis_template_financial_report.kpi_profit"),
|
||||
self.env.ref("mis_template_financial_report.kpi_pl_to_report"),
|
||||
self.env.ref("mis_template_financial_report.kpi_assets"),
|
||||
)
|
||||
],
|
||||
)
|
||||
|
||||
@api.multi
|
||||
def _split_matrix(self, original_matrix, kpi_defs=None, keep_remaining=True):
|
||||
"""Split a matrix by duplicating it as shallowly as possible and removing
|
||||
rows according to kpi_defs
|
||||
|
||||
KPIs not listed there will end up together in the last matrix if
|
||||
`keep_remaining` is set.
|
||||
|
||||
:param kpi_defs: [(kpi_first_matrix1, ...), (kpi_second_matrix1, ...)]
|
||||
:return: list of KpiMatrix
|
||||
"""
|
||||
result = []
|
||||
remaining_rows = original_matrix._kpi_rows.copy()
|
||||
|
||||
for kpis in kpi_defs:
|
||||
matrix = copy.copy(original_matrix)
|
||||
matrix._kpi_rows = OrderedDict(
|
||||
[
|
||||
(kpi, remaining_rows.pop(kpi))
|
||||
for kpi in kpis
|
||||
if kpi in remaining_rows
|
||||
]
|
||||
)
|
||||
result.append(matrix)
|
||||
|
||||
if remaining_rows and keep_remaining:
|
||||
matrix = copy.copy(original_matrix)
|
||||
matrix._kpi_rows = remaining_rows
|
||||
result.append(matrix)
|
||||
|
||||
return result
|
|
@ -0,0 +1 @@
|
|||
* Holger Brunn <mail@hunki-enterprises.nl> (https://hunki-enterprises.nl)
|
|
@ -0,0 +1 @@
|
|||
This addon provides MIS builder templates to generate generic Profit & Loss and Balance Sheet reports.
|
|
@ -0,0 +1 @@
|
|||
* support horizontal mode for xslx export
|
|
@ -0,0 +1,3 @@
|
|||
Select one of the `Profit & Loss` or `Balance Sheet` templates in a new MIS report.
|
||||
|
||||
For details, refer to the `MIS Builder documentation <https://github.com/OCA/mis-builder/tree/12.0/mis_builder#usage>`_
|
Binary file not shown.
After Width: | Height: | Size: 9.2 KiB |
|
@ -0,0 +1,434 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
|
||||
<title>Dutch MIS Builder templates</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="dutch-mis-builder-templates">
|
||||
<h1 class="title">Dutch MIS Builder templates</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/account-financial-reporting/tree/12.0/mis_template_financial_report"><img alt="OCA/account-financial-reporting" src="https://img.shields.io/badge/github-OCA%2Faccount--financial--reporting-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-mis_template_financial_report"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/176/12.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This addon provides MIS builder templates to generate Dutch style Profit&Loss and Balance Sheet reports.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#usage" id="id1">Usage</a></li>
|
||||
<li><a class="reference internal" href="#known-issues-roadmap" id="id2">Known issues / Roadmap</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id3">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id4">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id5">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id6">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id7">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#id1">Usage</a></h1>
|
||||
<p>Select one of the <cite>Profit & Loss</cite> or <cite>Balance Sheet</cite> templates in a new MIS report.</p>
|
||||
<p>For details, refer to the <a class="reference external" href="https://github.com/OCA/mis-builder/tree/12.0/mis_builder#usage">MIS Builder documentation</a></p>
|
||||
</div>
|
||||
<div class="section" id="known-issues-roadmap">
|
||||
<h1><a class="toc-backref" href="#id2">Known issues / Roadmap</a></h1>
|
||||
<ul class="simple">
|
||||
<li>support horizontal mode for xslx export</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-financial-reporting/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/account-financial-reporting/issues/new?body=module:%20mis_template_financial_report%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#id4">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#id5">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Hunki Enterprises BV</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#id6">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Holger Brunn <<a class="reference external" href="mailto:mail@hunki-enterprises.nl">mail@hunki-enterprises.nl</a>> (<a class="reference external" href="https://hunki-enterprises.nl">https://hunki-enterprises.nl</a>)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#id7">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
|
||||
<p><a class="reference external" href="https://github.com/hbrunn"><img alt="hbrunn" src="https://github.com/hbrunn.png?size=40px" /></a></p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/account-financial-reporting/tree/12.0/mis_template_financial_report">OCA/account-financial-reporting</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,7 @@
|
|||
.oe_mis_builder_content div.mis_builder_horizontal {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
}
|
||||
.oe_mis_builder_content div.mis_builder_horizontal .table {
|
||||
width: 50%;
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
div.mis_builder_horizontal {
|
||||
display: table;
|
||||
width: 100%;
|
||||
}
|
||||
div.mis_builder_horizontal > div {
|
||||
display: table-row;
|
||||
}
|
||||
div.mis_builder_horizontal > div > div {
|
||||
display: table-cell;
|
||||
padding: 2px;
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
<template>
|
||||
<t t-extend="MisReportWidgetTemplate">
|
||||
<t t-jquery="table.mis_builder">
|
||||
var $full_table = jQuery(this);
|
||||
var $wrapper = jQuery(
|
||||
'<div />'
|
||||
).addClass('mis_builder_horizontal').insertAfter($full_table);
|
||||
var $table = $full_table.clone().appendTo($wrapper);
|
||||
$table.attr({
|
||||
't-foreach': 'widget.mis_report_data.horizontal_matrices || []',
|
||||
't-as': 'matrix',
|
||||
});
|
||||
$table.find('tr[t-foreach="widget.mis_report_data.header"]').attr(
|
||||
't-foreach', 'matrix.header'
|
||||
);
|
||||
$table.find('tr[t-foreach="widget.mis_report_data.body"]').attr(
|
||||
't-foreach', 'matrix.body'
|
||||
);
|
||||
$full_table.attr('t-if', '!widget.mis_report_data.horizontal_matrices');
|
||||
</t>
|
||||
</t>
|
||||
</template>
|
|
@ -0,0 +1 @@
|
|||
from . import test_mis_template_financial_report
|
|
@ -0,0 +1,15 @@
|
|||
# Copyright 2020 Hunki Enterprises BV
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from odoo.addons.mis_builder.tests.test_mis_report_instance import TestMisReportInstance
|
||||
|
||||
|
||||
class TestMisTemplateFinancialReport(TestMisReportInstance):
|
||||
def test_mis_template_financial_report(self):
|
||||
instance = self.env["mis.report.instance"].create(
|
||||
{
|
||||
"name": "Balance Sheet",
|
||||
"report_id": self.env.ref("mis_template_financial_report.report_bs").id,
|
||||
}
|
||||
)
|
||||
result_dict = instance.compute()
|
||||
self.assertEqual(len(result_dict.get("horizontal_matrices", [])), 2)
|
|
@ -0,0 +1,58 @@
|
|||
<odoo>
|
||||
<template id="assets_backend" inherit_id="web.assets_backend">
|
||||
<xpath expr="." position="inside">
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="/mis_template_financial_report/static/src/css/mis_template_financial_report.css"
|
||||
/>
|
||||
</xpath>
|
||||
</template>
|
||||
<template id="report_assets_common" inherit_id="web.report_assets_common">
|
||||
<xpath expr="." position="inside">
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="/mis_template_financial_report/static/src/css/report.css"
|
||||
/>
|
||||
</xpath>
|
||||
</template>
|
||||
<template
|
||||
id="report_mis_report_instance"
|
||||
inherit_id="mis_builder.report_mis_report_instance"
|
||||
>
|
||||
<xpath expr="//div[hasclass('mis_table')]" position="attributes">
|
||||
<attribute name="t-if">not o._is_horizontal()</attribute>
|
||||
</xpath>
|
||||
<!-- the following is a somewhat convoluted way to duplicate the table /-->
|
||||
<xpath expr="//div[hasclass('mis_table')]" position="replace">
|
||||
<t t-marker="unwrap">$0</t>
|
||||
<t t-marker="wrap_in_table">$0</t>
|
||||
</xpath>
|
||||
<xpath expr="//t[@t-marker='unwrap']" position="before">
|
||||
<xpath
|
||||
expr="//t[@t-marker='unwrap']/div[hasclass('mis_table')]"
|
||||
position="move"
|
||||
/>
|
||||
</xpath>
|
||||
<xpath expr="//t[@t-marker='unwrap']" position="replace" />
|
||||
<xpath expr="//t[@t-marker='wrap_in_table']" position="after">
|
||||
<div t-if="o._is_horizontal()" class="mis_builder_horizontal">
|
||||
<div>
|
||||
<div t-foreach="o._compute_horizontal_matrices()" t-as="matrix" />
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
<xpath
|
||||
expr="//div[hasclass('mis_builder_horizontal')]/div/div"
|
||||
position="inside"
|
||||
>
|
||||
<xpath expr="//t[@t-marker='wrap_in_table']/div" position="move" />
|
||||
</xpath>
|
||||
<xpath expr="//t[@t-marker='wrap_in_table']" position="replace" />
|
||||
<xpath
|
||||
expr="//div[hasclass('mis_builder_horizontal')]//div[hasclass('mis_table')]"
|
||||
position="attributes"
|
||||
>
|
||||
<attribute name="t-if" />
|
||||
</xpath>
|
||||
</template>
|
||||
</odoo>
|
Loading…
Reference in New Issue