123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <?php
- /**
- * Niushop商城系统 - 团队十年电商经验汇集巨献!
- * =========================================================
- * Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
- * ----------------------------------------------
- * 官方网址: https://www.niushop.com.cn
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
- * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
- * =========================================================
- */
- namespace app\admin\controller;
- use app\model\member\Withdraw as MemberWithdrawModel;
- use app\model\system\Pay;
- use app\model\web\Account as AccountModel;
- /**
- * 会员管理 控制器
- */
- class Memberwithdraw extends BaseAdmin
- {
- /**
- * 会员提现配置
- */
- public function config()
- {
- $config_model = new MemberWithdrawModel();
- if (request()->isAjax()) {
- if (empty(input("transfer_type"))) {
- $transfer_type = "";
- } else {
- $transfer_type = implode(",", input("transfer_type"));
- }
- //订单提现
- $data = [
- 'is_auto_audit' => input('is_audit', 0),//是否需要审核 1 手动审核 2 自动审核
- 'rate' => input('rate', 0),//提现手续费比率 (0-100)
- 'transfer_type' => $transfer_type,//转账方式,
- 'is_auto_transfer' => input('is_auto_transfer', 0),//是否自动转账 1 手动转账 2 自动转账
- 'min' => input('min', 0),//提现最低额度
- ];
- $this->addLog("设置会员提现配置");
- $is_use = input("is_use", 0);//是否启用
- $res = $config_model->setConfig($data, $is_use);
- return $res;
- } else {
- $this->assign("is_exist", addon_is_exit("memberwithdraw"));
- //会员提现
- $config_result = $config_model->getConfig();
- $this->assign('config', $config_result['data']);
- $pay_model = new Pay();
- $transfer_type_list = $pay_model->getTransferType();
- $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', '');//提现转账方式
- $condition = [];
- 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)];
- }
- $order = 'apply_time desc';
- return $withdraw_model->getMemberWithdrawPageList($condition, $page, $page_size, $order);
- }else {
- $this->assign("is_exist", addon_is_exit("memberwithdraw"));
- $pay_model = new Pay();
- $transfer_type_list = $pay_model->getTransferType();
- $this->assign("transfer_type_list", $transfer_type_list);
- $account_model = new AccountModel();
- $member_balance_sum = $account_model->getMemberBalanceSum();
- $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]]);
- $withdraw_info = $withdraw_info_result["data"];
- $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(
- ["id", "=", $id]
- );
- $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(
- ["id", "=", $id]
- );
- $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();
- $condition = array(
- ["id", "=", $id]
- );
- $data = array(
- "certificate" => $certificate,
- "certificate_remark" => $certificate_remark,
- );
- $result = $withdraw_model->transferFinish($condition, $data);
- return $result;
- }
- }
- }
|