def getVoidables():
        response = btc.getRequestResponseXML(BTF_VOIDABLES)
	transList = btrp.parseTransactionsXML(response)			
	return transList
def getDeposits():
        response = btc.getRequestResponseXML(BTF_DEPOSITS)
	transList = btrp.parseTransactionsXML(response)			
	return transList
示例#3
0
def getCustomersByBTFID(dlrID):
    response = btc.getRequestResponseXML(BTF_CUSTOMER_BY_BTF_NUM + dlrID)
    customerList = btrp.parseCustomersXML(response)
    return customerList
示例#4
0
def getAllCustomers():
    response = btc.getRequestResponseXML(BTF_CUSTOMER)
    customerList = btrp.parseCustomersXML(response)
    return customerList
示例#5
0
def getCustomersByName(companyName):
    response = btc.getRequestResponseXML(BTF_CUSTOMER_BY_NAME + companyName)
    customerList = btrp.parseCustomersXML(response)
    return customerList