tuli
04/21/2021, 9:18 AMvar receiptList = xml.XPath.select({
node: xmlDocument,
xpath: '//receipt_list'
});
var itemNode = xml.XPath.select({
node: receiptList[0],
xpath: '//receipt'
});
itemNode.length gives me 5 instead of 4. Getting the other one too from outside receipt list.battk
04/21/2021, 2:47 PM