ProjectIT is an Open Source PWA mobile app to track the Employees out in the field. This mobile app is developed on Frappe Framework and it is integrated with the Project functionalities of ERPNext and integrated tightly with Frappe HRMS.
Some of the highlights of ProjectIT are as follows:
Easy Check-In and Check-Out of Jobs (Project)
Detailed GPS tracking
Integrated Payroll Reporting - including Normal and Overtime hours
Photo Attachments
Track Job Progress
Real-time reporting of the Employees
Some of the business that will be benefited through ProjectIT are as follows:
Construction companies
HVAC - Heating, Ventilation & Air Conditioning
Electrical Installation
Maintenance & Repair Services
ProjectIT GitHub Repo
document.addEventListener("DOMContentLoaded", () => { document.addEventListener("click", e => { const moblile_navbar = e.target.closest(".mobile-navbar"); const nav_menu = e.target.closest(".nav-menu"); if (nav_menu) { if (document.querySelector(".mobile-navbar").style.display == "none" || !document.querySelector(".mobile-navbar").style.display) { document.querySelector(".mobile-navbar").style.display = "flex"; } else { document.querySelector(".mobile-navbar").style.display = "none"; } } else if (!moblile_navbar) { document.querySelector(".mobile-navbar").style.display = "none"; } })