|
|
@@ -1961,7 +1961,7 @@ public class NewExcelUtil<T> {
|
|
|
}
|
|
|
|
|
|
private void addCell(Row row,TaskDetailsBo o) {
|
|
|
- for (int i = 0; i < 70; i++) {
|
|
|
+ for (int i = 0; i < 81; i++) {
|
|
|
Cell cell = row.createCell(i);
|
|
|
cell.setCellStyle(styles.get("data4"));
|
|
|
if (i==0)cell.setCellValue(1);//序号
|
|
|
@@ -2148,6 +2148,36 @@ public class NewExcelUtil<T> {
|
|
|
cell.setCellValue(o.getTrainingActual());
|
|
|
}else if(i==69){//培训指标(本年度)-其他
|
|
|
cell.setCellValue(o.getTrainingOther());
|
|
|
+ }else if(i==70){//特色工作-专项检查
|
|
|
+ cell.setCellValue("");
|
|
|
+ }else if(i==71){//特色工作-模拟稽查
|
|
|
+ cell.setCellValue("");
|
|
|
+ }else if(i==72){//其他事项说明
|
|
|
+ cell.setCellValue(o.getRemarks());
|
|
|
+ }else if(i==73){//创新能力评价评分
|
|
|
+ cell.setCellValue(o.getHtScore());
|
|
|
+ }else if(i==74){//实际申报批次
|
|
|
+ cell.setCellValue(o.getHtBatch());
|
|
|
+ }else if(i==75){//是否重点关注
|
|
|
+ cell.setCellValue(o.getHtFocus()==1?"是":"否");
|
|
|
+ }else if(i==76){//网上系统提交
|
|
|
+ addParam(cell,o.getWebSubmit(),o.getWebSubmitOther());
|
|
|
+ }else if(i==77){//纸质材料提交
|
|
|
+ addParam(cell,o.getPaperSubmit(),o.getPaperSubmitOther());
|
|
|
+ }else if(i==78){//省级-拟公示序号
|
|
|
+ if(o.getReviewProvince()==0){
|
|
|
+ cell.setCellValue("淘汰");
|
|
|
+ }else {
|
|
|
+ cell.setCellValue("公示,序号:"+o.getReviewProvinceNumber());
|
|
|
+ }
|
|
|
+ }else if(i==79){//国家级-高企编号
|
|
|
+ if(o.getReviewCountry()==0){
|
|
|
+ cell.setCellValue("淘汰");
|
|
|
+ }else {
|
|
|
+ cell.setCellValue("公示,编号:"+o.getReviewCountryNumber());
|
|
|
+ }
|
|
|
+ }else if(i==80){//更新时间
|
|
|
+ cell.setCellValue(DateUtils.formatDateChineseYYYYMMddHH(o.getUpdateTime()));
|
|
|
}else {
|
|
|
cell.setCellValue("");
|
|
|
}
|