76 lines
3.0 KiB
Plaintext
76 lines
3.0 KiB
Plaintext
{{ define "title" -}}
|
|
{{( pgettext "Add Products to Invoice" "title" )}}
|
|
{{- end }}
|
|
|
|
{{ define "content" }}
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.newInvoiceProductsPage*/ -}}
|
|
<nav>
|
|
<p>
|
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
|
<a href="{{ companyURI "/invoices"}}">{{( pgettext "Invoices" "title" )}}</a> /
|
|
{{ if eq .Form.Number.Val "" }}
|
|
<a>{{( pgettext "New Invoice" "title" )}}</a>
|
|
{{ else }}
|
|
<a>{{ .Form.Number }}</a>
|
|
{{ end }}
|
|
</p>
|
|
</nav>
|
|
<section class="dialog-content">
|
|
<h2>{{(pgettext "Add Products to Invoice" "title")}}</h2>
|
|
<form method="POST" action="{{ .Action }}">
|
|
{{ csrfToken }}
|
|
|
|
{{- with .Form }}
|
|
{{ template "hidden-select-field" .Customer }}
|
|
{{ template "hidden-field" .Number }}
|
|
{{ template "hidden-field" .Date }}
|
|
{{ template "hidden-field" .Notes }}
|
|
{{ template "hidden-field" .Tags }}
|
|
|
|
{{- range $product := .Products }}
|
|
<fieldset>
|
|
{{ template "hidden-field" .InvoiceProductId }}
|
|
{{ template "hidden-field" .ProductId }}
|
|
{{ template "hidden-field" .Name }}
|
|
{{ template "hidden-field" .Description }}
|
|
{{ template "hidden-field" .Price }}
|
|
{{ template "hidden-field" .Quantity }}
|
|
{{ template "hidden-field" .Discount }}
|
|
{{ template "hidden-select-field" .Tax }}
|
|
</fieldset>
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{{( pgettext "All" "product" )}}</th>
|
|
<th>{{( pgettext "Name" "title" )}}</th>
|
|
<th>{{( pgettext "Price" "title" )}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ with .Products }}
|
|
{{- range $product, $key := . }}
|
|
<tr>
|
|
<td><input type="checkbox" name="id" id="new-product-id-{{$key}}" value="{{.Id}}"></td>
|
|
<td><label for="new-product-id-{{$key}}">{{ .Name }}</label></td>
|
|
<td class="numeric">{{ .Price | formatPrice }}</td>
|
|
</tr>
|
|
{{- end }}
|
|
{{ else }}
|
|
<tr>
|
|
<td colspan="4">{{( gettext "No products added yet." )}}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
|
|
<fieldset>
|
|
<button class="primary" type="submit"
|
|
name="action" value="add-products">{{( pgettext "Add products" "action" )}}</button>
|
|
</fieldset>
|
|
</form>
|
|
</section>
|
|
{{- end }}
|