feat: 移除了商品标签文本的获取逻辑

This commit is contained in:
mkm 2024-05-24 17:00:49 +08:00
parent a3531fd253
commit c32ced1c0e

View File

@ -205,12 +205,7 @@ class MerchantController extends BaseAdminController
}
$data = Db::name('merchant_bind_goods')->where('mer_id', $mer_id)->page($page_no, $page_size)->select()->each(function ($item) {
$item['goods_info'] = Goods::where('id', $item['goods_id'])->with(['className', 'brandName', 'unitName', 'warehouseName'])->findOrEmpty();
if (!empty($item['goods_info']['sys_labels'])) {
$goodslabel = GoodsLabel::where('id', 'in', trim($item['goods_info']['sys_labels'], ','))->column('name');
$item['goods_info']['sys_labels_text'] = implode(',', $goodslabel);
} else {
$item['goods_info']['sys_labels_text'] = '';
}
$item['goods_info']['sys_labels_text'] = '';
return $item;
})->toArray();
$count = Db::name('merchant_bind_goods')->where('mer_id', $mer_id)->count();