Skip to content

Commit

Permalink
Merge pull request #15720 from zuiko/patch-1
Browse files Browse the repository at this point in the history
V13 Update html.form.class.php to complete Fix #15565 Enhanced behaviour to select product on customer/supplier order to be able to use barcode reader efficiently
  • Loading branch information
eldy committed Dec 11, 2020
2 parents 8a0c065 + b3ca58d commit ab0b508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/class/html.form.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1995,7 +1995,7 @@ public function select_produits($selected = '', $htmlname = 'productid', $filter
if (!empty($conf->global->PRODUIT_CUSTOMER_PRICES) && !empty($socid)) {
$urloption .= '&socid='.$socid;
}
$out .= ajax_autocompleter($selected, $htmlname, DOL_URL_ROOT.'/product/ajax/products.php', $urloption, $conf->global->PRODUIT_USE_SEARCH_TO_SELECT, 0, $ajaxoptions);
$out .= ajax_autocompleter($selected, $htmlname, DOL_URL_ROOT.'/product/ajax/products.php', $urloption, $conf->global->PRODUIT_USE_SEARCH_TO_SELECT, 1, $ajaxoptions);

if (!empty($conf->variants->enabled)) {
$out .= '
Expand Down

0 comments on commit ab0b508

Please sign in to comment.