Skip to content

Commit

Permalink
Merge pull request #339 from chris-webert-its4u/master
Browse files Browse the repository at this point in the history
Missing closing tag in BankDetails when there's no BIC number
  • Loading branch information
jstaerk authored Nov 15, 2023
2 parents 7f8024c + b835001 commit 7a7014b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ default String getSettlementXML() {
+ "<ram:BICID>" + XMLTools.encodeXML(getOwnBIC()) + "</ram:BICID>"
// + " <ram:Name>"+trans.getOwnBankName()+"</ram:Name>"
//
+ "</ram:PayeeSpecifiedCreditorFinancialInstitution>"
+ "</ram:SpecifiedTradeSettlementPaymentMeans>";
+ "</ram:PayeeSpecifiedCreditorFinancialInstitution>";

}
xml+= "</ram:SpecifiedTradeSettlementPaymentMeans>";
return xml;
}

Expand Down

0 comments on commit 7a7014b

Please sign in to comment.