Beispiel #1
0
def check_flow():
    flow_list = bank_interface.check_flow_interface(login_user)
    if flow_list:
        for flow in flow_list:
            print(flow)
    else:
        print(f'{login_user}没有流水!')
Beispiel #2
0
def check_flow():
    flow_list = bank_interface.check_flow_interface(login_user)
    if flow_list:
        for flow in flow_list:
            print(flow)
    else:
        print('当前用户还没有流水信息!')
Beispiel #3
0
def check_flow():
    flow=bank_interface.check_flow_interface(login_user)
    if flow:
        for n in flow:
            print(n)
    else:
        print('当前用户没有流失')
Beispiel #4
0
def check_flow():
    flow_list = bank_interface.check_flow_interface(login_user)

    if flow_list:
        for i in flow_list:
            print(i)
    else:
        print('当前用户没有流水!')
Beispiel #5
0
def check_flow():
    # 直接调用查看流水接口
    flow_list = bank_interface.check_flow_interface(
        login_user
    )

    if flow_list:
        for flow in flow_list:
            print(flow)
    else:
        print('当前用户没有流水!')
Beispiel #6
0
def check_flow():
    # 调用查看账户流水接口
    flow_list = bank_interface.check_flow_interface(username=login_user)

    # 判断并打印流水信息
    print('====================  账户流水  ====================')
    if flow_list:
        for flow in flow_list:
            print(flow)
    else:
        print('暂无流水')
    print('====================    END    ====================')
Beispiel #7
0
def check_flow():
    flow_list = bank_interface.check_flow_interface(login_user)
    for flow in flow_list:
        print(flow)
Beispiel #8
0
def check_flow():
    flows = bank_interface.check_flow_interface(user_info['user'])
    for flow in flows:
        print(flow)
Beispiel #9
0
def check_flow():
    print('欢迎来到查看流水功能')
    flow_list = bank_interface.check_flow_interface(user_info['username'])
    if flow_list:
        for flow in flow_list:
            print(flow)
Beispiel #10
0
def check_flow():
    flow_list = bank_interface.check_flow_interface(user_info["name"])
    for line in flow_list:
        print(line)
Beispiel #11
0
def check_flow():
    flow_list = bank_interface.check_flow_interface(user_info['user'])
    if flow_list:
        for flow in flow_list:
            print(flow)
Beispiel #12
0
def check_flow():
    print('欢迎来到查流水界面')
    flow_list = bank_interface.check_flow_interface(user_inf.get('user'))
    for flow in flow_list:
        print(flow)