Codeigniter Group仅返回第一行

时间:2017-02-20 10:56:19

标签: php mysql codeigniter

我在codeigniter中有一个预订模块,我限制用户每天只预订会所2小时。我目前正在codeigniter中创建验证以限制其预订。我所做的是选择所有预订,并按具有相同日期的行对它们进行分组,以便适当地限制它们。问题是我创建的模型只返回1行,而不是所有结果。这意味着我的计数器只被一行更改,我希望所有行都应该影响计数器。 下面是我的数据库表:

enter image description here

基本上,第二行不应该插入数据库,因为用户'20130123'已经用完了他当天的最大预订,即两小时。我在下面提供了验证检查,检查用户是否用完了两个小时的预订,我的逻辑是我只是在预订开始时减去预订结束。以上面的表格为例,我的解释是,在我的模型中,计数器的值只变为“2”,因为它只读取第一行(8 - 6 = 2),而不是“3”(第一行的结果为2,然后加上第二行的结果为1:[(8-6)+(9-8)])

总结一下,我的问题在于计数器的值,因为它只是由查询读取的第一行添加。

这是我的代码。

型号:

function check_twohours_clubhouse()
{
    $query = $this->db->select('*')->from('clubhouse_reservation')->where('username', $this->session->userdata('username'))->group_by('reservation_date')->having('count(reservation_date) > 1')->get();
    $result = $query->result();

    if($query->num_rows() > 0)
    {
        $ctr = '0';
        foreach($result as $row)
        {
            $totalhour = $row->reservation_end - $row->reservation_start; // subtract reservation start to reservation end to get the number of hours
            $ctr = $ctr + $totalhour;
        }

        $ctr = $ctr + ($this->input->post('reserveend') - $this->input->post('reservestart')); // add the selected "add reservation" hours to the counter 

        if($ctr > 2) // counter > 2 hours limit
        {
            return FALSE;
        }
        else
        {
            return TRUE;
        }
    }
    else
    {
        return TRUE;
    }
}

控制器:

function create_reservation_clubhouse()
{
    $this->form_validation->set_error_delimiters('<div class="error">','</div>');
    $this->form_validation->set_rules('datepick', 'Date', 'required|no_olddate');
    $this->form_validation->set_rules('reservestart', 'Reservation Start', 'required|hourselection|unique_reserve_clubhouse|max_twohours');

    if ($this->form_validation->run() == FALSE)
    {
        $this->template->load('user_template', 'view_userreservation_addclubhouse');
    }
    else
    {
        if($this->model_reservation_user->check_twohours_courtone())
        {
            if($query = $this->model_reservation_user->create_reservation_clubhouse())
            {
                $this->session->set_flashdata('reservefeedback', 'You have successfully reserved a date for the Clubhouse. Please wait for the administrators to accept your reservation.');
                redirect('user_reservation/clubhouse');
            }
        }
        else
        {
            $this->session->set_flashdata('reservefail', 'You cannot reserve more than two hours of Clubhouse per day.');
                redirect('user_reservation/clubhouse');
        }
    }
}

1 个答案:

答案 0 :(得分:0)

您可以使用time_to_sec()timediff()函数在SQL中计算所有这些:

select reservation_date, sum(time_to_sec(timediff(reserveend, reservestart)) / 3600 as reserved_hours
from clubhouse_reservation
where username =...
group by reservation_date
having count(*)>1 --although it is not clear to me why you have this restriction

以上查询将总结每个预订日期的给定用户,保留会所的小时数(3600 =一小时内的秒数)。

在您的PHP代码中,您只需要检查结果集中的reserved_hours是否为&gt;。

我不是真正的CI专家,因此我无法真正告诉如何将上述sql转换为CI。但是我担心你必须使用原始的sql,因为它总结了时间。