3-11 bug 修复

This commit is contained in:
yuezhihang
2022-03-11 18:10:27 +08:00
parent 2d95a7c31f
commit 0d4bc28382
3 changed files with 8 additions and 1 deletions
@@ -44,6 +44,10 @@ public class StandExportUtil {
}
}
String header = FieldConvertUtil.exportBaseFieldNames + "," + attrBud.toString();
//国内导出去掉体系类别
if (SarTypeEnum.INLAND_STAND.getValue().equals(standType)) {
header = header.replace(",体系类别","");
}
if (SarTypeEnum.FOREIGN_STAND.getValue().equals(standType)) {
header = FieldConvertUtil.exportBaseFieldNamesForeign + "," + attrBud.toString();
}