|
|
|
@ -4404,14 +4404,6 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
dto.setImages(imgUrlList); |
|
|
|
dto.setCreatedTime(hEntity.getCreatedTime()); |
|
|
|
processDTO = closedItem(dto); |
|
|
|
//3-2.未评价的赋值默认评价结果为满意
|
|
|
|
if (null == entity.getEvaluationScore()) { |
|
|
|
entity.setEvaluationScore(2); |
|
|
|
//entity.setEvaluationContent();
|
|
|
|
entity.setEvaluationTime(hEntity.getCreatedTime()); |
|
|
|
} |
|
|
|
entity.setEvaluationState("0"); |
|
|
|
updateById(entity); |
|
|
|
} |
|
|
|
|
|
|
|
//4.市平台推送数据
|
|
|
|
@ -4725,6 +4717,15 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
itemHandleProcessDto.setGridTaskcnname("区中心"); |
|
|
|
item.setEvaluationState(NumConstant.ZERO_STR); |
|
|
|
item.setItemState(ItemHandleCategoryEnum.HANDLE_CLOSING_CASE.getValue()); |
|
|
|
//未评价的赋值默认评价结果为满意
|
|
|
|
if (null == item.getEvaluationScore()) { |
|
|
|
item.setEvaluationScore(2); |
|
|
|
//item.setEvaluationContent();
|
|
|
|
Calendar calendar = new GregorianCalendar(); |
|
|
|
calendar.setTime(formDto.getCreatedTime()); |
|
|
|
calendar.add(Calendar.DATE, 1); |
|
|
|
item.setEvaluationTime(calendar.getTime()); |
|
|
|
} |
|
|
|
updateById(item); |
|
|
|
} |
|
|
|
itemHandleProcessDto.setHandleAdvice(formDto.getHandleAdvice()); |
|
|
|
|