Add missing imports in issue240 patch

This commit is contained in:
Sergi Almacellas Abellana 2015-12-04 19:52:34 +01:00
parent 78a931f7cf
commit 0a4a1acb1c
1 changed files with 21 additions and 0 deletions

View File

@ -174,6 +174,27 @@ diff -r adfc6fc08b4e locale/es_ES.po
diff -r adfc6fc08b4e trytond/trytond/modules/stock_lot/stock.py
--- a/trytond/trytond/modules/stock_lot/stock.py Wed Dec 02 23:43:15 2015 +0100
+++ b/trytond/trytond/modules/stock_lot/stock.py Wed Dec 02 23:43:58 2015 +0100
@@ -1,15 +1,18 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
+import datetime
from trytond.model import ModelView, ModelSQL, fields
-from trytond.pyson import Eval
+from trytond.pyson import Eval, PYSONEncoder
from trytond.pool import Pool, PoolMeta
from trytond.transaction import Transaction
+from trytond.wizard import Wizard, StateView, StateAction, Button
from trytond.modules.stock import StockMixin
__all__ = ['Lot', 'LotType', 'Move', 'ShipmentIn', 'ShipmentOut',
'ShipmentOutReturn',
'Period', 'PeriodCacheLot',
- 'Inventory', 'InventoryLine']
+ 'Inventory', 'InventoryLine', 'Location', 'LotByLocationStart',
+ 'LotByLocation']
__metaclass__ = PoolMeta
@@ -224,3 +224,73 @@
if move:
move.lot = self.lot