GoodsService.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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\service;
  15. use think\Db;
  16. /**
  17. * 商品数据管理
  18. * Class GoodsService
  19. * @package app\store\logic
  20. */
  21. class GoodsService
  22. {
  23. /**
  24. * 同步商品库存信息
  25. * @param integer $goodsId
  26. * @return boolean
  27. * @throws \think\Exception
  28. * @throws \think\db\exception\DataNotFoundException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @throws \think\exception\DbException
  31. * @throws \think\exception\PDOException
  32. */
  33. public static function syncStock($goodsId)
  34. {
  35. // 商品入库统计
  36. $fields = "goods_id,goods_spec,ifnull(sum(number_stock),0) number_stock";
  37. $stockList = Db::name('StoreGoodsStock')->field($fields)->where(['goods_id' => $goodsId])->group('goods_id,goods_spec')->select();
  38. // 商品销量统计
  39. $where = [['b.goods_id', 'eq', $goodsId], ['a.status', 'in', ['1', '2', '3', '4', '5']]];
  40. $fields = 'b.goods_id,b.goods_spec,ifnull(sum(b.number_goods),0) number_sales';
  41. $salesList = Db::table('store_order a')->field($fields)->leftJoin('store_order_list b', 'a.order_no=b.order_no')->where($where)->group('b.goods_id,b.goods_spec')->select();
  42. // 组装更新数据
  43. $dataList = [];
  44. foreach (array_merge($stockList, $salesList) as $vo) {
  45. $key = "{$vo['goods_id']}@@{$vo['goods_spec']}";
  46. $dataList[$key] = isset($dataList[$key]) ? array_merge($dataList[$key], $vo) : $vo;
  47. if (empty($dataList[$key]['number_sales'])) $dataList[$key]['number_sales'] = '0';
  48. if (empty($dataList[$key]['number_stock'])) $dataList[$key]['number_stock'] = '0';
  49. }
  50. unset($salesList, $stockList);
  51. // 更新商品规格销量及库存
  52. foreach ($dataList as $vo) Db::name('StoreGoodsList')->where([
  53. 'goods_id' => $goodsId,
  54. 'goods_spec' => $vo['goods_spec'],
  55. ])->update([
  56. 'number_stock' => $vo['number_stock'],
  57. 'number_sales' => $vo['number_sales'],
  58. ]);
  59. // 更新商品主体销量及库存
  60. Db::name('StoreGoods')->where(['id' => $goodsId])->update([
  61. 'number_stock' => intval(array_sum(array_column($dataList, 'number_stock'))),
  62. 'number_sales' => intval(array_sum(array_column($dataList, 'number_sales'))),
  63. ]);
  64. return true;
  65. }
  66. }