更新委托商品审核及列表

This commit is contained in:
yaooo 2023-09-06 11:33:57 +08:00
parent f3fb69bde6
commit 85c2db7397
3 changed files with 49 additions and 5 deletions

View File

@ -385,6 +385,7 @@ class CommunityRepository extends BaseRepository
}
if ($data['product_info'] && $data['is_type'] == self::COMMUNITY_TYPE_ENTRUST) {
$this->entrust($community->community_id, $data['product_info'], $data['entrust_mer_id'] ?? 0, $data['entrust_day'] ?? 0);
Db::name('community')->where('community_id', $community->community_id)->update(['entrust_mer_id' => $data['entrust_mer_id'] ?? 0]);
}
event('community.create',compact('community'));
return $community->community_id;

View File

@ -500,7 +500,7 @@ class Community extends BaseController
$count = $queryBuilder->count();
$list = $queryBuilder->setOption('field', [])->field(['c.community_id', 'c.title', 'c.image', 'c.resale_type', 'c.mer_status', 'SUM(`r`.`number` * `r`.`price`) AS total_price', 'SUM(`r`.`number` * `r`.`price` * (100 - `r`.`float_rate`) / 100) AS discount_price'])->group('c.community_id')->order('c.community_id', 'desc')->page($page, $limit)->fetchSql(false)->select();
if ($list) $list = $list->toArray();
foreach($list as $k=>&$v) {
foreach($list as $k => $v) {
$list[$k]['discount_price'] = round($v['discount_price'], 2);
}
return app('json')->success(compact('count', 'list'));
@ -559,7 +559,7 @@ class Community extends BaseController
Db::name('store_product_attr_value')->where('product_id', $prod['product_id'])->where('unique', $prod['product_attr_unique'])->inc('stock', $prod['number'])->update();
}
Db::name('resale')->where('community_id', $id)->where('status', 0)->update(['is_del' => 1]);
Db::name('community')->where('uid', $this->request->uid())->where('community_id', $id)->where('is_del', 0)->update(['is_del' => 1, 'status' => -2, 'mer_status' => 2]);
Db::name('community')->where('uid', $this->request->uid())->where('community_id', $id)->where('is_del', 0)->update(['is_del' => 1, 'status' => -1, 'mer_status' => 2]);
Db::commit();
} catch (\Exception $e) {
Db::rollback();
@ -645,8 +645,7 @@ class Community extends BaseController
return app('json')->fail('该委托商品已审核');
}
$merchantId = Db::name('merchant')->where('uid', $this->request->uid())->value('mer_id');
$entrustInfo = Db::name('entrust')->where('community_id', $id)->where('entrust_mer_id', $merchantId)->where('is_del', 0)->where('status', 0)->fetchSql(false)->find();
if (!$entrustInfo) {
if ($merchantId != $communityInfo['entrust_mer_id']) {
return app('json')->fail('当前商户无审核此委托商品权限');
}
$status = $this->request->param('status');
@ -659,6 +658,7 @@ class Community extends BaseController
}
// 拒绝
if ($status == 2) {
$refusal = $this->request->param('refusal', '');
Db::startTrans();
try {
$list = Db::name('entrust')->where('community_id', $id)->where('is_del', 0)->where('status', 0)->select();
@ -667,7 +667,7 @@ class Community extends BaseController
Db::name('store_product_attr_value')->where('product_id', $prod['product_id'])->where('unique', $prod['product_attr_unique'])->inc('stock', $prod['number'])->update();
}
Db::name('entrust')->where('community_id', $id)->where('status', 0)->update(['is_del' => 1]);
Db::name('community')->where('community_id', $id)->where('is_del', 0)->update(['is_del' => 1, 'status' => -2, 'mer_status' => 2]);
Db::name('community')->where('community_id', $id)->where('is_del', 0)->update(['is_del' => 1, 'refusal' => $refusal, 'status' => -1, 'mer_status' => 2]);
Db::commit();
} catch (\Exception $e) {
Db::rollback();
@ -676,4 +676,46 @@ class Community extends BaseController
}
return app('json')->success('审核操作成功');
}
/**
* 委托商品列表
* @return mixed
*/
public function entrustList()
{
[$page, $limit] = $this->getPage();
$status = $this->request->param('status', -1);
$type = $this->request->param('type');
$queryBuilder = Db::name('community')->alias('c')->leftJoin('merchant m','m.mer_id = c.entrust_mer_id')->where('c.is_type', 4)->where('c.is_del', 0);
// type1发起的委托 2收到的委托
if ($type == 1) {
$queryBuilder = $queryBuilder->where('c.uid', $this->request->uid());
} else {
$merchantId = Db::name('merchant')->where('uid', $this->request->uid())->value('mer_id', -1);
$queryBuilder = $queryBuilder->where('c.entrust_mer_id', $merchantId);
}
// 待审核
if ($status == 0) {
$queryBuilder->where('c.mer_status', 0);
}
// 审核通过
if ($status == 1) {
$queryBuilder->where('c.mer_status', 1);
}
// 审核拒绝
if ($status == 2) {
$queryBuilder->where('c.mer_status', 2);
}
$count = $queryBuilder->count();
$list = $queryBuilder->setOption('field', [])->field(['c.community_id', 'c.uid', 'c.title', 'c.image', 'c.entrust_mer_id','m.mer_name','m.mer_avatar', 'c.mer_status'])->order('c.community_id', 'desc')->page($page, $limit)->fetchSql(false)->select();
if ($list) $list = $list->toArray();
foreach($list as $k => $v) {
if ($type == 2) {
$merchantInfo = Db::name('merchant')->where('uid', $v['uid'])->find();
$list[$k]['mer_name'] = $merchantInfo['mer_name'];
$list[$k]['mer_avatar'] = $merchantInfo['mer_avatar'];
}
}
return app('json')->success(compact('count', 'list'));
}
}

View File

@ -379,6 +379,7 @@ Route::group('api/', function () {
Route::post('resale/check/:id', 'Community/checkResale');
Route::post('/entrust', 'Community/entrust');
Route::get('/entrust/list', 'Community/entrustList');
Route::post('/entrust/check/:id', 'Community/checkEntrust');
})->prefix('api.community.');