This repository has been archived on 2022-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
GesMag/csv.py
Mylloon 00cefc324e Modifications:
- 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)
2021-11-29 13:52:24 +01:00

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")