|
@@ -72,6 +72,7 @@ public class ArchiveFileServiceImpl extends BaseServiceImpl<ArchiveFileMapper, A
|
|
pageVoList.forEach(vos -> {
|
|
pageVoList.forEach(vos -> {
|
|
vos.setIsApprovalValue(new Integer("0").equals(vos.getStatus()) ? "未上报" : new Integer("1").equals(vos.getStatus()) ? "待审批" : new Integer("2").equals(vos.getStatus()) ? "已审批" : "已废除");
|
|
vos.setIsApprovalValue(new Integer("0").equals(vos.getStatus()) ? "未上报" : new Integer("1").equals(vos.getStatus()) ? "待审批" : new Integer("2").equals(vos.getStatus()) ? "已审批" : "已废除");
|
|
vos.setIsCertificationValue(new Integer("1").equals(vos.getIsCertification()) ? "已认证" : "未认证");
|
|
vos.setIsCertificationValue(new Integer("1").equals(vos.getIsCertification()) ? "已认证" : "未认证");
|
|
|
|
+ vos.setIsArchive(vos.getIsArchive()==null?0: vos.getIsArchive());
|
|
if (StringUtils.isNotEmpty(vos.getSheetSource())) {
|
|
if (StringUtils.isNotEmpty(vos.getSheetSource())) {
|
|
sheetSourceList.forEach(source -> {
|
|
sheetSourceList.forEach(source -> {
|
|
if (source.getDictKey().equals(vos.getSheetSource())) {
|
|
if (source.getDictKey().equals(vos.getSheetSource())) {
|