CHANGE_TICKET_API : RV
This commit is contained in:
parent
119ba2122a
commit
30955f09c6
@ -2552,12 +2552,16 @@ class EmployeeRestController extends AdminController
|
||||
'tm.awb_no_courier_name',
|
||||
'tm.non_id_reason',
|
||||
'tm.pay_initiate_date',
|
||||
'tm.approved_description'
|
||||
'tm.approved_description',
|
||||
'pt.policy_type as policy_type',
|
||||
'cp.policy_no as client_policy_no',
|
||||
]);
|
||||
|
||||
$builder->join('insurers i', 'i.id = tm.insurer_id AND i.is_active = 1', 'left');
|
||||
$builder->join('clients c', 'c.id = tm.client_id AND c.is_active = 1', 'left');
|
||||
$builder->join('ticket_claim_status tcs', 'tcs.id = tm.claim_status_id AND tcs.is_active = 1', 'left');
|
||||
$builder->join('client_policy cp', 'tm.client_policy_id = cp.id', 'left');
|
||||
$builder->join('policy_type pt', 'cp.policy_type_id = pt.id', 'left');
|
||||
|
||||
$builder->where('tm.is_active', 1);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user