|
@@ -174,7 +174,9 @@ public class RepairInfoService {
|
|
|
case 90:
|
|
|
RepairCheckAccount repairCheckAccount = repairCheckAccountService.getByRepairId(repairId);
|
|
|
repairLogVo.setImagesInfo(repairCheckAccount.getCheckAccountImg());
|
|
|
- repairLogVo.setRemark("备注:"+repairCheckAccount.getRemark());
|
|
|
+ if(StringUtils.isNotBlank(repairCheckAccount.getRemark())){
|
|
|
+ repairLogVo.setRemark("备注:"+repairCheckAccount.getRemark());
|
|
|
+ }
|
|
|
break;
|
|
|
case 110 : //维修完毕
|
|
|
CustomerAddress customerAddress = customerAddressService.getByRepairId(repairId);
|