|
@@ -139,7 +139,11 @@ class proweb
|
|
|
|
|
|
|
|
private static function archiveExcelValuesDate(string $_string)
|
|
private static function archiveExcelValuesDate(string $_string)
|
|
|
{
|
|
{
|
|
|
- return (!isset($_string) or $_string == "00-00-0000") ? "N/A" : $_string;
|
|
|
|
|
|
|
+ if(!isset($_string) or $_string == "00-00-0000"){
|
|
|
|
|
+ return "N/A";
|
|
|
|
|
+ } else {
|
|
|
|
|
+ return str_replace(" 00:00:00", "", $_string);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
private static function archiveExcelValuesSexe(string $_string)
|
|
private static function archiveExcelValuesSexe(string $_string)
|