We use Asset to store information about all spares we have on shelf.
Import of Assets is done using the "custom" flag. And new devices are no problem at all.
It is the updates that generates errors.
If we import the same CSV again (maybe with updated comments, or no change at all) there should only be an update, but there is an error on every row:
"Incorrect integer value: 'username' for column `nedi`.`inventory`.`endsupport` at row 1"
I have found this in php file Assets-Management.php (line numbers included):
292 if( DbQuery($link,'inventory','u','','','',
293 array('serial'),
294 array($sn),
295 array('assettype','assetlocation','assetcontact','assetupdate','maintsla','maintdesc','maintcost','maintstatus','startmaint','endmaint','endwarranty','endsupport','endlife','usrname','dpmonths'),
296 array($ty,$lo,$co,time(),$ms,$md,$mt,$em,0,$es,$el,$_SESSION['user'],$dp)
297 ) ){
It seems that a few parameters are missing in the last array, causing the error.