2021-12-19 03:11:29 +00:00
|
|
|
# Author: Christopher Ormaza
|
|
|
|
# Copyright 2021 ForgeFlow S.L.
|
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
|
2023-05-19 08:19:18 +00:00
|
|
|
from flectra import _, models
|
2021-12-19 03:11:29 +00:00
|
|
|
|
|
|
|
from flectra.addons.report_xlsx_helper.report.report_xlsx_format import FORMATS
|
|
|
|
|
|
|
|
|
2023-05-19 08:19:18 +00:00
|
|
|
def copy_format(book, fmt):
|
|
|
|
properties = [f[4:] for f in dir(fmt) if f[0:4] == "set_"]
|
|
|
|
dft_fmt = book.add_format()
|
|
|
|
return book.add_format(
|
|
|
|
{
|
|
|
|
k: v
|
|
|
|
for k, v in fmt.__dict__.items()
|
|
|
|
if k in properties and dft_fmt.__dict__[k] != v
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-12-19 03:11:29 +00:00
|
|
|
class ActivityStatementXslx(models.AbstractModel):
|
|
|
|
_name = "report.p_s.report_activity_statement_xlsx"
|
|
|
|
_description = "Activity Statement XLSL Report"
|
|
|
|
_inherit = "report.report_xlsx.abstract"
|
|
|
|
|
|
|
|
def _get_report_name(self, report, data=False):
|
|
|
|
company_id = data.get("company_id", False)
|
|
|
|
report_name = _("Activity Statement")
|
|
|
|
if company_id:
|
|
|
|
company = self.env["res.company"].browse(company_id)
|
|
|
|
suffix = " - {} - {}".format(company.name, company.currency_id.name)
|
|
|
|
report_name = report_name + suffix
|
|
|
|
return report_name
|
|
|
|
|
|
|
|
def _write_currency_lines(self, row_pos, sheet, partner, currency, data):
|
|
|
|
partner_data = data.get("data", {}).get(partner.id, {})
|
|
|
|
currency_data = partner_data.get("currencies", {}).get(currency.id)
|
|
|
|
account_type = data.get("account_type", False)
|
|
|
|
row_pos += 2
|
2023-05-19 08:19:18 +00:00
|
|
|
statement_header = _("%sStatement between %s and %s in %s") % (
|
|
|
|
account_type == "payable" and _("Supplier ") or "",
|
|
|
|
partner_data.get("start"),
|
|
|
|
partner_data.get("end"),
|
|
|
|
currency.display_name,
|
2021-12-19 03:11:29 +00:00
|
|
|
)
|
|
|
|
sheet.merge_range(
|
2023-05-19 08:19:18 +00:00
|
|
|
row_pos, 0, row_pos, 6, statement_header, FORMATS["format_left_bold"]
|
2021-12-19 03:11:29 +00:00
|
|
|
)
|
|
|
|
row_pos += 1
|
|
|
|
sheet.write(
|
|
|
|
row_pos, 0, _("Reference Number"), FORMATS["format_theader_yellow_center"]
|
|
|
|
)
|
|
|
|
sheet.write(row_pos, 1, _("Date"), FORMATS["format_theader_yellow_center"])
|
|
|
|
sheet.merge_range(
|
|
|
|
row_pos,
|
|
|
|
2,
|
|
|
|
row_pos,
|
2023-05-19 08:19:18 +00:00
|
|
|
3,
|
2021-12-19 03:11:29 +00:00
|
|
|
_("Description"),
|
|
|
|
FORMATS["format_theader_yellow_center"],
|
|
|
|
)
|
|
|
|
sheet.write(
|
2023-05-19 08:19:18 +00:00
|
|
|
row_pos, 4, _("Original Amount"), FORMATS["format_theader_yellow_center"]
|
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos, 5, _("Applied Amount"), FORMATS["format_theader_yellow_center"]
|
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos, 6, _("Open Amount"), FORMATS["format_theader_yellow_center"]
|
2021-12-19 03:11:29 +00:00
|
|
|
)
|
|
|
|
row_pos += 1
|
|
|
|
sheet.write(
|
2023-05-19 08:19:18 +00:00
|
|
|
row_pos, 1, partner_data.get("prior_day"), FORMATS["format_tcell_date_left"]
|
2021-12-19 03:11:29 +00:00
|
|
|
)
|
|
|
|
sheet.merge_range(
|
2023-05-19 08:19:18 +00:00
|
|
|
row_pos, 2, row_pos, 5, _("Balance Forward"), FORMATS["format_tcell_left"]
|
2021-12-19 03:11:29 +00:00
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
6,
|
|
|
|
currency_data.get("balance_forward"),
|
|
|
|
FORMATS["current_money_format"],
|
|
|
|
)
|
2023-05-19 08:19:18 +00:00
|
|
|
format_tcell_left = FORMATS["format_tcell_left"]
|
|
|
|
format_tcell_date_left = FORMATS["format_tcell_date_left"]
|
|
|
|
format_distributed = FORMATS["format_distributed"]
|
|
|
|
current_money_format = FORMATS["current_money_format"]
|
2021-12-19 03:11:29 +00:00
|
|
|
for line in currency_data.get("lines"):
|
2023-05-19 08:19:18 +00:00
|
|
|
if line.get("blocked"):
|
|
|
|
format_tcell_left = FORMATS["format_tcell_left_blocked"]
|
|
|
|
format_tcell_date_left = FORMATS["format_tcell_date_left_blocked"]
|
|
|
|
format_distributed = FORMATS["format_distributed_blocked"]
|
|
|
|
current_money_format = FORMATS["current_money_format_blocked"]
|
2021-12-19 03:11:29 +00:00
|
|
|
row_pos += 1
|
|
|
|
name_to_show = (
|
|
|
|
line.get("name", "") == "/" or not line.get("name", "")
|
|
|
|
) and line.get("ref", "")
|
2023-05-19 08:19:18 +00:00
|
|
|
if line.get("name", "") and line.get("name", "") != "/":
|
2021-12-19 03:11:29 +00:00
|
|
|
if not line.get("ref", ""):
|
|
|
|
name_to_show = line.get("name", "")
|
|
|
|
else:
|
|
|
|
if (line.get("name", "") in line.get("ref", "")) or (
|
|
|
|
line.get("name", "") == line.get("ref", "")
|
|
|
|
):
|
|
|
|
name_to_show = line.get("name", "")
|
|
|
|
elif line.get("ref", "") not in line.get("name", ""):
|
|
|
|
name_to_show = line.get("ref", "")
|
2023-05-19 08:19:18 +00:00
|
|
|
sheet.write(row_pos, 0, line.get("move_id", ""), format_tcell_left)
|
|
|
|
sheet.write(row_pos, 1, line.get("date", ""), format_tcell_date_left)
|
|
|
|
sheet.merge_range(row_pos, 2, row_pos, 3, name_to_show, format_distributed)
|
|
|
|
sheet.write(row_pos, 4, line.get("amount", ""), current_money_format)
|
2021-12-19 03:11:29 +00:00
|
|
|
sheet.write(
|
2023-05-19 08:19:18 +00:00
|
|
|
row_pos, 5, line.get("applied_amount", ""), current_money_format
|
2021-12-19 03:11:29 +00:00
|
|
|
)
|
2023-05-19 08:19:18 +00:00
|
|
|
sheet.write(row_pos, 6, line.get("open_amount", ""), current_money_format)
|
2021-12-19 03:11:29 +00:00
|
|
|
row_pos += 1
|
|
|
|
sheet.write(
|
|
|
|
row_pos, 1, partner_data.get("end"), FORMATS["format_tcell_date_left"]
|
|
|
|
)
|
|
|
|
sheet.merge_range(
|
2023-05-19 08:19:18 +00:00
|
|
|
row_pos, 2, row_pos, 5, _("Ending Balance"), FORMATS["format_tcell_left"]
|
2021-12-19 03:11:29 +00:00
|
|
|
)
|
|
|
|
sheet.write(
|
2023-05-19 08:19:18 +00:00
|
|
|
row_pos,
|
|
|
|
6,
|
|
|
|
currency_data.get("amount_due"),
|
|
|
|
FORMATS["current_money_format"],
|
2021-12-19 03:11:29 +00:00
|
|
|
)
|
|
|
|
return row_pos
|
|
|
|
|
|
|
|
def _write_currency_buckets(self, row_pos, sheet, partner, currency, data):
|
|
|
|
report_model = self.env["report.partner_statement.activity_statement"]
|
|
|
|
partner_data = data.get("data", {}).get(partner.id, {})
|
|
|
|
currency_data = partner_data.get("currencies", {}).get(currency.id)
|
|
|
|
if currency_data.get("buckets"):
|
|
|
|
row_pos += 2
|
|
|
|
buckets_header = _("Aging Report at %s in %s") % (
|
|
|
|
partner_data.get("end"),
|
|
|
|
currency.display_name,
|
|
|
|
)
|
|
|
|
sheet.merge_range(
|
|
|
|
row_pos, 0, row_pos, 6, buckets_header, FORMATS["format_right_bold"]
|
|
|
|
)
|
|
|
|
buckets_data = currency_data.get("buckets")
|
|
|
|
buckets_labels = report_model._get_bucket_labels(
|
|
|
|
partner_data.get("end"), data.get("aging_type")
|
|
|
|
)
|
|
|
|
row_pos += 1
|
|
|
|
for i in range(len(buckets_labels)):
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
i,
|
|
|
|
buckets_labels[i],
|
|
|
|
FORMATS["format_theader_yellow_center"],
|
|
|
|
)
|
|
|
|
row_pos += 1
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
0,
|
|
|
|
buckets_data.get("current", 0.0),
|
|
|
|
FORMATS["current_money_format"],
|
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
1,
|
|
|
|
buckets_data.get("b_1_30", 0.0),
|
|
|
|
FORMATS["current_money_format"],
|
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
2,
|
|
|
|
buckets_data.get("b_30_60", 0.0),
|
|
|
|
FORMATS["current_money_format"],
|
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
3,
|
|
|
|
buckets_data.get("b_60_90", 0.0),
|
|
|
|
FORMATS["current_money_format"],
|
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
4,
|
|
|
|
buckets_data.get("b_90_120", 0.0),
|
|
|
|
FORMATS["current_money_format"],
|
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
5,
|
|
|
|
buckets_data.get("b_over_120", 0.0),
|
|
|
|
FORMATS["current_money_format"],
|
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
6,
|
|
|
|
buckets_data.get("balance", 0.0),
|
|
|
|
FORMATS["current_money_format"],
|
|
|
|
)
|
|
|
|
return row_pos
|
|
|
|
|
2023-05-19 08:19:18 +00:00
|
|
|
def _size_columns(self, sheet, data):
|
2021-12-19 03:11:29 +00:00
|
|
|
for i in range(7):
|
|
|
|
sheet.set_column(0, i, 20)
|
|
|
|
|
|
|
|
def generate_xlsx_report(self, workbook, data, objects):
|
2023-05-19 08:19:18 +00:00
|
|
|
lang = objects.lang or self.env.user.partner_id.lang
|
|
|
|
self = self.with_context(lang=lang)
|
2021-12-19 03:11:29 +00:00
|
|
|
report_model = self.env["report.partner_statement.activity_statement"]
|
|
|
|
self._define_formats(workbook)
|
|
|
|
FORMATS["format_distributed"] = workbook.add_format({"align": "vdistributed"})
|
|
|
|
company_id = data.get("company_id", False)
|
|
|
|
if company_id:
|
|
|
|
company = self.env["res.company"].browse(company_id)
|
|
|
|
else:
|
|
|
|
company = self.env.user.company_id
|
|
|
|
data.update(report_model._get_report_values(data.get("partner_ids"), data))
|
|
|
|
partners = self.env["res.partner"].browse(data.get("partner_ids"))
|
|
|
|
sheet = workbook.add_worksheet(_("Activity Statement"))
|
|
|
|
sheet.set_landscape()
|
|
|
|
row_pos = 0
|
|
|
|
sheet.merge_range(
|
|
|
|
row_pos,
|
|
|
|
0,
|
|
|
|
row_pos,
|
|
|
|
6,
|
2023-05-19 08:19:18 +00:00
|
|
|
_("Statement of Account from %s") % (company.display_name,),
|
2021-12-19 03:11:29 +00:00
|
|
|
FORMATS["format_ws_title"],
|
|
|
|
)
|
|
|
|
row_pos += 1
|
|
|
|
sheet.write(row_pos, 1, _("Date:"), FORMATS["format_theader_yellow_right"])
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
2,
|
2023-05-19 08:19:18 +00:00
|
|
|
data.get("data", {}).get(partners.ids[0], {}).get("today"),
|
2021-12-19 03:11:29 +00:00
|
|
|
FORMATS["format_date_left"],
|
|
|
|
)
|
2023-05-19 08:19:18 +00:00
|
|
|
self._size_columns(sheet, data)
|
2021-12-19 03:11:29 +00:00
|
|
|
for partner in partners:
|
|
|
|
invoice_address = data.get(
|
|
|
|
"get_inv_addr", lambda x: self.env["res.partner"]
|
|
|
|
)(partner)
|
|
|
|
row_pos += 3
|
|
|
|
sheet.write(
|
|
|
|
row_pos, 1, _("Statement to:"), FORMATS["format_theader_yellow_right"]
|
|
|
|
)
|
|
|
|
sheet.merge_range(
|
|
|
|
row_pos,
|
|
|
|
2,
|
|
|
|
row_pos,
|
|
|
|
3,
|
|
|
|
invoice_address.display_name,
|
|
|
|
FORMATS["format_left"],
|
|
|
|
)
|
|
|
|
if invoice_address.vat:
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
4,
|
|
|
|
_("VAT:"),
|
|
|
|
FORMATS["format_theader_yellow_right"],
|
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
5,
|
|
|
|
invoice_address.vat,
|
|
|
|
FORMATS["format_left"],
|
|
|
|
)
|
|
|
|
row_pos += 1
|
|
|
|
sheet.write(
|
|
|
|
row_pos, 1, _("Statement from:"), FORMATS["format_theader_yellow_right"]
|
|
|
|
)
|
|
|
|
sheet.merge_range(
|
|
|
|
row_pos,
|
|
|
|
2,
|
|
|
|
row_pos,
|
|
|
|
3,
|
|
|
|
company.partner_id.display_name,
|
|
|
|
FORMATS["format_left"],
|
|
|
|
)
|
|
|
|
if company.vat:
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
4,
|
|
|
|
_("VAT:"),
|
|
|
|
FORMATS["format_theader_yellow_right"],
|
|
|
|
)
|
|
|
|
sheet.write(
|
|
|
|
row_pos,
|
|
|
|
5,
|
|
|
|
company.vat,
|
|
|
|
FORMATS["format_left"],
|
|
|
|
)
|
|
|
|
partner_data = data.get("data", {}).get(partner.id)
|
|
|
|
currencies = partner_data.get("currencies", {}).keys()
|
|
|
|
if currencies:
|
|
|
|
row_pos += 1
|
|
|
|
for currency_id in currencies:
|
|
|
|
currency = self.env["res.currency"].browse(currency_id)
|
|
|
|
if currency.position == "after":
|
|
|
|
money_string = "#,##0.%s " % (
|
|
|
|
"0" * currency.decimal_places
|
|
|
|
) + "[${}]".format(currency.symbol)
|
|
|
|
elif currency.position == "before":
|
|
|
|
money_string = "[${}]".format(currency.symbol) + " #,##0.%s" % (
|
|
|
|
"0" * currency.decimal_places
|
|
|
|
)
|
|
|
|
FORMATS["current_money_format"] = workbook.add_format(
|
|
|
|
{"align": "right", "num_format": money_string}
|
|
|
|
)
|
2023-05-19 08:19:18 +00:00
|
|
|
bg_grey = "#CCCCCC"
|
|
|
|
FORMATS["format_tcell_left_blocked"] = copy_format(
|
|
|
|
workbook, FORMATS["format_tcell_left"]
|
|
|
|
)
|
|
|
|
FORMATS["format_tcell_left_blocked"].set_bg_color(bg_grey)
|
|
|
|
FORMATS["format_tcell_date_left_blocked"] = copy_format(
|
|
|
|
workbook, FORMATS["format_tcell_date_left"]
|
|
|
|
)
|
|
|
|
FORMATS["format_tcell_date_left_blocked"].set_bg_color(bg_grey)
|
|
|
|
FORMATS["format_distributed_blocked"] = copy_format(
|
|
|
|
workbook, FORMATS["format_distributed"]
|
|
|
|
)
|
|
|
|
FORMATS["format_distributed_blocked"].set_bg_color(bg_grey)
|
|
|
|
FORMATS["current_money_format_blocked"] = copy_format(
|
|
|
|
workbook, FORMATS["current_money_format"]
|
|
|
|
)
|
|
|
|
FORMATS["current_money_format_blocked"].set_bg_color(bg_grey)
|
2021-12-19 03:11:29 +00:00
|
|
|
row_pos = self._write_currency_lines(
|
|
|
|
row_pos, sheet, partner, currency, data
|
|
|
|
)
|
|
|
|
row_pos = self._write_currency_buckets(
|
|
|
|
row_pos, sheet, partner, currency, data
|
|
|
|
)
|