go #49

Merged
niggl merged 96 commits from go into main 2024-12-12 15:11:31 +00:00
2 changed files with 18 additions and 5 deletions
Showing only changes of commit 692f378eab - Show all commits

View File

@ -4,6 +4,7 @@ import (
"bytes"
"encoding/base64"
"errors"
"fmt"
"html/template"
"image/png"
@ -89,10 +90,22 @@ func (t *DefaultTemplater) SelectSponsorImage(id int) (string, error) {
return templates.GetImage(sponsors[id%len(sponsors)]), nil
}
func FormatUnit(unit string, amount int) (string, error) {
switch unit {
case "kilometer":
return fmt.Sprintf("%.3f", float64(amount)/1000), nil
case "euro":
return fmt.Sprintf("%.2f", float64(amount)/100), nil
default:
return "", errors.New("unknown unit")
}
}
func (t *DefaultTemplater) StringToTemplate(templateString string) (*template.Template, error) {
return template.New("template").Funcs(template.FuncMap{
"barcode": t.GenerateBarcode,
"sponsorLogo": t.SelectSponsorImage,
"formatUnit": FormatUnit,
}).Parse(templateString)
}

View File

@ -56,7 +56,7 @@
{{ .MiddleName }} {{ .LastName }}
</p>
<p style="font-size: 1cm; margin-bottom: 0;">hat beim {{ $.EventName }}</p>
<p style="font-size: 2cm; font-weight: bold; margin-bottom: 0;">{{unitFormat "kilometer" .Distance}}km</p>
<p style="font-size: 2cm; font-weight: bold; margin-bottom: 0;">{{formatUnit "kilometer" .Distance}}km</p>
<p style="font-size: 1cm;">für den guten Zweck zurückgelegt</p>
</main>
<footer class="certificate-footer">
@ -78,15 +78,15 @@
{{ range .DistanceDonations}}
<tr>
<td>{{ .Donor.FirstName }} {{ .Donor.MiddleName }} {{ .Donor.LastName }}</td>
<td>{{ unitFormat "euro" .AmountPerDistance }} {{ $.CurrencySymbol }}</td>
<td>{{ unitFormat "euro" .Amount }} {{ $.CurrencySymbol }}</td>
<td>{{ formatUnit "euro" .AmountPerDistance }} {{ $.CurrencySymbol }}</td>
<td>{{ formatUnit "euro" .Amount }} {{ $.CurrencySymbol }}</td>
</tr>
{{ end }}
</tbody>
<tfoot>
<td>Gesamt</td>
<td>{{ unitFormat .TotalPerDistance }} {{ $.CurrencySymbol }}</td>
<td>{{ unitFormat .TotalDonations }} {{ $.CurrencySymbol }}</td>
<td>{{ formatUnit "euro" .TotalPerDistance }} {{ $.CurrencySymbol }}</td>
<td>{{ formatUnit "euro" .TotalDonations }} {{ $.CurrencySymbol }}</td>
</tfoot>
</table>
</main>