Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[15.0][FIX] Stock: res_config_settings.py search_count with invalid parameter #1202

Open
wants to merge 1 commit into
base: 15.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/stock/models/res_config_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _onchange_group_stock_multi_locations(self):
def _onchange_group_stock_production_lot(self):
if not self.group_stock_production_lot:
self.group_lot_on_delivery_slip = False
if self.env['product.product'].search_count([('tracking', '!=', 'none')], limit=1):
if self.env['product.product'].search_count([('tracking', '!=', 'none')]):
raise UserError(_("You have product(s) in stock that have lot/serial number tracking enabled. \nSwitch off tracking on all the products before switching off this setting."))

@api.onchange('group_stock_adv_location')
Expand Down