Mylloon
00cefc324e
- Clean-up some comments - Add total amount of items when buyed multiple times at once in the receipt (so only when > 1) - Add button to export the total amount of sales of the day (not implemented yet)
7 lines
199 B
Python
7 lines
199 B
Python
from users import Utilisateurs
|
|
|
|
class CSV(Utilisateurs):
|
|
"""Gère l'export des statistiques en format CSV."""
|
|
def __init__(self):
|
|
super().__init__(r"db.sqlite3")
|
|
print("uwu")
|