op13-control-1/data.py
2026-01-23 09:41:20 +03:00

18 lines
615 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

USERS = {
'petlover': {'password': '1111', 'role': 'Покупатель'},
'cash1': {'password': '2222', 'role': 'Кассир'},
}
PRODUCTS = [
{'name': 'Корм кошек', 'animal': 'Кот', 'price': 500},
{'name': 'Игрушка', 'animal': 'Собака', 'price': 300},
]
ORDERS = [
{'id': '1', 'customer': 'Анна Петрова',
'sum': '2500 р.', 'status': 'Новый'},
{'id': '2', 'customer': 'Иван Иванов',
'sum': '1800 р.', 'status': 'Оплачен'},
]
STATUS_OPTIONS = ['Новый', 'Оплачен', 'Отправлен', 'Отменён']