ExpressService.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 ExpressService
  19. * @package app\store\service
  20. */
  21. class ExpressService
  22. {
  23. /**
  24. * 订单邮费计算
  25. * @param string $province 配送省份
  26. * @param string $number 计费数量
  27. * @param string $amount 订单金额
  28. * @return array
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\ModelNotFoundException
  31. * @throws \think\exception\DbException
  32. */
  33. public static function price($province, $number, $amount)
  34. {
  35. // 读取对应的模板规则
  36. $map = [['is_default', 'eq', '0'], ['rule', 'like', "%{$province}%"]];
  37. $rule = Db::name('StoreExpressTemplate')->where($map)->find();
  38. if (!empty($rule)) return self::buildData($rule, '普通模板', $number, $amount);
  39. $rule = Db::name('StoreExpressTemplate')->where(['is_default' => '1'])->find();
  40. return self::buildData($rule, '默认模板', $number, $amount);
  41. }
  42. /**
  43. * 生成邮费数据
  44. * @param array $rule 模板规则
  45. * @param string $type 模板类型
  46. * @param integer $number 计费件数
  47. * @param double $amount 订单金额
  48. * @return array
  49. */
  50. protected static function buildData($rule, $type, $number, $amount)
  51. {
  52. // 异常规则
  53. if (empty($rule)) return [
  54. 'express_price' => 0.00, 'express_type' => '未知模板', 'express_desc' => '未匹配到邮费模板',
  55. ];
  56. // 满减免邮
  57. if ($rule['order_reduction_state'] && $amount >= $rule['order_reduction_price']) {
  58. return [
  59. 'express_price' => 0.00, 'express_type' => $type,
  60. 'express_desc' => "订单总金额满{$rule['order_reduction_price']}元减免全部邮费",
  61. ];
  62. }
  63. // 首重计费
  64. if ($number <= $rule['first_number']) return [
  65. 'express_price' => $rule['first_price'], 'express_type' => $type,
  66. 'express_desc' => "首件计费,{$rule['first_number']}件及{$rule['first_number']}以内计费{$rule['first_price']}元",
  67. ];
  68. // 续重计费
  69. list($price1, $price2) = [$rule['first_price'], 0];
  70. if ($rule['next_number'] > 0 && $rule['next_price'] > 0) {
  71. $price2 = $rule['next_price'] * ceil(($number - $rule['first_number']) / $rule['next_number']);
  72. }
  73. return [
  74. 'express_price' => $price1 + $price2, 'express_type' => $type,
  75. 'express_desc' => "续件计费,超出{$rule['first_number']}件,首件费用{$rule['first_price']}元 + 续件费用{$price2}元",
  76. ];
  77. }
  78. }