修改
This commit is contained in:
@@ -620,11 +620,16 @@ public class OfficeProxy{
|
||||
if(loadcase.loadcaseBean.analysisSoftware != null && !loadcase.loadcaseBean.analysisSoftware.isEmpty())
|
||||
{
|
||||
String[] software = loadcase.loadcaseBean.analysisSoftware.split(",");
|
||||
for(int index=0; index<software.length; index++)
|
||||
for(String str : software)
|
||||
{
|
||||
if(index > 0)
|
||||
String softwareName = softwareMap.get(str);
|
||||
if(softwareName == null)
|
||||
continue;
|
||||
if(!analysisSoftware.isEmpty())
|
||||
{
|
||||
analysisSoftware += ",";
|
||||
analysisSoftware += softwareMap.get(software[index]);
|
||||
}
|
||||
analysisSoftware += softwareName;
|
||||
}
|
||||
}
|
||||
row.add(analysisSoftware);
|
||||
|
||||
Reference in New Issue
Block a user