fix SpecifiedTradeSettlementPaymentMeans missing closing tag when no BIC number

This commit is contained in:
Chris Webert
2023-11-15 16:22:01 +01:00
parent 7f8024c891
commit b8350012ec

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;
}