作者 王智

2021/03/08 北京固定翼飞机修改

... ... @@ -595,69 +595,69 @@ class Api
$weekarray = array("", "", "", "", "", "", ""); //先定义一个数组
$is_week = "" . $weekarray[date("w", strtotime(date('Y-m-d', $createtime)))];
$map['createtime'] = ['BETWEEN', [$createtime - 1, $createtime + 86400 - 1]];
if ($is_week == '周一') {
$count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
if (!empty($count)) {
if (count($count) > 2) {
$this->error('超过最大可预约次数', 0);
die;
}
}
}
if ($is_week == '周二') {
$count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
if (!empty($count)) {
if (count($count) > 2) {
$this->error('超过最大可预约次数', 0);
die;
}
}
}
if ($is_week == '周三') {
$count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
if (!empty($count)) {
if (count($count) > 2) {
$this->error('超过最大可预约次数', 0);
die;
}
}
}
if ($is_week == '周四') {
$count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
if (!empty($count)) {
if (count($count) > 2) {
$this->error('超过最大可预约次数', 0);
die;
}
}
}
if ($is_week == '周五') {
$count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
if (!empty($count)) {
if (count($count) > 2) {
$this->error('超过最大可预约次数', 0);
die;
}
}
}
if ($is_week == '周六') {
$count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
if (!empty($count)) {
if (count($count) > 2) {
$this->error('超过最大可预约次数', 0);
die;
}
}
}
if ($is_week == '周日') {
$count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
if (!empty($count)) {
if (count($count) > 2) {
$this->error('超过最大可预约次数', 0);
die;
}
// if ($is_week == '周一') {
$count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
if (!empty($count)) {
if (count($count) > 2) {
$this->error('超过最大可预约次数', 0);
die;
}
}
// }
// if ($is_week == '周二') {
// $count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
// if (!empty($count)) {
// if (count($count) > 2) {
// $this->error('超过最大可预约次数', 0);
// die;
// }
// }
// }
// if ($is_week == '周三') {
// $count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
// if (!empty($count)) {
// if (count($count) > 2) {
// $this->error('超过最大可预约次数', 0);
// die;
// }
// }
// }
// if ($is_week == '周四') {
// $count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
// if (!empty($count)) {
// if (count($count) > 2) {
// $this->error('超过最大可预约次数', 0);
// die;
// }
// }
// }
// if ($is_week == '周五') {
// $count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
// if (!empty($count)) {
// if (count($count) > 2) {
// $this->error('超过最大可预约次数', 0);
// die;
// }
// }
// }
// if ($is_week == '周六') {
// $count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
// if (!empty($count)) {
// if (count($count) > 2) {
// $this->error('超过最大可预约次数', 0);
// die;
// }
// }
// }
// if ($is_week == '周日') {
// $count = Db::name('yuyue')->where(['user_id' => $user_id])->where($map)->select();
// if (!empty($count)) {
// if (count($count) > 2) {
// $this->error('超过最大可预约次数', 0);
// die;
// }
// }
// }
}
... ...