123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- <?php
- // +----------------------------------------------------------------------
- // | likeshop开源商城系统
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | gitee下载:https://gitee.com/likeshop_gitee
- // | github下载:https://github.com/likeshop-github
- // | 访问官网:https://www.likeshop.cn
- // | 访问社区:https://home.likeshop.cn
- // | 访问手册:http://doc.likeshop.cn
- // | 微信公众号:likeshop技术社区
- // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
- // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
- // | 禁止对系统程序代码以任何目的,任何形式的再发布
- // | likeshop团队版权所有并拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeshop.cn.team
- // +----------------------------------------------------------------------
-
- namespace app\admin\controller\finance;
-
- use app\common\basics\AdminBase;
- use app\common\model\AccountLog;
- use app\common\server\JsonServer;
- use app\admin\logic\finance\WithdrawLogic;
- use app\common\model\order\Order as OrderModel;
- use app\common\model\Client_;
- use app\common\enum\PayEnum;
-
- /**
- * 财务-会员相关
- * Class User
- * @package app\admin\controller\finance
- */
- class User extends AdminBase
- {
- /**
- * @notes 会员佣金提现列表
- * @return \think\response\Json|\think\response\View
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/13 7:01 下午
- */
- public function withdrawal()
- {
-
- if ($this->request->isAjax()) {
- $get = $this->request->get();
- $data = WithdrawLogic::lists($get);
- return JsonServer::success('', $data, 1);
- }
- $today = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", time()))),
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", time())) + 86399)
- ];
-
- $yesterday = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-1 day")))),
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-1 day"))) + 86399)
- ];
-
-
- $days_ago7 = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-7 day")))),
- date('Y-m-d 23:59:59', time())
- ];
-
- $days_ago30 = [
- date('Y-m-d 00:00:00', strtotime("-30 day")),
- date('Y-m-d 23:59:59', time())
- ];
- $summary = WithdrawLogic::summary();
- return view('', [
- 'today' => $today,
- 'yesterday' => $yesterday,
- 'days_ago7' => $days_ago7,
- 'days_ago30' => $days_ago30,
- 'summary' => $summary
- ]);
- }
-
- /**
- * @notes 会员佣金明细列表
- * @return \think\response\Json|\think\response\View
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/13 7:01 下午
- */
- public function commission()
- {
-
- if ($this->request->isAjax()) {
- $get = $this->request->get();
- $data = WithdrawLogic::commission($get);
- return JsonServer::success('', $data, 1);
- }
- $today = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", time()))),
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", time())) + 86399)
- ];
-
- $yesterday = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-1 day")))),
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-1 day"))) + 86399)
- ];
-
-
- $days_ago7 = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-7 day")))),
- date('Y-m-d 23:59:59', time())
- ];
-
- $days_ago30 = [
- date('Y-m-d 00:00:00', strtotime("-30 day")),
- date('Y-m-d 23:59:59', time())
- ];
- return view('', [
- 'today' => $today,
- 'yesterday' => $yesterday,
- 'days_ago7' => $days_ago7,
- 'days_ago30' => $days_ago30,
- 'source_type' => AccountLog::getEarningsChange()
- ]);
- }
-
- /**
- * @notes 充值明细列表
- * @return \think\response\Json|\think\response\View
- * @author suny
- * @date 2021/7/13 7:01 下午
- */
- public function recharge()
- {
-
- if ($this->request->isAjax()) {
- $get = $this->request->get();
- $data = WithdrawLogic::recharge($get);
- return JsonServer::success('', $data, 1);
- }
- // 订单状态
- $order_status = OrderModel::getOrderStatus(true);
- // 订单类型
- $order_type = OrderModel::getOrderType(true);
- // 订单来源
- $order_source = Client_::getClient(true);
- unset($order_source[2]);
- // 支付方式
- $pay_way = PayEnum::getPayWay(true);
- unset($pay_way[3], $pay_way[4]);
- // 配送方式
- $today = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", time()))),
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", time())) + 86399)
- ];
-
- $yesterday = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-1 day")))),
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-1 day"))) + 86399)
- ];
-
-
- $days_ago7 = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-7 day")))),
- date('Y-m-d 23:59:59', time())
- ];
-
- $days_ago30 = [
- date('Y-m-d 00:00:00', strtotime("-30 day")),
- date('Y-m-d 23:59:59', time())
- ];
- return view('', [
- 'order_status' => $order_status,
- 'order_type' => $order_type,
- 'order_source' => $order_source,
- 'pay_way' => $pay_way,
- 'today' => $today,
- 'yesterday' => $yesterday,
- 'days_ago7' => $days_ago7,
- 'days_ago30' => $days_ago30,
- ]);
- }
-
-
- /**
- * @notes 账户明细列表
- * @return \think\response\Json|\think\response\View
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/13 7:02 下午
- */
- public function account()
- {
-
- if ($this->request->isAjax()) {
- $get = $this->request->get();
- $data = WithdrawLogic::account($get);
- return JsonServer::success('', $data, 1);
- }
- $today = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", time()))),
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", time())) + 86399)
- ];
-
- $yesterday = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-1 day")))),
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-1 day"))) + 86399)
- ];
-
-
- $days_ago7 = [
- date('Y-m-d H:i:s', strtotime(date("Y-m-d", strtotime("-7 day")))),
- date('Y-m-d 23:59:59', time())
- ];
-
- $days_ago30 = [
- date('Y-m-d 00:00:00', strtotime("-30 day")),
- date('Y-m-d 23:59:59', time())
- ];
- return view('', [
- 'today' => $today,
- 'yesterday' => $yesterday,
- 'days_ago7' => $days_ago7,
- 'days_ago30' => $days_ago30,
- ]);
- }
-
- /**
- * @notes 会员佣金提现详情
- * @return \think\response\View
- * @author suny
- * @date 2021/7/13 7:02 下午
- */
- public function withdraw_detail()
- {
-
- $id = $this->request->get('id', '', 'intval');
- $detail = WithdrawLogic::detail($id);
- return view('detail', [
- 'detail' => $detail
- ]);
- }
-
- /**
- * @notes 显示提现审核界面
- * @return \think\response\View
- * @author suny
- * @date 2021/7/13 7:02 下午
- */
- public function withdraw_review()
- {
-
- $id = $this->request->get('id', '', 'intval');
- return view('review', [
- 'id' => $id
- ]);
- }
-
- /**
- * @notes 审核通过
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @author suny
- * @date 2021/7/13 7:02 下午
- */
- public function confirm()
- {
-
- if ($this->request->isAjax()) {
- $post = $this->request->post();
- $result = WithdrawLogic::confirm($post);
- if ($result['code']) {
- return JsonServer::success($result['msg']);
- } else {
- return JsonServer::error($result['msg']);
- }
- }
- }
-
- /**
- * @notes 审核拒绝
- * @return \think\response\Json
- * @throws \think\exception\PDOException
- * @author suny
- * @date 2021/7/13 7:02 下午
- */
- public function refuse()
- {
-
- if ($this->request->isAjax()) {
- $post = $this->request->post();
- WithdrawLogic::refuse($post);
- return JsonServer::success('已拒绝提现');
- }
- }
-
- /**
- * @notes 显示提现转账界面
- * @return \think\response\View
- * @author suny
- * @date 2021/7/13 7:02 下午
- */
- public function transfer()
- {
-
- $id = $this->request->get('id', '', 'intval');
- return view('', [
- 'id' => $id
- ]);
- }
-
- /**
- * @notes 转账失败
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @author suny
- * @date 2021/7/13 7:02 下午
- */
- public function transferFail()
- {
-
- $post = $this->request->post();
- $result = WithdrawLogic::transferFail($post);
- if ($result['code']) {
- return JsonServer::success($result['msg']);
- } else {
- return JsonServer::error($result['msg']);
- }
- }
-
- /**
- * @notes 转账成功
- * @return \think\response\Json
- * @author suny
- * @date 2021/7/13 7:02 下午
- */
- public function transferSuccess()
- {
-
- $post = $this->request->post();
- $result = WithdrawLogic::transferSuccess($post);
- if ($result['code']) {
- return JsonServer::success($result['msg']);
- } else {
- return JsonServer::error($result['msg']);
- }
- }
-
- /**
- * @notes 提现结果查询
- * @return \think\response\Json
- * @author suny
- * @date 2021/7/13 7:02 下午
- */
- public function search()
- {
-
- $id = $this->request->post('id', '', 'intval');
- $result = WithdrawLogic::search($id);
- if ($result['code']) {
- return JsonServer::success($result['msg']);
- } else {
- return JsonServer::error($result['msg']);
- }
- }
-
- /**
- * @notes 提现失败
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @author suny
- * @date 2021/7/13 7:03 下午
- */
- public function withdrawFailed()
- {
-
- $id = $this->request->post('id', '', 'intval');
- WithdrawLogic::withdrawFailed($id);
- return JsonServer::success('提现失败已回退佣金');
- }
-
-
- /**
- * @notes 导出充值明细Excel
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/24 10:20
- */
- public function rechargeExport()
- {
- $params = $this->request->get();
- $result = WithdrawLogic::recharge($params, true);
- if(false === $result) {
- return JsonServer::error(WithdrawLogic::getError() ?: '导出失败');
- }
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 导出账户明细Excel
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/24 10:20
- */
- public function accountExport()
- {
- $params = $this->request->get();
- $result = WithdrawLogic::account($params, true);
- if(false === $result) {
- return JsonServer::error(WithdrawLogic::getError() ?: '导出失败');
- }
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 导出佣金明细Excel
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/24 10:20
- */
- public function commissionExport()
- {
- $params = $this->request->get();
- $result = WithdrawLogic::commission($params, true);
- if(false === $result) {
- return JsonServer::error(WithdrawLogic::getError() ?: '导出失败');
- }
- return JsonServer::success('', $result);
- }
-
-
-
- /**
- * @notes 导出佣金提现Excel
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/24 10:20
- */
- public function withdrawalExport()
- {
- $params = $this->request->get();
- $result = WithdrawLogic::lists($params, true);
- if(false === $result) {
- return JsonServer::error(WithdrawLogic::getError() ?: '导出失败');
- }
- return JsonServer::success('', $result);
- }
- }
|