查镇级供应链 普通商户列表

This commit is contained in:
chenbo 2023-12-25 18:23:12 +08:00
parent 6b7cc23adf
commit cba457a123
2 changed files with 17 additions and 0 deletions

View File

@ -333,6 +333,22 @@ class Statistics extends BaseController
return app('json')->success(compact('list'));
}
public function GeneralMerchant()
{
$parmas = $this->request->param();
$where[] = ['street_id', '=', $parmas['street_code']];
$where[] = ['is_del', '=', 0];
$where[] = ['status', '=', 1];
// 镇级普通商户 type_code = TypeStore
$merchantType = MerchantType::where('type_code', 'TypeStore')->find();
$where[] = ['type_id', '=', $merchantType['mer_type_id']];
$list = Db::name('merchant')->where($where)->select();
return app('json')->success(compact('list'));
}
/**
* 商户商品数量查询

View File

@ -739,6 +739,7 @@ Route::group('api/', function () {
Route::get('supply_chain_village_breeding_price_count', '/SupplyChainVillageBreedingPriceCount');
Route::get('store_order_user_trade_amount', '/StoreOrderUserTradeAmount');
Route::get('supply_chain_merchant', '/SupplyChainMerchant');
Route::get('general_merchant', '/GeneralMerchant');
Route::get('supply_chain_product', '/SupplyChainProduct');
Route::get('supply_chain_product_stock_count1', '/SupplyChainProductStockCount1');
Route::get('supply_chain_product_price', '/SupplyChainProductPrice');