Browse Source

项目进度详情开发

anderx 1 year ago
parent
commit
650398693b

+ 5 - 5
src/main/java/com/goafanti/common/model/TaskDetails.java

@@ -200,7 +200,7 @@ public class TaskDetails implements Serializable {
     /**
      * 召开上年度总结与本年工作计划会议其他说明
      */
-    private String closeMeeting_Other;
+    private String closeMeetingOther;
     /**
      * 阶段性汇报 1=月度,2=季度
      */
@@ -723,12 +723,12 @@ public class TaskDetails implements Serializable {
         this.closeMeetingStatus = closeMeetingStatus;
     }
 
-    public String getCloseMeeting_Other() {
-        return closeMeeting_Other;
+    public String getCloseMeetingOther() {
+        return closeMeetingOther;
     }
 
-    public void setCloseMeeting_Other(String closeMeeting_Other) {
-        this.closeMeeting_Other = closeMeeting_Other;
+    public void setCloseMeetingOther(String closeMeetingOther) {
+        this.closeMeetingOther = closeMeetingOther;
     }
 
     public Integer getPhasedType() {

+ 13 - 0
src/main/java/com/goafanti/common/utils/excel/NewExcelUtil.java

@@ -1957,6 +1957,19 @@ public class NewExcelUtil<T> {
 			else if(i==7)cell.setCellValue(o.getBeforeLastRdBudget().stripTrailingZeros().toPlainString());
 			else if(i==8)cell.setCellValue(o.getLastSalesAmount().stripTrailingZeros().toPlainString());
 			else if(i==9)cell.setCellValue(o.getLastRdBudget().stripTrailingZeros().toPlainString());
+			else if(i==10){
+				switch (o.getCloseMeetingStatus())
+					{
+						case 0:
+							cell.setCellValue("未到会");
+							break;
+						case 1: cell.setCellValue("已到会"); break;
+						case 2: cell.setCellValue("未到会"); break;
+						case 3: cell.setCellValue("已到会"); break;
+
+					}
+
+			}
 
 
 

+ 5 - 5
src/main/java/com/goafanti/techproject/bo/OutTaskDetailsBo.java

@@ -219,7 +219,7 @@ public class OutTaskDetailsBo {
     /**
      * 召开上年度总结与本年工作计划会议其他说明
      */
-    private String closeMeeting_Other;
+    private String closeMeetingOther;
     /**
      * 阶段性汇报 1=月度,2=季度
      */
@@ -855,12 +855,12 @@ public class OutTaskDetailsBo {
         this.closeMeetingStatus = closeMeetingStatus;
     }
 
-    public String getCloseMeeting_Other() {
-        return closeMeeting_Other;
+    public String getCloseMeetingOther() {
+        return closeMeetingOther;
     }
 
-    public void setCloseMeeting_Other(String closeMeeting_Other) {
-        this.closeMeeting_Other = closeMeeting_Other;
+    public void setCloseMeetingOther(String closeMeetingOther) {
+        this.closeMeetingOther = closeMeetingOther;
     }
 
     public Integer getPhasedType() {