CRMEB_PRO_M/app/services/product/shipping/ShippingTemplatesRegionServices.php

257 lines
9.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\services\product\shipping;
use app\dao\product\shipping\ShippingTemplatesRegionDao;
use app\services\BaseServices;
use crmeb\exceptions\AdminException;
use crmeb\services\CacheService;
use crmeb\utils\Arr;
/**
* 指定邮费
* Class ShippingTemplatesRegionServices
* @package app\services\product\shipping
* @mixin ShippingTemplatesRegionDao
*/
class ShippingTemplatesRegionServices extends BaseServices
{
/**
* 构造方法
* ShippingTemplatesRegionServices constructor.
* @param ShippingTemplatesRegionDao $dao
*/
public function __construct(ShippingTemplatesRegionDao $dao)
{
$this->dao = $dao;
}
/**
* @param array $tempIds
* @param array $cityIds
* @param int $expire
* @return bool|mixed|null
*/
public function getTempRegionListCache(array $tempIds, array $cityIds, int $expire = 60)
{
return CacheService::redisHandler('apiShipping')->remember(md5('RegionList' . json_encode([$tempIds, $cityIds])), function () use ($tempIds, $cityIds) {
return $this->dao->getTempRegionList($tempIds, $cityIds, 'temp_id,first,first_price,continue,continue_price', 'temp_id');
}, $expire);
}
/**
* 添加运费信息
* @param array $regionInfo
* @param int $group
* @param int $tempId
* @return bool
* @throws \Exception
*/
public function saveRegionV1(array $regionInfo, int $group = 0, $tempId = 0)
{
$res = true;
if ($tempId) {
if ($this->dao->count(['temp_id' => $tempId])) {
$res = $this->dao->delete($tempId, 'temp_id');
}
}
$regionList = [];
mt_srand();
foreach ($regionInfo as $item) {
$uniqid = uniqid('adminapi') . rand(1000, 9999);
if (isset($item['city_ids']) && $item['city_ids']) {
foreach ($item['city_ids'] as $value) {
$regionList[] = [
'temp_id' => $tempId,
'city_id' => $value ? $value[count($value) - 1] : 0,
'value' => json_encode($value),
'first' => $item['first'] ?? 0,
'first_price' => $item['first_price'] ?? 0,
'continue' => $item['continue'] ?? 0,
'continue_price' => $item['continue_price'] ?? 0,
'group' => $group,
'uniqid' => $uniqid,
];
}
}
}
return $res && $this->dao->saveAll($regionList);
}
/**
* 添加运费信息
* @param array $regionInfo
* @param int $group
* @param int $tempId
* @return bool
* @throws \Exception
*/
public function saveRegion(array $regionInfo, int $group = 0, $tempId = 0)
{
$res = true;
if ($tempId) {
if ($this->dao->count(['temp_id' => $tempId])) {
$res = $this->dao->delete($tempId, 'temp_id');
}
}
$regionList = [];
mt_srand();
foreach ($regionInfo as $item) {
if (isset($item['region']) && is_array($item['region'])) {
$uniqid = uniqid('adminapi') . rand(1000, 9999);
foreach ($item['region'] as $value) {
if (isset($value['children']) && is_array($value['children'])) {
foreach ($value['children'] as $vv) {
if (!isset($vv['city_id'])) {
throw new AdminException('缺少城市id无法保存');
}
$regionList[] = [
'temp_id' => $tempId,
'province_id' => $value['city_id'] ?? 0,
'city_id' => $vv['city_id'] ?? 0,
'first' => $item['first'] ?? 0,
'first_price' => $item['price'] ?? 0,
'continue' => $item['continue'] ?? 0,
'continue_price' => $item['continue_price'] ?? 0,
'group' => $group,
'uniqid' => $uniqid,
];
}
} else {
$regionList[0] = [
'temp_id' => $tempId,
'province_id' => 0,
'city_id' => 0,
'first' => $item['first'] ?? 0,
'first_price' => $item['price'] ?? 0,
'continue' => $item['continue'] ?? 0,
'continue_price' => $item['continue_price'] ?? 0,
'group' => $group,
'uniqid' => $uniqid,
];
}
}
}
}
return $res && $this->dao->saveAll($regionList);
}
/**
* @param int $tempId
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getRegionListV1(int $tempId)
{
$freeList = $this->dao->getShippingList(['temp_id' => $tempId]);
return Arr::formatShipping($freeList);
}
/**
* 获取某个运费模板下的城市数据
* @param int $tempId
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getRegionList(int $tempId)
{
$regionList = $this->dao->getShippingGroupArray(['temp_id' => $tempId], 'uniqid', 'uniqid', '');
$regionData = [];
$infos = $this->dao->getShippingArray(['uniqid' => $regionList, 'temp_id' => $tempId], '*', 'uniqid');
foreach ($regionList as $uniqid) {
$info = $infos[$uniqid];
if ($info['province_id'] == 0) {
$regionData[] = [
'region' => [
'city_id' => 0,
'name' => '默认全国',
],
'regionName' => '默认全国',
'first' => $info['first'] ? floatval($info['first']) : 0,
'price' => $info['first_price'] ? floatval($info['first_price']) : 0,
'continue' => $info['continue'] ? floatval($info['continue']) : 0,
'continue_price' => $info['continue_price'] ? floatval($info['continue_price']) : 0,
'uniqid' => $info['uniqid'],
];
} else {
$regionData[] = [
'region' => $this->getRegionTemp($uniqid, $info['province_id']),
'regionName' => '',
'first' => $info['first'] ? floatval($info['first']) : 0,
'price' => $info['first_price'] ? floatval($info['first_price']) : 0,
'continue' => $info['continue'] ? floatval($info['continue']) : 0,
'continue_price' => $info['continue_price'] ? floatval($info['continue_price']) : 0,
'uniqid' => $info['uniqid'],
];
}
}
foreach ($regionData as &$item) {
if (!$item['regionName']) {
$item['regionName'] = implode(';', array_map(function ($val) {
return $val['name'];
}, $item['region']));
}
}
return $regionData;
}
/**
* 获取省份下运费模板
* @param string $uniqid
* @param int $provinceId
* @return array
*/
public function getRegionTemp(string $uniqid, int $provinceId)
{
/** @var ShippingTemplatesRegionCityServices $services */
$services = app()->make(ShippingTemplatesRegionCityServices::class);
$infoList = $services->getUniqidList(['uniqid' => $uniqid]);
$childrenData = [];
foreach ($infoList as $item) {
$childrenData[] = [
'city_id' => $item['province_id'],
'name' => $item['name'] ?? '全国',
'children' => $this->getCityTemp($uniqid, $item['province_id'])
];
}
return $childrenData;
}
/**
* 获取市区下的数据
* @param string $uniqid
* @param int $provinceId
* @return array
*/
public function getCityTemp(string $uniqid, int $provinceId)
{
/** @var ShippingTemplatesRegionCityServices $services */
$services = app()->make(ShippingTemplatesRegionCityServices::class);
$infoList = $services->getUniqidList(['uniqid' => $uniqid, 'province_id' => $provinceId], false);
$childrenData = [];
foreach ($infoList as $item) {
$childrenData[] = [
'city_id' => $item['city_id'],
'name' => $item['name'] ?? '全国',
];
}
return $childrenData;
}
}