Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
4a5caa8af3
@ -80,7 +80,11 @@ class StoreOrder extends BaseController
|
||||
$where['order_search'] = $this->request->param('search_info');
|
||||
$where['mer_id'] = $merId;
|
||||
$where['is_del'] = 0;
|
||||
return app('json')->success($repository->merchantGetList($where, $page, $limit));
|
||||
$result = $repository->merchantGetList($where, $page, $limit);
|
||||
foreach ($result['list'] as &$item) {
|
||||
$item['pay_price'] = $item['consumption_money'] > 0 ? bcadd($item['pay_price'], $item['consumption_money'], 2) : $item['pay_price'];
|
||||
}
|
||||
return app('json')->success($result);
|
||||
}
|
||||
|
||||
public function order($merId, $id, StoreOrderRepository $repository)
|
||||
|
Loading…
x
Reference in New Issue
Block a user