コード例 #1
0
def get_product_associates_by_columnvalue(column_name):
    print(f"enter searchvalue for {column_name}")
    name = f_input()
    product_associates = cc.get_product_associates_by_columnvalue(
        column_name, name)
    print_list_of_tablerows(product_associates)
    print_amount_matches(product_associates)
コード例 #2
0
ファイル: employee_menu.py プロジェクト: THPY2020/Databas01
def get_employees_by_columnvalue(column_name):
    print(f"enter searchvalue for {column_name}")
    name = f_input()
    employees = cc.get_employees_by_columnvalue(column_name, name)
    print_list_of_tablerows(employees)
    print_amount_matches(employees)
コード例 #3
0
ファイル: employee_menu.py プロジェクト: THPY2020/Databas01
def get_employees_by_name():
    print("Enter a Employee Name")
    c_name = f_input()
    employees = cc.get_employees_by_name(c_name)
    print_list_of_tablerows(employees)
    print_amount_matches(employees)
コード例 #4
0
ファイル: order_menu.py プロジェクト: THPY2020/Databas01
def get_all_orders():
    orders = cc.get_all_orders()
    print_list_of_tablerows(orders)
    print_amount_matches(orders)
コード例 #5
0
ファイル: order_menu.py プロジェクト: THPY2020/Databas01
def get_orders_by_name():
    print("Enter a Order Name")
    c_name = f_input()
    orders = cc.get_orders_by_name(c_name)
    print_list_of_tablerows(orders)
    print_amount_matches(orders)
コード例 #6
0
def get_all_compatibilitys():
    compatibilitys = cc.get_all_compatibilitys()
    print_list_of_tablerows(compatibilitys)
    print_amount_matches(compatibilitys)
コード例 #7
0
def get_customer_cars_by_columnvalue(column_name):
    print(f"enter searchvalue for {column_name}")
    name = f_input()
    customer_cars = cc.get_customer_cars_by_columnvalue(column_name, name)
    print_list_of_tablerows(customer_cars)
    print_amount_matches(customer_cars)
コード例 #8
0
def get_all_internal_orders():
    internal_orders = cc.get_all_internal_orders()
    print_list_of_tablerows(internal_orders)
    print_amount_matches(internal_orders)
コード例 #9
0
def show_all_customers():
    customers = cc.get_all_customers()
    print_list_of_tablerows(customers)
    print_amount_matches(customers)
コード例 #10
0
def show_customers_by_name():
    print("Enter a Customer Name")
    c_name = f_input()
    customers = cc.get_customers_by_name(c_name)
    print_list_of_tablerows(customers)
    print_amount_matches(customers)
コード例 #11
0
def show_all_associates():
    associates = ac.show_all_associates()
    print_list_of_tablerows(associates)
    print_amount_matches(associates)
コード例 #12
0
def show_associate_by_columnvalue(column_name):
    print(f"enter searchvalue for {column_name}")
    name = f_input()
    associate = ac.get_associate_by_columnvalue(column_name, name)
    print_list_of_tablerows(associate)
    print_amount_matches(associate)
コード例 #13
0
def get_shop_storages_by_columnvalue(column_name):
    print(f"enter searchvalue for {column_name}")
    name = f_input()
    shop_storages = cc.get_shop_storages_by_columnvalue(column_name, name)
    print_list_of_tablerows(shop_storages)
    print_amount_matches(shop_storages)
コード例 #14
0
ファイル: employee_menu.py プロジェクト: THPY2020/Databas01
def get_all_employees():
    employees = cc.get_all_employees()
    print_list_of_tablerows(employees)
    print_amount_matches(employees)
コード例 #15
0
def get_all_order_products():
    order_products = cc.get_all_order_products()
    print_list_of_tablerows(order_products)
    print_amount_matches(order_products)
コード例 #16
0
def get_internal_orders_by_columnvalue(column_name):
    print(f"enter searchvalue for {column_name}")
    name = f_input()
    internal_orders = cc.get_internal_orders_by_columnvalue(column_name, name)
    print_list_of_tablerows(internal_orders)
    print_amount_matches(internal_orders)
コード例 #17
0
def get_all_storages():
    storages = cc.get_all_storages()
    print_list_of_tablerows(storages)
    print_amount_matches(storages)
コード例 #18
0
def get_all_product_internal_orders():
    product_internal_orders = cc.get_all_product_internal_orders()
    print_list_of_tablerows(product_internal_orders)
    print_amount_matches(product_internal_orders)
コード例 #19
0
ファイル: car_menu.py プロジェクト: THPY2020/Databas01
def get_all_cars():
    cars = cc.get_all_cars()
    print_list_of_tablerows(cars)
    print_amount_matches(cars)
コード例 #20
0
def get_all_product_associates():
    product_associates = cc.get_all_product_associates()
    print_list_of_tablerows(product_associates)
    print_amount_matches(product_associates)
コード例 #21
0
def get_compatibilitys_by_columnvalue(column_name):
    print(f"enter searchvalue for {column_name}")
    name = f_input()
    compatibilitys = cc.get_compatibilitys_by_columnvalue(column_name, name)
    print_list_of_tablerows(compatibilitys)
    print_amount_matches(compatibilitys)