|
@@ -991,18 +991,18 @@ const computedWidth = (column: SimpleColumn) => {
|
|
|
return width + 1
|
|
|
}
|
|
|
|
|
|
-function getAddend(flightNO: string, name: string) {
|
|
|
+function getAddend(planeType: string, name: string) {
|
|
|
const minute =
|
|
|
LOAD_WARNING_MAP[
|
|
|
name.includes('International') ? 'internationalDeparture' : 'departure'
|
|
|
- ][flightNO]
|
|
|
+ ][planeType]
|
|
|
if (minute) {
|
|
|
return minute * -1 * 60 * 1000
|
|
|
}
|
|
|
- return 0
|
|
|
+ return null
|
|
|
}
|
|
|
-function computedTime(originalTime: CommonValue, addend: number) {
|
|
|
- if ((originalTime ?? '') === '') {
|
|
|
+function computedTime(originalTime: CommonValue, addend: number | null) {
|
|
|
+ if ((originalTime ?? '') === '' || addend === null) {
|
|
|
return null
|
|
|
}
|
|
|
let datetime = 0
|
|
@@ -1109,7 +1109,7 @@ export function useAirportTable(name: string, formData: CommonData) {
|
|
|
) {
|
|
|
row.endLoadTime = computedTime(
|
|
|
row.planDepartureTime,
|
|
|
- getAddend(`${row.IATACode}${row.flightNO}`, name)
|
|
|
+ getAddend(`${row.planeType}`, name)
|
|
|
)
|
|
|
}
|
|
|
return {
|