|
|
@ -150,6 +150,7 @@ public class FinCollectionConfirmationService extends MybatisBaseService<FinColl |
|
|
|
qw.ne("auditState", 0); |
|
|
|
} |
|
|
|
} |
|
|
|
qw.orderByDesc("id"); |
|
|
|
return qw; |
|
|
|
} |
|
|
|
|
|
|
@ -530,7 +531,8 @@ public class FinCollectionConfirmationService extends MybatisBaseService<FinColl |
|
|
|
if (listResultBean.getSuccess()) { |
|
|
|
for (CommonAppendixVo commonApp : listResultBean.getData()) { |
|
|
|
FinCollectionConfirmationAppendixVo paymentVoucherAppendixVo = new FinCollectionConfirmationAppendixVo(); |
|
|
|
commonApp.setFilePath(fileUploadComponent.getUrlPrefix() + commonApp.getFilePath()); |
|
|
|
// commonApp.setFilePath(fileUploadComponent.getUrlPrefix() + commonApp.getFilePath());
|
|
|
|
commonApp.setFilePath(commonApp.getFilePath()); |
|
|
|
BeanUtil.copyProperties(commonApp, paymentVoucherAppendixVo); |
|
|
|
paymentVoucherAppendixs.add(paymentVoucherAppendixVo); |
|
|
|
} |
|
|
@ -554,7 +556,7 @@ public class FinCollectionConfirmationService extends MybatisBaseService<FinColl |
|
|
|
if (listResultBean.getSuccess()) { |
|
|
|
for (CommonAppendixVo commonApp : listResultBean.getData()) { |
|
|
|
FinCollectionConfirmationAppendixVo remittanceConfirmationAppendixVo = new FinCollectionConfirmationAppendixVo(); |
|
|
|
commonApp.setFilePath(fileUploadComponent.getUrlPrefix() + commonApp.getFilePath()); |
|
|
|
commonApp.setFilePath(commonApp.getFilePath()); |
|
|
|
BeanUtil.copyProperties(commonApp, remittanceConfirmationAppendixVo); |
|
|
|
remittanceConfirmationAppendixs.add(remittanceConfirmationAppendixVo); |
|
|
|
} |
|
|
|