diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..ff5300ef4 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.languageServer": "None" +} \ No newline at end of file diff --git a/l10n_ar_ux/models/account_account.py b/l10n_ar_ux/models/account_account.py index ca9591877..4caf1df10 100644 --- a/l10n_ar_ux/models/account_account.py +++ b/l10n_ar_ux/models/account_account.py @@ -20,7 +20,6 @@ def set_non_monetary_tag(self, company): 'income_other', 'expense', 'expense_depreciation', - 'equity', 'expense_direct_cost', ] accounts = self.search([('account_type', 'in', account_types), ('company_id', 'in', company.ids)]) diff --git a/l10n_ar_ux/models/account_account_tag.py b/l10n_ar_ux/models/account_account_tag.py index 061838ba1..b05ea99b7 100644 --- a/l10n_ar_ux/models/account_account_tag.py +++ b/l10n_ar_ux/models/account_account_tag.py @@ -10,3 +10,4 @@ class AccountAccountTag(models.Model): _inherit = 'account.account.tag' jurisdiction_code = fields.Char(size=3) + jurisdiction_code = fields.Char(size=3) \ No newline at end of file diff --git a/l10n_ar_ux/models/account_journal.py b/l10n_ar_ux/models/account_journal.py index 3c1387e90..fc92ea9a3 100644 --- a/l10n_ar_ux/models/account_journal.py +++ b/l10n_ar_ux/models/account_journal.py @@ -16,6 +16,7 @@ class AccountJournal(models.Model): qr_code = fields.Char( string="QR Code", help="String to generate the QR Code that will be displayed on the invoice report." + help2="String to generate the QR Code that will be displayed on the invoice report." ) discriminate_taxes = fields.Selection( [ @@ -25,6 +26,6 @@ class AccountJournal(models.Model): ], string='Discriminate taxes?', default='no', - required=True, + required=False, ) l10n_ar_afip_pos_partner_id = fields.Many2one(string='Dirección Punto de venta')