|
@@ -139,7 +139,21 @@ const {
|
|
|
} = useTable(`${props.name}Waybill`, dataContent)
|
|
|
|
|
|
const tableFormatter = (row, column, cellValue, index) => {
|
|
|
- if (column.property.includes('Time') && typeof cellValue === 'string') {
|
|
|
+ if (
|
|
|
+ (column.property.includes('Time') ||
|
|
|
+ [
|
|
|
+ 'tally',
|
|
|
+ 'pull',
|
|
|
+ 'wait',
|
|
|
+ 'stowage',
|
|
|
+ 'depot',
|
|
|
+ 'resure',
|
|
|
+ 'planeDown',
|
|
|
+ 'loadPlane',
|
|
|
+ 'pullSure',
|
|
|
+ ].includes(column.property)) &&
|
|
|
+ typeof cellValue === 'string'
|
|
|
+ ) {
|
|
|
return cellValue.slice(5, -3).replace('T', '\n')
|
|
|
}
|
|
|
return String(cellValue ?? '')
|