FIX typo stock lot table

This commit is contained in:
resteve 2016-03-28 22:40:47 +02:00
parent d22fb2c658
commit 44bd1889e6

View file

@ -89,7 +89,7 @@ class ImportCSV(Wizard):
lot = Lot.__table__()
product = Product.__table__()
cursor.execute(*lotr
cursor.execute(*lot
.join(product, 'LEFT', condition=(lot.product == product.id))
.select(
product.code.as_('code'),