增加$is_check参数处理,优化银行账户查询逻辑。

This commit is contained in:
mkm 2024-05-25 20:00:07 +08:00
parent e5115f374b
commit b994cf7521
2 changed files with 10 additions and 3 deletions

View File

@ -24,11 +24,12 @@ class MerchantController extends BaseApiController
public function amount_account()
{
$merchant = $this->request->userInfo['merchant'];
$is_check = $this->request->get('is_check',1);
if (!$merchant) {
return $this->fail('当前用户非商户');
}
if (!$merchant->isEmpty()) {
$res=MerchantLogic::amount_account($merchant);
$res=MerchantLogic::amount_account($merchant,$is_check);
if(MerchantLogic::hasError()){
return $this->fail(MerchantLogic::getError());
}

View File

@ -16,11 +16,17 @@ class MerchantLogic extends BaseLogic
/**
* 获取用户余额和绑定银行账户信息
*/
public static function amount_account($merchant)
public static function amount_account($merchant,$is_check=1)
{
try {
$mer_money = Merchant::where('mer_id', $merchant['mer_id'])->value('mer_money');
$bank_list = MerchantBank::where('mer_id', $merchant['mer_id'])->where('is_check', 1)->select()->each(function ($data) {
$where=['mer_id'=>$merchant['mer_id']];
if($is_check==1){
$where[]=['is_check','=',1];
}elseif($is_check==0){
$where[]=['is_check','=',0];
}
$bank_list = MerchantBank::where($where)->select()->each(function ($data) {
$bank_info = Bank::where('id', $data['bank_id'])->findOrEmpty();
$data['bank_name'] = !$bank_info->isEmpty() ? $bank_info['name'] : '';
$data['bank_image'] = !$bank_info->isEmpty() ? $bank_info['image'] : '';