Compare commits
No commits in common. "fffab621350cfecd30fc8fc5fc317deb8af68f9f" and "191401abe955532c022dac5fe32677cf29e8b2a7" have entirely different histories.
fffab62135
...
191401abe9
|
@ -40,7 +40,7 @@ func GetProductForm(w http.ResponseWriter, r *http.Request, params httprouter.Pa
|
|||
mustRenderNewProductForm(w, r, form)
|
||||
return
|
||||
}
|
||||
if notFoundErrorOrPanic(conn.QueryRow(r.Context(), "select product.name, product.description, to_price(price, decimal_digits), array_agg(tax_id) from product left join product_tax using (product_id) join company using (company_id) join currency using (currency_code) where product.slug = $1 group by product_id, product.name, product.description, price, decimal_digits", slug).Scan(form.Name, form.Description, form.Price, form.Tax)) {
|
||||
if notFoundErrorOrPanic(conn.QueryRow(r.Context(), "select product.name, product.description, to_price(price, decimal_digits), array_agg(tax_id) from product join product_tax using (product_id) join company using (company_id) join currency using (currency_code) where product.slug = $1 group by product_id, product.name, product.description, price, decimal_digits", slug).Scan(form.Name, form.Description, form.Price, form.Tax)) {
|
||||
http.NotFound(w, r)
|
||||
return
|
||||
}
|
||||
|
|
|
@ -54,9 +54,6 @@ func mustRenderTemplate(wr io.Writer, r *http.Request, layout string, filename s
|
|||
field.Attributes = append(field.Attributes, template.HTMLAttr(attr))
|
||||
return field
|
||||
},
|
||||
"sub": func(y, x int) int {
|
||||
return x - y
|
||||
},
|
||||
"deleteMethod": func() template.HTML {
|
||||
return overrideMethodField(http.MethodDelete)
|
||||
},
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
.invoice {
|
||||
display: flex;
|
||||
gap: 2.5rem;
|
||||
}
|
||||
|
||||
.invoice header {
|
||||
flex: 1;
|
||||
min-width: 18rem;
|
||||
min-width: 20rem;
|
||||
padding: 0 1rem 0 0;
|
||||
display: block;
|
||||
background: initial;
|
||||
|
@ -23,16 +24,8 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 3;
|
||||
padding: 0 0 0 2.5rem;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.invoice .invoicee, .invoice .invoicer {
|
||||
min-width: 18rem;
|
||||
}
|
||||
|
||||
.invoice table {
|
||||
margin: 5rem 0;
|
||||
gap: 5rem;
|
||||
align-items: end;
|
||||
}
|
||||
|
||||
.invoice th {
|
||||
|
@ -49,7 +42,7 @@
|
|||
text-align: right;
|
||||
}
|
||||
|
||||
.invoice .notes {
|
||||
.invoice .notes, .invoice footer {
|
||||
white-space: pre;
|
||||
text-align: right;
|
||||
}
|
||||
|
@ -58,7 +51,7 @@
|
|||
vertical-align: top;
|
||||
}
|
||||
|
||||
.invoice tbody, .invoice .legal {
|
||||
.invoice tbody, .invoice footer {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
|
@ -66,6 +59,7 @@
|
|||
background-color: initial;
|
||||
}
|
||||
|
||||
|
||||
.invoice tbody:not(:first-of-type) tr:first-child td, .invoice .tfoot th, .invoice .tfoot td {
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
@ -78,8 +72,8 @@
|
|||
max-width: 20rem;
|
||||
}
|
||||
|
||||
.invoice .legal {
|
||||
margin-top: 16rem;
|
||||
.invoice footer {
|
||||
margin-top: 8rem;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
|
|
|
@ -25,15 +25,6 @@
|
|||
{{ .Invoicer.Email }}<br>
|
||||
{{ .Invoicer.Phone }}<br>
|
||||
</address>
|
||||
|
||||
<p class="legal">Oriol Carbonell Pujolàs és Responsable del Tractament de les seves dades d'acord
|
||||
amb el RGPD i la LOPDGDDGDD, i les tracta per a mantenir una relació
|
||||
mercantil/comercial amb vostè. Les conservarà mentre es mantingui aquesta relació
|
||||
i no es comunicaran a tercers. Pot exercir els drets d'accés, rectificació, portabilitat,
|
||||
supressió, limitació i oposició a Oriol Carbonell pUJOLÀS, amb domicili Carrer dels
|
||||
Sastres 14, 17800 Olot o enviant un correu electrònic a info@visavis.cat. Per a
|
||||
qualsevol reclamació pot acudir a agpd.es. Per a més informació pot consultar la
|
||||
nostra política de privacitat a www.visavis.cat.</p>
|
||||
</header>
|
||||
|
||||
<div>
|
||||
|
@ -53,10 +44,9 @@
|
|||
<th class="numeric">{{( pgettext "Subtotal" "title" )}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
{{ $lastIndex := len .Products | sub 1 }}
|
||||
{{ range $index, $product := .Products -}}
|
||||
<tbody>
|
||||
{{ range $product := .Products -}}
|
||||
{{ if .Description }}
|
||||
<tbody>
|
||||
<tr class="name">
|
||||
<td colspan="4">{{ .Name }}</td>
|
||||
</tr>
|
||||
|
@ -66,39 +56,47 @@
|
|||
<td class="numeric">{{ .Quantity }}</td>
|
||||
<td class="numeric">{{ .Total | formatPrice }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
{{ else }}
|
||||
<tbody>
|
||||
<tr class="name">
|
||||
<td>{{ .Name }}</td>
|
||||
<td class="numeric">{{ .Price | formatPrice }}</td>
|
||||
<td class="numeric">{{ .Quantity }}</td>
|
||||
<td class="numeric">{{ .Total | formatPrice }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
{{- end }}
|
||||
{{ if (eq $index $lastIndex) }}
|
||||
<tr class="tfoot">
|
||||
<th scope="row" colspan="3">{{( pgettext "Subtotal" "title" )}}</th>
|
||||
<td class="numeric">{{ $.Subtotal | formatPrice }}</td>
|
||||
</tr>
|
||||
{{ range $tax := $.Taxes -}}
|
||||
<tr class="tfoot">
|
||||
<th scope="row" colspan="3">{{ index . 0 }}</th>
|
||||
<td class="numeric">{{ index . 1 | formatPrice }}</td>
|
||||
</tr>
|
||||
{{- end }}
|
||||
<tr class="tfoot">
|
||||
<th scope="row" colspan="3">{{( pgettext "Total" "title" )}}</th>
|
||||
<td class="numeric">{{ $.Total | formatPrice }}</td>
|
||||
</tr>
|
||||
{{ end }}
|
||||
</tbody>
|
||||
{{- end }}
|
||||
|
||||
<tbody class="tfoot">
|
||||
<tr>
|
||||
<th scope="row" colspan="3">{{( pgettext "Subtotal" "title" )}}</th>
|
||||
<td class="numeric">{{ .Subtotal | formatPrice }}</td>
|
||||
</tr>
|
||||
{{ range $tax := .Taxes -}}
|
||||
<tr>
|
||||
<th scope="row" colspan="3">{{ index . 0 }}</th>
|
||||
<td class="numeric">{{ index . 1 | formatPrice }}</td>
|
||||
</tr>
|
||||
{{- end }}
|
||||
<tr>
|
||||
<th scope="row" colspan="3">{{( pgettext "Total" "title" )}}</th>
|
||||
<td class="numeric">{{ .Total | formatPrice }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
{{ if .Notes -}}
|
||||
<p class="notes">{{ .Notes }}</p>
|
||||
{{- end }}
|
||||
<div class="notes">{{ .Notes }}</div>
|
||||
|
||||
<footer>Oriol Carbonell Pujolàs és Responsable del Tractament de les seves dades d'acord
|
||||
amb el RGPD i la LOPDGDDGDD, i les tracta per a mantenir una relació
|
||||
mercantil/comercial amb vostè. Les conservarà mentre es mantingui aquesta relació
|
||||
i no es comunicaran a tercers. Pot exercir els drets d'accés, rectificació, portabilitat,
|
||||
supressió, limitació i oposició a Oriol Carbonell pUJOLÀS, amb domicili Carrer dels
|
||||
Sastres 14, 17800 Olot o enviant un correu electrònic a info@visavis.cat. Per a
|
||||
qualsevol reclamació pot acudir a agpd.es. Per a més informació pot consultar la
|
||||
nostra política de privacitat a www.visavis.cat.
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
{{- end}}
|
||||
|
|
Loading…
Reference in New Issue