Skip to content

Commit b3248e6

Browse files
committed
Fixed issues with the client_id search in the clients and reseller form.
1 parent 1470f44 commit b3248e6

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

interface/web/client/list/client.list.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@
4747
* Suchfelder
4848
*****************************************************/
4949

50+
$liste["item"][] = array( 'field' => "client_id",
51+
'datatype' => "INTEGER",
52+
'formtype' => "TEXT",
53+
'op' => "=",
54+
'prefix' => "",
55+
'suffix' => "",
56+
'width' => "",
57+
'value' => "");
58+
5059
$liste["item"][] = array( 'field' => "company_name",
5160
'datatype' => "VARCHAR",
5261
'formtype' => "TEXT",

interface/web/client/list/reseller.list.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@
4747
* Suchfelder
4848
*****************************************************/
4949

50+
$liste["item"][] = array( 'field' => "client_id",
51+
'datatype' => "INTEGER",
52+
'formtype' => "TEXT",
53+
'op' => "=",
54+
'prefix' => "",
55+
'suffix' => "",
56+
'width' => "",
57+
'value' => "");
58+
5059
$liste["item"][] = array( 'field' => "company_name",
5160
'datatype' => "VARCHAR",
5261
'formtype' => "TEXT",

interface/web/client/templates/resellers_list.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h2><tmpl_var name="list_head_txt"></h2>
3131
<td class="tbl_col_contact_name"><input type="text" name="search_contact_name" value="{tmpl_var name='search_contact_name'}" style="width:120px;" /></td>
3232
<td class="tbl_col_city"><input type="text" name="search_city" value="{tmpl_var name='search_city'}" style="width:120px;" /></td>
3333
<td class="tbl_col_country"><input type="text" name="search_country" value="{tmpl_var name='search_country'}" style="width:30px;" /></td>
34-
<td class="tbl_col_buttons"><div class="buttons"><button type="button" class="icons16 icoFilter" name="Filter" id="Filter" value="{tmpl_var name="filter_txt"}" onClick="submitForm('pageForm','client/client_list.php');"><span>{tmpl_var name="filter_txt"}</span></button></div></td>
34+
<td class="tbl_col_buttons"><div class="buttons"><button type="button" class="icons16 icoFilter" name="Filter" id="Filter" value="{tmpl_var name="filter_txt"}" onClick="submitForm('pageForm','client/reseller_list.php');"><span>{tmpl_var name="filter_txt"}</span></button></div></td>
3535
</tr>
3636
</thead>
3737
<tbody>

0 commit comments

Comments
 (0)