2906 - Number of packages #667
|
@ -16,9 +16,6 @@
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"required": true
|
"required": true
|
||||||
},
|
},
|
||||||
"amountUnpaid": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
|
||||||
"payed": {
|
"payed": {
|
||||||
"type": "date",
|
"type": "date",
|
||||||
"required": true
|
"required": true
|
||||||
|
|
|
@ -30,6 +30,10 @@
|
||||||
<td class="font gray uppercase">{{$t('date')}}</td>
|
<td class="font gray uppercase">{{$t('date')}}</td>
|
||||||
<th>{{ticket.shipped | date('%d-%m-%Y')}}</th>
|
<th>{{ticket.shipped | date('%d-%m-%Y')}}</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="font gray uppercase">{{$t('packages')}}</td>
|
||||||
|
<th>{{ticket.packages}}</th>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -25,3 +25,4 @@ vatType: VAT Type
|
||||||
digitalSignature: Digital signature
|
digitalSignature: Digital signature
|
||||||
ticket: Delivery note {0}
|
ticket: Delivery note {0}
|
||||||
plantPassport: Plant passport
|
plantPassport: Plant passport
|
||||||
|
packages: Packages
|
|
@ -25,3 +25,4 @@ vatType: Tipo de IVA
|
||||||
digitalSignature: Firma digital
|
digitalSignature: Firma digital
|
||||||
ticket: Albarán {0}
|
ticket: Albarán {0}
|
||||||
plantPassport: Pasaporte fitosanitario
|
plantPassport: Pasaporte fitosanitario
|
||||||
|
packages: Bultos
|
|
@ -25,3 +25,4 @@ vatType: Type de TVA
|
||||||
digitalSignature: Signature numérique
|
digitalSignature: Signature numérique
|
||||||
ticket: BL {0}
|
ticket: BL {0}
|
||||||
plantPassport: Passeport phytosanitaire
|
plantPassport: Passeport phytosanitaire
|
||||||
|
packages: Paquets
|
|
@ -25,3 +25,4 @@ vatType: Tipo de IVA
|
||||||
digitalSignature: Assinatura digital
|
digitalSignature: Assinatura digital
|
||||||
ticket: Nota de Entrega {0}
|
ticket: Nota de Entrega {0}
|
||||||
plantPassport: Passaporte vegetal
|
plantPassport: Passaporte vegetal
|
||||||
|
packages: Pacotes
|
|
@ -1,7 +1,8 @@
|
||||||
SELECT
|
SELECT
|
||||||
t.id,
|
t.id,
|
||||||
t.shipped,
|
t.shipped,
|
||||||
c.code companyCode
|
c.code companyCode,
|
||||||
|
t.packages
|
||||||
FROM ticket t
|
FROM ticket t
|
||||||
JOIN company c ON c.id = t.companyFk
|
JOIN company c ON c.id = t.companyFk
|
||||||
WHERE t.id = ?
|
WHERE t.id = ?
|
Loading…
Reference in New Issue