Skip to content

Commit

Permalink
[FIX] l10n_ar_sale: Actualizamos domain de multi-company
Browse files Browse the repository at this point in the history
Task: 43208
  • Loading branch information
mem-adhoc committed Dec 12, 2024
1 parent 4333f11 commit f83a094
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion l10n_ar_sale/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
'demo': [
],
'installable': True,
'auto_install': False,
'auto_install': True,
'application': False,
}
2 changes: 1 addition & 1 deletion l10n_ar_sale/models/account_chart_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def check_created_checkbook(self, checkbook_vals, company):
('name', '=', checkbook_vals['name']),
('company_id', '=', company.id)])
if not checkbook:
checkbook.create(checkbook_vals)
checkbook.sudo().create(checkbook_vals)
return True

@api.model
Expand Down

0 comments on commit f83a094

Please sign in to comment.