-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] stock_quant_manual_assign_without_lock_lot: added test
- Loading branch information
Showing
4 changed files
with
33 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,19 +23,20 @@ | |
"name": "Stock Quant Manual Assign Without Lock Lot", | ||
"version": "8.0.2.0.0", | ||
"license": "AGPL-3", | ||
"author": "OdooMRP team," | ||
"AvanzOSC," | ||
"author": "OdooMRP team, " | ||
"AvanzOSC, " | ||
"Serv. Tecnol. Avanzados - Pedro M. Baeza", | ||
"website": "http://www.odoomrp.com", | ||
"contributors": [ | ||
"Ana Juaristi <[email protected]>", | ||
"Ana Juaristi <[email protected]>", | ||
"Pedro Manuel Baeza <[email protected]>", | ||
"Alfredo de la Fuente <[email protected]>", | ||
], | ||
"category": "quant", | ||
"depends": ['mrp_lock_lot', | ||
'stock_quant_manual_assign', | ||
], | ||
], | ||
"category": "Warehouse Management", | ||
"depends": [ | ||
"stock_lock_lot", | ||
"stock_quant_manual_assign", | ||
], | ||
"data": [], | ||
"installable": True, | ||
"auto_install": True, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright © 2017 Ainara Galdona - AvanzOSC | ||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||
|
||
from . import test_stock_quant_manual_assign_without_lock_lot |
15 changes: 15 additions & 0 deletions
15
...t_manual_assign_without_lock_lot/tests/test_stock_quant_manual_assign_without_lock_lot.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright © 2017 Ainara Galdona - AvanzOSC | ||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||
|
||
from openerp.addons.stock_quant_manual_assign.tests\ | ||
.test_stock_quant_manual_assign import TestStockQuantManualAssign | ||
from openerp.tests.common import at_install, post_install | ||
|
||
|
||
@at_install(False) | ||
@post_install(True) | ||
class TestStockQuantManualAssignWithoutLockLot(TestStockQuantManualAssign): | ||
|
||
def setUp(self): | ||
super(TestStockQuantManualAssignWithoutLockLot, self).setUp() |