Zhiqim Master(运营管理台)是在ZhiqimManager基础上改造成用于运营思路的管理系统,增加余额,和组织结构等,开放组织管理员,可以添加组织内的部门和角色和操作员。并增加该管理台上的一些组件,如充值支付等组件。适用于二级代理管理或该大型组织机构
森中灵 最后提交于7月前 替换为8.0.5版本
ParamAction.java3KB
/*
* 版权所有 (C) 2015 知启蒙(ZHIQIM) 保留所有权利。[遇见知启蒙,邂逅框架梦]
*
* https://zhiqim.org/project/zhiqim_components/zhiqim_master.htm
*
* Zhiqim Master is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package org.zhiqim.manager.action;
import org.zhiqim.httpd.HttpRequest;
import org.zhiqim.httpd.context.annotation.AnIntercept;
import org.zhiqim.httpd.context.core.Action;
import org.zhiqim.httpd.validate.ones.IsByteLen;
import org.zhiqim.httpd.validate.ones.IsNotEmpty;
import org.zhiqim.kernel.json.Jsons;
import org.zhiqim.kernel.model.maps.HashMapSO;
import org.zhiqim.kernel.util.Validates;
import org.zhiqim.manager.dao.ZmrOperatorDao;
import org.zhiqim.manager.dao.ZmrParamDao;
import org.zhiqim.manager.dbo.ZmrParam;
/**
* 修改参数页面和处理
*
* @version v1.0.0 @author zouzhigang 2015-5-28 新建与整理
* @version v1.4.1 @author zouzhigang 2015-5-4 删除刷新缓存标志,移到缓存管理功能
*/
public class ParamAction implements Action
{
public void execute(HttpRequest request) throws Exception
{
request.setValidateConfirm("修改系统参数后会对系统产生影响,确定要修改参数吗?");
request.setAttribute("groupMap", ZmrParamDao.getGroupMap());
}
@AnIntercept("chkZmrLogin")
public void update(HttpRequest request) throws Exception
{
request.addValidate(new IsNotEmpty("paramGroup", "参数组编码未获取到,请重试"));
request.addValidate(new IsNotEmpty("paramKey", "参数编码未获取到,请重试"));
request.addValidate(new IsByteLen("paramValue", "参数值可以为空且不能超过2000个字符", 0, 2000));
if (!request.chkValidate())
{
request.setResponseError(request.getAlertMsg());
return;
}
String paramGroup = request.getParameter("paramGroup");
String paramKey = request.getParameter("paramKey");
String paramValue = request.getParameterNoFilter("paramValue");
ZmrParam param = ZmrParamDao.getParam(paramGroup, paramKey);
if (param == null)
{//参数不存在
request.setResponseError("您选择的参数不存在,请选择有效的参数进行修改");
return;
}
if (!Validates.isEqual(param.getParamValue(), paramValue))
{//不相等进行修改
ZmrParamDao.doUpdate(paramGroup, paramKey, paramValue);
//增加操作日志
ZmrOperatorDao.addOperateLog(request, "修改系统参数", Jsons.toString(new HashMapSO("paramGroup", paramGroup).put("paramKey", paramKey).put("paramValue", paramValue)));
}
}
}