main
黄海 2 years ago
parent b8d907cd3c
commit d10421a38f

@ -28,10 +28,8 @@ import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.net.URISyntaxException;
import java.net.URL;
import java.text.ParseException;
import java.util.*;
@ -710,7 +708,7 @@ public class CollectController extends Controller {
@IsLoginInterface({})
@IsNumericInterface({"job_id", "type_id"})
@EmptyInterface({"bureau_id"})
public void viewExcelFilledJob(int job_id, String bureau_id, int type_id) throws Exception {
public void getJobBureauFillInfo(int job_id, String bureau_id, int type_id) throws Exception {
// 获取任务名称
String job_name = cm.getJob(job_id).getStr("job_name");
// 获取单位名称
@ -755,7 +753,7 @@ public class CollectController extends Controller {
@IsLoginInterface({})
@IsNumericInterface({"is_finish"})
@LayUiPageInfoInterface({"page", "limit"})
public void viewJobList(String keyword, int is_finish, int page, int limit) {
public void getJobListByBureau(String keyword, int is_finish, int page, int limit) {
//操作人员
String person_id = SessionKit.get(getRequest(), getResponse(), "person_id");
//根据人员ID获取人员所在的单位ID

Loading…
Cancel
Save