Skip to content

Commit c47b675

Browse files
committed
[MIG] stock_mass_scrap: Migration to 17.0
1 parent e3db257 commit c47b675

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

stock_mass_scrap/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Mass Scrap",
55
"summary": "Add wizard to mass scrap expired products",
6-
"version": "14.0.1.0.1",
6+
"version": "17.0.1.0.0",
77
"category": "Inventory",
88
"website": "https://github.com/OCA/stock-logistics-workflow",
99
"author": "Camptocamp, Odoo Community Association (OCA)",

stock_mass_scrap/tests/test_mass_scrap.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
from freezegun import freeze_time
55

6-
from odoo.tests.common import SavepointCase
6+
from odoo.addons.base.tests.common import BaseCommon
77

88

99
@freeze_time("2021-11-15 08:00:00")
10-
class TestMassScrap(SavepointCase):
10+
class TestMassScrap(BaseCommon):
1111
@classmethod
1212
def setUpClass(cls):
1313
super().setUpClass()
@@ -44,7 +44,7 @@ def setUpClass(cls):
4444

4545
@classmethod
4646
def _create_lot(cls, name, expiration_date):
47-
lot = cls.env["stock.production.lot"].create(
47+
lot = cls.env["stock.lot"].create(
4848
{
4949
"name": name,
5050
"product_id": cls.product.id,

stock_mass_scrap/wizard/mass_scrap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class MassScrap(models.TransientModel):
2828
help="If you choose a warehouse here, only the serial numbers/lots "
2929
"currently stored in this warehouse will be scrapped",
3030
)
31-
stock_quant_ids = fields.Many2many(comodel_name="stock.quant", readonly=True)
31+
stock_quant_ids = fields.Many2many(comodel_name="stock.quant")
3232

3333
def _get_domain(self):
3434
domain = [

stock_mass_scrap/wizard/mass_scrap.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<field name="scrap_location_id" />
2121
</group>
2222
<group string="Quants">
23-
<field name="stock_quant_ids" nolabel="1" />
23+
<field name="stock_quant_ids" nolabel="1" readonly="1" />
2424
</group>
2525
</group>
2626
</sheet>

0 commit comments

Comments
 (0)