Consult.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. use library\tools\Data;
  17. use think\Db;
  18. use think\db\Where;
  19. /**
  20. * 订单需求
  21. * Class GoodsCate
  22. * @package app\store\controller
  23. */
  24. class Consult extends Controller
  25. {
  26. /**
  27. * 绑定数据表
  28. * @var string
  29. */
  30. protected $table = 'release_order';
  31. /**
  32. * 订单需求管理
  33. * @auth true
  34. * @menu true
  35. * @throws \think\Exception
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @throws \think\exception\DbException
  39. * @throws \think\exception\PDOException
  40. */
  41. public function index()
  42. {
  43. $this->title = '订单需求管理';
  44. $query = $this->_query($this->table);
  45. $query = $this->byWhere();
  46. $query->order('id desc')->page();
  47. }
  48. /**
  49. * 搜索条件
  50. * @return \library\helper\QueryHelper
  51. */
  52. protected function byWhere()
  53. {
  54. $query = $this->_query($this->table);
  55. $engineer_id = session('user.engineer_id');
  56. if($engineer_id){
  57. $query->where('follow_id', $engineer_id);
  58. }
  59. if (!empty($_GET['order_number'])) {
  60. $query->where('order_number', $_GET['order_number']);
  61. }
  62. if (!empty($_GET['payment_status'])) {
  63. $query->where('payment_status', $_GET['payment_status']);
  64. }
  65. if (!empty($_GET['order_status'])) {
  66. $query->where('order_status', $_GET['order_status']);
  67. }
  68. return $query;
  69. }
  70. /**
  71. * 表单数据处理
  72. * @param array $data
  73. * @throws \think\Exception
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\ModelNotFoundException
  76. * @throws \think\exception\DbException
  77. * @throws \think\exception\PDOException
  78. */
  79. protected function _form_filter(&$data)
  80. {
  81. if ($this->request->post()) {
  82. $payment_status = Db::name('release_order')->where('id', $data['id'])->value('payment_status');
  83. if ($payment_status == 1) {
  84. $orderInfo = Db::name('release_order')->find($data['id']);
  85. $userInfo = Db::name('release_user')->find($orderInfo['user_id']);
  86. $grade = Db::name('release_member')->where('grade', $userInfo['grade'])->find();
  87. if (empty($grade)) $grade['discount'] = 1;
  88. $data['contract'] = explode('|', $data['contract']);
  89. Db::name('release_order')->where('id', $data['id'])->update([
  90. 'follow_id' => $data['follow_id'],
  91. 'contract' => json_encode($data['contract']),
  92. 'transaction_price' => $data['transaction_price'],
  93. 'favorable_price' => $data['transaction_price'] * $grade['discount'],
  94. 'contract_time' => date('Y-m-d H:i:s'),
  95. 'work_time' => date('Y-m-d H:i:s'),
  96. 'order_status' => 2,
  97. 'payment_status' => 3
  98. ]);
  99. Db::name('release_demand')->where('id', $orderInfo['demand_id'])->update([
  100. 'budget_time' => $data['budget_time']
  101. ]);
  102. } elseif ($payment_status == 3) {
  103. $data['achievements'] = explode('|', $data['achievements']);
  104. Db::name('release_order')->where('id', $data['id'])->update([
  105. 'achievements' => json_encode($data['achievements']),
  106. 'acceptance_time' => date('Y-m-d H:i:s'),
  107. 'payment_status' => 2
  108. ]);
  109. }
  110. //推送消息
  111. $message = new \app\api\controller\Message();
  112. $message->job_schedule($data['id']);
  113. } else {
  114. $this->release_admin = Db::name('release_admin')->field('id,username')->select();
  115. $release_order_info = Db::name('release_order')->field('demand_id,payment_status,contract,achievements')->where('id', $data['id'])->find();
  116. if ($release_order_info['payment_status'] > 1) {
  117. $this->contract_arr = json_decode($release_order_info['contract'], true);
  118. $this->budget_time = Db::name('release_demand')->where('id', $release_order_info['demand_id'])->value('budget_time');
  119. }
  120. if ($release_order_info['payment_status'] == 2) {
  121. $this->achievements_arr = json_decode($release_order_info['achievements'], true);
  122. }
  123. }
  124. }
  125. /**咨询列表处理
  126. * @param array $data
  127. * @throws \think\db\exception\DataNotFoundException
  128. * @throws \think\db\exception\ModelNotFoundException
  129. * @throws \think\exception\DbException
  130. */
  131. protected function _index_page_filter(array &$data)
  132. {
  133. foreach ($data as $k => &$v) {
  134. if ($v['follow_id'] != null) {
  135. $data[$k]['follow_id'] = Db::name('release_admin')->where('id', $v['follow_id'])->value('username');
  136. }
  137. if ($v['payment_status'] == 1) {
  138. $data[$k]['payment_info'] = '待支付';
  139. } elseif ($v['payment_status'] == 2) {
  140. $data[$k]['payment_info'] = '待验收';
  141. } elseif ($v['payment_status'] == 3) {
  142. $data[$k]['payment_info'] = '工作中';
  143. } elseif ($v['payment_status'] == 4) {
  144. $data[$k]['payment_info'] = '交易完成';
  145. } elseif ($v['payment_status'] == 5) {
  146. $data[$k]['payment_info'] = '取消订单';
  147. }
  148. $data[$k]['demand'] = Db::name('release_demand')->where('id', $v['demand_id'])->find();
  149. $data[$k]['user'] = Db::name('release_user')->where('id', $v['user_id'])->find();
  150. $demand_picture = Db::name('release_demand')->where('id', $v['demand_id'])->value('demand_picture');
  151. $v['demand_picture_arr'] = explode('|', $demand_picture);
  152. }
  153. }
  154. /**
  155. * 编辑
  156. * @auth true
  157. * @throws \think\Exception
  158. * @throws \think\exception\PDOException
  159. */
  160. public function edit()
  161. {
  162. $this->_form($this->table, 'form');
  163. }
  164. /**
  165. * 查看
  166. * @auth true
  167. * @throws \think\Exception
  168. * @throws \think\exception\PDOException
  169. */
  170. public function info()
  171. {
  172. $this->_form($this->table, 'info');
  173. }
  174. /**
  175. * 确认完成
  176. * @auth true
  177. * @throws \think\Exception
  178. * @throws \think\exception\PDOException
  179. */
  180. public function completed()
  181. {
  182. $id = $this->request->get('id');
  183. $order = Db::name('release_order')->find($id);
  184. $info = ComputationalExperience($order['transaction_price'], $order['user_id']);
  185. $member = Db::name('release_member')->where('grade', $info['grade'])->find();
  186. $user = Db::name('release_user')->find($order['user_id']);
  187. $result = commission($user['id'], $order['favorable_price'], $id);
  188. // dump($order['favorable_price']);
  189. // exit();
  190. $follow_userId = Db::name('release_admin')->where('id', $order['follow_id'])->value('user_id');
  191. follow($follow_userId, $order['favorable_price']);
  192. if (!empty($user['superior_id'])) {
  193. $superior = Db::name('release_user')->find($user['superior_id']);
  194. }
  195. $userMoney = $result['userMoney'][0];
  196. $superiorMoney = $result['superiorMoney'][0];
  197. if ($userMoney > 0) {
  198. if ($user['grade'] != 'lv0') {
  199. $user_balance = $user['balance'] + $userMoney;
  200. Db::name('release_user')->where('id', $order['user_id'])->update([
  201. 'integral' => $info['integral'] + $user['integral'],
  202. 'experience' => $info['experience'] + $user['experience'],
  203. 'grade' => $info['grade'],
  204. 'balance' => $user_balance
  205. ]);
  206. if ($userMoney != 0) {
  207. Db::name('release_detailed')->insert([
  208. 'user_id' => $user['id'],
  209. 'detailed' => '订单佣金',
  210. 'transaction_number' => date('YmdHis', time()) . rand(111111, 999999),
  211. 'transaction_amount' => '+' . $userMoney,
  212. 'withdrawa_status' => 2,
  213. 'remaining_balance' => $user_balance,
  214. 'create_time' => date('Y-m-d H:i:s', time())
  215. ]);
  216. }
  217. }
  218. } else {
  219. Db::name('release_user')->where('id', $order['user_id'])->update([
  220. 'integral' => $info['integral'] + $user['integral'],
  221. 'experience' => $info['experience'] + $user['experience'],
  222. 'grade' => $info['grade'],
  223. ]);
  224. }
  225. if (!empty($superior)) {
  226. $superior_balance = $superior['balance'] + $superiorMoney;
  227. Db::name('release_user')->where('id', $user['superior_id'])->update([
  228. 'balance' => $superior_balance
  229. ]);
  230. if ($superiorMoney != 0) {
  231. Db::name('release_detailed')->insert([
  232. 'user_id' => $superior['id'],
  233. 'detailed' => '订单佣金',
  234. 'transaction_number' => date('YmdHis', time()) . rand(111111, 999999),
  235. 'transaction_amount' => '+' . $superiorMoney,
  236. 'withdrawa_status' => 2,
  237. 'remaining_balance' => $superior_balance,
  238. 'create_time' => date('Y-m-d H:i:s', time()),
  239. 'subordinate_id' => $user['id']
  240. ]);
  241. }
  242. }
  243. Db::name('release_exchange_details')->insert([
  244. 'detailed' => '消费获取',
  245. 'integral' => '+' . $info['integral'],
  246. 'user_id' => $user['id'],
  247. 'create_time' => date('Y-m-d H:i:s', time())
  248. ]);
  249. $this->_save($this->table, ['payment_status' => '4']);
  250. }
  251. /**
  252. * 删除
  253. * @auth true
  254. * @throws \think\Exception
  255. * @throws \think\exception\PDOException
  256. */
  257. public function remove()
  258. {
  259. $this->_save($this->table, ['is_deleted' => '1']);
  260. }
  261. }