Update plan.php
This commit is contained in:
parent
bbdf561b3b
commit
1a5a7124f7
@ -604,6 +604,17 @@ switch ($action) {
|
|||||||
->left_outer_join('tbl_voucher', array('tbl_plans.id', '=', 'tbl_voucher.id_plan'))
|
->left_outer_join('tbl_voucher', array('tbl_plans.id', '=', 'tbl_voucher.id_plan'))
|
||||||
->where('tbl_voucher.status', '0');
|
->where('tbl_voucher.status', '0');
|
||||||
}
|
}
|
||||||
|
if (!empty($selected_datetime)) {
|
||||||
|
$v = ORM::for_table('tbl_plans')
|
||||||
|
->left_outer_join('tbl_voucher', array('tbl_plans.id', '=', 'tbl_voucher.id_plan'))
|
||||||
|
->where('tbl_voucher.status', '0')
|
||||||
|
->where('tbl_voucher.created_at', $selected_datetime)
|
||||||
|
->limit($limit);
|
||||||
|
$vc = ORM::for_table('tbl_plans')
|
||||||
|
->left_outer_join('tbl_voucher', array('tbl_plans.id', '=', 'tbl_voucher.id_plan'))
|
||||||
|
->where('tbl_voucher.status', '0');
|
||||||
|
|
||||||
|
}
|
||||||
if (in_array($admin['user_type'], ['SuperAdmin', 'Admin'])) {
|
if (in_array($admin['user_type'], ['SuperAdmin', 'Admin'])) {
|
||||||
$v = $v->find_many();
|
$v = $v->find_many();
|
||||||
$vc = $vc->count();
|
$vc = $vc->count();
|
||||||
@ -617,11 +628,6 @@ switch ($action) {
|
|||||||
$v = $v->where_in('generated_by', $sales)->find_many();
|
$v = $v->where_in('generated_by', $sales)->find_many();
|
||||||
$vc = $vc->where_in('generated_by', $sales)->count();
|
$vc = $vc->where_in('generated_by', $sales)->count();
|
||||||
}
|
}
|
||||||
if (!empty($selected_datetime)) {
|
|
||||||
$v = ORM::for_table('tbl_voucher')
|
|
||||||
->where('created_at', $selected_datetime)
|
|
||||||
->find_many();
|
|
||||||
}
|
|
||||||
$template = file_get_contents("pages/Voucher.html");
|
$template = file_get_contents("pages/Voucher.html");
|
||||||
$template = str_replace('[[company_name]]', $config['CompanyName'], $template);
|
$template = str_replace('[[company_name]]', $config['CompanyName'], $template);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user