Commit 95de107f by chengzhuoshen

优化mx2mt日志代码

parent f71ed19e
/target/
\ No newline at end of file
......@@ -45,11 +45,12 @@ public class Mx2Mt900910Creator extends AbstractMx2MtCreator {
}
validate();
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 msg = TemplateUtil.makeFileByTemplate("swift_mt_900_910.vm", map, outPutFilePath, "utf-8");
return msg;
return TemplateUtil.makeFileByTemplate("swift_mt_900_910.vm", map, outPutFilePath, "utf-8");
}
public void validate() {
......
......@@ -19,15 +19,16 @@ public class Field72Generate extends AbstractMx2MtFieldsGenerate {
public void fieldsGenerate() throws SwiftException {
logger.info("Field72Generate start.");
try {
String field72 = "";
EntryTransaction2 txDtls = getEntryTransaction2();
if (txDtls != null) {
String addtLtxnInf = txDtls.getAddtlTxInf();
if (StringUtil.isNotEmpty(addtLtxnInf)) {
logger.info(addtLtxnInf);
String field72 = StringUtil.getStringByEnter(addtLtxnInf, 35, 6);
map.put("field72", field72);
field72 = StringUtil.getStringByEnter(addtLtxnInf, 35, 6);
}
}
map.put("field72", field72);
} catch (Exception e) {
logger.error(e.getMessage());
throw new SwiftException("ERROR", "Convert MT900/910 Field56a error");
......
......@@ -66,8 +66,10 @@ public class Mx2Mt950Creator extends AbstractMx2MtCreator {
&& mxCamt05300102.getBkToCstmrStmt().getGrpHdr() != null) {
generateCommonField(mxCamt05300102.getBkToCstmrStmt().getGrpHdr());
}
map.forEach((key, value) -> {
logger.info(key + "-" + value);
map.forEach((key, value) -> {
if (!Mx2MtConstants.MX_OBJECT.equals(key)) {
logger.info(key + "-" + value);
}
});
String outPutFilePath = (String) map.get(Mx2MtConstants.OUT_PUT_FILE_PATH);
String template;
......@@ -76,8 +78,7 @@ public class Mx2Mt950Creator extends AbstractMx2MtCreator {
else
template = "swift_mt_950.vm";
String msg = TemplateUtil.makeFileByTemplate(template, map, outPutFilePath, "utf-8");
return msg;
return TemplateUtil.makeFileByTemplate(template, map, outPutFilePath, "utf-8");
}
/**
......
......@@ -73,6 +73,8 @@ public class Field64Generate extends AbstractMx2MtFieldsGenerate{
}
String filed64 = crdr+dateStr+ccy+amtStr;
map.put("field64", filed64);
} else {
map.put("field64", "");
}
}
} 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