获取转售商品详情接口

This commit is contained in:
yaooo 2023-08-18 10:23:32 +08:00
parent 376a987931
commit 865a6b872b

View File

@ -573,4 +573,26 @@ class Community extends BaseController
return app('json')->fail('审核操作成功');
}
/**
* 转售商品详情
* @return mixed
*/
public function resaleDetail($id)
{
$communityInfo = Db::name('community')->where('uid', $this->request->uid())->where('community_id', $id)->where('is_del', 0)->find();
if (!$communityInfo) {
app('json')->fail('转售商品不存在');
}
if (!empty($communityInfo['image'])) {
$communityInfo['image'] = explode(',', $communityInfo['image']);
}
$resaleList = Db::name('resale')->alias('r')->leftJoin('store_product_attr_value s','r.product_attr_unique = s.unique')->where('r.community_id', $id)->where('r.is_del', 0)->field(['r.product_id', 'r.product_attr_unique', 'r.number', 'r.price', 'r.float_rate', 'r.deliver_method', 'r.resale_type', 's.detail', 's.sku', 's.image'])->select();
if ($resaleList) $resaleList = $resaleList->toArray();
foreach($resaleList as $k=>$v) {
$resaleList[$k]['detail'] = json_decode($v['detail'], true);
}
$communityInfo['resale'] = $resaleList;
return app('json')->fail($communityInfo);
}
}