|
@@ -94,7 +94,7 @@ public class DataFormat {
|
|
|
|
|
|
public static Map<String, Object> typeBToMap(String typeStr, String dataObjectId, Map<String, String> transMaps) {
|
|
|
try {
|
|
|
- if (Objects.isNull(typeStr)) {
|
|
|
+ if (MapTools.isBlank(typeStr)) {
|
|
|
return MapTools.processSuccess(null);
|
|
|
}
|
|
|
if (Objects.isNull(transMaps)) {
|
|
@@ -161,7 +161,7 @@ public class DataFormat {
|
|
|
colValue = replaceWrap(colValue);
|
|
|
//如果是日期则使用日期转换方法进行转换(08APR)(注意跨年处理)".F/"".I/"".O/"有日期,".D/"".J/"有日期和时间
|
|
|
if (".F/.I/.O/.D/.J/".contains(rowType)) {
|
|
|
- String patternValue = MapTools.patternKey(colValue, "[0-2]{1}[0-9]{1}(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)");
|
|
|
+ String patternValue = MapTools.patternKey(colValue, "[0-3]{1}[0-9]{1}(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)");
|
|
|
if (!MapTools.isBlank(patternValue)) {
|
|
|
colValue = TypeBDateChange(patternValue, null);
|
|
|
signDataMap.put(rowType.equals(".D/") ? ".D/3" : (rowType.equals(".J/") ? ".J/4" : (rowType + "2")), colValue);//写入当前行MAP{"对应数据库字段名",值(不覆盖)}
|
|
@@ -383,6 +383,10 @@ public class DataFormat {
|
|
|
returnMap = translateMapName((List) returnData, translateName); // code message retrunData
|
|
|
}
|
|
|
}
|
|
|
+ for (Map<String, Object> tempMap : (List<Map<String, Object>>) returnMap.get("returnData")) {
|
|
|
+ tempMap.values().removeAll(Collections.singleton(null));
|
|
|
+ tempMap.values().removeAll(Collections.singleton(""));
|
|
|
+ }
|
|
|
return returnMap;
|
|
|
}
|
|
|
|
|
@@ -424,8 +428,7 @@ public class DataFormat {
|
|
|
Document doc = DocumentHelper.parseText(xml);
|
|
|
Element root = doc.getRootElement();
|
|
|
Map<String, Object> returnMap = xmlToMap(root);
|
|
|
- returnMap.values().removeAll(Collections.singleton(null));
|
|
|
- returnMap.values().removeAll(Collections.singleton(""));
|
|
|
+
|
|
|
return processSuccess(returnMap);
|
|
|
} catch (Exception e) {
|
|
|
return processFail("入参不是规则的xml :" + xml);
|