|
@@ -160,10 +160,10 @@ public class NeiYeController {
|
|
|
List<String> names = new ArrayList<>();
|
|
|
|
|
|
if (StringUtils.isNotEmpty(qdr.getContractTableFileType()) || StringUtils.isNotEmpty(qdr.getContractTableFileTypeTwo())) {
|
|
|
- if(StringUtils.isNotEmpty(qdr.getContractTableFileTypeTwo())){
|
|
|
- qdr.setContractTableFileType(qdr.getContractTableFileType()+","+qdr.getContractTableFileTypeTwo());
|
|
|
- }else{
|
|
|
+ if(StringUtils.isEmpty(qdr.getContractTableFileType())){
|
|
|
qdr.setContractTableFileType(qdr.getContractTableFileTypeTwo());
|
|
|
+ } else {
|
|
|
+ qdr.setContractTableFileType(qdr.getContractTableFileType()+","+qdr.getContractTableFileTypeTwo());
|
|
|
}
|
|
|
|
|
|
List<String> contractFileType = Arrays.asList(qdr.getContractTableFileType().split(","));
|