Clean code
This commit is contained in:
parent
52493b60fb
commit
dbce3cbfbe
@ -68,7 +68,6 @@ $search_date_limit_endyear = GETPOST('search_date_limit_endyear', 'int');
|
|||||||
$search_date_limit_start = dol_mktime(0, 0, 0, $search_date_limit_startmonth, $search_date_limit_startday, $search_date_limit_startyear);
|
$search_date_limit_start = dol_mktime(0, 0, 0, $search_date_limit_startmonth, $search_date_limit_startday, $search_date_limit_startyear);
|
||||||
$search_date_limit_end = dol_mktime(23, 59, 59, $search_date_limit_endmonth, $search_date_limit_endday, $search_date_limit_endyear);
|
$search_date_limit_end = dol_mktime(23, 59, 59, $search_date_limit_endmonth, $search_date_limit_endday, $search_date_limit_endyear);
|
||||||
$search_project_ref = GETPOST('search_project_ref', 'alpha');
|
$search_project_ref = GETPOST('search_project_ref', 'alpha');
|
||||||
$search_project = GETPOST('search_project', 'alpha');
|
|
||||||
$search_users = GETPOST('search_users');
|
$search_users = GETPOST('search_users');
|
||||||
$search_type = GETPOST('search_type', 'int');
|
$search_type = GETPOST('search_type', 'int');
|
||||||
$search_account = GETPOST('search_account', 'int');
|
$search_account = GETPOST('search_account', 'int');
|
||||||
@ -176,7 +175,6 @@ if (empty($reshook)) {
|
|||||||
$search_date_limit_start = '';
|
$search_date_limit_start = '';
|
||||||
$search_date_limit_end = '';
|
$search_date_limit_end = '';
|
||||||
$search_project_ref = '';
|
$search_project_ref = '';
|
||||||
$search_project = '';
|
|
||||||
$search_users = '';
|
$search_users = '';
|
||||||
$search_type = '';
|
$search_type = '';
|
||||||
$search_account = '';
|
$search_account = '';
|
||||||
@ -455,7 +453,7 @@ if (!empty($arrayfields['cs.periode']['checked'])) {
|
|||||||
// Filter: Project ref
|
// Filter: Project ref
|
||||||
if (!empty($arrayfields['p.ref']['checked'])) {
|
if (!empty($arrayfields['p.ref']['checked'])) {
|
||||||
print '<td class="liste_titre">';
|
print '<td class="liste_titre">';
|
||||||
print '<input type="text" class="flat" size="6" name="search_project_ref" value="'.$search_project_ref.'">';
|
print '<input type="text" class="flat" size="6" name="search_project_ref" value="'.dol_escape_htmltag($search_project_ref).'">';
|
||||||
print '</td>';
|
print '</td>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -657,7 +655,9 @@ while ($i < min($num, $limit)) {
|
|||||||
// Type
|
// Type
|
||||||
if (!empty($arrayfields['cs.fk_mode_reglement']['checked'])) {
|
if (!empty($arrayfields['cs.fk_mode_reglement']['checked'])) {
|
||||||
print '<td>';
|
print '<td>';
|
||||||
if (!empty($obj->payment_code)) print $langs->trans("PaymentTypeShort".$obj->payment_code);
|
if (!empty($obj->payment_code)) {
|
||||||
|
print $langs->trans("PaymentTypeShort".$obj->payment_code);
|
||||||
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user