Skip to content

Commit

Permalink
[IMP] l10n_ar_ux: Diferenciacion entre echeq y cheq comunes en recibos
Browse files Browse the repository at this point in the history
Tarea: 33961
X-original-commit: 99facff
  • Loading branch information
pablohmontenegro authored and zaoral committed Nov 10, 2023
1 parent bdd1fd8 commit 8cac176
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion l10n_ar_ux/__manifest__.py
@@ -1,6 +1,6 @@
{
'name': 'Argentinian Accounting UX',
'version': "16.0.1.7.0",
'version': "16.0.1.8.0",
'category': 'Localization/Argentina',
'sequence': 14,
'author': 'ADHOC SA',
Expand Down
8 changes: 4 additions & 4 deletions l10n_ar_ux/reports/report_payment_group.xml
Expand Up @@ -66,15 +66,15 @@
<t t-set="check" t-value="line.l10n_latam_check_id or line"/>
<tr>
<td>
<span t-out='"Cheque nro %s - %s" % (check.l10n_latam_check_number, check.l10n_latam_check_bank_id.name or check.journal_id.name)'/><span t-if="check.l10n_latam_check_payment_date"> - Venc. <span t-field="check.l10n_latam_check_payment_date"/></span>
<span t-out='"Cheque nro %s - %s - (%s)" % (check.check_number, check.l10n_latam_check_bank_id.name or check.journal_id.name, check.payment_method_line_id.name)'/><span t-if="check.l10n_latam_check_payment_date"> - Venc. <span t-field="check.l10n_latam_check_payment_date"/></span>
</td>
<td class="text-right" t-if="any(o.mapped('payment_ids.other_currency'))">
<t t-if="line.currency_id">
<span class="text-nowrap" t-field="line.amount_signed" t-field-options='{"widget": "monetary", "display_currency": "line.currency_id"}'/>
<t t-if="check.currency_id">
<span class="text-nowrap" t-field="check.amount_signed" t-field-options='{"widget": "monetary", "display_currency": "check.currency_id"}'/>
</t>
</td>
<td class="text-right o_price_total">
<span class="text-nowrap" t-field="line.l10n_ar_amount_company_currency_signed"/>
<span class="text-nowrap" t-field="check.l10n_ar_amount_company_currency_signed"/>
</td>
</tr>
</t>
Expand Down

0 comments on commit 8cac176

Please sign in to comment.