Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
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";
0