$value) { $this->saveRecords($value,D_GENERAL_IND); } } if(isset($gen_data_dump['relationship_data'])) { foreach ($gen_data_dump['relationship_data'] as $key => $value) { $this->saveRecords($value,D_GEN_RELATIONSHIP); } } } function saveBusinessDUmpData($business_data_dump) { print_r($business_data_dump); echo "*****************"; if(isset($business_data_dump['single_business_items'])) { $this->saveRecords($business_data_dump['single_business_items'],D_BUSINESS_FORM); } if(isset($business_data_dump['partners_details'])) { foreach ($business_data_dump['partners_details'] as $key => $value) { $this->saveRecords($value,D_BUSINESS_PARTNERS); } } if(isset($business_data_dump['type_of_activity_details'])) { foreach ($business_data_dump['type_of_activity_details'] as $key => $value) { $this->saveRecords($value,D_BUSIENSS_TYPE); } } if(isset($business_data_dump['business_relatinship_data'])) { foreach ($business_data_dump['business_relatinship_data'] as $key => $value) { $this->saveRecords($value,D_BUSINESS_RELATINSHIP); } } if(isset($business_data_dump['products'])) { foreach ($business_data_dump['products'] as $index => $activity_data) { foreach ($activity_data as $key => $value) { $this->saveRecords($value,D_BUSINESS_PRODUCTS); } } } } function getRequestForDataDump($arr){ $pdid = isset($arr['pd_id'])?$arr['pd_id']:[]; $fromd = isset($arr['from_date'])?$arr['from_date']:null; $tod= isset($arr['to_date'])?$arr['to_date']:null; $type = isset($arr['pd_type_id'])?$arr['pd_type_id']:null; $prod = isset($arr['product_id'])?$arr['product_id']:null; $cseg = isset($arr['customer_segment_id'])?$arr['customer_segment_id']:null; ### 2 tables t_pd_form_details_json and t_pd_triggered $this->db->select('PDFORMDETAILSJSON.pd_form_detail_json_id, PDFORMDETAILSJSON.fk_pd_id, PDFORMDETAILSJSON.fk_form_id, PDFORMDETAILSJSON.isactive, PDFORMDETAILSJSON.json, DATE_FORMAT(PDFORMDETAILSJSON.createdon,"%d/%m/%Y %H:%i:%s") as createdon, PDFORMDETAILSJSON.processed_json, PDFORMDETAILSJSON.updatedon,DATE_FORMAT(PDTRIGGER.completed_on,"%d/%m/%Y %H:%i:%s") as completed_on,PDTRIGGER.fk_product_id, PDTRIGGER.fk_customer_segment,PDTRIGGER.fk_pd_type,PDTRIGGER.pd_status,PDTRIGGER.createdon'); $this->db->from(PDFORMDETAILSJSON.' as PDFORMDETAILSJSON'); $this->db->join(PDTRIGGER.' as PDTRIGGER','PDTRIGGER.pd_id = PDFORMDETAILSJSON.fk_pd_id ','LEFT'); if(!empty($pdid)) { $this->db->where_in('PDFORMDETAILSJSON.fk_pd_id',$pdid); } if(($fromd != "" || $fromd != null) && ($tod != "" || $tod != null)) { $this->db->where('PDTRIGGER.completed_on BETWEEN '. "'$fromd'". ' AND '. "'$tod'" ); } else if($fromd != "" && $fromd != null) { $this->db->where("DATE_FORMAT(PDTRIGGER.completed_on,'%Y-%m-%d')",$fromd); } else if($tod != "" && $tod != null) { $this->db->where("DATE_FORMAT(PDTRIGGER.completed_on,'%Y-%m-%d')",$tod); } if($prod != ""){ $this->db->where('PDTRIGGER.fk_product_id',$prod); } if($type != ""){ $this->db->where('PDTRIGGER.fk_pd_type',$type); } if($cseg != ""){ $this->db->where('PDTRIGGER.fk_customer_segment',$cseg); } $this->db->WHERE('PDFORMDETAILSJSON.isactive',1); $this->db->order_by('PDFORMDETAILSJSON.pd_form_detail_json_id','desc'); // $this->db->limit(5); $result = $this->db->get()->result_array(); // echo count($result);print_r($result);print_r($this->db->last_query());die(); return $result; } public function filtermasterfordatadumprequest(){ $result['pdtype'] = $this->db->select('PDTYPE.pd_type_id,PDTYPE.type_name')->from(PDTYPE.' as PDTYPE')->WHERE('PDTYPE.isactive',1)->GET()->result_array(); $result['product'] = $this->db->select('PRODUCTS.product_id,PRODUCTS.name,PRODUCTS.abbr')->from(PRODUCTS.' as PRODUCTS')->WHERE('PRODUCTS.isactive',1)->GET()->result_array(); $result['customersegment'] = $this->db->select('CUSTOMERSEGMENT.customer_segment_id,CUSTOMERSEGMENT.name,CUSTOMERSEGMENT.abbr')->from(CUSTOMERSEGMENT.' as CUSTOMERSEGMENT')->WHERE('CUSTOMERSEGMENT.isactive',1)->GET()->result_array(); $result['city'] = $this->db->select('CITY.city_id, CITY.name')->from(CITY.' as CITY')->WHERE('CITY.isactive',1)->GET()->result_array(); $result['lender'] = $this->db->select(' ENTITY.entity_id, ENTITY.full_name, ENTITY.short_name')->from(ENTITY.' as ENTITY')->WHERE(' ENTITY.isactive',1)->GET()->result_array(); // $result['pdid'] = $this->db->select('PDTRIGGER.pd_sno,PDTRIGGER.pd_id,PDTRIGGER.pd_status')->from(PDTRIGGER.' as PDTRIGGER')->WHERE('PDTRIGGER.pd_status !=',"TRUNCATED")->GET()->result_array(); // $result['totalpd'] = count($result['pdid']); // $result['overallpdcount'] = count($result['pdid']); return $result; } public function getId($flag,$keyword){ // echo "flag".$flag; if($flag == 1){ $value = trim($keyword); $value = strtolower($value); $select = "entity_id";$table = "m_entity";$where = "short_name";} if($flag == 2){ $value = rtrim($keyword," ");$value = ltrim($value," "); $value = strtolower($value); $select = "product_id"; $table = "m_products"; $where = "abbr";} if($flag == 3){ $value = rtrim($keyword," ");$value = ltrim($value," "); $value = strtolower($value); $select = "subproduct_id"; $table = "m_subproducts"; $where = "abbr";} if($flag == 4){ $value = trim($keyword);$value = strtolower($value); $select = "customer_segment_id"; $table = "m_customer_segment"; $where = "abbr";} if($flag == 5){ $value = rtrim($keyword," ");$value = ltrim($value," "); $value = strtolower($value); $select = "state_id"; $table = "m_states"; $where = "name";} if($flag == 6){ $value = trim($keyword); $value = strtolower($value); $select = "pincode_id";$where = "pincode";$table = "m_pincode";} if($flag == 7){ $value = rtrim($keyword," ");$value = ltrim($value," "); $value = strtolower($value); $select = "city_id";$where = "name";$table = "m_city";} if($flag == 8){ $value = rtrim($keyword," ");$value = ltrim($value," ");$value = strtolower($value); $select = "userid";$where = "concat(m_user_profile.first_name, ' ', m_user_profile.last_name)";$table = "m_user_profile";} if($flag == 9){ $value = trim($keyword);$value = strtolower($value); $select = "userid";$where = "first_name";$table = "m_user_profile";} if($flag == 10){ $value = trim($keyword);$value = strtolower($value); $select = "title_id";$where = "name";$table = "m_titles";} $this->db->select($select); $this->db->from($table); $this->db->where($where." LIKE '%$value%'"); $this->db->where("isactive",1); // print_r($this->db->last_query());die(); $row = $this->db->get()->row(); if (isset($row)) { $id = $row->$select; } else { $id = ""; } return $id; } public function getPDSerialNO($pd_id){ $this->db->select('pd_sno'); $this->db->from(PDTRIGGER); $this->db->where('pd_id',$pd_id); $row = $this->db->get()->row(); $sno = (isset($row)) ? $row->pd_sno : ""; return $sno; } // public function GsheetData($GSdata){ // } public function PDList($pd_type,$pd_status,$pd_from_date,$pd_to_date,$pd_city,$pd_products,$pd_lender,$pd_customer_segment) { // PDTRIGGER.pd_specific_clarification, DATE_FORMAT(PDTRIGGER.createdon,"%d/%m/%Y %h:%i:%s %p") as createdon, PDTRIGGER.fk_createdby, PDTRIGGER.fk_updatedby,PDTRIGGER.fk_pd_allocation_type, PDTRIGGER.fk_pd_allocated_to,PDTRIGGER.executive_id,PDTRIGGER.central_pd_officer_id,PDTRIGGER.fk_pd_template_id, PDTRIGGER.fk_customer_segment,CUSTOMERSEGMENT.name as customer_segment_name,CUSTOMERSEGMENT.abbr as customer_segment_abbr, PDTRIGGER.pd_officier_final_judgement, PDTRIGGER.pd_agency_id, PDTRIGGER.loan_amount,PDTRIGGER.addressline1,PDTRIGGER.addressline2,PDTRIGGER.addressline3,PDTRIGGER.fk_city,CITY.name as city_name,PDTRIGGER.fk_state,STATE.name as state_name,PINCODE.pincode,PDTRIGGER.pincode as pincode_id,PDTRIGGER.lender_credit_person,PDTRIGGER.pd_contact_person,PDTRIGGER.pd_contact_mobileno,DATE_FORMAT(PDTRIGGER.scheduled_on,"%d/%m/%Y %h:%i %p") as scheduled_on,DATE_FORMAT(PDTRIGGER.completed_on,"%d/%m/%Y %h:%i:%s %p") as completed_on,PDTRIGGER.remarks,PDTRIGGER.bounce_reason,PDTRIGGER.bounce_reason_others,PDTRIGGER.is_original_report_created,PDTRIGGER.pd_report_latest_version,PDTRIGGER.pd_branch_id,PDTRIGGER.qc_feedback,PDTRIGGER.qc_rating,PDTRIGGER.qc_remarks,PDTRIGGER.lender_rating,PDTRIGGER.lender_feedback,PDTRIGGER.pd_contact_landline,PDTRIGGER.other_pincode,PDTRIGGER.is_otp_done,PDTRIGGER.otp_reject_other_reason,PDTRIGGER.encrypted_url,PDTRIGGER.is_child,PDTRIGGER.parent_pd_id,PDTRIGGER.fk_primary_address_id,PDTRIGGER.fk_address_id,PDTRIGGER.start_location,PDTRIGGER.random_string $this->db->SELECT('PDTRIGGER.pd_id, PDTRIGGER.pd_sno,PDTRIGGER.pd_status'); $this->db->FROM(PDTRIGGER.' as PDTRIGGER'); $this->db->JOIN(ENTITY.' as ENTITY','PDTRIGGER.fk_lender_id = ENTITY.entity_id ','LEFT'); $this->db->JOIN(ENTITY.' as SUBENTITY','PDTRIGGER.sub_entity_id = SUBENTITY.entity_id ','LEFT'); $this->db->JOIN(PRODUCTS.' as PRODUCTS','PDTRIGGER.fk_product_id = PRODUCTS.product_id','LEFT'); $this->db->JOIN(SUBPRODUCTS.' as SUBPRODUCTS','PDTRIGGER.fk_subproduct_id = SUBPRODUCTS.subproduct_id','LEFT'); $this->db->JOIN(PDTYPE.' as PDTYPE','PDTRIGGER.fk_pd_type = PDTYPE.pd_type_id','LEFT'); $this->db->JOIN(CUSTOMERSEGMENT.' as CUSTOMERSEGMENT','PDTRIGGER.fk_customer_segment = CUSTOMERSEGMENT.customer_segment_id','LEFT'); $this->db->JOIN(ENTITY.' as AGENCY','PDTRIGGER.pd_agency_id = AGENCY.entity_id','LEFT'); $this->db->JOIN(STATE.' as STATE','PDTRIGGER.fk_state = STATE.state_id ','LEFT'); $this->db->JOIN(CITY.' as CITY','PDTRIGGER.fk_city = CITY.city_id','LEFT'); $this->db->JOIN(PINCODE.' as PINCODE','PDTRIGGER.pincode = PINCODE.pincode_id','LEFT'); $this->db->WHERE('PDTRIGGER.pd_status =',COMPLETED); if(!empty($pd_type)) { $this->db->WHERE_IN('PDTRIGGER.fk_pd_type',$pd_type); } // if(!empty($pd_status)){ // $this->db->WHERE_IN('PDTRIGGER.pd_status',$pd_status); // } if(($pd_from_date != "" || $pd_from_date != null) && ($pd_to_date != "" || $pd_to_date != null)) { $this->db->where('PDTRIGGER.completed_on BETWEEN ' ."'$pd_from_date'". ' AND ' ."'$pd_to_date'"); } if(!empty($pd_city)) { $this->db->WHERE_IN('PDTRIGGER.fk_city',$pd_city); } if(!empty($pd_products)) { $this->db->WHERE_IN('PDTRIGGER.fk_product_id',$pd_products); } if(!empty($pd_lender)) { $this->db->WHERE_IN('PDTRIGGER.fk_lender_id',$pd_lender); } else { $this->db->WHERE('PDTRIGGER.fk_lender_id != ',(ENVIRONMENT == 'production' ? 7 : 35)); } if(!empty($pd_customer_segment)) { $this->db->WHERE('PDTRIGGER.fk_customer_segment',$pd_customer_segment); } $this->db->ORDER_BY('PDTRIGGER.pd_id','DESC'); $result_array = $this->db->GET()->result_array(); // print_r($this->db->last_query());die(); return $result_array; } }