Пример #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
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
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
def get_all_orders():
    orders = cc.get_all_orders()
    print_list_of_tablerows(orders)
    print_amount_matches(orders)
Пример #5
0
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
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)
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
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)