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
Post a Comment