You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.1 KiB
92 lines
3.1 KiB
<?php
|
|
|
|
/**
|
|
|
|
* [Laike System] Copyright (c) 2017-2020 laiketui.com
|
|
|
|
* Laike is not a free software, it under the license terms, visited http://www.laiketui.com/ for more details.
|
|
|
|
*/
|
|
|
|
require_once(MO_LIB_DIR . '/DBAction.class.php');
|
|
|
|
|
|
class addAction extends Action {
|
|
|
|
public function getDefaultView() {
|
|
$db = DBAction::getInstance();
|
|
$request = $this->getContext()->getRequest();
|
|
|
|
return View :: INPUT;
|
|
}
|
|
|
|
public function execute(){
|
|
$db = DBAction::getInstance();
|
|
$request = $this->getContext()->getRequest();
|
|
$admin_id = $this->getContext()->getStorage()->read('admin_id');
|
|
|
|
// 接收数据
|
|
$name = addslashes(trim($request->getParameter('name'))); // 规则名称
|
|
$type = addslashes(trim($request->getParameter('type'))); // 类型
|
|
$hidden_freight = $request->getParameter('hidden_freight'); // 运费信息
|
|
|
|
if($hidden_freight){
|
|
$freight_list = json_decode($hidden_freight,true);
|
|
$freight = serialize($freight_list);
|
|
}else{
|
|
// $freight = '';
|
|
echo "<script type='text/javascript'>" .
|
|
"alert('运费规则不能为空!');" .
|
|
"location.href='index.php?module=freight&action=add';</script>";
|
|
return $this->getDefaultView();
|
|
}
|
|
|
|
|
|
if($name == ''){
|
|
echo "<script type='text/javascript'>" .
|
|
"alert('规则名称不能为空!');" .
|
|
"location.href='index.php?module=freight&action=add';</script>";
|
|
return $this->getDefaultView();
|
|
}else{
|
|
$sql = "select * from lkt_freight";
|
|
$r = $db->select($sql);
|
|
if($r){
|
|
foreach ($r as $k => $v){
|
|
if($name == $v->name){
|
|
echo "<script type='text/javascript'>" .
|
|
"alert('规则名称 {$name} 已经存在,请选用其他名称!');" .
|
|
"location.href='index.php?module=freight&action=add';</script>";
|
|
return $this->getDefaultView();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// 添加规则
|
|
$sql = "insert into lkt_freight(name,type,freight,is_default,add_time) values('$name','$type','$freight',0,CURRENT_TIMESTAMP)";
|
|
$rr = $db->insert($sql);
|
|
if($rr > 0){
|
|
$db->admin_record($admin_id,' 添加规则 '.$name,1);
|
|
|
|
header("Content-type:text/html;charset=utf-8");
|
|
echo "<script type='text/javascript'>" .
|
|
"alert('规则添加成功!');" .
|
|
"location.href='index.php?module=freight';</script>";
|
|
return $this->getDefaultView();
|
|
}else{
|
|
$db->admin_record($admin_id,' 添加规则失败',1);
|
|
|
|
header("Content-type:text/html;charset=utf-8");
|
|
echo "<script type='text/javascript'>" .
|
|
"alert('未知原因,规则添加失败!');" .
|
|
"location.href='index.php?module=freight';</script>";
|
|
return $this->getDefaultView();
|
|
}
|
|
return;
|
|
}
|
|
|
|
public function getRequestMethods(){
|
|
return Request :: POST;
|
|
}
|
|
}
|
|
?>
|