|
|
|
@ -94,7 +94,6 @@ Pfand & \multicolumn{1}{c}{Preis} & Artikel \\
@@ -94,7 +94,6 @@ Pfand & \multicolumn{1}{c}{Preis} & Artikel \\
|
|
|
|
|
latex_price = german('\\textbf{%.2f} \\euro', i.price) |
|
|
|
|
latex_deposit = '~' if i.deposit == 0 else german('+ %.2f \\euro', i.deposit) |
|
|
|
|
|
|
|
|
|
# write_utf8(f, '%s & %s & %s \\\\\\midrule\n' % (latex_deposit, latex_price, latex_name)) |
|
|
|
|
write_utf8(f, '%s%s & %s & %s \\\\\n' % ( |
|
|
|
|
'' if first else '\\midrule\n', |
|
|
|
|
latex_name, latex_price, latex_deposit)) |
|
|
|
|