Skip to content

Commit

Permalink
[FIX] Fixed the error Field selected_financial_debt does not exist …
Browse files Browse the repository at this point in the history
…message
  • Loading branch information
macagua committed Oct 1, 2024
1 parent 65a65b6 commit b314a51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class AccountPaymentGroup(models.Model):
matched_amount_untaxed = fields.Monetary(
compute="_compute_matched_amount_untaxed", currency_field="currency_id",
)
selected_finacial_debt = fields.Monetary(
selected_financial_debt = fields.Monetary(
string="Selected Financial Debt", compute="_compute_selected_debt",
)
selected_debt = fields.Monetary(
Expand Down
2 changes: 1 addition & 1 deletion l10n_ve_withholding/i18n/es_VE.po
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ msgid "Selected Debt taxed"
msgstr "Deuda seleccionada gravada"

#. module: l10n_ve_withholding
#: model:ir.model.fields,field_description:l10n_ve_withholding.field_account_payment_group__selected_finacial_debt_currency
#: model:ir.model.fields,field_description:l10n_ve_withholding.field_account_payment_group__selected_financial_debt_currency
msgid "Selected Financial Debt in foreign currency"
msgstr "Deuda Seleccionada en Divisas"

Expand Down
2 changes: 1 addition & 1 deletion l10n_ve_withholding/views/account_payment_group_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
options="{'currency_field': 'currency_id'}"
/>
<field
name="selected_finacial_debt_currency"
name="selected_financial_debt_currency"
attrs="{'invisible': ['|',('debt_multicurrency', '=', False), ('state', 'not in', ['draft', 'confirmed'])]}"
options="{'currency_field': 'selected_debt_currency_id'}"
/>
Expand Down

0 comments on commit b314a51

Please # to comment.