FIX Autosearch on takepos was broken
This commit is contained in:
parent
3abbda269b
commit
f038cca39e
@ -581,8 +581,9 @@ function New() {
|
|||||||
/**
|
/**
|
||||||
* Search products
|
* Search products
|
||||||
*
|
*
|
||||||
* @param {int} keyCodeForEnter Key code for "enter"
|
* @param string keyCodeForEnter Key code for "enter" or '' if not
|
||||||
* return {void}
|
* @param int moreorless ??
|
||||||
|
* return void
|
||||||
*/
|
*/
|
||||||
function Search2(keyCodeForEnter, moreorless) {
|
function Search2(keyCodeForEnter, moreorless) {
|
||||||
var eventKeyCode = window.event.keyCode;
|
var eventKeyCode = window.event.keyCode;
|
||||||
@ -597,6 +598,8 @@ function Search2(keyCodeForEnter, moreorless) {
|
|||||||
search_start = $('#search_start_'+moreorless).val();
|
search_start = $('#search_start_'+moreorless).val();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log("search_term="+search_term);
|
||||||
|
|
||||||
if (search_term == '') {
|
if (search_term == '') {
|
||||||
$("[id^=prowatermark]").html("");
|
$("[id^=prowatermark]").html("");
|
||||||
$("[id^=prodesc]").text("");
|
$("[id^=prodesc]").text("");
|
||||||
@ -610,7 +613,7 @@ function Search2(keyCodeForEnter, moreorless) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var search = false;
|
var search = false;
|
||||||
if (keyCodeForEnter != '' || eventKeyCode == keyCodeForEnter) {
|
if (keyCodeForEnter == '' || eventKeyCode == keyCodeForEnter) {
|
||||||
search = true;
|
search = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1655,7 +1655,7 @@ if (($action == "valid" || $action == "history") && $invoice->type != Facture::T
|
|||||||
|
|
||||||
if ($action == "search") {
|
if ($action == "search") {
|
||||||
print '<center>
|
print '<center>
|
||||||
<input type="text" id="search" class="input-search-takepos" name="search" onkeyup="Search2();" style="width: 80%; font-size: 150%;" placeholder="'.dol_escape_htmltag($langs->trans('Search')).'">
|
<input type="text" id="search" class="input-search-takepos" name="search" onkeyup="Search2(\'\', null);" style="width: 80%; font-size: 150%;" placeholder="'.dol_escape_htmltag($langs->trans('Search')).'">
|
||||||
</center>';
|
</center>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user