Browse Source

会员可视化列表修改

anderx 11 months ago
parent
commit
f54f28a8f4

+ 1 - 9
src/main/java/com/goafanti/common/mapper/TaskDetailsMapper.xml

@@ -1331,15 +1331,7 @@ feature_other = values(feature_other)
                 and a.progress = #{progress}
             </if>
             <if test="applicationLevel !=null">
-                <if test="applicationLevel == 0">
-                    and e.total_amount &lt; 3
-                </if>
-                <if test="applicationLevel == 1">
-                    and e.total_amount &gt; 3 and e.total_amount &lt; 8
-                </if>
-                <if test="applicationLevel == 2">
-                    and e.total_amount &gt; 8
-                </if>
+                    and a.member_lvl= #{applicationLevel}
             </if>
             <if test="reviewProvince !=null">
                 and (a.review_province = #{reviewProvince}

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

@@ -1989,11 +1989,11 @@ public class NewExcelUtil<T> {
 				if (o.getMemberLvl()==null){
 					cell.setCellValue("");
 				}else if (o.getMemberLvl()==1){
-					cell.setCellValue("I");
+					cell.setCellValue("A");
 				}else if (o.getMemberLvl()==2){
-					cell.setCellValue("II");
+					cell.setCellValue("AA");
 				}else if (o.getMemberLvl()==3){
-					cell.setCellValue("III");
+					cell.setCellValue("AAA");
 				}
 			}
 			else if(i==6)cell.setCellValue(addThis(o.getTaskName()));		//业务负责人