[IMP] rma_sale: pre-commit stuff

This commit is contained in:
DavidJForgeFlow
2023-02-23 12:59:32 +01:00
committed by Jordi Ballester Alomar
parent 37142119dd
commit 6190fcbe64
3 changed files with 8 additions and 3 deletions

View File

@@ -64,9 +64,7 @@ class RmaAddSale(models.TransientModel):
)
rec.show_lot_filter = bool(rec.lot_domain_ids)
lot_ids = fields.Many2many(
comodel_name="stock.production.lot", string="Lots/Serials selected"
)
lot_ids = fields.Many2many(comodel_name="stock.production.lot", string="Lots/Serials selected")
def select_all(self):
self.ensure_one()

View File

@@ -0,0 +1 @@
../../../../rma_sale

6
setup/rma_sale/setup.py Normal file
View File

@@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)