c# - Intuit POS SDK - Missing manufacturer for inventory query -


i developing against quickbooks pos system. make following request inventory list (in c#).

var request = sessionmgr.createmsgsetrequest(1, 0); request.attributes.onerror = enrqonerror.roecontinue; var inventoryquery = request.appenditeminventoryqueryrq(); var response = sessionmgr.dorequests(request); 

the inventory list not include manufacturer string each inventory item, through string populated in qbpos. field not in returned xml or in iiteminventoryret object, although else appears be.

thanks help!

the manufacturer field added in later version of program have specify version 3 request it.

you can call "qbposxmlversionsforsession" request object ensure end user has compatible version of pos request.

this shows fields available versions: https://member.developer.intuit.com/qbsdk-current/common/newosr/index.html


Comments

Popular posts from this blog

css - Text drops down with smaller window -

php - Boolean search on database with 5 million rows, very slow -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -