Order.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\ProductTransfer;
  5. use app\common\model\ProductOrder;
  6. use app\common\model\ProductPopular;
  7. use app\common\model\ProductArea;
  8. use app\common\model\ProductLists;
  9. use app\common\model\LedgerWalletModel;
  10. use app\common\model\UserArea;
  11. use app\common\model\UserModel;
  12. use app\common\model\OfflineRechargeRecordModel;
  13. use Exception;
  14. use fast\Asset;
  15. use think\Db;
  16. use think\Env;
  17. /**
  18. * 订单关联
  19. */
  20. class Order extends Api
  21. {
  22. /**
  23. * 创建订单
  24. */
  25. public function create(ProductPopular $productPopular, ProductOrder $productOrder, ProductArea $productArea, LedgerWalletModel $ledgerWalletModel, UserModel $userModel)
  26. {
  27. $params = $this->request->post();
  28. $validate = \think\Loader::validate('Order');
  29. if(!$validate->scene('add')->check($params)) $this->error($validate->getError());
  30. $order_info = $productPopular->where('id', $params['order_id'])->find();
  31. if(empty($order_info)) $this->error(__("参数有误,无可用产品"));
  32. $areaArr = ($params['type'] == 1)? explode(',', $params['area_id']): '';
  33. $areaNum = ($params['type'] == 1)? count($areaArr): $params['num'];
  34. if(($order_info->num +$order_info->init_num+ $areaNum) > $order_info->stock) $this->error(__("库存不足"));
  35. // 启动事务
  36. Db::startTrans();
  37. try {
  38. $amount = $ledgerWalletModel::getWalletChaBao($this->auth->id);
  39. $totalPrice = bcmul($order_info['price'], $areaNum, 2);
  40. if(bccomp($totalPrice, $amount, 2) > 0) throw new Exception(__("余额不足请前往充值"), 15001);
  41. if($order_info->start_time > time()) throw new Exception(__("抢购未开始"));
  42. if($order_info->stock == 0 || time() >= $order_info->end_time) throw new Exception(__("抢购已结束"));
  43. //批量地区添加 1选择地区 2未选择地区
  44. if($params['type'] == 1)
  45. $productOrder::setPopularAreaOrder($areaArr, $params['order_id'], $order_info->price, $params['product_id'], $this->auth->id);
  46. else
  47. $productOrder::setPopularNoAreaOrder($areaNum, $params['order_id'], $order_info->price, $params['product_id'], $this->auth->id);
  48. //余额记录
  49. $ledgerWalletModel->changeWalletAccount($this->auth->id, Asset::TOKEN, -$totalPrice, $ledgerWalletModel::Popular, $this->auth->id);
  50. //直推收益: pv* ×10%
  51. if($order_info['pv'] > 0 && $this->auth->parent_id > 0 && $userModel::getUserRwaNum($this->auth->parent_id) > 0){
  52. $pv = bcmul(($order_info['pv'] * $areaNum), getConfig('pv_rate'), 2);
  53. if($pv > 0) $ledgerWalletModel->changeWalletAccount($this->auth->parent_id, Asset::TOKEN, $pv, $ledgerWalletModel::Direct, $this->auth->id);
  54. //社区奖励
  55. $pvs = bcmul(($order_info['pv'] * $areaNum), config('community_ratio'), 2);
  56. if($pvs > 0)$userModel::setCommunityRewards($this->auth->id, $pvs, Asset::TOKEN);
  57. }
  58. //更新Rwa持有数量
  59. if($order_info->price > config('min_rwa_price')) $userModel::updateForRwaNum($this->auth->id, $this->auth->parent_id, $areaNum, '+');
  60. //扣除库存
  61. if(($order_info->stock - $areaNum) == 0 || time() >= $order_info->end_time) $order_info->status= $productPopular::STOP;
  62. $order_info->num += $areaNum;
  63. $order_info->save();
  64. // 提交事务
  65. Db::commit();
  66. } catch (Exception $e) {
  67. // 回滚事务
  68. Db::rollback();
  69. $this->error($e->getMessage(), null, $e->getCode());
  70. }
  71. $this->success('ok');
  72. }
  73. /**
  74. * 提货订单
  75. */
  76. public function pickupOrder(UserArea $userArea, ProductOrder $productOrder, UserModel $userModel, LedgerWalletModel $ledgerWalletModel)
  77. {
  78. $params = $this->request->post();
  79. $validate = \think\Loader::validate('Order');
  80. if(!$validate->scene('pick')->check($params)) $this->error($validate->getError());
  81. $order_info = $productOrder->where('id', $params['order_id'])->find();
  82. if(empty($order_info)) $this->error( __("参数有误,无可用产品"));
  83. // 启动事务
  84. Db::startTrans();
  85. try {
  86. $freight= getConfig('logistics_freight');
  87. $amount = $ledgerWalletModel::getWalletChaBao($this->auth->id);
  88. if(bccomp($freight, $amount, 2) > 0) throw new Exception(__("余额不足请前往充值"), 15001);
  89. // 生成订单
  90. $userArea->create(['name'=>$params['name'], 'type_id'=>$userArea::TakeAdders, 'phone'=>$params['phone'],'address'=>$params['address'],'order_id'=>$params['order_id']]);
  91. //扣除Rwa数量
  92. if($order_info->popular_price > config('min_rwa_price')) $userModel::updateForRwaNum($order_info->user_id, $userModel::getByParentId($order_info->user_id), 1, '-');
  93. //扣除运费
  94. $ledgerWalletModel->changeWalletAccount($this->auth->id, Asset::TOKEN, -$freight, $ledgerWalletModel::Freight, $this->auth->id);
  95. $order_info->status= $productOrder::Shipped;
  96. $order_info->save();
  97. // 提交事务
  98. Db::commit();
  99. } catch (Exception $e) {
  100. // 回滚事务
  101. Db::rollback();
  102. $this->error( $e->getMessage());
  103. }
  104. $this->success('ok');
  105. }
  106. /**
  107. * 订单转让
  108. * @return void
  109. */
  110. public function transfer(ProductOrder $productOrder, ProductTransfer $productTransfer, ProductPopular $productPopular)
  111. {
  112. $params = $this->request->post();
  113. $validate = \think\Loader::validate('Order');
  114. if(!$validate->scene('tran')->check($params)) $this->error($validate->getError());
  115. //启动事务
  116. Db::startTrans();
  117. try {
  118. $order_info = $productOrder->where('id', $params['order_id'])->where('status', $productOrder::Paid)->find();
  119. if(empty($order_info)) throw new Exception(__("订单不存在"));
  120. $min_transfer = $productPopular::where('id', $order_info->order_id)->value('min_transfer');
  121. if(bccomp($params['price'],$min_transfer, 2) < 0) throw new Exception(__("当前订单最低转让金额为").$min_transfer);
  122. //转让订单
  123. $fee = getConfig('transfer_fee');
  124. $feeAmount = bcmul($params['price'], $fee, 2) ;
  125. $productTransfer::setTransferOrder($this->auth->id, $order_info['product_id'], $order_info['area_id'], $feeAmount, $params);
  126. //修改 类型状态
  127. $order_info->type_id = $productOrder::Transfer;
  128. $order_info->status = $productOrder::Transferred;
  129. $order_info->save();
  130. Db::commit();
  131. } catch (Exception $e) {
  132. Db::rollback();
  133. $this->error($e->getMessage());
  134. }
  135. $this->success('ok');
  136. }
  137. /**
  138. * 转让订单购买
  139. * @return void
  140. */
  141. public function transferOrder(ProductOrder $productOrder, ProductTransfer $productTransfer, LedgerWalletModel $ledgerWalletModel, UserModel $userModel)
  142. {
  143. $params = $this->request->post();
  144. $validate = \think\Loader::validate('Order');
  145. if(!$validate->scene('out')->check($params)) $this->error($validate->getError());
  146. //启动事务
  147. Db::startTrans();
  148. try {
  149. $order_info = $productTransfer->where('id', $params['order_id'])->where('status', $productTransfer::NORMAL)->find();
  150. if(empty($order_info)) throw new Exception(__("订单不存在"));
  151. $chabao = $ledgerWalletModel::getWalletChaBao($this->auth->id);
  152. if(bccomp($order_info['price'], $chabao, 2) > 0) throw new Exception(__("余额不足请前往充值"), 15001);
  153. //抢购订单
  154. $popular_order = $productOrder->where('id', $order_info['order_id'])->find();
  155. // 生成订单
  156. $productOrder::setCreateOrder($params['order_id'], $order_info, $productOrder::Transfer, $this->auth->id, $order_info['user_id'], getOrderSN('Z'), $order_info['fees'], $popular_order->popular_price);
  157. //扣除余额记录
  158. $ledgerWalletModel->changeWalletAccount($this->auth->id, Asset::TOKEN, -$order_info['price'], $ledgerWalletModel::Payment, $order_info['user_id']);
  159. //扣除Rwa有效
  160. if($popular_order->popular_price > config('min_rwa_price')) $userModel::updateForRwaNum($order_info['user_id'], $userModel::getByParentId($order_info['user_id']), 1, '-');
  161. //增加转让人余额
  162. $amount = bcsub($order_info['price'], $order_info['fees'], 2);
  163. $ledgerWalletModel->changeWalletAccount($order_info['user_id'], Asset::TOKEN, $amount, $ledgerWalletModel::Receive, $this->auth->id);
  164. //增加Rwa有效
  165. if($popular_order->popular_price > config('min_rwa_price')) $userModel::updateForRwaNum($this->auth->id, $this->auth->parent_id, 1, '+');
  166. //修改原订单状态
  167. $popular_order->status=$productOrder::Closure;
  168. $popular_order->save();
  169. //修改状态
  170. $order_info->status = $productTransfer::STOP;
  171. $order_info->save();
  172. Db::commit();
  173. } catch (Exception $e) {
  174. Db::rollback();
  175. $this->error($e->getMessage(), null, $e->getCode());
  176. }
  177. $this->success('ok');
  178. }
  179. //赠送
  180. public function giveaway(ProductOrder $productOrder, UserModel $userModel, LedgerWalletModel $ledgerWalletModel)
  181. {
  182. $params = $this->request->post();
  183. $validate = \think\Loader::validate('Order');
  184. if(!$validate->scene('giv')->check($params)) $this->error($validate->getError());
  185. // 启动事务
  186. Db::startTrans();
  187. try {
  188. $order_info = $productOrder->where('id', $params['order_id'])->where('status', $productOrder::Paid)->find();
  189. if(empty($order_info)) throw new Exception(__("参数有误,无可用产品"));
  190. $user = $userModel->getByAddress($params['address']);
  191. if(empty($user)) throw new Exception(__("赠送用户不存在"));
  192. if($user['id'] == $order_info['user_id']) throw new Exception(__("赠送用户不能是自己"));
  193. $chabao = $ledgerWalletModel::getWalletChaBao($this->auth->id);
  194. $fees = bcmul($order_info['price'], getConfig('giveaway'), 2);
  195. if(bccomp($fees, $chabao, 2) > 0) throw new Exception(__("余额不足请前往充值"), 15001);
  196. //添加记录
  197. $productOrder::setCreateOrder($params['order_id'], $order_info, $productOrder::Giveaway, $user['id'], $this->auth->id, getOrderSN('G'), $fees, $order_info->popular_price);
  198. //对方Rwa+1
  199. if($order_info->popular_price > config('min_rwa_price')) $userModel::updateForRwaNum($user['id'], $userModel::getByParentId($user['id']), 1, '+');
  200. //扣除手续费
  201. $ledgerWalletModel->changeWalletAccount($this->auth->id, Asset::TOKEN, -$fees, $ledgerWalletModel::Giveaway, $user['id']);
  202. //扣除Rwa有效-1
  203. if($order_info->popular_price > config('min_rwa_price')) $userModel::updateForRwaNum($this->auth->id, $this->auth->parent_id, 1, '-');
  204. //修改:类型状态
  205. $order_info->type_id= $productOrder::Giveaway;
  206. $order_info->status = $productOrder::Closure;
  207. $order_info->save();
  208. // 提交事务
  209. Db::commit();
  210. } catch (Exception $e) {
  211. // 回滚事务
  212. Db::rollback();
  213. $this->error( $e->getMessage(), null, $e->getCode());
  214. }
  215. $this->success('ok');
  216. }
  217. //取消转让
  218. public function cancel(ProductOrder $productOrder, ProductTransfer $productTransfer)
  219. {
  220. $params = $this->request->post();
  221. $validate = \think\Loader::validate('Order');
  222. if(!$validate->scene('out')->check($params)) $this->error($validate->getError());
  223. // 启动事务
  224. Db::startTrans();
  225. try {
  226. $order_info = $productOrder->where('id', $params['order_id'])->find();
  227. if(empty($order_info)) throw new Exception(__("参数有误,无可用产品"));
  228. //转让列表取消
  229. $productTransfer::where('order_id',$params['order_id'])->setField('status', $productTransfer::STOP);
  230. //新增记录
  231. $productOrder::setCreateOrder($order_info['order_id'], $order_info, $productOrder::Popular, $order_info['user_id'], $order_info['from_user'], getOrderSN('R'), 0, $order_info->popular_price);
  232. //修改:类型状态
  233. $order_info->type_id= $productOrder::Transfer;
  234. $order_info->status = $productOrder::Cancelled;
  235. $order_info->save();
  236. // 提交事务
  237. Db::commit();
  238. } catch (Exception $e) {
  239. // 回滚事务
  240. Db::rollback();
  241. $this->error( $e->getMessage());
  242. }
  243. $this->success('ok');
  244. }
  245. //查看快递信息
  246. public function getTracking(UserArea $userArea)
  247. {
  248. $order_id = $this->request->post('order_id'); // 订单id
  249. if(empty($order_id)) $this->error(__("参数有误,无可用产品"));
  250. $tracking_no = $userArea->where('order_id', $order_id)->where('type_id', $userArea::TakeAdders)->value('tracking_no');
  251. if(empty($tracking_no)) $this->error(__("暂无物流信息"));
  252. $this->success('ok', $tracking_no);
  253. }
  254. /**
  255. * 更新订单hash
  256. * @return void
  257. */
  258. public function updateOrder()
  259. {
  260. $amount = $this->request->post('amount'); // 支付金额
  261. $tx_hash = $this->request->post('tx_hash'); // 交易hash
  262. if (empty($amount)) $this->error(__('交易金额不能为空'));
  263. if (empty($tx_hash)) $this->error(__('交易Hash不能为空'));
  264. //用户id、用户地址、hash、金额、状态、时间 address
  265. Db::startTrans();
  266. try {
  267. //更新订单支付状态为 待确认
  268. OfflineRechargeRecordModel::create([
  269. 'user_id' => $this->auth->id,
  270. 'amount' => $amount,
  271. 'status' => OfflineRechargeRecordModel::StatusConfirm,
  272. 'tx_hash' => $tx_hash,
  273. 'from_address' => $this->auth->address,
  274. 'to_address' => Env::get('rental.pay_address'),
  275. 'cha_bao' => getConfig('chabao_rate') * $amount
  276. ]);
  277. // 提交事务
  278. Db::commit();
  279. } catch (Exception $e) {
  280. // 回滚事务
  281. Db::rollback();
  282. $this->error( $e->getMessage());
  283. }
  284. $this->success('ok');
  285. }
  286. }