<?php
namespace app\api\model\dealer;
use app\common\exception\BaseException;
use app\common\model\dealer\Withdraw as WithdrawModel;
class Withdraw extends WithdrawModel
{
protected $hidden = [
'update_time',
];
public function getList($user_id, $apply_status = -1)
{
$this->where('user_id', '=', $user_id);
$apply_status > -1 && $this->where('apply_status', '=', $apply_status);
return $this->order(['create_time' => 'desc'])
->paginate(15, false, [
'query' => \request()->request()
]);
}
public function submit($dealer, $data)
{
$this->validation($dealer, $data);
$this->save(array_merge($data, [
'user_id' => $dealer['user_id'],
'apply_status' => 10,
'wxapp_id' => self::$wxapp_id,
]));
$dealer->freezeMoney($data['money']);
return true;
}
private function validation($dealer, $data)
{
$settlement = Setting::getItem('settlement');
if ($data['money'] <= 0) {
throw new BaseException(['msg' => '提现金额不正确']);
}
if ($dealer['money'] <= 0) {
throw new BaseException(['msg' => '当前用户没有可提现佣金']);
}
if ($data['money'] > $dealer['money']) {
throw new BaseException(['msg' => '提现金额不能大于可提现佣金']);
}
if ($data['money'] < $settlement['min_money']) {
throw new BaseException(['msg' => '最低提现金额为' . $settlement['min_money']]);
}
if (!in_array($data['pay_type'], $settlement['pay_type'])) {
throw new BaseException(['msg' => '提现方式不正确']);
}
if ($data['pay_type'] == '20') {
if (empty($data['alipay_name']) || empty($data['alipay_account'])) {
throw new BaseException(['msg' => '请补全提现信息']);
}
} elseif ($data['pay_type'] == '30') {
if (empty($data['bank_name']) || empty($data['bank_account']) || empty($data['bank_card'])) {
throw new BaseException(['msg' => '请补全提现信息']);
}
}
}
}