File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
{
4
4
"name" : "Mass Scrap" ,
5
5
"summary" : "Add wizard to mass scrap expired products" ,
6
- "version" : "14 .0.1.0.1 " ,
6
+ "version" : "17 .0.1.0.0 " ,
7
7
"category" : "Inventory" ,
8
8
"website" : "https://github.com/OCA/stock-logistics-workflow" ,
9
9
"author" : "Camptocamp, Odoo Community Association (OCA)" ,
Original file line number Diff line number Diff line change 3
3
4
4
from freezegun import freeze_time
5
5
6
- from odoo .tests .common import SavepointCase
6
+ from odoo .addons . base . tests .common import BaseCommon
7
7
8
8
9
9
@freeze_time ("2021-11-15 08:00:00" )
10
- class TestMassScrap (SavepointCase ):
10
+ class TestMassScrap (BaseCommon ):
11
11
@classmethod
12
12
def setUpClass (cls ):
13
13
super ().setUpClass ()
@@ -44,7 +44,7 @@ def setUpClass(cls):
44
44
45
45
@classmethod
46
46
def _create_lot (cls , name , expiration_date ):
47
- lot = cls .env ["stock.production. lot" ].create (
47
+ lot = cls .env ["stock.lot" ].create (
48
48
{
49
49
"name" : name ,
50
50
"product_id" : cls .product .id ,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class MassScrap(models.TransientModel):
28
28
help = "If you choose a warehouse here, only the serial numbers/lots "
29
29
"currently stored in this warehouse will be scrapped" ,
30
30
)
31
- stock_quant_ids = fields .Many2many (comodel_name = "stock.quant" , readonly = True )
31
+ stock_quant_ids = fields .Many2many (comodel_name = "stock.quant" )
32
32
33
33
def _get_domain (self ):
34
34
domain = [
Original file line number Diff line number Diff line change 20
20
<field name =" scrap_location_id" />
21
21
</group >
22
22
<group string =" Quants" >
23
- <field name =" stock_quant_ids" nolabel =" 1" />
23
+ <field name =" stock_quant_ids" nolabel =" 1" readonly = " 1 " />
24
24
</group >
25
25
</group >
26
26
</sheet >
You can’t perform that action at this time.
0 commit comments