Для серии операций в рамках одной и той же функции я хочу вернуть последний идентификатор вставки строки из 1-й таблицы данных для отправки 2-й таблицы данных.
У меня есть 2 таблицы в моей базе данных.После вставки все данные в 1-й таблице затем отправляют некоторые данные во 2-ю таблицу.И оттуда я держу последнюю вставку Идентификатор автоинкремента и хочу использовать этот идентификатор для отправки второй таблицы данных.Для этого у меня была функция контроллера последовательной работы.1-я операция выполняется хорошо, а также для 2-й операции другие данные, успешно вставленные во 2-ю таблицу , кроме последнего идентификатора вставки из 1-й таблицы .Здесь я показываю свою функцию контроллера и модель.Пожалуйста, предложите мне.
Имя файла модели test_model.php
и имя файла контроллера test.php
КОНТРОЛЛЕР:
public function create()
{
$data['test'] = (object)$postData = [
'test_id' => $this->input->post('test_id',true),
'test_department_id' =>$this->input->post('test_department_id',true),
'test_catgory_id' =>$this->input->post('test_catgory_id',true),
'test_name' =>$this->input->post('test_name',true),
'test_descrip' =>$this->input->post('test_descrip',true),
'test_price' =>$this->input->post('test_price',true),
'test_report_method' =>$this->input->post('test_report_method',true),
'test_report_day' =>$this->input->post('test_report_day',true),
'test_dr_comi_amnt' =>$this->input->post('test_dr_comi_amnt',true),
'test_dr_comi_percnt' =>$this->input->post('test_dr_comi_percnt',true),
'test_ref_comi_amnt' =>$this->input->post('test_ref_comi_amnt',true),
'test_ref_comi_percnt' =>$this->input->post('test_ref_comi_percnt',true),
'status' => $this->input->post('status',true)
];
if ($this->form_validation->run() === true) {
if (empty($postData['test_id'])) {
if ($this->test_model->create($postData)) {
/*------FOR 2nd Operation------------- START -------*/
//----- data from Model ---------
$stest_id_1 = $this->test_model->getLast_InsertId();
$stest_id = $this->input->post($stest_id_1);
$sFranId = $this->input->post('frn_id');
$sm_updated_test_price = $this->input->post('test_price');
$test_forFran = array();
for ($i=1; $i < sizeof($sFranId); $i++)
{
if(!empty($sFranId[$i]))
$test_forFran[$i] = array(
'm_test_id' => $stest_id,
'm_updated_test_price' => $sm_updated_test_price,
'm_fran_id' => $sFranId[$i]
);
}
if($this->test_model->testInsert_PriceMaster($test_forFran)){
$this->session->set_flashdata('message', display('save_successfully'));
}
/*------FOR 2nd Operation------------- END -------*/
$this->session->set_flashdata('message', display('save_successfully'));
} else {
#set exception message
$this->session->set_flashdata('exception',display('please_try_again'));
}
redirect('medical_diagnosis/test/create');
}
} else {
$data['franceschi_list'] = $this->franceschi_model->franceschi_list_forId();
$data['department_list'] = $this->test_department_model->department_list();
$data['catagory_list'] = $this->test_catagory_model->catagory_list();
$data['content'] = $this->load->view('medical_diagnosis/test_form',$data,true);
$this->load->view('layout/main_wrapper',$data);
}
}
МОДЕЛЬ Функция 1
public function create($data = [])
{
$this->db->insert($this->table,$data);
$last_insert_id = $this->db->insert_id();
return $last_insert_id;
}
MODAL Функция 2 & 3
public function getLast_InsertId($last_insert_id = null)
{
$last_insert_id = $this->session->userdata('last_insert_id');
}
public function testInsert_PriceMaster($test_forFran)
{
return $this->db->insert_batch($this->fran_test_pricemaster,$test_forFran);
}