BigDecimal taxTotal = invoiceLineType.getTaxTotal().get(0).getTaxAmount().getValue();
invoiceLineTokens.addToken(new Token(TextLabel.INV_ITEM_VAT.toLowerCase(),
new CurrencyDecimal(taxTotal, invoiceTypeCurrency, locale).format()));
BigDecimal total = lineExtensionAmount.add(taxTotal);
invoiceLineTokens.addToken(new Token(TextLabel.INV_ITEM_TOTAL.toLowerCase(),
new CurrencyDecimal(total, invoiceTypeCurrency, locale).format()));
template.addToken(invoiceLineTokens);
}
}