def run(): """ Starts this module and displays its menu. * User can access default special features from here. * User can go back to main menu from here. Returns: None """ title = "Inventory Menu" list_options = ('List', "Add", "Remove", "Update") exit_message = "Back do main menu" file_name = 'model/inventory/inventory.csv' title_labels = ('ID', 'Platform', 'Producer', 'Year', 'Elements') list_labels = ('Platform:', 'Producer:', 'Year:', 'Elements:') choice = None terminal_view.clear() while choice != '0': choice = terminal_view.get_choice("Inventory Menu", list_options, exit_message) if choice == '1': common.show_table(file_name, title_labels) elif choice == '2': title = "Create record in inventory" common.fn_add(file_name, list_labels, title, inventory.add) common.show_table(file_name, title_labels) elif choice == '3': common.show_table(file_name, title_labels) common.remove_record_from_file(terminal_view.get_string("ID: "), inventory.remove, file_name, title_labels) elif choice == '4': common.show_table(file_name, title_labels) if common.fn_update(file_name, list_labels, 'Update', inventory.update): common.show_table(file_name, title_labels) else: terminal_view.print_error_message("There is no such choice.")
def run(): """ Starts this module and displays its menu. * User can access default special features from here. * User can go back to main menu from here. Returns: None """ title = "Store menu" list_options = ("Show", "Add", "Remove", "Update") exit_message = "Back do main menu" file_name = 'model/store/games.csv' title_labels = ('ID', 'Name', 'Studio', 'Elements', 'Sales') list_labels = ('Name:', 'Studio:', 'Elements:', 'Sales:') choice = None terminal_view.clear() while choice != "0": choice = terminal_view.get_choice("Store menu", list_options, exit_message) if choice == "1": terminal_view.clear() common.show_table(file_name, title_labels) elif choice == "2": terminal_view.clear() title = "Create record in store" common.show_table(file_name, title_labels) common.fn_add(file_name, list_labels, title, store.add) common.show_table(file_name, title_labels) elif choice == "3": terminal_view.clear() common.show_table(file_name, title_labels) common.remove_record_from_file(terminal_view.get_string("ID: "), store.remove, file_name, title_labels) common.show_table(file_name, title_labels) elif choice == "4": terminal_view.clear() common.show_table(file_name, title_labels) if common.fn_update(file_name, list_labels, 'Update', store.update): common.show_table(file_name, title_labels) else: terminal_view.print_error_message("There is no such choice.")