已删除商品支持恢复

This commit is contained in:
lewis 2025-02-24 15:51:35 +08:00
parent 7bcecaae80
commit e2bcde3167
3 changed files with 25 additions and 0 deletions

View File

@ -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);
}
}

View File

@ -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;
}

View File

@ -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 获取商品详情