fix: refs #7145 fix overFlow on driver-route

This commit is contained in:
Pablo Natek 2024-04-04 08:48:58 +02:00
parent 7aeb9e4f32
commit de5e954ce2
4 changed files with 71 additions and 63 deletions

View File

@ -1,3 +1,13 @@
td{
overflow: hidden;
max-width: 100px;
text-overflow: ellipsis;
}
/* .text-field{
text-overflow: ellipsis;
} */
h1 {
text-align: center;
}

View File

@ -103,7 +103,7 @@
<table width="100%">
<tbody>
<tr>
<th class="font gray align-right">{{$t('street')}}</th>
<th class="text-field font gray align-right">{{$t('street')}}</th>
<td>{{ticket.street}}</td>
<th class="font gray align-right">{{$t('postcode')}}</th>
<td>{{ticket.postalCode}}</td>

View File

@ -1,5 +1,4 @@
SELECT
r.id,
SELECT r.id,
r.m3,
r.created,
r.time,
@ -7,7 +6,7 @@ SELECT
v.tradeMark vehicleTradeMark,
v.model vehicleModel,
v.numberPlate plateNumber,
IFNULL(s.name, am.name) AS agencyName
IFNULL(s.name, am.name) agencyName
FROM route r
LEFT JOIN vehicle v ON v.id = r.vehicleFk
LEFT JOIN worker w ON w.id = r.workerFk

View File

@ -1,20 +1,19 @@
SELECT
t.nickname addressName,
SELECT t.nickname addressName,
t.packages,
t.priority,
t.id,
t.clientFk,
t.companyFk,
t.routeFk,
if(a.phone, a.phone, c.phone) AS phone,
if(a.mobile, a.mobile, c.mobile) AS mobile,
if(a.phone, a.phone, c.phone) phone,
if(a.mobile, a.mobile, c.mobile) mobile,
wh.name warehouseName,
a.city,
a.street,
a.postalCode,
LPAD(a.id, 5, '0') AS addressFk,
LPAD(a.id, 5, '0') addressFk,
p.name province,
0 AS import,
0 import,
am.name ticketAgency,
tob.description,
u.nickName salesPersonName,