|
@ -367,9 +367,9 @@ public class SFExpressService extends BaseService {
|
|
|
public void SFRoutePushService(String xml) throws Exception{
|
|
|
Document doc = DocumentHelper.parseText(xml);
|
|
|
Element root = doc.getRootElement();
|
|
|
if (root.element("WaybillRoute") != null) //包含WaybillRoute节点
|
|
|
if (root.element("Body") != null) //包含WaybillRoute节点
|
|
|
{
|
|
|
root = root.element("WaybillRoute");
|
|
|
root = root.element("Body");
|
|
|
}
|
|
|
List<?> child = root.elements();
|
|
|
|