Skip to content

Commit

Permalink
fix data
Browse files Browse the repository at this point in the history
  • Loading branch information
dhongu committed May 30, 2024
1 parent 69d2e75 commit 9db501b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion l10n_ro_invoice_report/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Romania - Invoice Report Terrabit
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:bc9534154697bc047db642f3af2adf27ea8f52e0f0f79eb4d324cec0644cf379
!! source digest: sha256:e3794564e6321bd53fdf464428a13f74daa9b86180544301748e6244752af88f
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
Expand Down
2 changes: 1 addition & 1 deletion l10n_ro_invoice_report/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"name": "Romania - Invoice Report Terrabit",
"summary": "Localizare Terrabit - Facturi, Chitanta",
"version": "15.0.3.2.7",
"version": "15.0.3.2.8",
"author": "Dorin Hongu," "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-romania",
"license": "AGPL-3",
Expand Down
2 changes: 1 addition & 1 deletion l10n_ro_invoice_report/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ <h1 class="title">Romania - Invoice Report Terrabit</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:bc9534154697bc047db642f3af2adf27ea8f52e0f0f79eb4d324cec0644cf379
!! source digest: sha256:e3794564e6321bd53fdf464428a13f74daa9b86180544301748e6244752af88f
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<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/dhongu/l10n-romania/tree/15.0/l10n_ro_invoice_report"><img alt="dhongu/l10n-romania" src="https://img.shields.io/badge/github-dhongu%2Fl10n--romania-lightgray.png?logo=github" /></a></p>
<dl class="docutils">
Expand Down
6 changes: 3 additions & 3 deletions l10n_ro_invoice_report/views/invoice_report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@
/>
<t
t-set="price_unit_without_taxes"
t-value="o.currency_id._convert(price_unit_without_taxes, currency_id, o.company_id, o.invoice_date)"
t-value="o.currency_id._convert(price_unit_without_taxes, currency_id, o.company_id, o.invoice_date or datetime.date.today())"
/>
<t t-if="not with_discount_distinct and l.discount">

Expand All @@ -297,7 +297,7 @@
</t>
<t
t-set="price_subtotal"
t-value="o.currency_id._convert(price_subtotal, currency_id, o.company_id, o.invoice_date)"
t-value="o.currency_id._convert(price_subtotal, currency_id, o.company_id, o.invoice_date or datetime.date.today())"
/>
<span
id="price_subtotal"
Expand All @@ -317,7 +317,7 @@
</t>
<t
t-set="price_taxes"
t-value="o.currency_id._convert(price_taxes, currency_id, o.company_id, o.invoice_date)"
t-value="o.currency_id._convert(price_taxes, currency_id, o.company_id, o.invoice_date or datetime.date.today())"
/>
<span
id="price_taxes"
Expand Down

0 comments on commit 9db501b

Please sign in to comment.