截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Freight.php 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\model;
  20. use app\common\basics\Models;
  21. use app\common\enum\FreightEnum;
  22. use think\facade\Db;
  23. /**
  24. * 运费模板
  25. */
  26. class Freight extends Models
  27. {
  28. protected $name = 'freight';
  29. protected $autoWriteTimestamp = true;
  30. public static function getChargeWay($type)
  31. {
  32. $data = [
  33. FreightEnum::CHARGE_WAY_WEIGHT => '按重量计费',
  34. FreightEnum::CHARGE_WAY_VOLUME => '按体积计费',
  35. FreightEnum::CHARGE_WAY_PIECE => '按件计费',
  36. ];
  37. if ($type === true) {
  38. return $data;
  39. }
  40. return $data[$type] ?? '未知';
  41. }
  42. public function getChargeWayTextAttr($value, $data)
  43. {
  44. return self::getChargeWay($data['charge_way']);
  45. }
  46. public static function getNameColumn($shop_id)
  47. {
  48. $lists = self::where(['shop_id'=>$shop_id])->column('id,name', 'id');
  49. return empty($lists) ? [] : $lists;
  50. }
  51. public function configs()
  52. {
  53. return $this->hasMany('freight_config', 'freight_id', 'id');
  54. }
  55. /**
  56. * @notes 根据收货地址-商品信息-运费模板id-商品数量计算运费
  57. * @param $address
  58. * @param $freight_id
  59. * @param $nums mixed 总数量 已计算重量、体积、件数
  60. * @return float|int|mixed
  61. * @throws \think\db\exception\DbException
  62. * @throws \think\db\exception\ModelNotFoundException
  63. * @throws \think\db\exception\DataNotFoundException
  64. * @author lbzy
  65. * @datetime 2024-04-03 12:37:48
  66. */
  67. public function sumFreight($address, $freight_id, $nums)
  68. {
  69. //判断用户收货地址适用模板
  70. $freight_config = FreightConfig::where('freight_id', $freight_id)->select()->toArray();
  71. $freight_config_item = [];
  72. foreach ($freight_config as $key => $value) {
  73. $district_check = strpos($value['region'], (string)$address['district_id']);
  74. $city_check = strpos($value['region'], (string)$address['city_id']);
  75. $province_check = strpos($value['region'], (string)$address['province_id']);
  76. if ($district_check !== false) {//区域匹配模板
  77. $freight_config_item = $value;
  78. }
  79. if ($city_check !== false) {//市匹配模板
  80. $freight_config_item = $value;
  81. }
  82. if ($province_check !== false) {//省匹配模板
  83. $freight_config_item = $value;
  84. }
  85. if ($district_check == false && $city_check == false && $province_check == false) {
  86. if ($value['region'] == 'all') {
  87. $freight_config_item = $value;
  88. }
  89. }
  90. }
  91. $price = 0;//运费
  92. $unified_num = $nums;
  93. if ($unified_num <= $freight_config_item['first_unit']) {//小于首件数
  94. $price = $freight_config_item['first_money'];
  95. }
  96. if ($unified_num > $freight_config_item['first_unit']) {//大于首件数 计算公式=(((商品数量-首件数)/续件数)*续件费用)+首件费用
  97. $continue_unit = ceil(($unified_num - $freight_config_item['first_unit']) / $freight_config_item['continue_unit']);//续件数向上取整
  98. $price = ($continue_unit * $freight_config_item['continue_money']) + $freight_config_item['first_money'];
  99. }
  100. return $price;
  101. }
  102. }