Discussions
Netsuite not retrieving items with price more than $1000
Hi,
I am wondering if someone else has this problem.
My website cannot display items more than $1000 and we have no problem displaying anything less than $1000.
We are getting information by listing all products in Netsuite that are
"displayed on website" based on Netsuite ID.
First, Add items with netsuite ID -> store in database -> display on website.
Information doesn't get retrieved properly from Netsuite to store in the database.
-------------------------
Add Item Code
------------------------
function ajax_add_product($d) {
$p=explode(':',$d); // 0=cid, 1=nsiid
if(mysql_num_rows(query("SELECT nsiid FROM products WHERE nsiid=".$p[1]))) return "e";