Skip to content

Commit

Permalink
[FIX] account_product_fiscal_classification: order by fiscal classifi…
Browse files Browse the repository at this point in the history
…cation by name
  • Loading branch information
legalsylvain committed Nov 28, 2023
1 parent c745a2a commit 73af77d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
class AccountProductFiscalClassification(models.Model):
_name = "account.product.fiscal.classification"
_description = "Fiscal Classification"
_order = "name"

name = fields.Char(required=True)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
class AccountProductFiscalClassificationTemplate(models.Model):
_name = "account.product.fiscal.classification.template"
_description = "Fiscal Classification Template"
_order = "name"

name = fields.Char(required=True, translate=True)

Expand Down

0 comments on commit 73af77d

Please sign in to comment.