INITIATED SMS by sriram

This commit is contained in:
venbaSriram 2018-10-26 18:33:38 +05:30
parent de63d11dd7
commit fcc0027c8f
2 changed files with 12 additions and 2 deletions

View File

@ -454,6 +454,16 @@ class PD_Controller extends REST_Controller {
//print_r($pd_details);
// OTP Generate Condition
if($pd_details['pd_status'] == INITIATED)
{
$msg = "Dear ".$pd_details['firstName'].", Office ".$pd_details['officerName']." is on his way to meet you for a personal discussion with regards to your loan application.";
$no = (string)$pd_details['mobile_no'];
unset($pd_details['mobile_no']);
unset($pd_details['firstName']);
unset($pd_details['officerName']);
$this->aws_sns->sendSMS($msg,$no);
}
if($pd_details['pd_status'] == STARTED)
{
$string2 = str_shuffle('1234567890');

View File

@ -579,8 +579,8 @@ class PD_Model extends SPARQ_Model {
$this->db->select('OTP');
$this->db->where('pd_id',$pddata['pd_id']);
$result = $this->db->get(PDTRIGGER.' as PDTRIGGER')->first_row();
if(count($result) !='0')
//print_r($result);die;
if($result !='')
{
if($result->OTP == $pddata['OTP'])
{