Esempio n. 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}没有流水!')
Esempio n. 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('当前用户还没有流水信息!')
Esempio n. 3
0
File: src.py Progetto: mtccvip/atm
def check_flow():
    flow=bank_interface.check_flow_interface(login_user)
    if flow:
        for n in flow:
            print(n)
    else:
        print('当前用户没有流失')
Esempio n. 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('当前用户没有流水!')
Esempio n. 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('当前用户没有流水!')
Esempio n. 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    ====================')
Esempio n. 7
0
def check_flow():
    flow_list = bank_interface.check_flow_interface(login_user)
    for flow in flow_list:
        print(flow)
Esempio n. 8
0
def check_flow():
    flows = bank_interface.check_flow_interface(user_info['user'])
    for flow in flows:
        print(flow)
Esempio n. 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)
Esempio n. 10
0
def check_flow():
    flow_list = bank_interface.check_flow_interface(user_info["name"])
    for line in flow_list:
        print(line)
Esempio n. 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)
Esempio n. 12
0
def check_flow():
    print('欢迎来到查流水界面')
    flow_list = bank_interface.check_flow_interface(user_inf.get('user'))
    for flow in flow_list:
        print(flow)