bcc38ddb by G Manojkumar

dialerblade

1 parent 32555bee
...@@ -170,6 +170,11 @@ use App\Models\CRMCall; ...@@ -170,6 +170,11 @@ use App\Models\CRMCall;
170 $number_list=array(); 170 $number_list=array();
171 foreach($mc as $key=>$tcall) 171 foreach($mc as $key=>$tcall)
172 { 172 {
173 include( app_path() . '/Hacks/DisabledDIDs.php');
174 if( in_array(substr($tcall->number,-10),$DisableNumbersArray) ){
175 continue;
176 }
177
173 $tccal=substr($tcall->number,-10); 178 $tccal=substr($tcall->number,-10);
174 $mc_number=CRMCall::where('userstatus','!=','InboundDROP') 179 $mc_number=CRMCall::where('userstatus','!=','InboundDROP')
175 ->where('created_at','>',$tcall->created_at) 180 ->where('created_at','>',$tcall->created_at)
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!