示例#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}没有流水!')
示例#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('当前用户还没有流水信息!')
示例#3
0
文件: src.py 项目: mtccvip/atm
def check_flow():
    flow=bank_interface.check_flow_interface(login_user)
    if flow:
        for n in flow:
            print(n)
    else:
        print('当前用户没有流失')
示例#4
0
文件: src.py 项目: x1angw2/Python
def check_flow():
    flow_list = bank_interface.check_flow_interface(login_user)

    if flow_list:
        for i in flow_list:
            print(i)
    else:
        print('当前用户没有流水!')
示例#5
0
文件: src.py 项目: rogerXS80/database
def check_flow():
    # 直接调用查看流水接口
    flow_list = bank_interface.check_flow_interface(
        login_user
    )

    if flow_list:
        for flow in flow_list:
            print(flow)
    else:
        print('当前用户没有流水!')
示例#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    ====================')
示例#7
0
文件: src.py 项目: buildearth/Python
def check_flow():
    flow_list = bank_interface.check_flow_interface(login_user)
    for flow in flow_list:
        print(flow)
示例#8
0
def check_flow():
    flows = bank_interface.check_flow_interface(user_info['user'])
    for flow in flows:
        print(flow)
示例#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)
示例#10
0
def check_flow():
    flow_list = bank_interface.check_flow_interface(user_info["name"])
    for line in flow_list:
        print(line)
示例#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)
示例#12
0
def check_flow():
    print('欢迎来到查流水界面')
    flow_list = bank_interface.check_flow_interface(user_inf.get('user'))
    for flow in flow_list:
        print(flow)