Пример #1
0
def getVoidables():
        response = btc.getRequestResponseXML(BTF_VOIDABLES)
	transList = btrp.parseTransactionsXML(response)			
	return transList
Пример #2
0
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