Add qty > 0 in stock_lot_check_moves_without_lot_before_lot_required.diff

This commit is contained in:
Raimon Esteve 2019-04-01 12:42:14 +02:00
parent 7ff751a983
commit 6f7ad8904e
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ diff -r 04443e7121ac trytond/trytond/modules/stock_lot/product.py
+
+ cursor = Transaction().cursor
+
+ sql_where = ((move.lot == Null) & (template.id == self.id) & (move.state == 'done'))
+ sql_where = ((move.lot == Null) & (template.id == self.id) & (move.state == 'done') & (move.quantity > 0))
+ query = move.join(
+ product, condition=product.id == move.product).join(
+ template, condition=template.id == product.template).join(