|
@@ -1920,7 +1920,7 @@ public class PublicServiceImpl implements PublicService {
|
|
|
@Override
|
|
|
public String getAppraiseStatusT(String pjly){
|
|
|
String appraiseStatus="";
|
|
|
- if (pjly.equals("1") || pjly.indexOf("满意")>=0){
|
|
|
+ /*if (pjly.equals("1") || pjly.indexOf("满意")>=0){
|
|
|
appraiseStatus="A";
|
|
|
} else if (pjly.equals("2") || pjly.indexOf("一般")>=0){
|
|
|
appraiseStatus="B";
|
|
@@ -1929,7 +1929,10 @@ public class PublicServiceImpl implements PublicService {
|
|
|
} else {
|
|
|
// 这里需要增加一个表用来查询确认是否为不满意
|
|
|
appraiseStatus=getAppraiseStatusr(pjly);
|
|
|
- }
|
|
|
+ }*/
|
|
|
+
|
|
|
+ // 这里需要增加一个表用来查询确认是否为不满意
|
|
|
+ appraiseStatus=getAppraiseStatusr(pjly);
|
|
|
|
|
|
return appraiseStatus;
|
|
|
}
|