|
|
|
@ -2045,7 +2045,7 @@ public class PageController { |
|
|
|
recordP.setApplicantTime(DateUtil.TimeStampToDateTime(Long.valueOf(recordP.getApplicantTime()))); |
|
|
|
recordP.setDepartmentheadTime(DateUtil.TimeStampToDateTime(Long.valueOf(recordP.getDepartmentheadTime()))); |
|
|
|
recordP.setDepositoryManagerName(depositoryManagerNames.toString()); |
|
|
|
recordP.setApplicantName(userByPort.getName()); |
|
|
|
recordP.setApplicantName(userByPort.getMaindeparmentname() + "_" + userByPort.getName()); |
|
|
|
recordP.setDepartmentheadName(departmentHeadName.toString()); |
|
|
|
recordP.setDepositoryName(depositoryName.toString()); |
|
|
|
recordP.setQuantity(sumQuantity); |
|
|
|
@ -2193,7 +2193,7 @@ public class PageController { |
|
|
|
if (Integer.compare(flagForGroup, 2) != 0) { |
|
|
|
// 如果不是组合
|
|
|
|
UserByPort userByPort = LinkInterfaceUtil.FindUserById(applicationInRecordPById.getApplicantId(), userKey, token); |
|
|
|
applicationInRecordPById.setApplicantName(userByPort.getName()); |
|
|
|
applicationInRecordPById.setApplicantName(userByPort.getMaindeparmentname() + "_" + userByPort.getName()); |
|
|
|
applicationInRecordPById.setApplicantTime(DateUtil.TimeStampToDateTime(Long.valueOf(applicationInRecordPById.getApplicantTime()))); |
|
|
|
if (applicationInRecordPById.getPrice() != null) { |
|
|
|
applicationInRecordPById.setPrice(applicationInRecordPById.getPrice() / 100); |
|
|
|
@ -3654,7 +3654,7 @@ public class PageController { |
|
|
|
ApplicationOutRecordMinP applicationOutMinById = depositoryRecordService.findApplicationOutMinById(minRecordId); |
|
|
|
ApplicationOutRecordP applicationOutRecordPById = depositoryRecordService.findApplicationOutRecordPById(applicationOutMinById.getParentId()); |
|
|
|
UserByPort userByPort = LinkInterfaceUtil.FindUserById(applicationOutRecordPById.getApplicantId(), userKey, token); |
|
|
|
applicationOutRecordPById.setApplicantName(userByPort.getName()); |
|
|
|
applicationOutRecordPById.setApplicantName(userByPort.getMaindeparmentname() + "_" + userByPort.getName()); |
|
|
|
SimpleTaskP simpleTaskP = new SimpleTaskP(applicationOutRecordPById, applicationOutMinById); |
|
|
|
list.add(simpleTaskP); |
|
|
|
} |
|
|
|
|