|
@@ -2176,7 +2176,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
|
|
|
|
// 置能否申诉标识 canappeal=1可申诉 中差评均可申诉
|
|
|
// 这里以后可能需要,不要删除
|
|
|
- cppjly = getCppjly(s);
|
|
|
+ cppjly = publicService.getCppjly(s.getPjly().trim());
|
|
|
// 置可申诉标识 当前评价为中差评时看是否有已同步的差评,有不再产生申诉数据
|
|
|
if (cppjly){
|
|
|
OrderAppraise oldoat = orderAppraiseService.lambdaQuery()
|
|
@@ -2278,7 +2278,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
|
orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G10.getCode()))){
|
|
|
// 首评
|
|
|
// 首次评价
|
|
|
- orderBase.setAppraiseStatus(getAppraiseStatus(s.getPjly().trim()));
|
|
|
+ orderBase.setAppraiseStatus(publicService.getAppraiseStatusT(s.getPjly().trim()));
|
|
|
// 首次评价内容
|
|
|
orderBase.setAppraiseContent(s.getPjly().trim());
|
|
|
// 首次评价时间
|
|
@@ -2287,7 +2287,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
|
// orderBase.setAppraiseSource();
|
|
|
} else {
|
|
|
// 追评评价状态
|
|
|
- orderBase.setSecondAppraiseStatus(getAppraiseStatus(s.getPjly().trim()));
|
|
|
+ orderBase.setSecondAppraiseStatus(publicService.getAppraiseStatusT(s.getPjly().trim()));
|
|
|
// 追评评价内容
|
|
|
orderBase.setSecondContent(s.getPjly().trim());
|
|
|
// 追评评价时间
|
|
@@ -2340,65 +2340,9 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
|
}
|
|
|
|
|
|
|
|
|
- // 首次评价(A:好评,B:中评,C:差评,N:未评价,O:其他
|
|
|
- private String getAppraiseStatus(String pjly){
|
|
|
- String appraiseStatus="";
|
|
|
- if (pjly.equals("1") || pjly.indexOf("满意")>=0){
|
|
|
- appraiseStatus="A";
|
|
|
- } else if (pjly.equals("2") || pjly.indexOf("一般")>=0){
|
|
|
- appraiseStatus="B";
|
|
|
- } else if (pjly.equals("3") || pjly.indexOf("不满意")>=0){
|
|
|
- appraiseStatus="C";
|
|
|
- } else {
|
|
|
- // 这里需要增加一个表用来查询确认是否为不满意
|
|
|
- appraiseStatus=getAppraiseStatusr(pjly);
|
|
|
- }
|
|
|
-
|
|
|
- return appraiseStatus;
|
|
|
- }
|
|
|
-
|
|
|
- // 看是否为中差评
|
|
|
- @NotNull
|
|
|
- private Boolean getCppjly(ItfTblAzAssignSatisfactionDownload s) {
|
|
|
- Boolean cppjly;
|
|
|
- if (s.getPjly().trim().equals("1") || s.getPjly().trim().indexOf("满意")>=0){
|
|
|
- cppjly = Boolean.FALSE;
|
|
|
- } else if (s.getPjly().trim().equals("2") || s.getPjly().trim().indexOf("一般")>=0){
|
|
|
- cppjly = Boolean.TRUE;
|
|
|
- } else if (s.getPjly().trim().equals("3") || s.getPjly().trim().indexOf("不满意")>=0){
|
|
|
- cppjly = Boolean.TRUE;
|
|
|
- } else {
|
|
|
- cppjly = publicService.checkEvaluatemessage(s.getPjly());
|
|
|
- }
|
|
|
- return cppjly;
|
|
|
- }
|
|
|
-
|
|
|
- // A=满意 B=一般 C=不满意 O:其他
|
|
|
- @NotNull
|
|
|
- private String getAppraiseStatusr(String pjly) {
|
|
|
- String appraiseStatus = "";
|
|
|
- SatisfactionList sfs = publicService.getAppraiseStatus(pjly);
|
|
|
- if (sfs == null){
|
|
|
- appraiseStatus="O";
|
|
|
- return appraiseStatus;
|
|
|
- }
|
|
|
- if (sfs.getAppraiseType().equals(AppraiseTypeEnum.SATISFACTION.getCode())){
|
|
|
- appraiseStatus="A";
|
|
|
- } else if (sfs.getAppraiseType().equals(AppraiseTypeEnum.GENERAL.getCode())){
|
|
|
- appraiseStatus="B";
|
|
|
- } else if (sfs.getAppraiseType().equals(AppraiseTypeEnum.DISPLEASURE.getCode())){
|
|
|
- appraiseStatus="C";
|
|
|
- } else {
|
|
|
- appraiseStatus="O";
|
|
|
- }
|
|
|
-
|
|
|
- return appraiseStatus;
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
private int getCp(OrderBase orderBase, List<OrderAppeal> orderAppeals,
|
|
|
ItfTblAzAssignSatisfactionDownload s, Date ssDate) {
|
|
|
- if (s.getPjnr().equals("3") || s.getPjnr().indexOf("不满意")>=0 || getCppjly(s)){
|
|
|
+ if (s.getPjnr().equals("3") || s.getPjnr().indexOf("不满意")>=0 || publicService.getCppjly(s.getPjly().trim())){
|
|
|
OrderAppeal orderAppeal=new OrderAppeal();
|
|
|
orderAppeal.setOrderBaseId(orderBase.getId());
|
|
|
orderAppeal.setPgid(orderBase.getPgid());
|
|
@@ -2407,7 +2351,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
|
// 网点必填
|
|
|
orderAppeal.setWebsitId(orderBase.getWebsitId());
|
|
|
orderAppeal.setBadEvaluate(s.getPjnr());
|
|
|
- orderAppeal.setAppraiseStatus(getAppraiseStatus(s.getPjly()));
|
|
|
+ orderAppeal.setAppraiseStatus(publicService.getAppraiseStatusT(s.getPjly()));
|
|
|
orderAppeal.setStatus(1);
|
|
|
orderAppeal.setCanApply(Boolean.TRUE);
|
|
|
orderAppeal.setCreateTime(new Date());
|
|
@@ -2423,7 +2367,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
|
List<FaGreeSms> fsList, Date jzDate) {
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
|
|
|
- if (s.getPjly().equals("3") || s.getPjnr().indexOf("不满意")>=0 || getCppjly(s)){
|
|
|
+ if (s.getPjly().equals("3") || s.getPjnr().indexOf("不满意")>=0 || publicService.getCppjly(s.getPjly().trim())){
|
|
|
if (StringUtils.isNotEmpty(s.getHfwdno()) && !s.getHfwdno().equals("99999999") && StringUtils.isNotEmpty(websitFWS.getWdlxdh())){
|
|
|
FaGreeSms fs=new FaGreeSms();
|
|
|
fs.setSynTaskNo(publicService.getUUID());
|
|
@@ -2469,7 +2413,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
|
o.setMainName(sysDictRefDLMap.get(String.valueOf(s.getSplb())).get(0).getDictValue());
|
|
|
}
|
|
|
|
|
|
- o.setAppraiseStatus(getAppraiseStatus(s.getPjly()));
|
|
|
+ o.setAppraiseStatus(publicService.getAppraiseStatusT(s.getPjly()));
|
|
|
|
|
|
o.setAppraiseContent(s.getPjnr());
|
|
|
o.setSource("GREE");
|
|
@@ -2494,7 +2438,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
|
if (s.getSxlx().equals(0)){
|
|
|
o.setType(1);
|
|
|
} else {
|
|
|
- o.setType(24);
|
|
|
+ o.setType(2);
|
|
|
}
|
|
|
|
|
|
if (s.getCreatedBy()!=null){
|