Commit 95de107f by chengzhuoshen

优化mx2mt日志代码

parent f71ed19e
/target/
\ No newline at end of file
...@@ -45,11 +45,12 @@ public class Mx2Mt900910Creator extends AbstractMx2MtCreator { ...@@ -45,11 +45,12 @@ public class Mx2Mt900910Creator extends AbstractMx2MtCreator {
} }
validate(); validate();
map.forEach((key,value)->{ map.forEach((key,value)->{
logger.info(key + "-" + value); if (!Mx2MtConstants.MX_OBJECT.equals(key)) {
logger.info(key + "-" + value);
}
}); });
String outPutFilePath = (String)map.get(Mx2MtConstants.OUT_PUT_FILE_PATH); String outPutFilePath = (String)map.get(Mx2MtConstants.OUT_PUT_FILE_PATH);
String msg = TemplateUtil.makeFileByTemplate("swift_mt_900_910.vm", map, outPutFilePath, "utf-8"); return TemplateUtil.makeFileByTemplate("swift_mt_900_910.vm", map, outPutFilePath, "utf-8");
return msg;
} }
public void validate() { public void validate() {
......
...@@ -19,15 +19,16 @@ public class Field72Generate extends AbstractMx2MtFieldsGenerate { ...@@ -19,15 +19,16 @@ public class Field72Generate extends AbstractMx2MtFieldsGenerate {
public void fieldsGenerate() throws SwiftException { public void fieldsGenerate() throws SwiftException {
logger.info("Field72Generate start."); logger.info("Field72Generate start.");
try { try {
String field72 = "";
EntryTransaction2 txDtls = getEntryTransaction2(); EntryTransaction2 txDtls = getEntryTransaction2();
if (txDtls != null) { if (txDtls != null) {
String addtLtxnInf = txDtls.getAddtlTxInf(); String addtLtxnInf = txDtls.getAddtlTxInf();
if (StringUtil.isNotEmpty(addtLtxnInf)) { if (StringUtil.isNotEmpty(addtLtxnInf)) {
logger.info(addtLtxnInf); logger.info(addtLtxnInf);
String field72 = StringUtil.getStringByEnter(addtLtxnInf, 35, 6); field72 = StringUtil.getStringByEnter(addtLtxnInf, 35, 6);
map.put("field72", field72);
} }
} }
map.put("field72", field72);
} catch (Exception e) { } catch (Exception e) {
logger.error(e.getMessage()); logger.error(e.getMessage());
throw new SwiftException("ERROR", "Convert MT900/910 Field56a error"); throw new SwiftException("ERROR", "Convert MT900/910 Field56a error");
......
...@@ -66,8 +66,10 @@ public class Mx2Mt950Creator extends AbstractMx2MtCreator { ...@@ -66,8 +66,10 @@ public class Mx2Mt950Creator extends AbstractMx2MtCreator {
&& mxCamt05300102.getBkToCstmrStmt().getGrpHdr() != null) { && mxCamt05300102.getBkToCstmrStmt().getGrpHdr() != null) {
generateCommonField(mxCamt05300102.getBkToCstmrStmt().getGrpHdr()); generateCommonField(mxCamt05300102.getBkToCstmrStmt().getGrpHdr());
} }
map.forEach((key, value) -> { map.forEach((key, value) -> {
logger.info(key + "-" + value); if (!Mx2MtConstants.MX_OBJECT.equals(key)) {
logger.info(key + "-" + value);
}
}); });
String outPutFilePath = (String) map.get(Mx2MtConstants.OUT_PUT_FILE_PATH); String outPutFilePath = (String) map.get(Mx2MtConstants.OUT_PUT_FILE_PATH);
String template; String template;
...@@ -76,8 +78,7 @@ public class Mx2Mt950Creator extends AbstractMx2MtCreator { ...@@ -76,8 +78,7 @@ public class Mx2Mt950Creator extends AbstractMx2MtCreator {
else else
template = "swift_mt_950.vm"; template = "swift_mt_950.vm";
String msg = TemplateUtil.makeFileByTemplate(template, map, outPutFilePath, "utf-8"); return TemplateUtil.makeFileByTemplate(template, map, outPutFilePath, "utf-8");
return msg;
} }
/** /**
......
...@@ -73,6 +73,8 @@ public class Field64Generate extends AbstractMx2MtFieldsGenerate{ ...@@ -73,6 +73,8 @@ public class Field64Generate extends AbstractMx2MtFieldsGenerate{
} }
String filed64 = crdr+dateStr+ccy+amtStr; String filed64 = crdr+dateStr+ccy+amtStr;
map.put("field64", filed64); map.put("field64", filed64);
} else {
map.put("field64", "");
} }
} }
} catch(Exception e) { } catch(Exception e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment