You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a similar problem with the start of the warranty. Not sure if it's the same for you. (probably not)
One thing I found is that the "getStartDate" function from dell.class.php looked for the highest date instead of the lowest. (on Line 143)
I hope it helps someone. :)
I opened a Pull request to correct the issue but i'm not to familiar with github so I don't know if I did good or not.
If you want to correct it yourself : In inc/dell.class.php at line 143 change if ($max_date == false || $date > $max_date) {
to if ($max_date == false || $date < $max_date) {
Version of the plugin : 3.0.8
Version of your GLPI : GLPI 10.0.15
Steps to reproduce (which actions have you made) :
Imports warranty informations for a Dell Laptop
Expected result :
Correct match for the expiration of the warranty date
Actual result :
Not the correct date of the expiration warranty
URL of the page :
Screenshot of the problem (if pertinent) :
The text was updated successfully, but these errors were encountered: