Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix into 2677-rating_component
This commit is contained in:
commit
293dbb3948
|
@ -11,8 +11,8 @@ vn-descriptor-content {
|
||||||
& > img[ng-src] {
|
& > img[ng-src] {
|
||||||
min-height: 16em;
|
min-height: 16em;
|
||||||
display: block;
|
display: block;
|
||||||
height: 100%;
|
width: 256px;
|
||||||
width: 100%;
|
height: 256px;
|
||||||
}
|
}
|
||||||
|
|
||||||
vn-float-button {
|
vn-float-button {
|
||||||
|
|
|
@ -155,7 +155,8 @@ module.exports = Self => {
|
||||||
co.code companyCode,
|
co.code companyCode,
|
||||||
zed.zoneFk,
|
zed.zoneFk,
|
||||||
zed.hourTheoretical,
|
zed.hourTheoretical,
|
||||||
zed.hourEffective
|
zed.hourEffective,
|
||||||
|
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
|
||||||
LEFT JOIN agencyMode am ON am.id = o.agency_id
|
LEFT JOIN agencyMode am ON am.id = o.agency_id
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
<vn-th field="isConfirmed" center>Confirmed</vn-th>
|
<vn-th field="isConfirmed" center>Confirmed</vn-th>
|
||||||
<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 translate-attr="{title: 'Theoretical hour'}">T. Hour</vn-th>
|
<vn-th field="created" center>Hour</vn-th>
|
||||||
<vn-th field="created" center>Real hour</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,8 +52,11 @@
|
||||||
{{::order.landed | date:'dd/MM/yyyy'}}
|
{{::order.landed | date:'dd/MM/yyyy'}}
|
||||||
</span>
|
</span>
|
||||||
</vn-td>
|
</vn-td>
|
||||||
<vn-td shrink>{{::order.hourTheoretical | date: 'HH:mm' | dashIfEmpty}}</vn-td>
|
<vn-td shrink>{{::(order.hourTheoretical
|
||||||
<vn-td shrink>{{::ticket.hourEffective | date: 'HH:mm' | dashIfEmpty}}</vn-td>
|
? order.hourTheoretical
|
||||||
|
: order.hourEffective) | dashIfEmpty
|
||||||
|
}}</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>
|
||||||
<vn-icon-button
|
<vn-icon-button
|
||||||
|
|
|
@ -60,7 +60,8 @@ class Controller extends Section {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{relation: 'ship'},
|
{relation: 'ship'},
|
||||||
{relation: 'stowaway'}]
|
{relation: 'stowaway'},
|
||||||
|
{relation: 'invoiceOut'}]
|
||||||
};
|
};
|
||||||
|
|
||||||
return this.$http.get(`Tickets/${this.ticketId}`, {filter})
|
return this.$http.get(`Tickets/${this.ticketId}`, {filter})
|
||||||
|
|
Loading…
Reference in New Issue