Loading repository data…
Loading repository data…
akash99909 / repository
Cozystay Requirement Analysis Document - System Design Document - Object Design Document - Mockups - Class Diagram - ER Diagram are in the "Documents" Folder. It is hotel management system which has 5 different user types: Admin - Manager - Receptionist - Staff - Guest (Each of the types have different permission and functionality.) There are some screenshots of the program on "Screenshots" folder. In order to download and run the project ( It is assumed that Python 3 is already installed ): Install Django and Apps: pip install Django==3.1.4 pip install django-phonenumber-field[phonenumbers] Needed to create roles and admin account to add new employee accounts Change Directory to Django---Hotel-Management-System/HMS and start the Shell: python3 manage.py shell Then execute these, one by one: from django.contrib.auth.models import Group, User from accounts.models import Employee Group.objects.create(name='admin') Group.objects.create(name='manager') Group.objects.create(name='receptionist') Group.objects.create(name='staff') Group.objects.create(name='guest') user = User.createuser=User.objects.create_user('admin', password='admin123') group = Group.objects.get(name="admin") user.groups.add(group) admin = Employee(user=user, salary=0) admin.save() Finally: Exit the shell and set the database: python3 manage.py makemigrations python3 manage.py migrate Then, start the surver python3 manage.py runserver This will work if correctly set up. Notes: Note 1: In the program, there are some payment page. No need to enter real credit-card informations. The payment page is just for the system, it doesnt work. However; after this page, a verification code is sent the user email address. Note 2: You can only sign up as a guest to the system. In order to add employee (Manager - Receptionist - Staff): Login in to the system with username: "admin" and password : "admin123" Go the employee page on options in navbar. Click "Add New Employee" button, fill the form and send it. You will see the success message. Then, you can use that employee to enter the system Note 3: For the email system (In some cases system sends e-mails): Go to the HMS/setting.py Under the settings file you can find the email settings, uncomment them in order to change the settings and put the email address you want to use to receive the rmails from the system.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Requirement Analysis Document - System Design Document - Object Design Document - Mockups - Class Diagram - ER Diagram are in the "Documents" Folder.
It is hotel management system which has 5 different user types: Admin - Manager - Receptionist - Staff - Guest (Each of the types have different permission and functionality.)
There are some screenshots of the program on "Screenshots" folder.
pip install Django==3.1.4
pip install django-phonenumber-field[phonenumbers]
python3 manage.py shell
from django.contrib.auth.models import Group, User
from accounts.models import Employee
Group.objects.create(name='admin')
Group.objects.create(name='manager')
Group.objects.create(name='receptionist')
Group.objects.create(name='staff')
Group.objects.create(name='guest')
user = User.createuser=User.objects.create_user('admin', password='admin123')
group = Group.objects.get(name="admin")
user.groups.add(group)
admin = Employee(user=user, salary=0)
admin.save()
python3 manage.py makemigrations
python3 manage.py migrate
Then, start the surver
python3 manage.py runserver