diff --git a/stock_cycle_count/models/stock_location.py b/stock_cycle_count/models/stock_location.py index 030ea0986..1b6fd58d0 100644 --- a/stock_cycle_count/models/stock_location.py +++ b/stock_cycle_count/models/stock_location.py @@ -57,7 +57,10 @@ class StockLocation(models.Model): @api.multi def _get_zero_confirmation_domain(self): self.ensure_one() - domain = [('location_id', '=', self.id)] + domain = [ + ('location_id', '=', self.id), + ('quantity', '>', 0.0), + ] return domain @api.multi