126 lines
3.6 KiB
PHP
126 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace app\common\model\merchant\store;
|
|
|
|
use think\Model;
|
|
use think\facade\Db;
|
|
use think\exception\ValidateException;
|
|
|
|
class ShippingTemplate extends Model
|
|
{
|
|
protected $connection = 'shop';
|
|
protected $table = 'eb_shipping_template';
|
|
protected $pk = 'shipping_template_id';
|
|
|
|
/**
|
|
* @param int $merId
|
|
* @author Qinii
|
|
*/
|
|
public function createDefault(int $merId)
|
|
{
|
|
$data = [
|
|
"name" => "默认模板",
|
|
"type" => 1,
|
|
"appoint" => 0,
|
|
"undelivery" => 0,
|
|
'mer_id' => $merId,
|
|
"region" => [[
|
|
"first" => 0,
|
|
"first_price" => 0,
|
|
"continue" => 0,
|
|
"continue_price" => 0,
|
|
"city_id" => 0
|
|
]]
|
|
];
|
|
return $this->createTemp($data);
|
|
}
|
|
|
|
/**
|
|
* @Author:Qinii
|
|
* @Date: 2020/5/13
|
|
* @param array $data
|
|
*/
|
|
public function createTemp(array $data)
|
|
{
|
|
Db::transaction(function()use ($data) {
|
|
$region = $data['region'];
|
|
$free = $data['free'] ?? '';
|
|
$undelives = $data['undelives'] ?? '';
|
|
unset($data['region'],$data['free'],$data['undelives'],$data['city_ids']);
|
|
$temp = self::create($data);
|
|
if($data['appoint']) {
|
|
$settlefree = $this->settleFree($free, $temp['shipping_template_id']);
|
|
|
|
(app()->make(ShippingTemplateFree::class))->addData($settlefree);
|
|
}
|
|
|
|
$settleRegion = $this->settleRegion($region, $temp['shipping_template_id']);
|
|
(app()->make(ShippingTemplateRegion::class))->addData($settleRegion);
|
|
|
|
if($data['undelivery'] == 1){
|
|
|
|
$settleUndelives = $this->settleUndelives($undelives,$temp['shipping_template_id']);
|
|
|
|
(app()->make(ShippingTemplateUndelive::class))->create($settleUndelives);
|
|
}
|
|
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param $data
|
|
* @param $id
|
|
* @return array
|
|
* @author Qinii
|
|
*/
|
|
public function settleFree($data,$id)
|
|
{
|
|
foreach ($data as $v){
|
|
if (isset($v['city_id']) && !is_array($v['city_id'])) throw new ValidateException('包邮参数类型错误');
|
|
$city = '/'.implode('/',$v['city_id']).'/';
|
|
$free[] = [
|
|
'temp_id' => $id,
|
|
'city_id' => $city,
|
|
'number' => $v['number'],
|
|
'price' => $v['price']
|
|
];
|
|
}
|
|
return $free;
|
|
}
|
|
|
|
/**
|
|
* @Author:Qinii
|
|
* @Date: 2020/5/13
|
|
* @param $data
|
|
* @param $id
|
|
* @return array
|
|
*/
|
|
public function settleRegion($data,$id)
|
|
{
|
|
$result = [];
|
|
foreach ($data as $k => $v){
|
|
$result[] = [
|
|
'city_id' => ($k > 0 ) ? '/'.implode('/',$v['city_id']).'/' : 0,
|
|
'temp_id' => $id,
|
|
'first' => $v['first'],
|
|
'first_price'=> $v['first_price'],
|
|
'continue' => $v['continue'],
|
|
'continue_price'=> $v['continue_price'],
|
|
];
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* @param $data
|
|
* @param $id
|
|
* @return array
|
|
* @author Qinii
|
|
*/
|
|
public function settleUndelives($data,$id)
|
|
{
|
|
if (isset($v['city_id']) && !is_array($data['city_id'])) throw new ValidateException('指定不配送参数类型错误');
|
|
|
|
return ['temp_id' => $id, 'city_id' => $data['city_id']];
|
|
}
|
|
} |