fe80 User

Hi,

I've a issue with this variable on percentageCrawler function:

var percentageProdSupp = crawler * crawler_value;

crawler return a object and that not working, I fix with

var percentageProdSupp = parseInt(crawler) * crawler_value;

But I don't know what is the root issue