| 
					
				 | 
			
			
				@@ -665,8 +665,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             orderAppealService.saveBatch(orderAppeal); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             orderAppeal.clear(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				- 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        orderBase.updateById(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        // orderBase.updateById(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -2463,6 +2462,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private void setOrderAppraisemessage(OrderBase orderBase, ItfTblAzAssignSatisfactionDownload s) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        log.info("【联通短信评价回复】:{}",JSONObject.toJSONString(s)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         if (orderBase.getAppraiseTime()==null && 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 (orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G7.getCode()) || 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                         orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G10.getCode()))){ 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -2486,25 +2486,37 @@ public class AddInstallBusinessImpl implements AddInstallBusiness { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private void setOrderAppraisemessageSelf(OrderBase orderBase, ItfReceiveSms s) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        log.info("【联通短信评价回复】:{}",JSONObject.toJSONString(s)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         if (orderBase.getAppraiseTime()==null && 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 (orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G7.getCode()) || 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                         orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G10.getCode()))){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // 首评 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // 首次评价 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            orderBase.setAppraiseStatus(publicService.getAppraiseStatusT(s.getContent().trim())); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            //orderBase.setAppraiseStatus(publicService.getAppraiseStatusT(s.getContent().trim())); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // 首次评价内容 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            orderBase.setAppraiseContent(s.getContent().trim()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            //orderBase.setAppraiseContent(s.getContent().trim()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // 首次评价时间 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            orderBase.setAppraiseTime(s.getRecvTime()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            //orderBase.setAppraiseTime(s.getRecvTime()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // 评价来源 无法区分 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // orderBase.setAppraiseSource(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            orderBaseService.lambdaUpdate() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    .set(OrderBase::getAppraiseStatus,publicService.getAppraiseStatusT(s.getContent().trim())) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    .set(OrderBase::getAppraiseContent,s.getContent().trim()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    .set(OrderBase::getAppraiseTime,s.getRecvTime()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    .eq(OrderBase::getId,orderBase.getId()).update(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // 追评评价状态 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            orderBase.setSecondAppraiseStatus(publicService.getAppraiseStatusT(s.getContent().trim())); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            //orderBase.setSecondAppraiseStatus(publicService.getAppraiseStatusT(s.getContent().trim())); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // 追评评价内容 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            orderBase.setSecondContent(s.getContent().trim()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            //orderBase.setSecondContent(s.getContent().trim()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             // 追评评价时间 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            orderBase.setSecondAppraiseTime(s.getRecvTime()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            //orderBase.setSecondAppraiseTime(s.getRecvTime()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            orderBaseService.lambdaUpdate() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    .set(OrderBase::getSecondAppraiseStatus,publicService.getAppraiseStatusT(s.getContent().trim())) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    .set(OrderBase::getSecondContent,s.getContent().trim()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    .set(OrderBase::getSecondAppraiseTime,s.getRecvTime()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    .eq(OrderBase::getId,orderBase.getId()).update(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 |