|
@@ -364,7 +364,14 @@ public class AppraiseRelaLogic {
|
|
|
throw new RemoteServiceException("请选择判定服务人员");
|
|
|
}
|
|
|
|
|
|
- apply.setInfoConfirmTime(apply.getIsSecond() ? null : DateUtil.date())
|
|
|
+ final PgAppraiseCategory parentCategory = pgAppraiseCategoryService.getById(bean.getParentCategoryId());
|
|
|
+ final PgAppraiseCategory category = pgAppraiseCategoryService.getById(bean.getCategoryId());
|
|
|
+
|
|
|
+ apply.setParentCategoryId(bean.getParentCategoryId())
|
|
|
+ .setParentCategoryName(parentCategory.getName())
|
|
|
+ .setCategoryId(bean.getCategoryId())
|
|
|
+ .setCategoryName(category.getName())
|
|
|
+ .setInfoConfirmTime(apply.getIsSecond() ? null : DateUtil.date())
|
|
|
.setSettleConfirmTime(apply.getIsSecond() ? DateUtil.date() : null)
|
|
|
.setConfirmBy(adminUser.getNickName())
|
|
|
.setStatus(ExamineStatusEnum.OK.getKey());
|