glhcp/server/app/admin/validate/integral/IntegralOrderValidate.php

144 lines
4.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
// +----------------------------------------------------------------------
// | likeshop开源商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | gitee下载https://gitee.com/likeshop_gitee
// | github下载https://github.com/likeshop-github
// | 访问官网https://www.likeshop.cn
// | 访问社区https://home.likeshop.cn
// | 访问手册http://doc.likeshop.cn
// | 微信公众号likeshop技术社区
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用未经许可不能去除前后端官方版权标识
// | likeshop系列产品收费版本务必购买商业授权购买去版权授权后方可去除前后端官方版权标识
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | likeshop团队版权所有并拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshop.cn.team
// +----------------------------------------------------------------------
namespace app\admin\validate\integral;
use app\common\basics\Validate;
use app\common\enum\IntegralGoodsEnum;
use app\common\enum\IntegralOrderEnum;
use app\common\model\integral\IntegralOrder;
class IntegralOrderValidate extends Validate
{
protected $rule = [
'id' => 'require',
];
protected $message = [
'id.require' => '参数错误',
];
public function sceneDeliveryHandle()
{
return $this->only(['id'])
->append('id','checkDeliveryHandle');
}
public function sceneConfirm()
{
return $this->only(['id'])
->append('id','checkConfirm');
}
public function sceneCancel()
{
return $this->only(['id'])
->append('id','checkCancel');
}
/**
* @notes 检验订单能否发货
* @param $value
* @param $rule
* @param $data
* @return bool|string
* @author ljj
* @date 2022/3/3 12:06 下午
*/
public function checkDeliveryHandle($value,$rule,$data)
{
$result = IntegralOrder::where(['id'=>$value,'del'=>0])->findOrEmpty()->toArray();
if (!$result) {
return '订单不存在';
}
if ($result['delivery_way'] == 0) {
return '订单无需快递';
}
if (!isset($data['shipping_id']) || $data['shipping_id'] == '') {
return '请选择快递';
}
if (!isset($data['invoice_no']) || $data['invoice_no'] == '') {
return '请输入快递单号';
}
if ($result['shipping_status'] == 1) {
return '订单已发货';
}
if ($result['order_status'] != IntegralOrderEnum::ORDER_STATUS_DELIVERY) {
return '订单状态不正确,无法发货';
}
return true;
}
/**
* @notes 检验订单能否确认收货
* @param $value
* @param $rule
* @param $data
* @return bool|string
* @author ljj
* @date 2022/3/3 3:37 下午
*/
public function checkConfirm($value,$rule,$data)
{
$result = IntegralOrder::where(['id'=>$value,'del'=>0])->findOrEmpty()->toArray();
if (!$result) {
return '订单不存在';
}
if ($result['order_status'] != IntegralOrderEnum::ORDER_STATUS_GOODS) {
return '订单状态不正确,无法确认收货';
}
return true;
}
/**
* @notes 取消订单验证
* @param $value
* @param $rule
* @param $data
* @return bool|string
* @author 段誉
* @date 2022/3/3 17:58
*/
public function checkCancel($value, $rule, $data)
{
$order = IntegralOrder::findOrEmpty($value);
$goods_snap = $order['goods_snap'];
if ($order->isEmpty()) {
return '订单不存在';
}
// 商品类型为红包的不可取消
if ($goods_snap['type'] == IntegralGoodsEnum::TYPE_BALANCE) {
return '类型为红包的订单不可取消';
}
if ($order['order_status'] >= IntegralOrderEnum::ORDER_STATUS_GOODS) {
return '已发货订单不可取消';
}
return true;
}
}