OrderService.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. namespace app\data\service;
  3. use think\admin\Service;
  4. /**
  5. * 订单数据服务
  6. * Class OrderService
  7. * @package app\data\service
  8. */
  9. class OrderService extends Service
  10. {
  11. /**
  12. * 获取随机减免金额
  13. * @return float
  14. */
  15. public function getReduct(): float
  16. {
  17. return rand(1, 100) / 100;
  18. }
  19. /**
  20. * 同步订单关联商品的库存
  21. * @param string $order_no 订单编号
  22. * @return boolean
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\DbException
  25. * @throws \think\db\exception\ModelNotFoundException
  26. */
  27. public function syncStock(string $order_no): bool
  28. {
  29. $map = ['order_no' => $order_no];
  30. $codes = $this->app->db->name('ShopOrderItem')->where($map)->column('goods_code');
  31. foreach (array_unique($codes) as $code) GoodsService::instance()->syncStock($code);
  32. return true;
  33. }
  34. /**
  35. * 绑定订单详情数据
  36. * @param array $data
  37. * @param bool $fromer
  38. * @return array
  39. * @throws \think\db\exception\DataNotFoundException
  40. * @throws \think\db\exception\DbException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. */
  43. public function buildItemData(array &$data = [], $fromer = true): array
  44. {
  45. // 关联发货信息
  46. $nobs = array_unique(array_column($data, 'order_no'));
  47. $trucks = $this->app->db->name('ShopOrderSend')->whereIn('order_no', $nobs)->column('*', 'order_no');
  48. foreach ($trucks as &$item) unset($item['id'], $item['uid'], $item['status'], $item['deleted'], $item['create_at']);
  49. // 关联订单商品
  50. $query = $this->app->db->name('ShopOrderItem')->where(['status' => 1, 'deleted' => 0]);
  51. $items = $query->withoutField('id,uid,status,deleted,create_at')->whereIn('order_no', $nobs)->select()->toArray();
  52. // 关联用户数据
  53. $fields = 'username,phone,nickname,headimg,status';
  54. UserService::instance()->buildByUid($data, 'uid', 'user', $fields);
  55. if ($fromer) UserService::instance()->buildByUid($data, 'from', 'fromer', $fields);
  56. foreach ($data as &$vo) {
  57. $vo['sales'] = 0;
  58. $vo['truck'] = $trucks[$vo['order_no']] ?? [];
  59. $vo['items'] = [];
  60. foreach ($items as $item) if ($vo['order_no'] === $item['order_no']) {
  61. $vo['sales'] += $item['stock_sales'];
  62. $vo['items'][] = $item;
  63. }
  64. }
  65. return $data;
  66. }
  67. }