Repair Shop Management System Project in Django with Source Code
This Repair Shop Management System Project in Django created based on python, Django, and SQLITE3 Database. The admin section is in charge of all tasks. From introducing customers to tracking their completion times, we’ve got you covered. The device is fully accessible to the administrator. When you bring the product in for maintenance, the administrator will assign it to the appropriate staff.
If your item has been fixed, the administrator will mark it as ready for delivery to the customer. The admin may also check the status of the product. He can see his Repair Shop store’s annual revenue or even monthly revenue. He can also control the store’s earnings.
The Repair Shop Management System Project in Django is an easy project for beginners to learn how to build a web-based python Django project. We will provide you with the complete source code and database for the python project so that you can easily install it on your machine and learn how to program in Python Django.
To start creating a Repair Shop Management System Project in Python Django, makes sure that you have PyCharm Professional IDE Installed in your computer.
This Repair Shop Management System Project in Django Framework, Also includes a Download Source Code for free, just find the downloadable source code below and click download now.
About Project | Project Details | Definition |
---|---|---|
Project Name | Repair Shop Management System Project in Django | The Student Result Management System Project is an easy project for beginners to learn how to build a web-based python Django project. We will provide you with the complete source code and database for the python project so that you can easily install it on your machine and learn how to program in Python Django. |
Python version (Recommended) | 3.8 Version | Python 3.8 introduces some new syntax to the language, as well as a few small modifications to existing behavior and, most importantly, a slew of performance improvements, following in the footsteps of the previous 3.7 version. |
Programming Language Used | Python Django Language | Django is a high-level Python web framework for building safe and maintainable websites quickly. Django is a web framework built by experienced developers that takes care of a lot of the heavy lifting so you can focus on developing your app instead of reinventing the wheel. |
Developer Name | itsourcecode.com | Free projects containing source code in Java, PHP, Python, Django, VB.Net, Visual Basic, C, C++, C#, Javascript, and other languages are available on this website. |
IDE Tool (Recommended) | Sublime, Visual Studio, PyCharm | Sublime Text is a source code editor that is available for purchase. It comes with built-in support for a variety of programming and markup languages. Plugins, which are often community-built and maintained under free-software licenses, allow users to extend the functionality of the system. Sublime Text has a Python API to help with plugins. |
Project Type | Web Application | A web application, unlike computer-based software programs that operate locally on the device’s operating system, is application software that runs on a web server. The user uses a web browser with an active network connection to access web apps. |
Database | SQLite | SQLite is a programming language that is used to create embedded software for devices such as televisions, cell phones, and cameras. It can handle HTTP requests with low to medium traffic. SQLite has the ability to compress files into smaller bundles with less metadata. SQLite is a temporary dataset that is used within an application to process data. |
Admin Features of Repair Shop Management System Project in Django
- Login Page – The page where the system administrator enters their system credentials in order to gain access to the system’s administrative side.
- Manage User- This is the page where an administrator can add, update, and delete user information.
- Manage Enquiries – This is the page where an administrator can add, update, and delete enquiries information.
- Repair Details Management – This is the page where an administrator can view all the customer who inquired.
- Change Password – This is the page where an administrator can change their own password for better security.
User Features of Repair Shop Management System Project in Django
- Login Page – The page where the system user enters their system credentials in order to gain access to the system’s user side.
- Enquiry – This is the page where the user need to enquire about the problem of their computer.
- Update Enquiry – This is the page where the user can update enquire about the problem of their computer.
- Check Status – This is the page where the user can check their status if is can complete, reject or accept their enquiry.
Repair Shop Management System Project in Django Steps on How to Create a Project
Time needed: 5 minutes.
Here’s the step’s on how to create a Repair Shop Management System Project in Django with Source Code.
- Step 1: Open file.
First , open “pycharm professional” after that click “file” and click “new project“.
- Step 2: Choose Django.
Next, after click “new project“, choose “Django” and click.
- Step 3: Select file location.
Then, select a file location wherever you want.
- Step 4: Create application name.
After that, name your application.
- Step 5: Click create.
Lastly, finish creating project by clicking “create” button.
- Step 6: Start Coding.
Finally, we will now start adding functionality to our Django Framework by adding some functional codes.
Functionality and Codes of the Repair Shop Management System Project in Django
- Create template for the check status request in Repair Shop Management System Project Project in Django.
In this section, we will learn on how create a templates for the check status request. To start with, add the following code in your checkstatusrequest.html under the folder of repair/templates/repair.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
<!DOCTYPE html> <html> <head> <title>Repair System</title> <meta name="viewport" content="width=device-width,initial-scale=1"> {% load static %} {% load staticfiles %} <link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}"> <link rel="icon" type="image/x-icon" href="{% static 'img/logos.jpg' %}"> </head> style="background: {% static 'img/bg.png' %}; opacity: 0px;" <body> <header style="font-family: Lucida Handwriting; color: yellow"> <h2>Myrel Hardware and Software Repair Shop</h2> </header> <section class="content" id='content' style="background: url({% static 'img/3.jpg' %}) no-repeat center; background-size: contain;"> <section class="formContainer" style="margin-top: 100px; margin-bottom: 50px;"> <br> <h3>Receipt ID</h3><br><br> <form action="/repair/checkStatusShow/" method="POST"> {% csrf_token %} <input type="hidden" name="requestType" value="receiptID"> <input type="text" name="receiptID" placeholder="Receipt ID" required> <br><br> <input type="submit" value="Check Status"> </form> <br> </section> <section class="formContainer" style="margin-bottom: 0px;"> <br> <h3>Serial Number</h3><br><br> <form action="/repair/checkStatusShow/" method="POST"> {% csrf_token %} <input type="hidden" name="requestType" value="serialNo"> <input type="text" name="serialNo" placeholder="Serial Number" required><br><br> <input type="submit" value="Check Status"> </form> <br> </section> <section class="formContainer" style="margin-top: 0px; margin-bottom: 50px;"> <br> <h3>Personal Information</h3><br><br> <form action="/repair/checkStatusShow/" method="POST"> {% csrf_token %} <input type="hidden" name="requestType" value="personalDetails"> <input type="text" name="customerName" placeholder="Customer Name" required><br><br> <input type="number" name="contactNo" placeholder="Contact Number" required> <br><br> <input type="submit" value="Check Status"> </form> <br> </section> </section> <footer style="font-family: Lucida Handwriting; color: yellow"> <p>Repair Shop Management System 2021. All Rights Reserved</p> </footer> </body> </html> |
- Create template for the enquiry form in Repair Shop Management System Project Project in Django.
In this section, we will learn on how create a templates for the enquiry form. To start with, add the following code in your enquiryform.html under the folder of repair/templates/repair.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
<!DOCTYPE html> <html> <head> <title>Repair System</title> <meta name="viewport" content="width=device-width,initial-scale=1"> {% load static %} {% load staticfiles %} <link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}"> <link rel="icon" type="image/x-icon" href="{% static 'img/logos.jpg' %}"> </head> <body> <header style="font-family: Lucida Handwriting; color: yellow"> <h2>Myrel Hardware and Software Repair Shop</h2> </header> <section class="content" id='content' style="background: url({% static 'img/3.jpg' %}) no-repeat center; background-size: contain;"> <section class="formContainer"> <form method="post" action="/repair/enquiryReceipt/"> {% csrf_token %} <br><br> <h3 style="font-family: gotham rounded book;">Enquiry Form</h3> <br><br> <input type="text" value="Receipt ID : {{ receiptID }}" disabled="disabled" name="receiptID"><br><br> <input type="date" placeholder="Enquiry Date" value="{{ currentDate }}" name="enquiryDate" required><br><br> <input type="text" placeholder="Customer Name" name="customerName" required><br><br> <input type="number" placeholder="Contact Number" min="0" name="contactNo" required><br><br> <input type="email" placeholder="Email" name="email"><br><br> <textarea placeholder="Address" rows="3" name="address"></textarea><br><br> <br> <center><hr size="2" width="85%" color="#2196f3" noshade></center> <br> <input type="text" placeholder="Device Type" name="deviceType" required><br><br> <input type="text" placeholder="Brand" name="brand" required><br><br> <input type="text" placeholder="Device Model" name="deviceModel" required><br><br> <input type="text" placeholder="Device Serial Number" name="serialNo"> <br><br> <textarea placeholder="Device Condition" rows="3" name="deviceCondition"></textarea><br><br> <br> <br> <center><hr size="2" width="85%" color="#2196f3" noshade></center> <br> <!-- <input type="text" placeholder="Problem Category" name="problemCategory"><br><br> --> <select name="problemCategory" required> <option value="">Problem Category</option> <option value="HW">Hardware</option> <option value="SW">Software</option> </select><br><br> <input type="text" placeholder="Problem" name="problem" required><br><br> <textarea placeholder="Problem Description" rows="3" name="problemDescription"></textarea><br><br> <br> <center><hr size="2" width="85%" color="#2196f3" noshade></center> <br> <input type="number" placeholder="Estimated Cost" min="0" name="estimatedCost" required><br><br> <input type="number" placeholder="Advance" min="0" name="advance"><br><br><br> <input type="submit" value="Print Receipt"><br><br> <!-- onclick="window.location.reload()" --> </form> </section> </section> <footer style="font-family: Lucida Handwriting; color: yellow"> <p>Repair Shop Management System 2021. All Rights Reserved</p> </footer> </body> </html> |
- Create template for the receipt form in Repair Shop Management System Project Project in Django.
In this section, we will learn on how create a templates for the receipt form. To start with, add the following code in your finalReceiptFrameContent .html under the folder of repair/templates/repair.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
<!DOCTYPE html> <html> <head> <title>Repair System</title> <meta name="viewport" content="width=device-width,initial-scale=1"> {% load static %} {% load staticfiles %} <link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}"> <link rel="stylesheet" type="text/css" href="{% static 'css/receipt.css' %}"> <link rel="icon" type="image/x-icon" href="{% static 'img/logos.jpg' %}"> </head> <body> <div class="content" style="background: white;"> <section class="table" id="receiptTable"> <section class="tableHeader"> <figure> </figure> <section style="flex: 3;"> <br> <h1 style="font-family: Lucida Handwriting; color: yellow; font-size: 31px; ">Myrel Hardware and Software Repair Shop</h1> <p>SALES - SERVICE - REPAIR - RENT - BYBACK</p> <br> </section> </section> <section class="tableContactDetails"> Brgy.Enclaro, Binalbagan, Negros Occidental </section> {% for i in customerDetails %} <section style="display: flex; text-align: left; flex-wrap: wrap; padding:4px;"> <section style="min-width: 55%; max- width: 55%;"><b>R. No. : </b>{{ i.receiptID }} </u></section> <section style="min-width: 45%; max- width: 45%;"><b>Date : </b>{{ i.enquiryDate }}</section> <section style="min-width: 55%; max- width: 55%;"><b>Customer Name : </b>{{ i.customerName }}</section> <section style="min-width: 45%; max- width: 45%;"><b>Contact No : </b>{{ i.contactNo }}</section> {% for j in testDetails %} <section style="min-width: 100%; max- width: 100%;"><b>Problem : </b>{{ j.actualProblem }}</section> <section style="min-width: 100%; max- width: 100%;"><b>Problem Description : </b>{{ j.actualProblemDescription }}</section> {% endfor %} <section style="min-width: 100%; max- width: 100%;"><b>Device Condition : </b>{{ i.deviceCondition }}</section> </section> {% endfor %} {% if componentsUsed %} <section class="componentsTable"> <section class="componentsTableHeader"> <section style="min-width: 100%; max-width: 100%; font-size: 20px; padding: 3px;">Components Used</section> </section> <section class="componentsTableHeader"> <section style="flex:1;">S No.</section> <section style="flex:2;">Items</section> <section style="flex:1;">Price</section> </section> {% for i in componentsUsed %} <section> <section style="flex:1;">{{ forloop.counter }}</section> {% for j in i %} <section style="{% cycle 'flex:2;' 'flex:1;' %}">{{ j }}</section> {% endfor %} </section> {% endfor %} <section class="componentsTableFooter"> <section style="flex:3; text-align: right;">Total </section> <section style="flex:1;">{{ componentsUsedPriceTotal }}</section> </section> </section> {% endif %} <!-- Final Bill --> <section class="componentsTable"> <section class="componentsTableHeader"> <section style="min-width: 100%; max-width: 100%; font-size: 20px; padding: 3px;">Final Bill</section> </section> <section class="componentsTableHeader"> <section style="flex:1;">S No.</section> <section style="flex:2;">Services</section> <section style="flex:1;">Price</section> </section> <section> <section style="flex:1;">1</section> <section style="flex:2;">Components Used Charge</section> <section style="flex:1;">{% if componentsUsedPriceTotal %} {{ componentsUsedPriceTotal }} {% else %} 0 {% endif %}</section> </section> <section> <section style="flex:1;">2</section> <section style="flex:2;">Repair Charge</section> <section style="flex:1;">{% for i in repairDetails %}{{ i.repairCharge }}{% endfor %}</section> </section> <section> <section style="flex:1;">3</section> <section style="flex:2;">Other Charges</section> <section style="flex:1;">{% for i in repairDetails %}{{ i.otherCharge }}{% endfor %}</section> </section> <section class="componentsTableFooter"> <section style="flex:3; text-align: right;">Total Repair Charge </section> <section style="flex:1;">{% for i in repairDetails %}{{ i.totalPrice }}{% endfor %}</section> </section> <section class="componentsTableFooter"> <section style="flex:3; text-align: right;">Advance </section> <section style="flex:1;">{% for i in customerDetails %}{{ i.advance }}{% endfor %}</section> </section> <section class="componentsTableFooter"> <section style="flex:3; text-align: right;">Balance </section> <section style="flex:1;">{{ balance }}</section> </section> </section> <section style="display: flex; text-align: center; flex-wrap: wrap; padding-bottom:0px; padding-top:50px; justify-content: flex-end;"> <section style="min-width: 55%; max- width: 55%;"><b>Customer Signature</b></section> <section style="min-width: 45%; max- width: 45%;"><b>Myrel Hardware and Software Repair Shop</b></section> </section> </section> </div> </body> </html> |
Downloadable Source Code Below.
Anyway, if you want to level up your programming knowledge, especially python, try this new article I’ve made for you Best Python Projects with source code for Beginners. But If you’re going to focus on web development using Django, you can download here from our list of Best Django Projects with source code based on real-world projects.
How To Run The Repair Shop Management System Project in Django?
- Step 1: Extract/unzip the file
- Step 2: Go inside the project folder, open cmd and type the following commands to install Django Framework and run the webserver:
- python manage.py migrate
- python manage.py runserver
- Step 3: Finally, open the browser and go to http://127.0.0.1:8000/
Summary
In summary, this 2022 Repair Shop Management System Project in Django with Source Code can be useful to students or professional who wants to learn python programming language. This project can also be modified to fit your personal requirements. Hope this project will help you to improve your skills. Happy Coding!
- How To Make A Point Of Sale System In Python
- Best Python Projects for Beginners
- Python MySQL Connection: Simple Python Step by Step Guide
- Python PIP Command Set-up / Fix: Step by Step Guide
- Random Password Generator in Python Projects With Source Code 2020
- Python Range Function|Range in Python Explained with Examples 2020
- School Management System Project In Django With Source Code
- Django Login And Registration With Source Code
- CRUD App In Django With Source Code
- Drag And Drop JavaScript With Source Code
- Todo List App Django With Source Code
Inquiries
If you have any questions or suggestions about Repair Shop Management System Project in Django with Source Code, please feel free to leave a comment below.
what i sthe username and password for https://itsourcecode.com/free-projects/python-projects/repair-shop-management-system-project-in-django-with-source-code/ (“epair-shop-management-system-project-in-django-with-source-code”)project
Username: admin
Password: admin12345