import excel

This commit is contained in:
Bright 2024-07-26 14:41:41 +07:00
parent bfce5ba1ce
commit 15cb59b550
8 changed files with 659 additions and 306 deletions

View file

@ -16,9 +16,15 @@ class Extension {
}
return date;
}
// else {
// return moment.unix(value).format('DD/MM/YYYY');
// }
else {
if(value.toString().length == 4) {
if (value < 1800) {
return null;
} else if (value > 2500) {
return value - 543;
}
}
}
}
return null;
}