parameters.put("transaction.textAfter", this.cleanupHTML(transaction.getTextAfter(ClientGlobals.getMainDbLanguage())));
parameters.put("transaction.salesPriceSumNet", signBefore+ClientGlobals.getPriceFormat().format(this.getTransaction().getSalesPriceSum()));
//The list of all VATs:
VATSumList vatSums = this.getTransaction().getVATSums();
Iterator<VATSum> it = vatSums.iterator();
String sVatSumTitles = "";
String sVatSums = "";
while (it.hasNext()) {
VATSum sum = it.next();
if (!sVatSumTitles.equals("")) {