|
|
|
@ -708,6 +708,7 @@ public class CollectController extends Controller {
|
|
|
|
|
* 2:下属学校
|
|
|
|
|
* 3:下属教辅单位
|
|
|
|
|
* 4: 市教育局
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Before({GET.class, RepeatIntercetpor.class})
|
|
|
|
@ -767,6 +768,7 @@ public class CollectController extends Controller {
|
|
|
|
|
* @param xiaShuSchool 下属学校:1选中,0未选中
|
|
|
|
|
* @param xiaShuJiaoFu 下属教辅单位:1选中,0未选中
|
|
|
|
|
* @param xiaShuJiaoYuJu 下属教育局:1选中,0未选中
|
|
|
|
|
* @param ShiJiaoYuJu 是教育局,1:选中,0:未选中
|
|
|
|
|
* @param bureauIds 按单位选择的单位ids
|
|
|
|
|
* @param groupIds 群组ids
|
|
|
|
|
* @param memo 说明文字
|
|
|
|
@ -789,7 +791,7 @@ public class CollectController extends Controller {
|
|
|
|
|
@IsNumericInterface({"job_id", "publish_job_type_id", "xiaShuSchool", "xiaShuJiaoFu", "xiaShuJiaoYuJu", "fill_type_id"})
|
|
|
|
|
@EmptyInterface({"deadline_time"})
|
|
|
|
|
public void publishJob(int job_id, String deadline_time, int publish_job_type_id,
|
|
|
|
|
int xiaShuSchool, int xiaShuJiaoFu, int xiaShuJiaoYuJu,
|
|
|
|
|
int xiaShuSchool, int xiaShuJiaoFu, int xiaShuJiaoYuJu, int ShiJiaoYuJu,
|
|
|
|
|
String bureauIds, String groupIds, String memo,
|
|
|
|
|
int fill_type_id, int target_type_id,
|
|
|
|
|
//增加的参数
|
|
|
|
@ -809,7 +811,7 @@ public class CollectController extends Controller {
|
|
|
|
|
String area_id = bm.getOrgInfoById(bureau_id).getStr("area_id");
|
|
|
|
|
|
|
|
|
|
cm.publishJob(job_id, deadline_time, publish_job_type_id, area_id,
|
|
|
|
|
xiaShuSchool, xiaShuJiaoFu, xiaShuJiaoYuJu, bureauIds,
|
|
|
|
|
xiaShuSchool, xiaShuJiaoFu, xiaShuJiaoYuJu, ShiJiaoYuJu, bureauIds,
|
|
|
|
|
groupIds, memo, fill_type_id, target_type_id, allTeacher, allStudent, njIds,
|
|
|
|
|
personIds, classIds);
|
|
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
|
@ -1000,7 +1002,7 @@ public class CollectController extends Controller {
|
|
|
|
|
public void viewJobPerson(int job_id) {
|
|
|
|
|
//操作人员
|
|
|
|
|
String person_id = SessionKit.get(getRequest(), getResponse(), "person_id");
|
|
|
|
|
Record record = cm.viewJobPerson(person_id,job_id);
|
|
|
|
|
Record record = cm.viewJobPerson(person_id, job_id);
|
|
|
|
|
renderJson(record);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -1584,8 +1586,7 @@ public class CollectController extends Controller {
|
|
|
|
|
@Before({POST.class, RepeatIntercetpor.class})
|
|
|
|
|
@IsLoginInterface({})
|
|
|
|
|
@IsNumericInterface({"job_id"})
|
|
|
|
|
public void ForwardJob(int job_id, String deadline_time, int xiaShuSchool, int xiaShuJiaoFu,
|
|
|
|
|
String bureauIds, String groupIds, String memo,
|
|
|
|
|
public void ForwardJob(int job_id, String deadline_time, int xiaShuSchool, int xiaShuJiaoFu, String bureauIds, String groupIds, String memo,
|
|
|
|
|
//增加的参数
|
|
|
|
|
int allTeacher, int allStudent, String njIds,
|
|
|
|
|
String personIds, String classIds) throws ParseException {
|
|
|
|
|