admin/app/shop/controller/Memberwithdraw.php

271 lines
11 KiB
PHP

<?php
/**
* ThinkShop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 成都云之牛科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.cdcloudshop.com
* =========================================================
*/
namespace app\shop\controller;
use app\model\member\Withdraw as MemberWithdrawModel;
use app\model\system\Pay;
use app\model\web\Account as AccountModel;
/**
* 会员管理 控制器
*/
class Memberwithdraw extends BaseShop
{
/**
* 会员提现配置
*/
public function config()
{
$config_model = new MemberWithdrawModel();
if (request()->isAjax()) {
if (empty(input("transfer_type"))) {
$transfer_type = "";
} else {
$transfer_type = implode(",", input("transfer_type"));
}
$time_week = input('time_week', '');
if (!empty($time_week)) {
$time_week = implode(',', $time_week);
}
//订单提现
$data = [
'is_auto_audit' => input('is_auto_audit', 0),//是否需要审核 1 手动审核 2 自动审核
'rate' => input('rate', 0),//提现手续费比率 (0-100)
'transfer_type' => $transfer_type,//转账方式,
'is_auto_transfer' => input('is_auto_transfer', 0),//是否自动转账 1 手动转账 2 自动转账
'is_user_transfer' => input('is_user_transfer', 0),//是否会员互转
'min' => input('min', 0),//提现最低额度
'max' => input('max', 0),//提现最高额度
'money_multiple' => input('money_multiple', 0),//提现最高额度
'money_num' => input('money_num', 0),//提现次数限制
'time_week' => $time_week,//提现最高额度
];
$this->addLog("设置会员提现配置");
$is_use = input("is_use", 0);//否启用
$res = $config_model->setConfig($data, $is_use, $this->site_id, $this->app_module);
return $res;
} else {
$this->forthMenu();
$this->assign("is_exist", addon_is_exit("memberwithdraw", $this->site_id));
//会员提现
$config_result = $config_model->getConfig($this->site_id, $this->app_module);
if(!isset($config_result[ 'data' ]['value']['is_user_transfer'])){
$config_result[ 'data' ]['value']['is_user_transfer']=0;
}
if (!empty($config_result[ 'data' ]['value']['time_week'])) {
$timeweek=$config_result[ 'data' ]['value']['time_week'];
$config_result[ 'data' ]['value']['time_week'] = explode(',',$timeweek);
}
$this->assign('time_week',$config_result[ 'data' ]['value']['time_week']??[]);
$this->assign('config', $config_result[ 'data' ]);
$pay_model = new Pay();
$transfer_type_list = $pay_model->getTransferType($this->site_id);
$this->assign("transfer_type_list", $transfer_type_list);
return $this->fetch('memberwithdraw/config');
}
}
/**
* 会员提现列表
* @return mixed
*/
public function lists()
{
$withdraw_model = new MemberWithdrawModel();
if (request()->isAjax()) {
$page = input('page', 1);
$page_size = input('page_size', PAGE_LIST_ROWS);
$withdraw_no = input('withdraw_no', '');
$start_date = input('start_date', '');
$end_date = input('end_date', '');
$status = input('status', 'all');//提现状态
$transfer_type = input('transfer_type', '');//提现转账方式
$member_name = input('member_name', '');//提现转账方式
$payment_start_date = input('payment_start_date', '');
$payment_end_time = input('payment_end_time', '');
$condition = [ [ 'site_id', '=', $this->site_id ] ];
if (!empty($withdraw_no)) {
$condition[] = [ 'withdraw_no', 'like', '%' . $withdraw_no . '%' ];
}
if (!empty($transfer_type)) {
$condition[] = [ 'transfer_type', '=', $transfer_type ];
}
if ($status != "all") {
$condition[] = [ 'status', '=', $status ];
}
if (!empty($member_name)) {
$condition[] = [ 'member_name', '=', $member_name ];
}
if ($start_date != '' && $end_date != '') {
$condition[] = [ 'apply_time', 'between', [ strtotime($start_date), strtotime($end_date) ] ];
} else if ($start_date != '' && $end_date == '') {
$condition[] = [ 'apply_time', '>=', strtotime($start_date) ];
} else if ($start_date == '' && $end_date != '') {
$condition[] = [ 'apply_time', '<=', strtotime($end_date) ];
}
if ($payment_start_date != '' && $payment_end_time != '') {
$condition[] = [ 'payment_time', 'between', [ strtotime($payment_start_date), strtotime($payment_end_time) ] ];
} else if ($payment_start_date != '' && $payment_end_time == '') {
$condition[] = [ 'payment_time', '>=', strtotime($payment_start_date) ];
} else if ($payment_start_date == '' && $payment_end_time != '') {
$condition[] = [ 'payment_time', '<=', strtotime($payment_end_time) ];
}
$order = 'apply_time desc';
return $withdraw_model->getMemberWithdrawPageList($condition, $page, $page_size, $order);
} else {
$this->assign("is_exist", addon_is_exit("memberwithdraw", $this->site_id));
$pay_model = new Pay();
$transfer_type_list = $pay_model->getTransferType($this->site_id);
$this->assign("transfer_type_list", $transfer_type_list);
$account_model = new AccountModel();
$member_balance_sum = $account_model->getMemberBalanceSum($this->site_id);
$this->assign('member_balance_sum', $member_balance_sum[ 'data' ]);
return $this->fetch("memberwithdraw/lists");
}
}
/**
* 详情
*/
public function detail()
{
$id = input('id', 0);
$withdraw_model = new MemberWithdrawModel();
$withdraw_info_result = $withdraw_model->getMemberWithdrawInfo([ [ "id", "=", $id ], [ 'site_id', '=', $this->site_id ] ]);
$withdraw_info = $withdraw_info_result[ "data" ];
if (empty($withdraw_info)) $this->error('未获取到提现数据', addon_url('shop/memberwithdraw/lists'));
$this->assign("withdraw_info", $withdraw_info);
return $this->fetch("memberwithdraw/detail");
}
/**
* 同意
* @return array
*/
public function agree()
{
if (request()->isAjax()) {
$id = input('id', 0);
$withdraw_model = new MemberWithdrawModel();
$condition = array (
[ 'site_id', '=', $this->site_id ],
[ "id", "=", $id ],
[ 'status', '=', 0 ]
);
$result = $withdraw_model->agree($condition);
return $result;
}
}
/**
* 拒绝
* @return array
*/
public function refuse()
{
if (request()->isAjax()) {
$id = input('id', 0);
$refuse_reason = input('refuse_reason', '');
$withdraw_model = new MemberWithdrawModel();
$condition = array (
[ 'site_id', '=', $this->site_id ],
[ "id", "=", $id ],
[ 'status', '=', 0 ]
);
$data = array (
"refuse_reason" => $refuse_reason
);
$result = $withdraw_model->refuse($condition, $data);
return $result;
}
}
/**
* 转账
*/
public function transferFinish()
{
if (request()->isAjax()) {
$id = input('id', 0);
$certificate = input('certificate', '');
$certificate_remark = input('certificate_remark', '');
$withdraw_model = new MemberWithdrawModel();
$data = array (
"id" => $id,
"site_id" => $this->site_id,
"certificate" => $certificate,
"certificate_remark" => $certificate_remark,
);
$result = $withdraw_model->transferFinish($data);
return $result;
}
}
public function export(){
$withdraw_model = new MemberWithdrawModel();
$withdraw_no = input('withdraw_no', '');
$start_date = input('start_date', '');
$end_date = input('end_date', '');
$status = input('status', 'all');//提现状态
$transfer_type = input('transfer_type', '');//提现转账方式
$member_name = input('member_name', '');//提现转账方式
$payment_start_date = input('payment_start_date', '');
$payment_end_time = input('payment_end_time', '');
$condition = [ [ 'site_id', '=', $this->site_id ] ];
if (!empty($withdraw_no)) {
$condition[] = [ 'withdraw_no', 'like', '%' . $withdraw_no . '%' ];
}
if (!empty($transfer_type)) {
$condition[] = [ 'transfer_type', '=', $transfer_type ];
}
if ($status != "all") {
$condition[] = [ 'status', '=', $status ];
}
if (!empty($member_name)) {
$condition[] = [ 'member_name', '=', $member_name ];
}
if ($start_date != '' && $end_date != '') {
$condition[] = [ 'apply_time', 'between', [ strtotime($start_date), strtotime($end_date) ] ];
} else if ($start_date != '' && $end_date == '') {
$condition[] = [ 'apply_time', '>=', strtotime($start_date) ];
} else if ($start_date == '' && $end_date != '') {
$condition[] = [ 'apply_time', '<=', strtotime($end_date) ];
}
if ($payment_start_date != '' && $payment_end_time != '') {
$condition[] = [ 'payment_time', 'between', [ strtotime($payment_start_date), strtotime($payment_end_time) ] ];
} else if ($payment_start_date != '' && $payment_end_time == '') {
$condition[] = [ 'payment_time', '>=', strtotime($payment_start_date) ];
} else if ($payment_start_date == '' && $payment_end_time != '') {
$condition[] = [ 'payment_time', '<=', strtotime($payment_end_time) ];
}
$order = 'apply_time desc';
$withdraw_model->exportWithdraw($condition, $order);
}
}