342 lines
17 KiB
PHP
342 lines
17 KiB
PHP
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
require_once APPPATH . '/libraries/SPARQ_Model.php';
|
|
class Template_Management_Model extends SPARQ_Model {
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
}
|
|
|
|
|
|
public function listAllTemplates($page,$limit,$sort)
|
|
{
|
|
$this->db->SELECT('TEMPLATE.template_id, TEMPLATE.template_name, DATE_FORMAT(TEMPLATE.createdon,"%d/%m/%Y") as createdon, TEMPLATE.fk_createdby,TEMPLATE.updatedon, TEMPLATE.fk_updatedby, TEMPLATE.isactive,concat(USERPROFILE.first_name," ",USERPROFILE.last_name) as createdby,concat(USERPROFILE1.first_name," ",USERPROFILE1.last_name) as updatedby');
|
|
$this->db->FROM(TEMPLATE.' as TEMPLATE');
|
|
$this->db->JOIN(USERPROFILE.' as USERPROFILE','TEMPLATE.fk_createdby = USERPROFILE.userid');
|
|
$this->db->JOIN(USERPROFILE.' as USERPROFILE1','TEMPLATE.fk_updatedby = USERPROFILE1.userid','LEFT');
|
|
$this->db->ORDER_BY('TEMPLATE.template_id',$sort);
|
|
$this->db->LIMIT($limit,$page);
|
|
$templates = $this->db->GET()->result_array();
|
|
|
|
|
|
if(count($templates))
|
|
{
|
|
|
|
foreach($templates as $key => $template)
|
|
{
|
|
$this->db->SELECT('LENDERTEMPLATE.template_lender_map_id, LENDERTEMPLATE.fk_template_id, LENDERTEMPLATE.fk_lender_id,ENTITY.full_name,ENTITY.short_name, LENDERTEMPLATE.fk_product_id,PRODUCTS.name as product_name,PRODUCTS.abbr as product_abbr, LENDERTEMPLATE.fk_customer_segment,CUSTOMERSEGMENT.name as customer_segment_name, CUSTOMERSEGMENT.abbr as customer_segment_abbr,DATE_FORMAT(LENDERTEMPLATE.createdon, "%d/%m/%Y") as createdon,LENDERTEMPLATE.fk_createdby, DATE_FORMAT(LENDERTEMPLATE.updatedon,"%d/%m/%Y") as updatedon, LENDERTEMPLATE.isactive,LENDERTEMPLATE.fk_updatedby,concat(USERPROFILE.first_name," ",USERPROFILE.last_name) as createdby,concat(USERPROFILE1.first_name," ",USERPROFILE1.last_name) as updatedby');
|
|
$this->db->FROM(LENDERTEMPLATE.' as LENDERTEMPLATE');
|
|
$this->db->JOIN(ENTITY.' as ENTITY','LENDERTEMPLATE.fk_lender_id = ENTITY.entity_id');
|
|
$this->db->JOIN(PRODUCTS.' as PRODUCTS','LENDERTEMPLATE.fk_product_id = PRODUCTS.product_id');
|
|
$this->db->JOIN(CUSTOMERSEGMENT.' as CUSTOMERSEGMENT','LENDERTEMPLATE.fk_customer_segment = CUSTOMERSEGMENT.customer_segment_id');
|
|
$this->db->JOIN(USERPROFILE.' as USERPROFILE','LENDERTEMPLATE.fk_createdby = USERPROFILE.userid');
|
|
$this->db->JOIN(USERPROFILE.' as USERPROFILE1','LENDERTEMPLATE.fk_updatedby = USERPROFILE1.userid','LEFT');
|
|
$this->db->WHERE('LENDERTEMPLATE.fk_template_id',$template['template_id']);
|
|
$child_data = $this->db->GET()->result_array();
|
|
$templates[$key]['lender_details'] = $child_data;
|
|
|
|
}
|
|
|
|
|
|
return $templates;
|
|
|
|
|
|
}
|
|
else
|
|
{
|
|
return array();
|
|
}
|
|
|
|
}
|
|
|
|
public function getTemplateMaster($template_id)
|
|
{
|
|
|
|
$this->db->SELECT('TEMPLATE.template_id, TEMPLATE.template_name, DATE_FORMAT(TEMPLATE.createdon,"%d/%m/%Y") as createdon, TEMPLATE.fk_createdby,TEMPLATE.updatedon, TEMPLATE.fk_updatedby, TEMPLATE.isactive,concat(USERPROFILE.first_name," ",USERPROFILE.last_name) as createdby,concat(USERPROFILE1.first_name," ",USERPROFILE1.last_name) as updatedby');
|
|
$this->db->FROM(TEMPLATE.' as TEMPLATE');
|
|
$this->db->JOIN(USERPROFILE.' as USERPROFILE','TEMPLATE.fk_createdby = USERPROFILE.userid');
|
|
$this->db->JOIN(USERPROFILE.' as USERPROFILE1','TEMPLATE.fk_updatedby = USERPROFILE1.userid','LEFT');
|
|
$this->db->WHERE('TEMPLATE.template_id',$template_id);
|
|
$template = $this->db->GET()->result_array();
|
|
return $template;
|
|
}
|
|
|
|
public function getTemplateLenders($template_id)
|
|
{
|
|
$this->db->SELECT('LENDERTEMPLATE.template_lender_map_id, LENDERTEMPLATE.fk_template_id, LENDERTEMPLATE.fk_lender_id,ENTITY.full_name,ENTITY.short_name, LENDERTEMPLATE.fk_product_id,PRODUCTS.name as product_name,PRODUCTS.abbr as product_abbr, LENDERTEMPLATE.fk_customer_segment,CUSTOMERSEGMENT.name as customer_segment_name, CUSTOMERSEGMENT.abbr as customer_segment_abbr,DATE_FORMAT(LENDERTEMPLATE.createdon, "%d/%m/%Y") as createdon,LENDERTEMPLATE.fk_createdby, DATE_FORMAT(LENDERTEMPLATE.updatedon,"%d/%m/%Y") as updatedon, LENDERTEMPLATE.isactive,LENDERTEMPLATE.fk_updatedby,concat(USERPROFILE.first_name," ",USERPROFILE.last_name) as createdby,concat(USERPROFILE1.first_name," ",USERPROFILE1.last_name) as updatedby');
|
|
$this->db->FROM(LENDERTEMPLATE.' as LENDERTEMPLATE');
|
|
$this->db->JOIN(ENTITY.' as ENTITY','LENDERTEMPLATE.fk_lender_id = ENTITY.entity_id');
|
|
$this->db->JOIN(PRODUCTS.' as PRODUCTS','LENDERTEMPLATE.fk_product_id = PRODUCTS.product_id');
|
|
$this->db->JOIN(CUSTOMERSEGMENT.' as CUSTOMERSEGMENT','LENDERTEMPLATE.fk_customer_segment = CUSTOMERSEGMENT.customer_segment_id');
|
|
$this->db->JOIN(USERPROFILE.' as USERPROFILE','LENDERTEMPLATE.fk_createdby = USERPROFILE.userid');
|
|
$this->db->JOIN(USERPROFILE.' as USERPROFILE1','LENDERTEMPLATE.fk_updatedby = USERPROFILE1.userid','LEFT');
|
|
$this->db->WHERE('LENDERTEMPLATE.fk_template_id',$template_id);
|
|
$data = $this->db->GET()->result_array();
|
|
return $data;
|
|
}
|
|
|
|
public function getTemplateCategories($template_id)
|
|
{
|
|
$this->db->SELECT('TEMPLATECATEGORYWEIGHTAGE.template_category_weightage_id, TEMPLATECATEGORYWEIGHTAGE.fk_question_category_id, TEMPLATECATEGORYWEIGHTAGE.fk_template_id, TEMPLATECATEGORYWEIGHTAGE.weightage, DATE_FORMAT(TEMPLATECATEGORYWEIGHTAGE.createdon,"%d/%m/%Y") as createdon, TEMPLATECATEGORYWEIGHTAGE.fk_createdby, DATE_FORMAT(TEMPLATECATEGORYWEIGHTAGE.updatedon, "%d/%m/%Y") as updatedon, TEMPLATECATEGORYWEIGHTAGE.isactive, TEMPLATECATEGORYWEIGHTAGE.fk_updatedby');
|
|
$this->db->FROM(TEMPLATECATEGORYWEIGHTAGE .' as TEMPLATECATEGORYWEIGHTAGE');
|
|
// $this->db->JOIN(TEMPLATECATEGORYWEIGHTAGE.' as TEMPLATECATEGORYWEIGHTAGE',"TEMPLATECATEGORYWEIGHTAGE.template_category_weightage_id = QUESTIONCATEGORY.question_category_id AND TEMPLATECATEGORYWEIGHTAGE.fk_template_id = $template_id");
|
|
// $this->db->JOIN(USERPROFILE.' as USERPROFILE','TEMPLATECATEGORYWEIGHTAGE.fk_createdby = USERPROFILE.userid','LEFT');
|
|
//$this->db->JOIN(USERPROFILE.' as USERPROFILE1','TEMPLATECATEGORYWEIGHTAGE.fk_updatedby = USERPROFILE1.userid','LEFT');
|
|
$this->db->WHERE('TEMPLATECATEGORYWEIGHTAGE.fk_template_id',$template_id);
|
|
$categories = $this->db->GET()->result_array();
|
|
// if(count($categories))
|
|
// {
|
|
// foreach($categories as $ckey => $category)
|
|
// {
|
|
// $this->db->SELECT('template_group_id,fk_question_group_id');
|
|
// $this->db->FROM(TEMPLATEGROUP);
|
|
// $this->db->WHERE(TEMPLATEGROUP.'.fk_template_category_weightage_id',$category['template_category_weightage_id']);
|
|
// $groups = $this->db->GET()->result_array();
|
|
// $categories[$ckey]['groups'] = $groups;
|
|
// }
|
|
// }
|
|
return $categories;
|
|
}
|
|
|
|
|
|
/*
|
|
DATE_FORMAT(TEMPLATECATEGORYWEIGHTAGE.createdon,"%d/%m/%Y") as createdon, TEMPLATECATEGORYWEIGHTAGE.fk_createdby, DATE_FORMAT(TEMPLATECATEGORYWEIGHTAGE.updatedon, "%d/%m/%Y") as updatedon,TEMPLATECATEGORYWEIGHTAGE.fk_updatedby,concat(USERPROFILE.first_name," ",USERPROFILE.last_name) as createdby,concat(USERPROFILE1.first_name," ",USERPROFILE1.last_name) as updatedby
|
|
|
|
*/
|
|
public function getTemplateQuestionAnswers($template_id)
|
|
{
|
|
|
|
$this->db->SELECT('QUESTIONCATEGORY.category_name,TEMPLATECATEGORYWEIGHTAGE.template_category_weightage_id, TEMPLATECATEGORYWEIGHTAGE.fk_question_category_id, TEMPLATECATEGORYWEIGHTAGE.fk_template_id, TEMPLATECATEGORYWEIGHTAGE.weightage, DATE_FORMAT(TEMPLATECATEGORYWEIGHTAGE.createdon,"%d/%m/%Y") as createdon, TEMPLATECATEGORYWEIGHTAGE.fk_createdby, DATE_FORMAT(TEMPLATECATEGORYWEIGHTAGE.updatedon, "%d/%m/%Y") as updatedon, TEMPLATECATEGORYWEIGHTAGE.isactive, TEMPLATECATEGORYWEIGHTAGE.fk_updatedby');
|
|
$this->db->FROM(TEMPLATECATEGORYWEIGHTAGE .' as TEMPLATECATEGORYWEIGHTAGE');
|
|
$this->db->JOIN(QUESTIONCATEGORY.' as QUESTIONCATEGORY','TEMPLATECATEGORYWEIGHTAGE.fk_question_category_id = QUESTIONCATEGORY.question_category_id');
|
|
// $this->db->JOIN(USERPROFILE.' as USERPROFILE','TEMPLATECATEGORYWEIGHTAGE.fk_createdby = USERPROFILE.userid','LEFT');
|
|
// $this->db->JOIN(USERPROFILE.' as USERPROFILE1','TEMPLATECATEGORYWEIGHTAGE.fk_updatedby = USERPROFILE1.userid','LEFT');
|
|
$this->db->WHERE('TEMPLATECATEGORYWEIGHTAGE.fk_template_id',$template_id);
|
|
|
|
$categories = $this->db->GET()->result_array();
|
|
|
|
if(count($categories))
|
|
{
|
|
/*
|
|
DATE_FORMAT(TEMPLATEQUESTION.createdon,"%d/%m/%Y") as createdon, TEMPLATEQUESTION.fk_createdby, DATE_FORMAT(TEMPLATEQUESTION.updatedon,"%d/%m/%Y") as updatedon, TEMPLATEQUESTION.fk_updatedby,concat(USERPROFILE.first_name," ",USERPROFILE.last_name) as createdby,concat(USERPROFILE1.first_name," ",USERPROFILE1.last_name) as updatedby
|
|
*/
|
|
foreach($categories as $category_key => $category)
|
|
{
|
|
|
|
$this->db->SELECT('QUESTIONS.question_id,QUESTIONS.question,TEMPLATEQUESTION.template_question_id, TEMPLATEQUESTION.fk_template_id, TEMPLATEQUESTION.fk_question_id, TEMPLATEQUESTION.question_weightage, TEMPLATEQUESTION.question_answerable_by,TEMPLATEQUESTION.fk_template_question_category_id, TEMPLATEQUESTION.isactive');
|
|
//$this->db->FROM(TEMPLATEQUESTION.' as TEMPLATEQUESTION');
|
|
$this->db->FROM(TEMPLATEQUESTION.' as TEMPLATEQUESTION');
|
|
$this->db->JOIN(QUESTIONS.' as QUESTIONS','TEMPLATEQUESTION.fk_question_id = QUESTIONS.question_id','LEFT');
|
|
// $this->db->JOIN(USERPROFILE.' as USERPROFILE','TEMPLATEQUESTION.fk_createdby = USERPROFILE.userid','LEFT');
|
|
// $this->db->JOIN(USERPROFILE.' as USERPROFILE1','TEMPLATEQUESTION.fk_updatedby = USERPROFILE1.userid','LEFT');
|
|
$this->db->WHERE('TEMPLATEQUESTION.fk_template_question_category_id',$category['fk_question_category_id']);
|
|
$this->db->WHERE('TEMPLATEQUESTION.fk_template_id',$template_id);
|
|
$questions = $this->db->GET()->result_array();
|
|
|
|
|
|
if(count($questions))
|
|
{
|
|
|
|
foreach($questions as $answer_key => $question)
|
|
{
|
|
$this->db->SELECT('QUESTIONANSWERS.question_answer_id,QUESTIONANSWERS.answer,TEMPLATEANSWERWEIGHTAGE.template_answer_weightage_id, TEMPLATEANSWERWEIGHTAGE.fk_template_question_id, TEMPLATEANSWERWEIGHTAGE.fk_question_answer_id, TEMPLATEANSWERWEIGHTAGE.template_answer_weightage, TEMPLATEANSWERWEIGHTAGE.isactive');
|
|
$this->db->FROM(TEMPLATEANSWERWEIGHTAGE.' as TEMPLATEANSWERWEIGHTAGE');
|
|
$this->db->JOIN(QUESTIONANSWERS.' as QUESTIONANSWERS','TEMPLATEANSWERWEIGHTAGE.fk_question_answer_id = QUESTIONANSWERS.question_answer_id','LEFT');
|
|
$this->db->WHERE('TEMPLATEANSWERWEIGHTAGE.fk_template_question_id',$question['template_question_id']);
|
|
|
|
$answers = $this->db->GET()->result_array();
|
|
$questions[$answer_key]['answers'] = $answers;
|
|
}
|
|
}
|
|
$categories[$category_key]['questions'] = $questions;
|
|
}
|
|
|
|
}
|
|
|
|
return $categories;
|
|
}
|
|
|
|
|
|
public function getListOfQuestions($template_id,$category_id)
|
|
{
|
|
$questions = array();
|
|
if(($template_id != "" || $template_id != null) && ($category_id != "" || $category_id != null))
|
|
{
|
|
$fields = array('fk_question_id');
|
|
$where_condition_array = array('fk_template_question_category_id' => $category_id,'fk_template_id' => $template_id);
|
|
$result_data = $this->selectCustomRecords($fields,$where_condition_array,TEMPLATEQUESTION);
|
|
|
|
if(count($result_data))
|
|
{
|
|
|
|
$temp_array = array();
|
|
foreach($result_data as $res)
|
|
{
|
|
array_push($temp_array,$res['fk_question_id']);
|
|
}
|
|
|
|
$this->db->SELECT('QUESTIONS.question_id,QUESTIONS.question');
|
|
$this->db->FROM(QUESTIONS.' as QUESTIONS');
|
|
$this->db->WHERE('QUESTIONS.fk_question_category',$category_id);
|
|
$this->db->WHERE('QUESTIONS.isactive',1);
|
|
$this->db->WHERE_NOT_IN('QUESTIONS.question_id',$temp_array);
|
|
$questions = $this->db->GET()->result_array();
|
|
|
|
|
|
if(count($questions))
|
|
{
|
|
|
|
foreach($questions as $answer_key => $question)
|
|
{
|
|
$this->db->SELECT('QUESTIONANSWERS.question_answer_id,QUESTIONANSWERS.answer');
|
|
$this->db->FROM(QUESTIONANSWERS.' as QUESTIONANSWERS');
|
|
$this->db->WHERE('QUESTIONANSWERS.fk_question_id',$question['question_id']);
|
|
$answers = $this->db->GET()->result_array();
|
|
|
|
// Attach TEMPLATEANSWERWEIGHTAGE table keys for front purpose
|
|
if(count($answers))
|
|
{
|
|
foreach($answers as $key => $answer)
|
|
{
|
|
$answers[$key]['template_answer_weightage_id'] = null;
|
|
$answers[$key]['fk_template_question_id'] = null;
|
|
$answers[$key]['fk_question_answer_id'] = null;
|
|
$answers[$key]['template_answer_weightage'] = null;
|
|
|
|
}
|
|
}
|
|
$questions[$answer_key]['answers'] = $answers;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
else
|
|
{
|
|
|
|
$this->db->SELECT('QUESTIONS.question_id,QUESTIONS.question');
|
|
$this->db->FROM(QUESTIONS.' as QUESTIONS');
|
|
$this->db->WHERE('QUESTIONS.fk_question_category',$category_id);
|
|
$this->db->WHERE('QUESTIONS.isactive',1);
|
|
$questions = $this->db->GET()->result_array();
|
|
|
|
|
|
|
|
if(count($questions))
|
|
{
|
|
|
|
foreach($questions as $answer_key => $question)
|
|
{
|
|
$this->db->SELECT('QUESTIONANSWERS.question_answer_id,QUESTIONANSWERS.answer');
|
|
$this->db->FROM(QUESTIONANSWERS.' as QUESTIONANSWERS');
|
|
$this->db->WHERE('QUESTIONANSWERS.fk_question_id',$question['question_id']);
|
|
$answers = $this->db->GET()->result_array();
|
|
|
|
// Attach TEMPLATEANSWERWEIGHTAGE table keys for front purpose
|
|
if(count($answers))
|
|
{
|
|
foreach($answers as $key => $answer)
|
|
{
|
|
$answers[$key]['template_answer_weightage_id'] = null;
|
|
$answers[$key]['fk_template_question_id'] = null;
|
|
$answers[$key]['fk_question_answer_id'] = null;
|
|
$answers[$key]['template_answer_weightage'] = null;
|
|
|
|
}
|
|
}
|
|
|
|
// Attach TEMPLATEQUESTION table keys for front purpose
|
|
$questions[$answer_key]['answers'] = $answers;
|
|
$questions[$answer_key]['template_question_id'] = null;
|
|
$questions[$answer_key]['fk_template_id'] = null;
|
|
$questions[$answer_key]['fk_question_id'] = null;
|
|
$questions[$answer_key]['question_weightage'] = null;
|
|
$questions[$answer_key]['question_answerable_by'] = null;
|
|
$questions[$answer_key]['fk_template_question_category_id'] = null;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return $questions;
|
|
}
|
|
|
|
|
|
|
|
public function getCategoryGroupCombinations($question_category_id)
|
|
{
|
|
$this->db->DISTINCT();
|
|
$this->db->SELECT('QUESTIONGROUP.question_group_id,QUESTIONGROUP.group_name');
|
|
$this->db->FROM(QUESTIONS.' as QUESTIONS');
|
|
$this->db->JOIN(QUESTIONGROUP.' as QUESTIONGROUP','QUESTIONS.fk_question_group_id = QUESTIONGROUP.question_group_id');
|
|
$this->db->WHERE('QUESTIONS.fk_question_category',$question_category_id);
|
|
$groups = $this->db->GET()->result_array();
|
|
|
|
return $groups;
|
|
|
|
}
|
|
|
|
public function getTemplateMappingDetailsV2($value){
|
|
$this->db->SELECT('TEMPLATE_MAP_V2.id as map_id, TEMPLATE_MAP_V2.entity_id, ENTITY.full_name, ENTITY.short_name, TEMPLATE_MAP_V2.product_id,PRODUCTS.name as product_name,PRODUCTS.abbr as product_abbr, TEMPLATE_MAP_V2.customer_segment_id,CUSTOMERSEGMENT.name as customer_segment_name,CUSTOMERSEGMENT.abbr as customer_segment_abbr');
|
|
$this->db->FROM(TEMPLATE_MAP_V2.' as TEMPLATE_MAP_V2');
|
|
$this->db->JOIN(ENTITY.' as ENTITY','TEMPLATE_MAP_V2.entity_id = ENTITY.entity_id','LEFT');
|
|
$this->db->JOIN(PRODUCTS.' as PRODUCTS','TEMPLATE_MAP_V2.product_id = PRODUCTS.product_id','LEFT');
|
|
$this->db->JOIN(CUSTOMERSEGMENT.' as CUSTOMERSEGMENT','TEMPLATE_MAP_V2.customer_segment_id = CUSTOMERSEGMENT.customer_segment_id','LEFT');
|
|
$this->db->WHERE('TEMPLATE_MAP_V2.isactive',1);
|
|
if(!empty($value)) {
|
|
if(is_array($value)){
|
|
if(isset($value['entity_id']))
|
|
{
|
|
$this->db->WHERE('TEMPLATE_MAP_V2.entity_id',$value['entity_id']);
|
|
}
|
|
if(isset($value['product_id']))
|
|
{
|
|
$this->db->WHERE('TEMPLATE_MAP_V2.product_id',$value['product_id']);
|
|
}
|
|
if(isset($value['customer_segment_id']))
|
|
{
|
|
$this->db->WHERE('TEMPLATE_MAP_V2.customer_segment_id',$value['customer_segment_id']);
|
|
}
|
|
}
|
|
else {
|
|
$this->db->WHERE('TEMPLATE_MAP_V2.entity_id',$value);
|
|
}
|
|
}
|
|
$result = $this->db->GET()->result_array();
|
|
return $result;
|
|
}
|
|
|
|
public function getTemplateFormsV2($value){
|
|
$this->db->SELECT('TEMPLATE_JSON_V2.form_id,PDFORMS.pd_form_name as form_name,TEMPLATE_JSON_V2.json');
|
|
$this->db->FROM(TEMPLATE_JSON_V2.' as TEMPLATE_JSON_V2');
|
|
$this->db->JOIN(PDFORMS.' as PDFORMS','TEMPLATE_JSON_V2.form_id = PDFORMS.pd_form_id','LEFT');
|
|
$this->db->WHERE('TEMPLATE_JSON_V2.isactive',1);
|
|
$this->db->WHERE('TEMPLATE_JSON_V2.map_id',$value);
|
|
$result = $this->db->GET()->result_array();
|
|
return $result;
|
|
}
|
|
|
|
public function saveTemplateMapping($records,$table){
|
|
$this->db->insert($table, $records);
|
|
$insert_id = $this->db->insert_id();
|
|
return $insert_id;
|
|
}
|
|
|
|
public function inactiveMappingDetailsandJSONV2($id){
|
|
$this->db->where('map_id',$id);
|
|
$this->db->set('isactive',0);
|
|
$this->db->update(TEMPLATE_MAP_V2);
|
|
$afftectedRows = $this->db->affected_rows();
|
|
if(count($afftectedRows>0)){
|
|
$this->db->where('map_id',$id);
|
|
$this->db->set('isactive',0);
|
|
$this->db->update(TEMPLATE_JSON_V2);
|
|
// $afftectedRows = $this->db->affected_rows();
|
|
}
|
|
return count($afftectedRows)>0 ? true: false;
|
|
}
|
|
|
|
} |