brewman/brewman/brewman/models/__init__.py

33 lines
465 B
Python
Raw Normal View History

from .auth import (
Client,
LoginHistory,
2020-05-31 09:11:11 +00:00
Permission,
2020-10-07 15:18:43 +00:00
Role,
User,
role_permission,
user_role,
)
from .master import (
Account,
AccountBase,
AccountType,
2020-10-07 15:18:43 +00:00
AttendanceType,
CostCentre,
Employee,
Product,
ProductGroup,
Recipe,
RecipeItem,
)
from .voucher import (
Attendance,
Batch,
2020-10-07 15:18:43 +00:00
EmployeeBenefit,
Fingerprint,
Inventory,
Journal,
Product,
Voucher,
VoucherType,
)