79 lines
3.3 KiB
Plaintext
79 lines
3.3 KiB
Plaintext
{{ define "title" -}}
|
|
{{ printf ( pgettext "Edit Invoice “%s”" "title" ) .Number }}
|
|
{{- end }}
|
|
|
|
{{ define "breadcrumbs" -}}
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.editInvoicePage*/ -}}
|
|
<nav>
|
|
<p>
|
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
|
<a href="{{ companyURI "/invoices"}}">{{( pgettext "Invoices" "title" )}}</a> /
|
|
<a>{{ .Number }}</a>
|
|
</p>
|
|
</nav>
|
|
{{- end }}
|
|
|
|
{{ define "content" }}
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.editInvoicePage*/ -}}
|
|
<section class="dialog-content">
|
|
<h2>{{ printf (pgettext "Edit Invoice “%s”" "title") .Number }}</h2>
|
|
<form method="POST" action="{{ companyURI "/invoices/" }}{{ .Slug }}">
|
|
{{ csrfToken }}
|
|
|
|
{{ with .Form -}}
|
|
{{ template "select-field" .Customer }}
|
|
{{ template "hidden-field" .Number }}
|
|
{{ template "hidden-field" .Date }}
|
|
{{ template "tags-field" .Tags }}
|
|
{{ template "select-field" .PaymentMethod }}
|
|
{{ template "select-field" .InvoiceStatus }}
|
|
{{ template "input-field" .Notes }}
|
|
|
|
{{- range $product := .Products }}
|
|
<fieldset class="new-invoice-product">
|
|
{{ template "hidden-field" .InvoiceProductId }}
|
|
{{ template "hidden-field" .ProductId }}
|
|
{{ template "input-field" .Name }}
|
|
{{ template "input-field" .Price }}
|
|
{{ template "input-field" .Quantity }}
|
|
{{ template "input-field" .Discount }}
|
|
{{ template "input-field" .Description }}
|
|
{{ template "select-field" .Tax }}
|
|
</fieldset>
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">{{(pgettext "Subtotal" "title")}}</th>
|
|
<td class="numeric">{{ .Subtotal | formatPrice }}</td>
|
|
</tr>
|
|
{{- range $tax := .Taxes }}
|
|
<tr>
|
|
<th scope="row">{{ index . 0 }}</th>
|
|
<td class="numeric">{{ index . 1 | formatPrice }}</td>
|
|
</tr>
|
|
{{- end }}
|
|
<tr>
|
|
<th scope="row">{{(pgettext "Total" "title")}}</th>
|
|
<td class="numeric">{{ .Total | formatPrice }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<fieldset>
|
|
<button formnovalidate formaction="{{ companyURI "/invoices" }}/{{ .Slug }}/edit"
|
|
name="action" value="select-products"
|
|
type="submit">{{( pgettext "Add products" "action" )}}</button>
|
|
<button formnovalidate formaction="{{ companyURI "/invoices" }}/{{ .Slug }}/edit"
|
|
name="action" value="update"
|
|
type="submit">{{( pgettext "Update" "action" )}}</button>
|
|
<button class="primary" name="_method" value="PUT"
|
|
type="submit">{{( pgettext "Edit invoice" "action" )}}</button>
|
|
</fieldset>
|
|
|
|
</form>
|
|
</section>
|
|
{{- end }}
|