New: - Added the possibility to insert custom items on receipt upload in case the receipt couldn't be read. Changes: - Changed the display of the sum at the overview. You now see what you owe your establishment instead of just seeing how much you bought. - In addition the sum in the overview now accounts for membership time. You don't have to pay for something bought after you moved out for example.
17 lines
551 B
Python
17 lines
551 B
Python
from .payment import Payment
|
|
from .receipt_item import ReceiptItem
|
|
from .receipt import Receipt
|
|
from .login_token import LoginToken
|
|
from .bought import Bought
|
|
from .establishment import Establishment
|
|
from .establishment_candidate import EstablishmentCandidate
|
|
from .user import User
|
|
from .amount_change import AmountChange
|
|
from .price_change import PriceChange
|
|
from .category import Category
|
|
from .item import Item
|
|
from .brand import Brand
|
|
from .item_category import item_category
|
|
from .login_token_dates import LoginTokenDates
|
|
|
|
from .schemas import * |