123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\merchant\controller\ump;
- use app\merchant\controller\AuthController;
- use app\merchant\model\ump\EventPrice;
- use service\JsonService as Json;
- use think\Request;
- use think\Url;
- use app\merchant\model\user\User;
- use app\admin\model\user\UserBill;
- use service\FormBuilder as Form;
- use app\merchant\model\ump\EventRegistration as EventRegistrationModel;
- use app\merchant\model\ump\EventSignUp as EventSignUpModel;
- use app\merchant\model\ump\EventData as EventDataModel;
- use app\merchant\model\ump\EventPrice as EventPriceModel;
- use app\admin\model\merchant\MerchantFlowingWater;
- use service\AlipayTradeWapService;
- use behavior\wechat\PaymentBehavior;
- use service\HookService;
- /**活动控制器
- * Class EventRegistration
- * @package app\merchant\controller\ump
- */
- class EventRegistration extends AuthController
- {
- public function index()
- {
- return $this->fetch();
- }
- /**
- * 活动列表
- */
- public function event_registration_list()
- {
- $where = parent::getMore([
- ['title', ''],
- ['status', ''],
- ['is_show', ''],
- ['page', 1],
- ['limit', 20],
- ], $this->request);
- $where['mer_id'] = $this->merchantId;
- return Json::successlayui(EventRegistrationModel::systemPage($where));
- }
- /**活动审核
- * @return mixed
- */
- public function examine()
- {
- return $this->fetch();
- }
- /**
- * 异步查找产品
- *
- * @return json
- */
- public function event_examine_ist()
- {
- $where = parent::getMore([
- ['title', ''],
- ['page', 1],
- ['limit', 20],
- ['status', ''],
- ]);
- return Json::successlayui(EventRegistrationModel::eventExamineList($where));
- }
- /**编辑
- * @param string $is_show
- * @param string $id
- */
- public function set_show($is_show = '', $id = '')
- {
- if ($is_show == '' || $id == '') return Json::fail('缺少参数');
- $res = parent::getDataModification('event', $id, 'is_show', (int)$is_show);
- if ($res)
- return Json::successful($is_show == 1 ? '显示成功' : '隐藏成功');
- else
- return Json::fail($is_show == 1 ? '显示失败' : '隐藏失败');
- }
- /**获得添加
- * @return mixed|void
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function create($id = 0)
- {
- $news = [];
- $event = [];
- $price = [];
- if ($id) {
- $news = EventRegistrationModel::eventRegistrationOne($id);
- $event = EventDataModel::eventDataList($id);
- $price = EventPriceModel::eventPriceList($id);
- if (!count($price)) {
- $price[0] = [
- 'event_id' => $id,
- 'event_number' => 1,
- 'event_price' => $news['price'],
- 'event_mer_price' => $news['member_price'],
- 'sort' => 0
- ];
- }
- }
- $this->assign(['id' => $id, 'news' => json_encode($news), 'event' => json_encode($event), 'price' => json_encode($price)]);
- return $this->fetch();
- }
- /**
- * 删除活动
- * */
- public function delete($id)
- {
- $res = EventRegistrationModel::delArticleCategory($id);
- if (!$res)
- return Json::fail(EventRegistrationModel::getErrorInfo('删除失败,请稍候再试!'));
- else {
- EventDataModel::delEventData($id);
- EventPriceModel::delEventPrice($id);
- return Json::successful('删除成功!');
- }
- }
- /**
- * 添加和修改活动
- */
- public function add_new()
- {
- $data = parent::postMore([
- ['id', 0],
- 'title',
- 'image',
- 'qrcode_img',
- 'activity_rules',
- 'content',
- 'number',
- 'province',
- 'city',
- 'district',
- 'detail',
- 'signup_start_time',
- 'signup_end_time',
- 'start_time',
- 'end_time',
- ['sort', 0],
- ['event', ''],//资料
- ['event_price', ''],//价格
- ['restrictions', 0],
- ['is_fill', 1],
- ['is_show', 0],
- ['pay_type', 1],
- 'price',
- ['member_pay_type', 1],
- 'member_price'
- ]);
- $data['signup_start_time'] = strtotime($data['signup_start_time']);
- $data['signup_end_time'] = strtotime($data['signup_end_time']);
- $data['start_time'] = strtotime($data['start_time']);
- $data['end_time'] = strtotime($data['end_time']);
- if (bcsub($data['signup_end_time'], $data['signup_start_time'], 0) <= 0) return Json::fail('报名结束时间不能小于等于开始时间');
- if (bcsub($data['start_time'], $data['signup_end_time'], 0) <= 0) return Json::fail('活动开始时间不能小于等于报名结束时间');
- if (bcsub($data['end_time'], $data['start_time'], 0) <= 0) return Json::fail('活动结束时间不能小于等于开始时间');
- $data['content'] = htmlspecialchars($data['content']);
- $data['activity_rules'] = htmlspecialchars($data['activity_rules']);
- if (isset($data['event']) && $data['event'] != '') {
- $event = json_decode($data['event'], true);
- } else {
- $event = [];
- }
- if (isset($data['event_price']) && $data['event_price'] != '') {
- $price = json_decode($data['event_price'], true);
- } else {
- $price = [];
- }
- $number = $data['number'];
- if ($data['id']) {
- $id = $data['id'];
- $data['status'] = $this->isAudit == 1 ? 0 : 1;
- unset($data['id'], $data['event'], $data['event_price']);
- EventRegistrationModel::beginTrans();
- $res1 = EventRegistrationModel::edit($data, $id, 'id');
- $res2 = EventDataModel::eventDataAdd($id, $event);
- $res3 = EventPriceModel::eventPriceAdd($id, $price, $number);
- $res = $res1 && $res2 && $res3;
- EventRegistrationModel::checkTrans($res);
- if ($res) {
- return Json::successful('修改活动成功!', $id);
- } else
- return Json::fail('修改活动失败,您并没有修改什么!', $id);
- } else {
- $data['mer_id'] = $this->merchantId;
- $data['status'] = $this->isAudit == 1 ? 0 : 1;
- $data['add_time'] = time();
- EventRegistrationModel::beginTrans();
- $id = EventRegistrationModel::insertGetId($data);
- $res2 = EventDataModel::eventDataAdd($id, $event);
- $res3 = EventPriceModel::eventPriceAdd($id, $price, $number);
- $res = $id && $res2 && $res3;
- EventRegistrationModel::checkTrans($res);
- if ($res)
- return Json::successful('添加活动成功!', $id);
- else
- return Json::successful('添加活动失败!', $id);
- }
- }
- /**
- * 查看报名人员
- */
- public function viewStaff($id)
- {
- if (!$id) return Json::fail('参数错误!');
- $activity = EventRegistrationModel::where('id', $id)->find();
- if (!$activity) return Json::fail('活动不存在!');
- $this->assign(['aid' => $id]);
- return $this->fetch('view_staff');
- }
- /**报名订单订单
- * @return mixed
- */
- public function order()
- {
- $this->assign([
- 'year' => getMonth('y'),
- 'orderCount' => EventSignUpModel::orderCount($this->merchantId)
- ]);
- return $this->fetch();
- }
- /**
- * 查看活动报名订单列表
- */
- public function get_sign_up_list()
- {
- $where = parent::getMore([
- ['id', $this->request->param('id')],
- ['page', 1],
- ['limit', 20],
- ['status', ''],
- ['type', $this->request->param('type')],
- ['real_name', ''],
- ['data', ''],
- ['excel', 0],
- ]);
- $where['mer_id'] = $this->merchantId;
- return Json::successlayui(EventSignUpModel::getUserSignUpAll($where));
- }
- /**
- * 统计
- */
- public function getBadge()
- {
- $where = parent::postMore([
- ['id', $this->request->param('id')],
- ['status', ''],
- ['type', ''],
- ['data', ''],
- ['real_name', '']
- ]);
- $where['mer_id'] = $this->merchantId;
- return Json::successful(EventSignUpModel::getBadge($where));
- }
- /**用户活动核销
- * @param string $order_id
- * @param int $aid
- * @param string $code
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function scanCodeSignIn($id)
- {
- if (!$id) $this->failed('参数有误!');
- $order = EventSignUpModel::where('id', $id)->find();
- if (!$order) $this->failed('订单不存在!');
- if ($order['status']) $this->failed('订单已核销!');
- $res = EventSignUpModel::where(['id' => $id, 'paid' => 1, 'is_del' => 0])->update(['status' => 1]);
- if ($res) return Json::successful('核销成功');
- else return Json::fail('核销失败');
- }
- /**
- * 修改退款状态
- * @param $id
- * @return \think\response\Json|void
- */
- public function refund_y($id)
- {
- if (!$id) return $this->failed('数据不存在');
- $product = EventSignUpModel::get($id);
- if (!$product) return Json::fail('数据不存在!');
- if ($product['paid'] == 1) {
- $f = array();
- $f[] = Form::input('order_id', '退款单号', $product->getData('order_id'))->disabled(1);
- $f[] = Form::number('refund_price', '退款金额', $product->getData('pay_price'))->precision(2)->min(0.01);
- $form = Form::make_post_form('退款处理', $f, Url::build('updateRefundY', array('id' => $id)), 4);
- $this->assign(compact('form'));
- return $this->fetch('public/form-builder');
- } else return Json::fail('数据不存在!');
- }
- /**退款处理
- * @param Request $request
- * @param $id
- */
- public function updateRefundY(Request $request, $id)
- {
- $data = parent::postMore([
- 'refund_price',
- ], $request);
- if (!$id) return Json::fail('数据不存在');
- $product = EventSignUpModel::get($id);
- if (!$product) return Json::fail('数据不存在!');
- if ($product['pay_price'] == $product['refund_price']) return Json::fail('已退完支付金额!不能再退款了');
- if (!$data['refund_price']) return Json::fail('请输入退款金额');
- $refund_price = $data['refund_price'];
- $data['refund_price'] = bcadd($data['refund_price'], $product['refund_price'], 2);
- $bj = bccomp((float)$product['pay_price'], (float)$data['refund_price'], 2);
- if ($bj < 0) return Json::fail('退款金额大于支付金额,请修改退款金额');
- $data['refund_status'] = 2;
- $refund_data['pay_price'] = $product['pay_price'];
- $refund_data['refund_price'] = $refund_price;
- if ($product['pay_type'] == 'weixin') {
- try {
- HookService::listen('wechat_pay_order_refund', $product['order_id'], $refund_data, true, PaymentBehavior::class);
- } catch (\Exception $e) {
- return Json::fail($e->getMessage());
- }
- } else if ($product['pay_type'] == 'yue') {
- EventSignUpModel::beginTrans();
- $res = User::bcInc($product['uid'], 'now_money', $refund_price, 'uid');
- EventSignUpModel::checkTrans($res);
- if (!$res) return Json::fail('余额退款失败!');
- } else if ($product['pay_type'] == 'zhifubao') {
- $res = AlipayTradeWapService::init()->AliPayRefund($product['order_id'], $product['trade_no'], $refund_price, '活动订单退款', 'refund');
- if (empty($res) || $res != 10000) {
- return Json::fail('支付宝退款失败!');
- }
- }
- $data['refund_reason_time'] = time();
- $resEdit = EventSignUpModel::edit($data, $id);
- if ($resEdit) {
- $pay_type = $product['pay_type'] == 'yue' ? 'now_money' : $product['pay_type'];
- if ($product['pay_type'] == 'yue') {
- $balance = User::where(['uid' => $product['uid']])->value('now_money');
- } else {
- $balance = 0;
- }
- UserBill::income('活动订单退款', $product['uid'], $pay_type, 'pay_sign_up_refund', $refund_price, $product['id'], $balance, '活动订单退款' . floatval($refund_price) . '元');
- MerchantFlowingWater::orderRefund($id, $product['mer_id'], 4);
- return Json::successful('修改成功!');
- } else {
- return Json::successful('修改失败!');
- }
- }
- /**订单详情
- * @param string $oid
- * @return mixed|void
- * @throws \think\exception\DbException
- */
- public function order_info($oid = '')
- {
- if (!$oid || !($orderInfo = EventSignUpModel::get($oid)))
- return $this->failed('订单不存在!');
- $userInfo = User::getAllUserinfo($orderInfo['uid']);
- $this->assign(compact('orderInfo', 'userInfo'));
- return $this->fetch();
- }
- /**订单删除
- * @param int $id
- */
- public function order_delete($id = 0)
- {
- if (!$id) return Json::fail('参数错误!');
- $data['is_del'] = 1;
- EventSignUpModel::edit($data, $id);
- return Json::successful('删除成功!');
- }
- }
|