From 69185016a055f20c8b09786ea856ca836bade8b7 Mon Sep 17 00:00:00 2001 From: ELF <360197197@qq.com> Date: Mon, 10 Feb 2020 18:32:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PresidentDepositController.class.php | 136 +++++++++++++-- .../Admin/View/PresidentDeposit/form.html | 24 +-- .../Admin/View/PresidentDeposit/records.html | 156 ++++++++---------- 3 files changed, 211 insertions(+), 105 deletions(-) diff --git a/Application/Admin/Controller/PresidentDepositController.class.php b/Application/Admin/Controller/PresidentDepositController.class.php index 43e4a6c7a..4e6f34fe5 100644 --- a/Application/Admin/Controller/PresidentDepositController.class.php +++ b/Application/Admin/Controller/PresidentDepositController.class.php @@ -10,8 +10,45 @@ use Base\Service\PresidentDepositService; */ class PresidentDepositController extends ThinkController { - public function records() { - $promotes = M('promote', 'tab_')->where(['company_belong' => 1, 'level' => 1])->select(); + public function records() + { + $companyType = I('company_type'); + $payType = I('pay_type'); + $status = I('status'); + $promoteId = I('promote_id'); + + $query = M('promote', 'tab_')->where(['level' => 1])->where(['company_belong' => ['in', [1, 2]]]); + + $idStrWhere = []; + if ($promoteId !== '') { + $idStrWhere[] = 'id = ' . $promoteId; + } + if ($companyType !== '') { + $query->where(['company_belong' => $companyType]); + } + + $promoteIds = []; + if ($status !== '') { + $tempPromoteIds = M('president_deposit', 'tab_')->where(['status' => $status])->getField('promote_id', true); + if (count($tempPromoteIds) > 0) { + $idStrWhere[] = 'id in (' . implode(',', $tempPromoteIds) . ')'; + } else { + $idStrWhere[] = '1<>1'; + } + } + if ($payType !== '') { + $tempPromoteIds = M('president_deposit', 'tab_')->where(['pay_type' => $payType])->getField('promote_id', true); + if (count($tempPromoteIds) > 0) { + $idStrWhere[] = 'id in (' . implode(',', $tempPromoteIds) . ')'; + } else { + $idStrWhere[] = '1<>1'; + } + } + if (count($idStrWhere) > 0) { + $query->where(['_string' => implode(' and ', $idStrWhere)]); + } + + $promotes = $query->select(); $relationQuery = M('promote_company', 'tab_')->field(['id', 'company_name']); $promotes = $this->mergeOneReletions('company', $promotes, $relationQuery, 'company_id', 'id'); $relationQuery = M('president_deposit', 'tab_'); @@ -20,8 +57,13 @@ class PresidentDepositController extends ThinkController var_dump($promotes); echo ''; die();*/ + $companyTypes = [ + 1 => '外团', + 2 => '外团-分发联盟', + ]; $this->assign('payWays', PresidentDepositService::$payWays); $this->assign('payTypes', PresidentDepositService::$payTypes); + $this->assign('companyTypes', $companyTypes); $this->assign('statusList', PresidentDepositService::$statusList); $this->assign('promotes', $promotes); $this->display(); @@ -30,6 +72,9 @@ class PresidentDepositController extends ThinkController private function mergeOneReletions($name, $records, $relationQuery, $selfColumn, $relationColumn = 'id') { $values = array_column($records, $selfColumn); + if (count($values) == 0) { + return []; + } $rows = $relationQuery->where([$relationColumn => ['in', $values]])->select(); foreach ($records as &$record) { $record[$name] = null; @@ -46,11 +91,14 @@ class PresidentDepositController extends ThinkController public function edit() { + $this->meta_title = '编辑/查看会长押金'; $id = I('id', 0); $promote = M('promote', 'tab_')->field(['account', 'id'])->where(['id' => $id])->find(); + $record = M('president_deposit', 'tab_')->where(['promote_id' => $id])->find(); $this->assign('payWays', PresidentDepositService::$payWays); $this->assign('payTypes', PresidentDepositService::$payTypes); $this->assign('promote', $promote); + $this->assign('record', $record); $this->display('form'); } @@ -59,13 +107,21 @@ class PresidentDepositController extends ThinkController $payWay = I('pay_way', 0); $payType = I('pay_type', 0); $promoteId = I('id', 0); - $payAccount = I('pay_account', 0); - $amount = I('amount', 0); - $payer = I('payer', 0); + $payAccount = I('pay_account', ''); + $amount = floatval(I('amount', 0)); + $payer = I('payer', ''); $record = M('president_deposit', 'tab_')->where(['promote_id' => $promoteId])->find(); if (!$record) { + + if ($payType == 0) { + return $this->error('请选择押金付款方式'); + } + if ($payWay == 0) { + return $this->error('请选择付款方式'); + } + $data = []; $data['pay_way'] = $payWay; $data['pay_type'] = $payType; @@ -73,8 +129,33 @@ class PresidentDepositController extends ThinkController $data['pay_account'] = $payAccount; $data['amount'] = $amount; $data['payer'] = $payer; + $data['create_time'] = time(); + $data['update_time'] = time(); M('president_deposit', 'tab_')->add($data); + return $this->success('保存成功', U('PresidentDeposit/records')); + } + + if ($record['status'] != 0) { + return $this->error('该状态下不可编辑/修改'); } + + if ($amount == 0) { + return $this->error('请输入金额'); + } + if ($payer == '') { + return $this->error('请输入付款人'); + } + if ($payAccount == '') { + return $this->error('请输入付款账号'); + } + + $data = []; + $data['pay_account'] = $payAccount; + $data['amount'] = $amount; + $data['payer'] = $payer; + $data['update_time'] = time(); + M('president_deposit', 'tab_')->where(['promote_id' => $promoteId])->save($data); + return $this->success('保存成功'); } public function delete() @@ -119,9 +200,27 @@ class PresidentDepositController extends ThinkController 'message' => '无选中项' ]); } - M('president_deposit', 'tab_')->where(['promote_id' => ['in', $promoteIds]])->update([ - 'status' => $payType, - 'refund_time' => time() + + $checkStatus = true; + $records = M('president_deposit', 'tab_')->field(['id', 'status'])->where(['promote_id' => ['in', $promoteIds]])->select(); + foreach ($records as $record) { + if ($record['status'] != 1) { + $checkStatus = false; + break; + } + } + if (!$checkStatus) { + $this->ajaxReturn([ + 'status' => 0, + 'message' => '含有非已到账状态记录,不可批量操作' + ]); + } + + + M('president_deposit', 'tab_')->where(['promote_id' => ['in', $promoteIds]])->save([ + 'status' => 2, + 'refund_time' => time(), + 'update_time' => time() ]); $this->ajaxReturn([ 'status' => 1, @@ -138,9 +237,24 @@ class PresidentDepositController extends ThinkController 'message' => '无选中项' ]); } - M('president_deposit', 'tab_')->where(['promote_id' => ['in', $promoteIds]])->update([ - 'status' => $payType, - 'pay_confirm_time' => time() + $checkStatus = true; + $records = M('president_deposit', 'tab_')->field(['id', 'status'])->where(['promote_id' => ['in', $promoteIds]])->select(); + foreach ($records as $record) { + if ($record['status'] != 0) { + $checkStatus = false; + break; + } + } + if (!$checkStatus) { + $this->ajaxReturn([ + 'status' => 0, + 'message' => '含有非待确认状态记录,不可批量操作' + ]); + } + M('president_deposit', 'tab_')->where(['promote_id' => ['in', $promoteIds]])->save([ + 'status' => 1, + 'pay_confirm_time' => time(), + 'update_time' => time() ]); $this->ajaxReturn([ 'status' => 1, diff --git a/Application/Admin/View/PresidentDeposit/form.html b/Application/Admin/View/PresidentDeposit/form.html index 48ca11a4a..80a517f1d 100644 --- a/Application/Admin/View/PresidentDeposit/form.html +++ b/Application/Admin/View/PresidentDeposit/form.html @@ -90,10 +90,10 @@