OrderService.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 OrderService
  19. * @package app\store\service
  20. */
  21. class OrderService
  22. {
  23. /**
  24. * 根据订单号升级会员等级
  25. * @param string $order_no 订单单号
  26. * @return boolean
  27. * @throws \think\db\exception\DataNotFoundException
  28. * @throws \think\db\exception\ModelNotFoundException
  29. * @throws \think\exception\DbException
  30. */
  31. public static function update($order_no)
  32. {
  33. // @todo 更新订单状态
  34. }
  35. /**
  36. * 根据订单同步库存销量
  37. * @param string $order_no
  38. * @return boolean
  39. * @throws \think\Exception
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. * @throws \think\exception\DbException
  43. * @throws \think\exception\PDOException
  44. */
  45. public static function syncStock($order_no)
  46. {
  47. $map = ['order_no' => $order_no];
  48. $goodsIds = Db::name('StoreOrderList')->where($map)->column('goods_id');
  49. foreach (array_unique($goodsIds) as $goodsId) if (!GoodsService::syncStock($goodsId)) return false;
  50. return true;
  51. }
  52. /**
  53. * 订单利润计算
  54. * @param string $order_no
  55. * @return boolean
  56. */
  57. public static function profit($order_no = '')
  58. {
  59. // @todo 计算订单返佣
  60. }
  61. }