You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
866 B
31 lines
866 B
{{define "invoice_search_results"}} {{if .Error}}
|
|
<div class="error">
|
|
<p>{{.ErrorMsg}}</p>
|
|
<p>Invoice ID: "{{.SearchTerm}}"</p>
|
|
</div>
|
|
{{else if .NotFound}}
|
|
<div class="not-found">
|
|
<p>{{.ErrorMsg}}</p>
|
|
<p>Invoice Number: "{{.SearchTerm}}"</p>
|
|
</div>
|
|
{{else if .invoiceNumber}}
|
|
<h3>Invoice Details</h3>
|
|
<p><strong>Invoice Number:</strong> {{.invoiceNumber}}</p>
|
|
<p><strong>Total Price:</strong> ${{.totalPrice}}</p>
|
|
<p><strong>Status:</strong> {{.status}}</p>
|
|
{{with .customer}}
|
|
<p><strong>Customer:</strong> {{.name}}</p>
|
|
{{end}} {{with .job}}
|
|
<p><strong>Job:</strong> {{.name}}</p>
|
|
{{end}} {{with .location}}
|
|
<p><strong>Location:</strong> {{.name}}</p>
|
|
{{end}} {{if .items}}
|
|
<h4>Items:</h4>
|
|
<ul>
|
|
{{range .items}}
|
|
<li>{{.description}} - ${{.totalPrice}}</li>
|
|
{{end}}
|
|
</ul>
|
|
{{end}} {{else}}
|
|
<p>Unexpected response. Please try again.</p>
|
|
{{end}} {{end}}
|
|
|