forked from verdnatura/salix-front
refs #7366 fix travel hours
This commit is contained in:
parent
859eb918cd
commit
874cbfea9b
|
@ -1124,6 +1124,8 @@ travel:
|
||||||
agency: Agency
|
agency: Agency
|
||||||
shipped: Shipped
|
shipped: Shipped
|
||||||
landed: Landed
|
landed: Landed
|
||||||
|
shipHour: Shipment Hour
|
||||||
|
landHour: Landing Hour
|
||||||
warehouseIn: Warehouse in
|
warehouseIn: Warehouse in
|
||||||
warehouseOut: Warehouse out
|
warehouseOut: Warehouse out
|
||||||
totalEntries: Total entries
|
totalEntries: Total entries
|
||||||
|
|
|
@ -1102,6 +1102,8 @@ travel:
|
||||||
ref: Referencia
|
ref: Referencia
|
||||||
agency: Agencia
|
agency: Agencia
|
||||||
shipped: F.envío
|
shipped: F.envío
|
||||||
|
shipHour: Hora de envío
|
||||||
|
landHour: Hora de llegada
|
||||||
landed: F.entrega
|
landed: F.entrega
|
||||||
warehouseIn: Alm.salida
|
warehouseIn: Alm.salida
|
||||||
warehouseOut: Alm.entrada
|
warehouseOut: Alm.entrada
|
||||||
|
|
|
@ -106,6 +106,12 @@ const columns = computed(() => [
|
||||||
create: true,
|
create: true,
|
||||||
format: (row, dashIfEmpty) => dashIfEmpty(toDate(row.shipped)),
|
format: (row, dashIfEmpty) => dashIfEmpty(toDate(row.shipped)),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
name: 'shipmentHour',
|
||||||
|
label: t('travel.travelList.tableVisibleColumns.shipHour'),
|
||||||
|
cardVisible: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'warehouseOutFk',
|
name: 'warehouseOutFk',
|
||||||
|
@ -134,12 +140,17 @@ const columns = computed(() => [
|
||||||
create: true,
|
create: true,
|
||||||
format: (row, dashIfEmpty) => dashIfEmpty(toDate(row.landed)),
|
format: (row, dashIfEmpty) => dashIfEmpty(toDate(row.landed)),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
name: 'landingHour',
|
||||||
|
label: t('travel.travelList.tableVisibleColumns.landHour'),
|
||||||
|
cardVisible: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'totalEntries',
|
name: 'totalEntries',
|
||||||
label: t('travel.travelList.tableVisibleColumns.totalEntries'),
|
label: t('travel.travelList.tableVisibleColumns.totalEntries'),
|
||||||
component: 'input',
|
component: 'input',
|
||||||
attrs: {},
|
|
||||||
toolTip: t('travel.travelList.tableVisibleColumns.totalEntriesTooltip'),
|
toolTip: t('travel.travelList.tableVisibleColumns.totalEntriesTooltip'),
|
||||||
columnField: {
|
columnField: {
|
||||||
component: null,
|
component: null,
|
||||||
|
|
Loading…
Reference in New Issue