Merge pull request #339 from chris-webert-its4u/master

Missing closing tag in BankDetails when there's no BIC number
This commit is contained in:
Jochen Staerk
2023-11-15 16:54:49 +01:00
committed by GitHub

View File

@@ -78,10 +78,10 @@ public interface IZUGFeRDTradeSettlementPayment extends IZUGFeRDTradeSettlement
+ "<ram:BICID>" + XMLTools.encodeXML(getOwnBIC()) + "</ram:BICID>"
// + " <ram:Name>"+trans.getOwnBankName()+"</ram:Name>"
//
+ "</ram:PayeeSpecifiedCreditorFinancialInstitution>"
+ "</ram:SpecifiedTradeSettlementPaymentMeans>";
+ "</ram:PayeeSpecifiedCreditorFinancialInstitution>";
}
xml+= "</ram:SpecifiedTradeSettlementPaymentMeans>";
return xml;
}