|
|
|
@ -727,7 +727,6 @@ public class CollectController extends Controller {
|
|
|
|
|
Record rs = personModel.getLoginInfoByPersonId(person_id);
|
|
|
|
|
String bureau_id = rs.get("bureau_id");
|
|
|
|
|
|
|
|
|
|
BaseModel bm = new BaseModel();
|
|
|
|
|
String area_id = bm.getOrgInfoById(bureau_id).getStr("area_id");
|
|
|
|
|
//0:查全市
|
|
|
|
|
//1:只查市直属
|
|
|
|
@ -808,7 +807,6 @@ public class CollectController extends Controller {
|
|
|
|
|
Record rs = personModel.getLoginInfoByPersonId(person_id);
|
|
|
|
|
String bureau_id = rs.get("bureau_id");
|
|
|
|
|
|
|
|
|
|
BaseModel bm = new BaseModel();
|
|
|
|
|
String area_id = bm.getOrgInfoById(bureau_id).getStr("area_id");
|
|
|
|
|
|
|
|
|
|
cm.publishJob(person_id,job_id, deadline_time, publish_job_type_id, area_id,
|
|
|
|
@ -890,7 +888,6 @@ public class CollectController extends Controller {
|
|
|
|
|
// 获取任务名称
|
|
|
|
|
String job_name = cm.getJob(job_id).getStr("job_name");
|
|
|
|
|
// 获取单位名称
|
|
|
|
|
BaseModel bm = new BaseModel();
|
|
|
|
|
String bureau_name = bm.getOrgInfoById(bureau_id).getStr("org_name");
|
|
|
|
|
|
|
|
|
|
//文件名称
|
|
|
|
@ -1735,7 +1732,6 @@ public class CollectController extends Controller {
|
|
|
|
|
password = "!@#$%^&&*^*&(*)(*_)^%^$%$^%$^%";
|
|
|
|
|
}
|
|
|
|
|
String passwordEncode = CommonUtil.getLdapPassword(password);
|
|
|
|
|
BaseModel bm = new BaseModel();
|
|
|
|
|
Map loginMap = bm.getLoginInfoByUserName(username);
|
|
|
|
|
if (loginMap == null || !passwordEncode.equals(loginMap.get("password").toString())) {
|
|
|
|
|
//扩展支持连续输入用户名密码错误,停用账号5分钟功能 2022.06.07
|
|
|
|
|