コード例 #1
0
def getCustomersByBTFID(dlrID):
    response = btc.getRequestResponseXML(BTF_CUSTOMER_BY_BTF_NUM + dlrID)
    customerList = btrp.parseCustomersXML(response)
    return customerList
コード例 #2
0
def getAllCustomers():
    response = btc.getRequestResponseXML(BTF_CUSTOMER)
    customerList = btrp.parseCustomersXML(response)
    return customerList
コード例 #3
0
def getCustomersByName(companyName):
    response = btc.getRequestResponseXML(BTF_CUSTOMER_BY_NAME + companyName)
    customerList = btrp.parseCustomersXML(response)
    return customerList