Fix minor issue

This commit is contained in:
Jose Gonzalez 2023-03-09 11:43:36 +01:00
parent 63d83b3f97
commit d8cdb13b59
1 changed files with 14 additions and 12 deletions

View File

@ -111,7 +111,7 @@ $table->data[1][] = html_print_label_input_block(
$date_lower,
'',
10,
7,
10,
true
).html_print_input_text(
'time_lower',
@ -141,16 +141,6 @@ $table->data[1][] = html_print_label_input_block(
),
],
true
).html_print_label_input_block(
'',
html_print_checkbox_switch(
'is_period',
1,
($is_period === true) ? 1 : 0,
true,
false,
'network_report_click_period(event)'
).'<label style="position:relative; top:13px">'.__('Defined period').'</label>',
)
);
@ -165,7 +155,7 @@ $table->data[1][] = html_print_label_input_block(
$date_greater,
'',
10,
7,
10,
true
).html_print_input_text(
'time_greater',
@ -180,6 +170,18 @@ $table->data[1][] = html_print_label_input_block(
)
);
$table->data[2][] = html_print_label_input_block(
__('Defined period'),
html_print_checkbox_switch(
'is_period',
1,
($is_period === true) ? 1 : 0,
true,
false,
'network_report_click_period(event)'
)
);
echo '<form method="post">';
html_print_input_hidden('order_by', $order_by);
if (empty($main_value) === false) {