Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
chenbo 2023-11-17 17:18:49 +08:00
commit edfeccf5df
2 changed files with 24 additions and 6 deletions

View File

@ -99,11 +99,13 @@ class RechargeLogic extends BaseLogic
]);
// 更新用户余额及累计充值金额
User::where(['id' => $order['user_id']])
->dec('total_recharge_amount', $order['order_amount'])
->dec('user_money', $order['order_amount'])
->update();
$userInfo = User::where(['id' => $order['user_id']])->findOrEmpty();
if ($userInfo['total_recharge_amount'] >= $order['order_amount']) {
User::where(['id' => $order['user_id']])
->dec('total_recharge_amount', $order['order_amount'])
->dec('user_money', $order['order_amount'])
->update();
}
// 记录日志
AccountLogLogic::add(
$order['user_id'],

View File

@ -32,7 +32,7 @@
$params=$this->request->post(['page_no','page_size','company_name','area_name','street_name','area_manager','company_type','is_contract']);
$where = [];
if(!empty($params['company_name'])){
$where[] = ['company','like','%'.$params['company_name'].'%'];
$where[] = ['company_name','like','%'.$params['company_name'].'%'];
}
if(!empty($params['area_name'])){
$arr= Db::name('geo_area')->where('area_name','like','%'.$params['area_name'].'%')->column('area_code');
@ -415,4 +415,20 @@
}
}
public function getPartyA()
{
if(!$this->request->isPost()){
return $this->fail('请求方式错误');
}
$companyId = $this->request->param('company_id');
if(empty($companyId)){
return $this->fail('缺少公司id');
}
$re = CompanyLogic::getPartyA($companyId);
if ($re === false) {
return $this->fail(CompanyLogic::getError());
}
return $this->success('成功', $re);
}
}