123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\store\controller;
- use library\Controller;
- use library\tools\Data;
- use think\Db;
- use think\db\Where;
- /**
- * 订单需求
- * Class GoodsCate
- * @package app\store\controller
- */
- class Consult extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- protected $table = 'release_order';
- /**
- * 订单需求管理
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- $this->title = '订单需求管理';
- $query = $this->_query($this->table);
- $query = $this->byWhere();
- $query->order('id desc')->page();
- }
- /**
- * 搜索条件
- * @return \library\helper\QueryHelper
- */
- protected function byWhere()
- {
- $query = $this->_query($this->table);
- $engineer_id = session('user.engineer_id');
- if($engineer_id){
- $query->where('follow_id', $engineer_id);
- }
- if (!empty($_GET['order_number'])) {
- $query->where('order_number', $_GET['order_number']);
- }
- if (!empty($_GET['payment_status'])) {
- $query->where('payment_status', $_GET['payment_status']);
- }
- if (!empty($_GET['order_status'])) {
- $query->where('order_status', $_GET['order_status']);
- }
- return $query;
- }
- /**
- * 表单数据处理
- * @param array $data
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- protected function _form_filter(&$data)
- {
- if ($this->request->post()) {
- $payment_status = Db::name('release_order')->where('id', $data['id'])->value('payment_status');
- if ($payment_status == 1) {
- $orderInfo = Db::name('release_order')->find($data['id']);
- $userInfo = Db::name('release_user')->find($orderInfo['user_id']);
- $grade = Db::name('release_member')->where('grade', $userInfo['grade'])->find();
- if (empty($grade)) $grade['discount'] = 1;
- $data['contract'] = explode('|', $data['contract']);
- Db::name('release_order')->where('id', $data['id'])->update([
- 'follow_id' => $data['follow_id'],
- 'contract' => json_encode($data['contract']),
- 'transaction_price' => $data['transaction_price'],
- 'favorable_price' => $data['transaction_price'] * $grade['discount'],
- 'contract_time' => date('Y-m-d H:i:s'),
- 'work_time' => date('Y-m-d H:i:s'),
- 'order_status' => 2,
- 'payment_status' => 3
- ]);
- Db::name('release_demand')->where('id', $orderInfo['demand_id'])->update([
- 'budget_time' => $data['budget_time']
- ]);
- } elseif ($payment_status == 3) {
- $data['achievements'] = explode('|', $data['achievements']);
- Db::name('release_order')->where('id', $data['id'])->update([
- 'achievements' => json_encode($data['achievements']),
- 'acceptance_time' => date('Y-m-d H:i:s'),
- 'payment_status' => 2
- ]);
- }
- //推送消息
- $message = new \app\api\controller\Message();
- $message->job_schedule($data['id']);
- } else {
- $this->release_admin = Db::name('release_admin')->field('id,username')->select();
- $release_order_info = Db::name('release_order')->field('demand_id,payment_status,contract,achievements')->where('id', $data['id'])->find();
- if ($release_order_info['payment_status'] > 1) {
- $this->contract_arr = json_decode($release_order_info['contract'], true);
- $this->budget_time = Db::name('release_demand')->where('id', $release_order_info['demand_id'])->value('budget_time');
- }
- if ($release_order_info['payment_status'] == 2) {
- $this->achievements_arr = json_decode($release_order_info['achievements'], true);
- }
- }
- }
- /**咨询列表处理
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _index_page_filter(array &$data)
- {
- foreach ($data as $k => &$v) {
- if ($v['follow_id'] != null) {
- $data[$k]['follow_id'] = Db::name('release_admin')->where('id', $v['follow_id'])->value('username');
- }
- if ($v['payment_status'] == 1) {
- $data[$k]['payment_info'] = '待支付';
- } elseif ($v['payment_status'] == 2) {
- $data[$k]['payment_info'] = '待验收';
- } elseif ($v['payment_status'] == 3) {
- $data[$k]['payment_info'] = '工作中';
- } elseif ($v['payment_status'] == 4) {
- $data[$k]['payment_info'] = '交易完成';
- } elseif ($v['payment_status'] == 5) {
- $data[$k]['payment_info'] = '取消订单';
- }
- $data[$k]['demand'] = Db::name('release_demand')->where('id', $v['demand_id'])->find();
- $data[$k]['user'] = Db::name('release_user')->where('id', $v['user_id'])->find();
- $demand_picture = Db::name('release_demand')->where('id', $v['demand_id'])->value('demand_picture');
- $v['demand_picture_arr'] = explode('|', $demand_picture);
- }
- }
- /**
- * 编辑
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function edit()
- {
- $this->_form($this->table, 'form');
- }
- /**
- * 查看
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function info()
- {
- $this->_form($this->table, 'info');
- }
- /**
- * 确认完成
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function completed()
- {
- $id = $this->request->get('id');
- $order = Db::name('release_order')->find($id);
- $info = ComputationalExperience($order['transaction_price'], $order['user_id']);
- $member = Db::name('release_member')->where('grade', $info['grade'])->find();
- $user = Db::name('release_user')->find($order['user_id']);
- $result = commission($user['id'], $order['favorable_price'], $id);
- // dump($order['favorable_price']);
- // exit();
- $follow_userId = Db::name('release_admin')->where('id', $order['follow_id'])->value('user_id');
- follow($follow_userId, $order['favorable_price']);
- if (!empty($user['superior_id'])) {
- $superior = Db::name('release_user')->find($user['superior_id']);
- }
- $userMoney = $result['userMoney'][0];
- $superiorMoney = $result['superiorMoney'][0];
- if ($userMoney > 0) {
- if ($user['grade'] != 'lv0') {
- $user_balance = $user['balance'] + $userMoney;
- Db::name('release_user')->where('id', $order['user_id'])->update([
- 'integral' => $info['integral'] + $user['integral'],
- 'experience' => $info['experience'] + $user['experience'],
- 'grade' => $info['grade'],
- 'balance' => $user_balance
- ]);
- if ($userMoney != 0) {
- Db::name('release_detailed')->insert([
- 'user_id' => $user['id'],
- 'detailed' => '订单佣金',
- 'transaction_number' => date('YmdHis', time()) . rand(111111, 999999),
- 'transaction_amount' => '+' . $userMoney,
- 'withdrawa_status' => 2,
- 'remaining_balance' => $user_balance,
- 'create_time' => date('Y-m-d H:i:s', time())
- ]);
- }
- }
- } else {
- Db::name('release_user')->where('id', $order['user_id'])->update([
- 'integral' => $info['integral'] + $user['integral'],
- 'experience' => $info['experience'] + $user['experience'],
- 'grade' => $info['grade'],
- ]);
- }
- if (!empty($superior)) {
- $superior_balance = $superior['balance'] + $superiorMoney;
- Db::name('release_user')->where('id', $user['superior_id'])->update([
- 'balance' => $superior_balance
- ]);
- if ($superiorMoney != 0) {
- Db::name('release_detailed')->insert([
- 'user_id' => $superior['id'],
- 'detailed' => '订单佣金',
- 'transaction_number' => date('YmdHis', time()) . rand(111111, 999999),
- 'transaction_amount' => '+' . $superiorMoney,
- 'withdrawa_status' => 2,
- 'remaining_balance' => $superior_balance,
- 'create_time' => date('Y-m-d H:i:s', time()),
- 'subordinate_id' => $user['id']
- ]);
- }
- }
- Db::name('release_exchange_details')->insert([
- 'detailed' => '消费获取',
- 'integral' => '+' . $info['integral'],
- 'user_id' => $user['id'],
- 'create_time' => date('Y-m-d H:i:s', time())
- ]);
- $this->_save($this->table, ['payment_status' => '4']);
- }
- /**
- * 删除
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function remove()
- {
- $this->_save($this->table, ['is_deleted' => '1']);
- }
- }
|