Skip to content

Commit

Permalink
added missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Feb 6, 2025
1 parent 03ca6d5 commit 5ba7e6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ public static String invoiceToHTML(ZUGFeRDImporter zii) throws Exception {
if (recipient != null) {
html.append("<p>&nbsp;</p><h2>Rechnungsempf&auml;nger</h2>");
html.append("<p>").append(recipient.getName()).append("</p>");
html.append("<p>").append(recipient.getStreet()).append(recipient.getZIP()).append(" ").append(recipient.getLocation()).append("</p>");
html.append("<p>").append(recipient.getStreet()).append(" ").append(recipient.getZIP()).append(" ").append(recipient.getLocation()).append("</p>");
if (recipient.getTaxID() != null) {
html.append("<p>Steuernummer: ").append(recipient.getTaxID()).append("</p>");
}
Expand Down

0 comments on commit 5ba7e6c

Please sign in to comment.