Skip to content

Commit 03ac280

Browse files
committed
Fixup: Simplify
1 parent 0c8f196 commit 03ac280

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
from odoo import fields, models
1+
from odoo import models
22

33

4-
class ProductPricelistPrintBrand(models.TransientModel):
5-
_inherit = "product.pricelist.print"
6-
7-
brand_id = fields.Many2one("res.brand")
4+
class ProductPricelistPrint(models.TransientModel):
5+
_name = "product.pricelist.print"
6+
_inherit = ["product.pricelist.print", "res.brand.mixin"]

0 commit comments

Comments
 (0)