474f8146 by Manish Mihsra

Resolved all error after merging master into predictive branch

1 parent d2f726c4
...@@ -87,7 +87,6 @@ class CreateCall extends Command { ...@@ -87,7 +87,6 @@ class CreateCall extends Command {
87 } catch (Exception $e) { 87 } catch (Exception $e) {
88 Log::useFiles(storage_path()."/logs/predictive_".date("Y_m_d").".log"); 88 Log::useFiles(storage_path()."/logs/predictive_".date("Y_m_d").".log");
89 Log::error($e); 89 Log::error($e);
90 continue;
91 } 90 }
92 } 91 }
93 92
......
...@@ -80,7 +80,6 @@ class PredictiveCallHangUp extends Command { ...@@ -80,7 +80,6 @@ class PredictiveCallHangUp extends Command {
80 } catch (Exception $e) { 80 } catch (Exception $e) {
81 Log::useFiles(storage_path()."/logs/predictive_".date("Y_m_d").".log"); 81 Log::useFiles(storage_path()."/logs/predictive_".date("Y_m_d").".log");
82 Log::error($e); 82 Log::error($e);
83 continue;
84 } 83 }
85 } 84 }
86 } 85 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -5,6 +5,7 @@ use App\Http\Requests; ...@@ -5,6 +5,7 @@ use App\Http\Requests;
5 use Auth; 5 use Auth;
6 use Log; 6 use Log;
7 use DB; 7 use DB;
8 use App\Models\CRMCall;
8 class SmsController extends Controller 9 class SmsController extends Controller
9 { 10 {
10 public $smsUrl = 'https://10.2.55.165:443/servlet/com.aclwireless.pushconnectivity.listeners.TextListener?'; 11 public $smsUrl = 'https://10.2.55.165:443/servlet/com.aclwireless.pushconnectivity.listeners.TextListener?';
......
...@@ -1770,7 +1770,6 @@ function createQaireHistTab() ...@@ -1770,7 +1770,6 @@ function createQaireHistTab()
1770 1770
1771 $bulkCallID = DB::table("questionaire_details")->where('user_id','=',$user_id)->where('cust_id','=',$cust_id)->orderBy('id','desc')->select('call_id')->distinct()->get(); 1771 $bulkCallID = DB::table("questionaire_details")->where('user_id','=',$user_id)->where('cust_id','=',$cust_id)->orderBy('id','desc')->select('call_id')->distinct()->get();
1772 1772
1773 dy>
1774 $custIdArr = array(); 1773 $custIdArr = array();
1775 foreach($bulkCallID as $key=> $callID){ 1774 foreach($bulkCallID as $key=> $callID){
1776 1775
......
...@@ -972,7 +972,10 @@ function popMail($userid) ...@@ -972,7 +972,10 @@ function popMail($userid)
972 $spostvars=serialize($personarr['peopledata']); 972 $spostvars=serialize($personarr['peopledata']);
973 $screatedlog=serialize($personarr['modifylog']); 973 $screatedlog=serialize($personarr['modifylog']);
974 $sfdirty=serialize($personarr['dirty']); 974 $sfdirty=serialize($personarr['dirty']);
975 if(sizeof($personarr['peopledata'])!=sizeof(unserialize($spostvars))||sizeof($personarr['modifylog'])!=sizeof(unserialize($screatedlog))||sizeof($personarr['dirty'])!=sizeof(unserialize($sfdirty))) 975 if(sizeof($personarr['peopledata'])!=sizeof(unserialize($spostvars))
976 // ||sizeof($personarr['modifylog'])!=sizeof(unserialize($screatedlog))
977 // ||sizeof($personarr['dirty'])!=sizeof(unserialize($sfdirty))
978 )
976 { 979 {
977 return -2; 980 return -2;
978 } 981 }
......
...@@ -1251,11 +1251,6 @@ function dialerTimersUpdate() ...@@ -1251,11 +1251,6 @@ function dialerTimersUpdate()
1251 { 1251 {
1252 saveCloseDialerCall('AUTOWRAPUP'); 1252 saveCloseDialerCall('AUTOWRAPUP');
1253 } 1253 }
1254
1255 if(thiswraptime==90 || thiswraptime==300)
1256 {
1257 showWrapUp();
1258 }
1259 1254
1260 dispD="Wrapup : "+thiswraptime; 1255 dispD="Wrapup : "+thiswraptime;
1261 $("#spandialer_ts").html(dispD); 1256 $("#spandialer_ts").html(dispD);
...@@ -2252,7 +2247,7 @@ function dialerSipMsg(omsg) ...@@ -2252,7 +2247,7 @@ function dialerSipMsg(omsg)
2252 { 2247 {
2253 try 2248 try
2254 { 2249 {
2255 if(omsg.ao_headers[6].s_name=='kstych-data') 2250 if(omsg.ao_headers[6].s_name=='kstych-Data')
2256 { 2251 {
2257 var vparts=omsg.ao_headers[6].s_value.split("|"); 2252 var vparts=omsg.ao_headers[6].s_value.split("|");
2258 2253
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!