mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2025-08-13 19:35:34 +00:00
Return body error code
This commit is contained in:
@@ -69,9 +69,11 @@ module.exports = (xml, keys) => ({
|
||||
return node.length ? node[0].textContent : '';
|
||||
},
|
||||
|
||||
returnCode() {
|
||||
returnCode(where = 'header') {
|
||||
const select = xpath.useNamespaces({ xmlns: 'urn:org:ebics:H004' });
|
||||
const node = select('//xmlns:header/xmlns:mutable/xmlns:ReturnCode', this.doc);
|
||||
const node = where === 'header'
|
||||
? select('//xmlns:header/xmlns:mutable/xmlns:ReturnCode', this.doc)
|
||||
: select('//xmlns:body/xmlns:ReturnCode', this.doc);
|
||||
|
||||
return node.length ? node[0].textContent : '';
|
||||
},
|
||||
|
Reference in New Issue
Block a user