import excel
This commit is contained in:
parent
bfce5ba1ce
commit
15cb59b550
8 changed files with 659 additions and 306 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue