GoodsService.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. namespace app\data\service;
  3. use think\admin\extend\DataExtend;
  4. use think\admin\Service;
  5. /**
  6. * 商品数据服务
  7. * Class GoodsService
  8. * @package app\data\service
  9. */
  10. class GoodsService extends Service
  11. {
  12. /**
  13. * 更新商品库存数据
  14. * @param string $code
  15. * @return bool
  16. * @throws \think\db\exception\DataNotFoundException
  17. * @throws \think\db\exception\DbException
  18. * @throws \think\db\exception\ModelNotFoundException
  19. */
  20. public function syncStock(string $code): bool
  21. {
  22. // 商品入库统计
  23. $query = $this->app->db->name('ShopGoodsStock');
  24. $query->field('goods_code,goods_spec,ifnull(sum(goods_stock),0) stock_total');
  25. $stockList = $query->where(['goods_code' => $code])->group('goods_code,goods_spec')->select()->toArray();
  26. // 商品销量统计
  27. $query = $this->app->db->table('shop_order a')->field('b.goods_code,b.goods_spec,ifnull(sum(b.stock_sales),0) stock_sales');
  28. $query->leftJoin('shop_order_item b', 'a.order_no=b.order_no')->where([['b.goods_code', '=', $code], ['a.status', 'in', [1, 2, 3, 4, 5]]]);
  29. $salesList = $query->group('b.goods_code,b.goods_spec')->select()->toArray();
  30. // 组装更新数据
  31. $dataList = [];
  32. foreach (array_merge($stockList, $salesList) as $vo) {
  33. $key = "{$vo['goods_code']}@@{$vo['goods_spec']}";
  34. $dataList[$key] = isset($dataList[$key]) ? array_merge($dataList[$key], $vo) : $vo;
  35. if (empty($dataList[$key]['stock_sales'])) $dataList[$key]['stock_sales'] = 0;
  36. if (empty($dataList[$key]['stock_total'])) $dataList[$key]['stock_total'] = 0;
  37. }
  38. unset($salesList, $stockList);
  39. // 更新商品规格销量及库存
  40. foreach ($dataList as $vo) {
  41. $map = ['goods_code' => $code, 'goods_spec' => $vo['goods_spec']];
  42. $set = ['stock_total' => $vo['stock_total'], 'stock_sales' => $vo['stock_sales']];
  43. $this->app->db->name('ShopGoodsItem')->where($map)->update($set);
  44. }
  45. // 更新商品主体销量及库存
  46. $this->app->db->name('ShopGoods')->where(['code' => $code])->update([
  47. 'stock_total' => intval(array_sum(array_column($dataList, 'stock_total'))),
  48. 'stock_sales' => intval(array_sum(array_column($dataList, 'stock_sales'))),
  49. 'stock_virtual' => $this->app->db->name('ShopGoodsItem')->where(['goods_code' => $code])->sum('number_virtual'),
  50. ]);
  51. return true;
  52. }
  53. /**
  54. * 获取分类数据
  55. * @param string $type 操作函数
  56. * @return array
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\DbException
  59. * @throws \think\db\exception\ModelNotFoundException
  60. */
  61. public function getCateList(string $type = 'arr2tree'): array
  62. {
  63. $map = ['deleted' => 0, 'status' => 1];
  64. $query = $this->app->db->name('ShopGoodsCate')->where($map)->order('sort desc,id desc');
  65. $cates = DataExtend::$type($query->withoutField('sort,status,deleted,create_at')->select()->toArray());
  66. if ($type === 'arr2table') foreach ($cates as &$vo) {
  67. $vo['sat'] = $vo['spt'] !== $this->getCateLevel() - 1 ? 'disabled' : '';
  68. }
  69. return $cates;
  70. }
  71. /**
  72. * 获取商品标签数据
  73. * @return array
  74. */
  75. public function getMarkList(): array
  76. {
  77. $map = ['status' => 1];
  78. $query = $this->app->db->name('ShopGoodsMark');
  79. return $query->where($map)->order('sort desc,id desc')->column('name');
  80. }
  81. /**
  82. * 商品数据绑定
  83. * @param array $data 商品主数据
  84. * @return array
  85. * @throws \think\db\exception\DataNotFoundException
  86. * @throws \think\db\exception\DbException
  87. * @throws \think\db\exception\ModelNotFoundException
  88. */
  89. public function buildItemData(array &$data = []): array
  90. {
  91. $cates = $this->app->db->name('ShopGoodsCate')->column('id,pid,name', 'id');
  92. foreach ($cates as $cate) if (isset($cates[$cate['pid']])) {
  93. $cates[$cate['id']]['parent'] =& $cates[$cate['pid']];
  94. }
  95. $codes = array_unique(array_column($data, 'code'));
  96. $query = $this->app->db->name('ShopGoodsItem')->withoutField('id,status,create_at');
  97. $items = $query->whereIn('goods_code', $codes)->where(['status' => 1])->select()->toArray();
  98. $marks = $this->app->db->name('ShopGoodsMark')->where(['status' => 1])->column('name');
  99. foreach ($data as &$vo) {
  100. $vo['marks'] = str2arr($vo['mark'], ',', $marks);
  101. $vo['cates'] = $cates[$vo['cate']] ?? [];
  102. $vo['slider'] = explode('|', $vo['slider']);
  103. $vo['specs'] = json_decode($vo['data_specs'], true);
  104. $vo['items'] = [];
  105. foreach ($items as $item) if ($item['goods_code'] === $vo['code']) $vo['items'][] = $item;
  106. unset($vo['mark'], $vo['sort'], $vo['status'], $vo['deleted'], $vo['data_items'], $vo['data_specs']);
  107. }
  108. return $data;
  109. }
  110. /**
  111. * 最大分类级别
  112. * @return integer
  113. */
  114. public function getCateLevel(): int
  115. {
  116. return 3;
  117. }
  118. }