82 lines
2.1 KiB
PHP
82 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* This service file is part of item.
|
|
*
|
|
* @author ctexthuang
|
|
* @contact ctexthuang@qq.com
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Admin\Catering\Meal;
|
|
|
|
use App\Constants\Admin\CateringCode;
|
|
use App\Constants\Common\OrderCode;
|
|
use App\Exception\ErrException;
|
|
use App\Model\Order;
|
|
use App\Model\OrderMealCateringLog;
|
|
use App\Service\Admin\Catering\CateringBaseService;
|
|
use Hyperf\Di\Annotation\Inject;
|
|
|
|
class CheckService extends CateringBaseService
|
|
{
|
|
|
|
/**
|
|
* @var OrderMealCateringLog
|
|
*/
|
|
#[Inject]
|
|
protected OrderMealCateringLog $orderMealCateringLog;
|
|
|
|
/**
|
|
* @var OrderMealCateringLog
|
|
*/
|
|
protected OrderMealCateringLog $logInfo;
|
|
|
|
/**
|
|
* @var Order
|
|
*/
|
|
#[Inject]
|
|
protected Order $orderModel;
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function handle(): array
|
|
{
|
|
$this->logInfo = $this->orderMealCateringLog
|
|
->where('sku_id', $this->request->input('sku_id'))
|
|
->where('cycle_id',$this->cycleId)
|
|
->where('status',CateringCode::CATERING_STATUS_UNDERWAY)
|
|
->where('quantity','>',0)
|
|
->first();
|
|
|
|
if (!empty($this->logInfo)) $this->tips();
|
|
|
|
$orderIds = $this->orderModel
|
|
->where('cycle_id', $this->cycleId)
|
|
->where('type',OrderCode::ORDER_TYPE_MEAL)
|
|
->where('status',OrderCode::PAYED)
|
|
->pluck('order_id')
|
|
->toArray();
|
|
|
|
if (empty($orderIds)) throw new ErrException('数据错误');
|
|
|
|
$this->orderModel->whereIn('id', $orderIds)->update(['status' => OrderCode::PLAN]);
|
|
|
|
return $this->return->success();
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
private function tips(): void
|
|
{
|
|
$siteInfo = $this->siteModel->find($this->logInfo->site_id);
|
|
if (empty($siteInfo)) throw new ErrException('数据错误');
|
|
$driverInfo = $this->driverSequenceModel->find($siteInfo->delivered_id);
|
|
if (empty($driverInfo)) throw new ErrException('数据错误');
|
|
|
|
throw new ErrException($driverInfo->driver_num.'-'.$siteInfo->sequence.'还未配餐完成,请刷新页面并完成配餐再执行');
|
|
}
|
|
|
|
} |