[IMP] account_financial_report: localize date format on VAT report

Before this change, the date format in the VAT report print was not sensible to the company's localization.
The date string has been converted to a Date field to ensure the correct format aligns with the company's localization.
pull/1173/head
Eduard Brahas 2024-05-03 17:44:55 +02:00
parent f60a0ce288
commit 86299160f7
5 changed files with 25 additions and 9 deletions

View File

@ -7,7 +7,7 @@ Account Financial Reports
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:4e2290a4fa6f850961fc5d90934664a2809a0257d2911e02d1d63c2c41b10793
!! source digest: sha256:dde50b33a9e349d2370cbdcc2ed14cb1cd591e459d12dcd8da574cf4fc07c246
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@ -182,6 +182,10 @@ Contributors
Much of the work in this module was done at a sprint in Sorrento, Italy in
April 2016.
* Ooops404 <https://www.ooops404.com>
* Eduard Brahas <eduardbrhas@outlook.it>
Maintainers
~~~~~~~~~~~

View File

@ -37,3 +37,7 @@
Much of the work in this module was done at a sprint in Sorrento, Italy in
April 2016.
* Ooops404 <https://www.ooops404.com>
* Eduard Brahas <eduardbrhas@outlook.it>

View File

@ -153,10 +153,10 @@
</div>
<div class="act_as_row">
<div class="act_as_cell">
<span t-esc="date_from" />
<span t-esc="date_from" t-options="{'widget': 'date'}" />
</div>
<div class="act_as_cell">
<span t-esc="date_to" />
<span t-esc="date_to" t-options="{'widget': 'date'}" />
</div>
<div class="act_as_cell">
<span t-esc="based_on" />

View File

@ -4,7 +4,7 @@
import operator
from odoo import api, models
from odoo import api, fields, models
class VATReport(models.AbstractModel):
@ -200,8 +200,8 @@ class VATReport(models.AbstractModel):
wizard_id = data["wizard_id"]
company = self.env["res.company"].browse(data["company_id"])
company_id = data["company_id"]
date_from = data["date_from"]
date_to = data["date_to"]
date_from = fields.Date.from_string(data["date_from"])
date_to = fields.Date.from_string(data["date_to"])
based_on = data["based_on"]
tax_detail = data["tax_detail"]
only_posted_moves = data["only_posted_moves"]
@ -222,8 +222,8 @@ class VATReport(models.AbstractModel):
"docs": self.env["open.items.report.wizard"].browse(wizard_id),
"company_name": company.display_name,
"currency_name": company.currency_id.name,
"date_to": data["date_to"],
"date_from": data["date_from"],
"date_from": date_from,
"date_to": date_to,
"based_on": data["based_on"],
"tax_detail": data["tax_detail"],
"vat_report": vat_report,

View File

@ -9,10 +9,12 @@
/*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
Despite the name, some widely supported CSS2 features are used.
Despite the name, some widely supported CSS2 features are used.
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
@ -367,7 +369,7 @@ ul.auto-toc {
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:4e2290a4fa6f850961fc5d90934664a2809a0257d2911e02d1d63c2c41b10793
!! source digest: sha256:dde50b33a9e349d2370cbdcc2ed14cb1cd591e459d12dcd8da574cf4fc07c246
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" 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 image-reference" 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 image-reference" href="https://github.com/OCA/account-financial-reporting/tree/16.0/account_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 image-reference" href="https://translation.odoo-community.org/projects/account-financial-reporting-16-0/account-financial-reporting-16-0-account_financial_report"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/account-financial-reporting&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module adds a set of financial reports. They are accessible under
@ -525,6 +527,12 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
</ul>
<p>Much of the work in this module was done at a sprint in Sorrento, Italy in
April 2016.</p>
<ul class="simple">
<li>Ooops404 &lt;<a class="reference external" href="https://www.ooops404.com">https://www.ooops404.com</a>&gt;<ul>
<li>Eduard Brahas &lt;<a class="reference external" href="mailto:eduardbrhas&#64;outlook.it">eduardbrhas&#64;outlook.it</a>&gt;</li>
</ul>
</li>
</ul>
</div>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#toc-entry-11">Maintainers</a></h2>