不替换先前数据的CodeIgniter update_batch,下一个更新值将以逗号分隔,并以增量分隔 [英] CodeIgniter update_batch without replacing the previous data next updated value will puts by comma separated as increment

查看:92
本文介绍了不替换先前数据的CodeIgniter update_batch,下一个更新值将以逗号分隔,并以增量分隔的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尽管我不确定。 update_batch是否可以不替换先前的数据,下一个更新值将以逗号分隔的形式放在SAME FILED上,以逗号分隔。为了更好的理解,我显示了2个演示图像。我的代码仅可用于批量更新,而不能用于 update_batch增量值,而无需替换以前的数据!

Although I am not sure. update_batch is it possible to without replacing the previous data next updated value will puts by comma separated as an array-form on the SAME FILED . I shown 2 Demo image for better understand. My Code is already running for only batch update But not for update_batch increment value without replacing previous data!

例如-
对于第一次更新,列字段将在 t_franchise_price列中显示为这样 ---

For example - For 1st time update , column field will shown like this at "t_franchise_price" column ---

第二次执行下一次更新时,列字段 t_franchise_price看起来像此 ---

For 2nd time When next update will perform , then column field "t_franchise_price" will look like this ---

我的控制器是

public function batch_update() {

    $sID = $this - > input - > post('test_id[]');
    $sAmt = $this - > input - > post('test_priceUpdt[]');
    $sOfficeId = $this - > input - > post('fran_office_id');
    date_default_timezone_set('Asia/Kolkata');
    $edited_test = array();

    if (!empty($sID)) {
        foreach($sID as $k => $v) {
            $edited_test = array(
                'test_id' => $sID[$k],
                'test_priceUpdt' => $sAmt[$k],
                'fran_office_id' => $sOfficeId,
                'last_edit_date' => date('Y-m-d H:i:s', time())
            );

            $edited_test = json_encode($edited_test);
            $postData[] = array('test_id' => $v, 't_franchise_price' => $edited_test);
        }
        $data['franchise_tst_pkg'] = (object) $postData;
    }

    
    #-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - #
    if ($this - > form_validation - > run() === true) {

        $this - > franchise_price_model - > batchTestupdate($postData);

        $this - > session - > set_flashdata('message', display('save_successfully'));
        redirect('branch/franchise_price/create');


}

* *我的模型是**

**My Model is **

public function batchTestupdate($data = [])
		{
			$this->db
				->update_batch($this->table_test, $data , 'test_id');
		}

查看

<tr>
  <td>
    <input type="text" name="test_name[]" class="form-control" placeholder="" value="<?php echo $subject->test_name; ?>" disabled>
    <input type="hidden" name="test_id[]" class="form-control" placeholder="" value="<?php echo $subject->test_id; ?>">
  </td>
  <td>
    <input type="text" name="test_price[]" class="form-control" placeholder="" value="<?php echo $subject->test_price; ?>" disabled>
  </td>
  <td>
    <input type="text" name="test_priceUpdt[]" class="form-control" placeholder="" value="<?php echo $subject->test_price; ?>" id="test_priceEdt">
  </td>
</tr>

推荐答案

追加到表字段 t_franchise_price 而不是覆盖。

Appends on table field t_franchise_price rather than overwrite.

更改:

$this - > franchise_price_model - > batchTestupdate($postData);

收件人:

$this->franchise_price_model->batchTestupdate($postData, 2);

将模型方法更改为:

public function batchTestupdate($data = [], $method=1){
    $db_table = $this->db->dbprefix($this->table_test);
    $sql = "";

    if($method == 1){
        $this->db->update_batch($this->table_test, $data , 'test_id');
    }
    else if($method == 2){
        foreach($data as $k=>$v){
            $sql = "UPDATE $db_table SET t_franchise_price = TRIM(BOTH ',' FROM CONCAT(COALESCE(t_franchise_price,''), ',', ?)) WHERE test_id = ?;";
            $result = $this->db->query($sql, array($v['t_franchise_price'], $v['test_id']));
            if($result === false) {
                echo "ERROR at index $k - query: ((".$this->db->last_query()."))<br/><br/>\n\n";
                print_r($this->db->error()); echo "<br/><br/>\n\n";
            }
        }
    }
}

这篇关于不替换先前数据的CodeIgniter update_batch,下一个更新值将以逗号分隔,并以增量分隔的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆