Skip to content

Commit

Permalink
Merge fc7e3e3 into c208f46
Browse files Browse the repository at this point in the history
  • Loading branch information
feketemihai committed Mar 7, 2018
2 parents c208f46 + fc7e3e3 commit f146e47
Show file tree
Hide file tree
Showing 24 changed files with 2,017 additions and 1 deletion.
65 changes: 65 additions & 0 deletions l10n_ro_report_trial_balance/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

======================================
Romania - Account Trial Balance Report
======================================

This module adds trial balance report, in romanian format.
They report is accessible under Accounting / Reporting / Romania / Trial Balance.

Installation
============

To install this module, you need to:

* clone the branch 11.0 of the repository https://github.com/OCA/l10n-romania
* add the path to this repository in your configuration (addons-path)
* update the module list
* search for "Romania - Account Trial Balance Report" in your addons
* install the module

Usage
=====

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/177/11.0

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-romania/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smash it by providing detailed and welcomed feedback.

Credits
=======

Images
------

* Odoo Community Association: `Icon <https://odoo-community.org/logo.png>`_.

Contributors
------------

* Fekete Mihai <feketemihai@gmail.com>

Do not contact contributors directly about support or help with technical issues.

Maintainer
----------

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

This module is maintained by the OCA.

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.

To contribute to this module, please visit https://odoo-community.org.
2 changes: 2 additions & 0 deletions l10n_ro_report_trial_balance/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import report
from . import wizards
23 changes: 23 additions & 0 deletions l10n_ro_report_trial_balance/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2018 Forest and Biomass Romania
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
'name': 'Romania - Account Trial Balance Report',
'summary': 'Romania - Account Trial Balance Report',
'version': '11.0.1.0.0',
'category': 'Localization',
'author': 'Forest and Biomass Romania, '
'Odoo Community Association (OCA)',
'website': 'https://www.forbiom.eu',
'license': 'AGPL-3',
'installable': True,
'depends': ['account', 'account_financial_report', 'l10n_ro'],
'data': [
"views/layouts.xml",
"views/report_template.xml",
"views/report_trial_balance.xml",
"views/trial_balance.xml",
"views/trial_balance_view.xml",
"wizards/trial_balance_wizard_view.xml",
],
}
3 changes: 3 additions & 0 deletions l10n_ro_report_trial_balance/report/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from . import trial_balance
from . import abstract_report_xlsx
from . import trial_balance_xlsx
253 changes: 253 additions & 0 deletions l10n_ro_report_trial_balance/report/abstract_report_xlsx.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,253 @@
# Copyright 2018 Forest and Biomass Romania
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from odoo import models


class AbstractReportXslx(models.AbstractModel):
_name = 'report.romania.trial.balance.abstract_report_xlsx'
_inherit = 'report.report_xlsx.abstract'

def __init__(self, pool, cr):
# main sheet which will contains report
self.sheet = None

# columns of the report
self.columns = None

# row_pos must be incremented at each writing lines
self.row_pos = None

def get_workbook_options(self):
return {'constant_memory': True}

def generate_xlsx_report(self, workbook, data, objects):
report = objects

self.row_pos = 0

self._define_formats(workbook)

comp_data = self._get_report_company_name(report)
report_name = self._get_report_name()
filters = self._get_report_filters(report)
self.columns = self._get_report_columns(report)

self.sheet = workbook.add_worksheet(report_name[:31])

self._set_column_width()

self._write_report_company_data(workbook, comp_data)
self._write_report_title(workbook, report_name)

self._write_filters(workbook, filters)

self._generate_report_content(workbook, report)

def _define_formats(self, workbook):
""" Add cell formats to current workbook.
Those formats can be used on all cell.
Available formats are :
* format_bold
* format_right
* format_right_bold_italic
* format_header_left
* format_header_center
* format_header_right
* format_header_amount
* format_amount
* format_percent_bold_italic
"""
self.format_bold = workbook.add_format({'bold': True})
self.format_right = workbook.add_format({'align': 'right'})
self.format_right_bold_italic = workbook.add_format(
{'align': 'right', 'bold': True, 'italic': True}
)
self.format_header_left = workbook.add_format(
{'bold': True,
'border': True,
'bg_color': '#FFFFCC'})
self.format_header_center = workbook.add_format(
{'bold': True,
'align': 'center',
'border': True,
'bg_color': '#FFFFCC'})
self.format_header_right = workbook.add_format(
{'bold': True,
'align': 'right',
'border': True,
'bg_color': '#FFFFCC'})
self.format_header_amount = workbook.add_format(
{'bold': True,
'border': True,
'bg_color': '#FFFFCC'})
self.format_header_amount.set_num_format('#,##0.00')
self.format_amount = workbook.add_format()
self.format_amount.set_num_format('#,##0.00')
self.format_percent_bold_italic = workbook.add_format(
{'bold': True, 'italic': True}
)
self.format_percent_bold_italic.set_num_format('#,##0.00%')

def _set_column_width(self):
"""Set width for all defined columns.
Columns are defined with `_get_report_columns` method.
"""
for position, column in self.columns.items():
self.sheet.set_column(position, position, column['width'])

def _write_report_company_data(self, workbook, company_name):
"""Write report title on current line using all defined columns width.
Columns are defined with `_get_report_columns` method.
"""
for line in company_name.splitlines():
self.sheet.merge_range(
self.row_pos, 0, self.row_pos, len(self.columns) - 1,
line, workbook.add_format({'bold': True})
)
self.row_pos += 1
self.row_pos += 1

def _write_report_title(self, workbook, title):
"""Write report title on current line using all defined columns width.
Columns are defined with `_get_report_columns` method.
"""
self.sheet.merge_range(
self.row_pos, 0, self.row_pos, len(self.columns) - 1,
title, workbook.add_format({'bold': True})
)
self.row_pos += 3

def _write_filters(self, workbook, filters):
"""Write one line per filters on starting on current line.
Columns number for filter name is defined
with `_get_col_count_filter_name` method.
Columns number for filter value is define
with `_get_col_count_filter_value` method.
"""
col_name = 1
col_count_filter_name = self._get_col_count_filter_name()
col_count_filter_value = self._get_col_count_filter_value()
col_value = col_name + col_count_filter_name + 1
for title, value in filters:
self.sheet.merge_range(
self.row_pos, col_name,
self.row_pos, col_name + col_count_filter_name - 1,
title, workbook.add_format(
{'bold': True,
'border': True,
'bg_color': '#FFFFCC'}))
self.sheet.merge_range(
self.row_pos, col_value,
self.row_pos, col_value + col_count_filter_value - 1,
value)
self.row_pos += 1
self.row_pos += 2

def write_array_title(self, workbook, title):
"""Write array title on current line using all defined columns width.
Columns are defined with `_get_report_columns` method.
"""
self.sheet.merge_range(
self.row_pos, 0, self.row_pos, len(self.columns) - 1,
title, workbook.add_format({'bold': True})
)
self.row_pos += 1

def write_array_header(self, workbook):
"""Write array header on current line using all defined columns name.
Columns are defined with `_get_report_columns` method.
"""
for col_pos, column in self.columns.items():
self.sheet.write(self.row_pos, col_pos, column['header'],
workbook.add_format(
{'bold': True,
'align': 'center',
'border': True,
'bg_color': '#FFFFCC'}))
self.row_pos += 1

def write_line(self, workbook, line_object, formats):
"""Write a line on current line using all defined columns field name.
Columns are defined with `_get_report_columns` method.
"""
for col_pos, column in self.columns.items():
value = getattr(line_object, column['field'])
cell_type = column.get('type', 'string')
if cell_type == 'string':
self.sheet.write_string(self.row_pos, col_pos, value or '',
workbook.add_format(formats))
elif cell_type == 'amount':
self.sheet.write_number(
self.row_pos, col_pos, float(value),
workbook.add_format(formats)
)
self.row_pos += 1

def _generate_report_content(self, workbook, report):
pass

def _get_report_company_name(self, report):
"""
Allow to define the report company data.
Company data will be printed in columns A1.
:return: the company data
"""
raise NotImplementedError()

def _get_report_name(self):
"""
Allow to define the report name.
Report name will be used as sheet name and as report title.
:return: the report name
"""
raise NotImplementedError()

def _get_report_columns(self, report):
"""
Allow to define the report columns
which will be used to generate report.
:return: the report columns as dict
:Example:
{
0: {'header': 'Simple column',
'field': 'field_name_on_my_object',
'width': 11},
1: {'header': 'Amount column',
'field': 'field_name_on_my_object',
'type': 'amount',
'width': 14},
}
"""
raise NotImplementedError()

def _get_report_filters(self, report):
"""
:return: the report filters as list
:Example:
[
['first_filter_name', 'first_filter_value'],
['second_filter_name', 'second_filter_value']
]
"""
raise NotImplementedError()

def _get_col_count_filter_name(self):
"""
:return: the columns number used for filter names.
"""
raise NotImplementedError()

def _get_col_count_filter_value(self):
"""
:return: the columns number used for filter values.
"""
raise NotImplementedError()

0 comments on commit f146e47

Please sign in to comment.