北京单场早上06:00到10:00时间为非下单时间
parent
28b2e5aaf3
commit
7d10e19b3f
|
|
@ -463,6 +463,7 @@ class BjdcController extends BaseController
|
||||||
*/
|
*/
|
||||||
public function orderCreate(Request $request, BjdcService $service)
|
public function orderCreate(Request $request, BjdcService $service)
|
||||||
{
|
{
|
||||||
|
ThrowException::isTrue(!$this->allowHour(), '早六点到上午十点是非销售时间');
|
||||||
$data = $request->all();
|
$data = $request->all();
|
||||||
$lotteryTypeId = Arr::get($data, 'lottery_type_id');
|
$lotteryTypeId = Arr::get($data, 'lottery_type_id');
|
||||||
$lotteryType = LotteryType::find($lotteryTypeId);
|
$lotteryType = LotteryType::find($lotteryTypeId);
|
||||||
|
|
@ -490,5 +491,12 @@ class BjdcController extends BaseController
|
||||||
'pay_types' => $this->getPayTypes()
|
'pay_types' => $this->getPayTypes()
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
public function allowHour()
|
||||||
|
{
|
||||||
|
$h = date('H');
|
||||||
|
if ($h >= 6 && $h <= 10 ){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue