Commit 4e01e501 by yuanliang

Pacs004001Parse50Field解决other数组问题

parent 5dd35f6c
......@@ -46,7 +46,7 @@ public class Pacs004001Parse50Field extends AbstractMt2MxPacs004001ParseField {
if (partyIdentifier.startsWith("/")) {
//(Account)
Map<String, Object> othrMap = MapUtil.puts("id", Mx2MtConstants.MT_TO_MX_DEFAULT_VALUE);
MapUtil.puts(txInfMaps, "rtrChain/dbtr/pty/id/orgId/othr", othrMap);
MapUtil.adds(txInfMaps, "rtrChain/dbtr/pty/id/orgId/othr", othrMap);
MapUtil.puts(othrMap, "schmeNm/cd", OrganisationIdentificationCode.TXID);
} else {
//(Code)(Country Code)(Identifier)
......@@ -75,7 +75,7 @@ public class Pacs004001Parse50Field extends AbstractMt2MxPacs004001ParseField {
MapUtil.puts(txInfMaps, "rtrChain/dbtr/agt/finInstnId/clrSysMmbId", clrSysMmbIdMap);
} else {
Map<String, Object> othrMap = MapUtil.puts("id", Mx2MtConstants.MT_TO_MX_DEFAULT_VALUE);
MapUtil.puts(txInfMaps, "rtrChain/dbtr/pty/id/orgId/othr", othrMap);
MapUtil.adds(txInfMaps, "rtrChain/dbtr/pty/id/orgId/othr", othrMap);
MapUtil.puts(othrMap, "schmeNm/cd", OrganisationIdentificationCode.TXID);
Map<String, Object> ptyMap = new HashMap<String, Object>();
mt_to_mxPartyNameAndAddress(field50K.getNameAndAddress(), ptyMap);
......
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