0

我正在通过 SOAP API 将运输解决方案与 NetSuite 集成。我可以通过 searchRecord 调用检索 shipAddress。现在我需要将跟踪号、使用的服务和成本发送回 NetSuite。希望有人能指出我正确的方向,因为搜索没有为我找到任何答案。一个示例 XML 会很棒。

4

2 回答 2

0

为了通过 SOAP 使用信息更新销售订单,您需要创建一个销售订单对象,设置值并调用一个update或一个upsert方法:

[JAVA]

SalesOrder so = new SalesOrder();
so.setExternalId("externalID"); //This should correspond to the previous external ID for updates. 
...set_other_fields_as_required...
WriteResponse wr = ns.getPort().update(so);    //ns = _port if you're using the samples                 

[C#]

var so = new SalesOrder();
so.externalId = "externalID";
...set_other_fields_as_required...
var wr = Service.upsert(so); 

PHP应该是类似的,但是我没有使用过PHP工具包所以我不能肯定。

这应该可以帮助您入门。

于 2013-08-19T19:45:36.990 回答
0

我几乎粘贴了我让外部开发人员尝试实现的响应,但我不明白如何设置信封以在 NS 中接收它的记录...我认为这就是处理更新帖子的原因场地:

'
             var a = new Array();
                                 a['Content-Type'] = 'text/xml; charset=utf-8';
                                 a['POST'] = '/FedexNSService/Service1.asmx HTTP/1.1';
                                 a['Content-Length'] = data.length;           
                                 a['SOAPAction'] = 'https://wsbeta.fedex.com:443/web-services/ship/ReturnFedexLable';
                                nlapiLogExecution('DEBUG', 'Results', 'data : ' + data);



            var response = nlapiRequestURL('http://sonatauat.adaaitsolutions.com/FedexNSService/Service1.asmx?op=ReturnFedexLable', data, a, null,null);
nlapiLogExecution('DEBUG', 'response', response);                
            var responseXML = nlapiStringToXML(response.getBody());
nlapiLogExecution('DEBUG', 'responseXML', responseXML);
                                 var responseCode = response.getCode();
nlapiLogExecution('DEBUG', 'responseCode', responseCode);
                                 var body = response.getBody();
nlapiLogExecution('DEBUG', 'body', body);                                
                                 nlapiLogExecution('DEBUG', 'responseXML '+responseXML, 'responseCode : ' + responseCode);
                                 nlapiLogExecution('DEBUG', 'body ', 'body : ' +body);
                        var imageurl ='';        
                    if(responseXML != null)
                    {

                            var rawfeeds = nlapiSelectNodes(responseXML, "//Tracking"); 
                            var FileInternalId = nlapiSelectValue(rawfeeds[0], "FileInternalId");
                            var TrackingIds = nlapiSelectValue(rawfeeds[1], "TrackingIds");
                            nlapiLogExecution('DEBUG', 'FileInternalId '+FileInternalId, 'TrackingIds : '+TrackingIds );    
                            if(FileInternalId)
                            {
                                var image=nlapiLoadFile(5985);
                                imageurl=image.getURL();
                                imageurl = ("https://system.netsuite.com"+imageurl);       
                                nlapiLogExecution('DEBUG','image',imageurl);
                            }

                    }
            return imageurl;
'
于 2013-08-16T08:14:10.370 回答