已删除商品支持恢复
This commit is contained in:
parent
7bcecaae80
commit
e2bcde3167
@ -131,4 +131,12 @@ class StoreProductController extends BaseAdminController
|
||||
{
|
||||
return $this->fail('接口已关闭');
|
||||
}
|
||||
|
||||
public function restore()
|
||||
{
|
||||
$params = (new StoreProductValidate())->post()->goCheck('delete');
|
||||
StoreProductLogic::restore($params);
|
||||
return $this->success('删除成功', [], 1, 1);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -118,6 +118,12 @@ class BeforehandOrderCartInfoLists extends BaseAdminDataLists implements ListsSe
|
||||
return $item;
|
||||
})
|
||||
->toArray();
|
||||
$orderTypeMap = BeforehandOrder::whereIn('id', array_unique(array_column($list, 'bhoid')))->field('id, order_type')->select()->toArray();
|
||||
$orderTypeMap = reset_index($orderTypeMap, 'id');
|
||||
foreach ($list as &$item) {
|
||||
$orderType = $orderTypeMap[$item['bhoid']]['order_type'] ?? '';
|
||||
$item['order_type_name'] = BeforehandOrder::getOrderTypeName($orderType);
|
||||
}
|
||||
$this->list = $list;
|
||||
return $list;
|
||||
}
|
||||
|
@ -299,6 +299,17 @@ class StoreProductLogic extends BaseLogic
|
||||
return $res;
|
||||
}
|
||||
|
||||
public static function restore(array $params): bool
|
||||
{
|
||||
$data = StoreProduct::where('id', $params['id'])->onlyTrashed()->find();
|
||||
if (empty($data)) {
|
||||
throw new BusinessException('数据不存在');
|
||||
}
|
||||
$res = $data->restore();
|
||||
StoreBranchProduct::where('product_id', $params['id'])->update(['delete_time' => null]);
|
||||
return $res;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取商品详情
|
||||
|
Loading…
x
Reference in New Issue
Block a user