Skip to content

Commit

Permalink
Commit 3
Browse files Browse the repository at this point in the history
  • Loading branch information
lav-adhoc committed May 24, 2023
1 parent ba7a3ce commit d82b433
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion l10n_ar_ux/__manifest__.py
@@ -1,5 +1,5 @@
{
'name': 'Argentinian Accounting UX',
'name': 'Argentinian Accounting UX edit 2',
'version': "13.0.1.40.0",
'category': 'Localization/Argentina',
'sequence': 14,
Expand Down
2 changes: 1 addition & 1 deletion l10n_ar_ux/models/account_move.py
Expand Up @@ -15,7 +15,7 @@ class AccountMove(models.Model):
computed_currency_rate = fields.Float(
compute='_compute_currency_rate',
string='Currency Rate (preview)',
digits=(16, 6),
digits=(16, 8),
)
l10n_ar_currency_rate = fields.Float(compute='_compute_l10n_ar_currency_rate', store=True)

Expand Down
4 changes: 2 additions & 2 deletions l10n_ar_ux/models/afip_padron.py
Expand Up @@ -16,7 +16,7 @@ class AccountActivity(models.Model):

code = fields.Char(required=True)
name = fields.Char(required=True)
active = fields.Boolean(default=True)
active = fields.Boolean()


class AccountTax(models.Model):
Expand All @@ -25,4 +25,4 @@ class AccountTax(models.Model):

code = fields.Char(required=True)
name = fields.Char(required=True)
active = fields.Boolean(default=True)
active = fields.Boolean()

0 comments on commit d82b433

Please sign in to comment.