commit
0d86926915
@ -456,9 +456,9 @@ class OrderController extends BaseApiController
|
|||||||
$params = (new OrderValidate())->post()->goCheck('add');
|
$params = (new OrderValidate())->post()->goCheck('add');
|
||||||
$uid = $this->userId;
|
$uid = $this->userId;
|
||||||
//拆单逻辑
|
//拆单逻辑
|
||||||
OrderLogic::dealRefund($uid, $params);
|
$res=OrderLogic::dealRefund($uid, $params);
|
||||||
$detail = StoreOrder::where('id', $params['id'])->where('refund_type',1)->where('status','in',[0,1])->find();
|
$detail = StoreOrder::where('id', $params['id'])->where('refund_type',1)->find();
|
||||||
if($detail){
|
if($detail && $res!=2){
|
||||||
$res=StoreOrderLogic::refund($detail,['order_id'=>$detail['order_id']]);
|
$res=StoreOrderLogic::refund($detail,['order_id'=>$detail['order_id']]);
|
||||||
if($res!=false){
|
if($res!=false){
|
||||||
return $this->success($res);
|
return $this->success($res);
|
||||||
|
@ -834,7 +834,7 @@ class OrderLogic extends BaseLogic
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return $order['status']??1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,6 +66,7 @@ class WorkbenchLogic extends BaseLogic
|
|||||||
$storeFinanceWhere['store_id'] = $params['store_id'];
|
$storeFinanceWhere['store_id'] = $params['store_id'];
|
||||||
$storeFinanceWhereTwo['store_id'] = $params['store_id'];
|
$storeFinanceWhereTwo['store_id'] = $params['store_id'];
|
||||||
$attritionWhere['id'] = $params['store_id'];
|
$attritionWhere['id'] = $params['store_id'];
|
||||||
|
$all_where['store_id'] = $params['store_id'];
|
||||||
}
|
}
|
||||||
$orderLogic = new StoreOrderLogic();
|
$orderLogic = new StoreOrderLogic();
|
||||||
//订单总金额
|
//订单总金额
|
||||||
|
Loading…
x
Reference in New Issue
Block a user