Change-Id: Ie1f508ed9b6ecae20513e7fc72d0960f4b9fe837
This commit is contained in:
vguanyiwgd 2024-06-06 17:01:19 +08:00
parent 4cfcc5b2a6
commit bcd62dddd7
1 changed files with 16 additions and 3 deletions

View File

@ -1469,9 +1469,9 @@ class Recharge extends CI_Controller
$data['many_times_consume_start'] = trim($info['many_times_consume_start']); $data['many_times_consume_start'] = trim($info['many_times_consume_start']);
$data['many_times_consume_end'] = trim($info['many_times_consume_end']); $data['many_times_consume_end'] = trim($info['many_times_consume_end']);
$data['user_type_id'] = $info['user_type_id']; $data['user_type_id'] = $info['user_type_id'] ?: null;
$data['effective_type'] = $info['effective_type']; $data['effective_type'] = $info['effective_type'] ?: null;
$data['gift_type'] = $info['gift_type']; $data['gift_type'] = $info['gift_type'] ?: null;
$data['status'] = $info['status']; $data['status'] = $info['status'];
if(empty($data['name'])){ if(empty($data['name'])){
@ -1515,6 +1515,19 @@ class Recharge extends CI_Controller
exit; exit;
} }
// 把时间格式:替换成:
$data['start_time'] = str_replace("", ":", $data['start_time']);
$data['end_time'] = str_replace("", ":", $data['end_time']);
// 判断时间格式是否正确
if(!preg_match("/^([01]?[0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]$/", $data['start_time'])){
echo $this->lw_load->jsonResult(false,array('msg'=>'开始时间格式不正确'));
exit;
}
if(!preg_match("/^([01]?[0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]$/", $data['end_time'])){
echo $this->lw_load->jsonResult(false,array('msg'=>'结束时间格式不正确'));
exit;
}
if(in_array("*", $data['user_type_id'])){ if(in_array("*", $data['user_type_id'])){
$data['user_type_id'] = '*'; $data['user_type_id'] = '*';
}else{ }else{