Merge branch 'rose' of https://gitea.lihaink.cn/mkm/multi-store into rose
This commit is contained in:
commit
c4e69f99f7
@ -456,9 +456,9 @@ class OrderController extends BaseApiController
|
||||
$params = (new OrderValidate())->post()->goCheck('add');
|
||||
$uid = $this->userId;
|
||||
//拆单逻辑
|
||||
OrderLogic::dealRefund($uid, $params);
|
||||
$detail = StoreOrder::where('id', $params['id'])->where('refund_type',1)->where('status','in',[0,1])->find();
|
||||
if($detail){
|
||||
$res=OrderLogic::dealRefund($uid, $params);
|
||||
$detail = StoreOrder::where('id', $params['id'])->where('refund_type',1)->find();
|
||||
if($detail && $res!=2){
|
||||
$res=StoreOrderLogic::refund($detail,['order_id'=>$detail['order_id']]);
|
||||
if($res!=false){
|
||||
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'];
|
||||
$storeFinanceWhereTwo['store_id'] = $params['store_id'];
|
||||
$attritionWhere['id'] = $params['store_id'];
|
||||
$all_where['store_id'] = $params['store_id'];
|
||||
}
|
||||
$orderLogic = new StoreOrderLogic();
|
||||
//订单总金额
|
||||
|
Loading…
x
Reference in New Issue
Block a user