cr changes
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
eda65c14c1
commit
b25ef7016a
|
@ -154,7 +154,8 @@ module.exports = Self => {
|
||||||
u.name name,
|
u.name name,
|
||||||
co.code companyCode,
|
co.code companyCode,
|
||||||
zed.zoneFk,
|
zed.zoneFk,
|
||||||
IF(zed.hourTheoretical, zed.hourTheoretical, zed.hourEffective) AS hour,
|
zed.hourTheoretical,
|
||||||
|
zed.hourEffective,
|
||||||
am.name AS agencyName
|
am.name AS agencyName
|
||||||
FROM hedera.order o
|
FROM hedera.order o
|
||||||
LEFT JOIN address a ON a.id = o.address_id
|
LEFT JOIN address a ON a.id = o.address_id
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<vn-th field="created" center expand>Created</vn-th>
|
<vn-th field="created" center expand>Created</vn-th>
|
||||||
<vn-th field="landed" default-order="DESC" center expand>Landed</vn-th>
|
<vn-th field="landed" default-order="DESC" center expand>Landed</vn-th>
|
||||||
<vn-th field="created" center>Hour</vn-th>
|
<vn-th field="created" center>Hour</vn-th>
|
||||||
<vn-th field="agencyName" center>agency</vn-th>
|
<vn-th field="agencyName" center>Agency</vn-th>
|
||||||
<vn-th center>Total</vn-th>
|
<vn-th center>Total</vn-th>
|
||||||
</vn-tr>
|
</vn-tr>
|
||||||
</vn-thead>
|
</vn-thead>
|
||||||
|
@ -52,7 +52,10 @@
|
||||||
{{::order.landed | date:'dd/MM/yyyy'}}
|
{{::order.landed | date:'dd/MM/yyyy'}}
|
||||||
</span>
|
</span>
|
||||||
</vn-td>
|
</vn-td>
|
||||||
<vn-td shrink>{{::order.hour | date: 'HH:mm' | dashIfEmpty}}</vn-td>
|
<vn-td shrink>{{::(order.hourTheoretical
|
||||||
|
? order.hourTheoretical
|
||||||
|
: order.hourEffective) | dashIfEmpty
|
||||||
|
}}</vn-td>
|
||||||
<vn-td expand>{{::order.agencyName}}</vn-td>
|
<vn-td expand>{{::order.agencyName}}</vn-td>
|
||||||
<vn-td number>{{::order.total | currency: 'EUR': 2 | dashIfEmpty}}</vn-td>
|
<vn-td number>{{::order.total | currency: 'EUR': 2 | dashIfEmpty}}</vn-td>
|
||||||
<vn-td shrink>
|
<vn-td shrink>
|
||||||
|
|
Loading…
Reference in New Issue