refs #4497 servicios añadidos
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
e80754f280
commit
b5889d2f40
|
@ -264,7 +264,7 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="row in intrastat">
|
<tr v-for="row in intrastat">
|
||||||
<td>{{row.code}}</td>
|
<td>{{row.code}}</td>
|
||||||
<td width="50%">{{row.description}}</td>
|
<td width="50%">{{row.description || $t('services') }}</td>
|
||||||
<td class="number">{{row.stems | number($i18n.locale)}}</td>
|
<td class="number">{{row.stems | number($i18n.locale)}}</td>
|
||||||
<td class="number">{{row.netKg | number($i18n.locale)}}</td>
|
<td class="number">{{row.netKg | number($i18n.locale)}}</td>
|
||||||
<td class="number">{{row.subtotal | currency('EUR', $i18n.locale)}}</td>
|
<td class="number">{{row.subtotal | currency('EUR', $i18n.locale)}}</td>
|
||||||
|
|
|
@ -81,7 +81,7 @@ module.exports = {
|
||||||
return this.rawSqlFromDef(`taxes`, [reference]);
|
return this.rawSqlFromDef(`taxes`, [reference]);
|
||||||
},
|
},
|
||||||
fetchIntrastat(reference) {
|
fetchIntrastat(reference) {
|
||||||
return this.rawSqlFromDef(`intrastat`, [reference, reference, reference]);
|
return this.rawSqlFromDef(`intrastat`, [reference, reference, reference, reference]);
|
||||||
},
|
},
|
||||||
fetchRectified(reference) {
|
fetchRectified(reference) {
|
||||||
return this.rawSqlFromDef(`rectified`, [reference]);
|
return this.rawSqlFromDef(`rectified`, [reference]);
|
||||||
|
|
|
@ -33,4 +33,5 @@ issued: Issued
|
||||||
plantPassport: Plant passport
|
plantPassport: Plant passport
|
||||||
observations: Observations
|
observations: Observations
|
||||||
wireTransfer: "Pay method: Transferencia"
|
wireTransfer: "Pay method: Transferencia"
|
||||||
accountNumber: "Account number: {0}"
|
accountNumber: "Account number: {0}"
|
||||||
|
services: Services
|
|
@ -33,4 +33,5 @@ issued: F. emisión
|
||||||
plantPassport: Pasaporte fitosanitario
|
plantPassport: Pasaporte fitosanitario
|
||||||
observations: Observaciones
|
observations: Observaciones
|
||||||
wireTransfer: "Forma de pago: Transferencia"
|
wireTransfer: "Forma de pago: Transferencia"
|
||||||
accountNumber: "Número de cuenta: {0}"
|
accountNumber: "Número de cuenta: {0}"
|
||||||
|
services: Servicios
|
|
@ -1,4 +1,4 @@
|
||||||
SELECT
|
(SELECT
|
||||||
ir.id code,
|
ir.id code,
|
||||||
ir.description description,
|
ir.description description,
|
||||||
CAST(SUM(IFNULL(i.stems, 1) * s.quantity) AS DECIMAL(10,2)) stems,
|
CAST(SUM(IFNULL(i.stems, 1) * s.quantity) AS DECIMAL(10,2)) stems,
|
||||||
|
@ -19,4 +19,14 @@ SELECT
|
||||||
WHERE t.refFk = ?
|
WHERE t.refFk = ?
|
||||||
AND i.intrastatFk
|
AND i.intrastatFk
|
||||||
GROUP BY i.intrastatFk
|
GROUP BY i.intrastatFk
|
||||||
ORDER BY i.intrastatFk;
|
ORDER BY i.intrastatFk)
|
||||||
|
UNION ALL
|
||||||
|
(SELECT
|
||||||
|
NULL AS code,
|
||||||
|
NULL AS description,
|
||||||
|
0 AS stems,
|
||||||
|
0 AS netKg,
|
||||||
|
CAST(SUM((ts.quantity * ts.price)) AS DECIMAL(10,2)) AS subtotal
|
||||||
|
FROM vn.ticketService ts
|
||||||
|
JOIN vn.ticket t ON ts.ticketFk = t.id
|
||||||
|
WHERE t.refFk = ?);
|
Loading…
Reference in New Issue