Architechture
WEB APP
Reception Dashboard
Cook/Chief Dashboard
Admin / Owner Dashboard
Login to Dashboard Dynamically based on login credentails :- Receptionalist , Cook , Admin
Reception Dashboard :-
Sidebar Navigation (for Receptionist)
Cook / Chef Dashboard
Sidebar Navigation
Admin / Dashboard
Sidebar / Topbar Navigation (Web App)
POST /api/login
– Login staff (Receptionist / Cook / Manager / Admin)POST /api/reservations
– Create reservationGET /api/reservations
– List reservations (filter by date/status)GET /api/reservations/:id
– Get reservation detailsPUT /api/reservations/:id
– Update reservationDELETE /api/reservations/:id
– Cancel reservationPOST /api/walkin
– Create walk-in entryGET /api/tables
– List tables with statusGET /api/tables/:id
– Get table detailsPUT /api/tables/:id/allocate
– Allocate/reallocate table to waiter/managerPUT /api/tables/:id/status
– Update table statusPOST /api/orders
– Create orderGET /api/orders
– List all orders (with filters)GET /api/orders/:id
– Get order detailsPUT /api/orders/:id/status
– Update order statusPUT /api/orders/:id/item/:itemId
– Update item status (in progress / ready / served)POST /api/bills
– Create bill for order/tableGET /api/bills
– List bills (daily/session)PUT /api/bills/:id
– Update bill (discounts, edits)POST /api/payments
– Accept payment (POS/UPI/Cash)GET /api/orders/queue
– Order queue (sorted by time/priority)PUT /api/orders/:id/item/:itemId/status
– Update item status (cook workflow)POST /api/inventory/shortage
– Mark shortage of ingredientGET /api/inventory/alerts
– Get low-stock alertsGET /api/dashboard/overview
– Overview (tables, revenue, timers, occupancy)GET /api/cctv/feeds
– List CCTV feeds mapped to tablesGET /api/inventory
– Get stock levels & consumptionPOST /api/inventory/procurement
– Create purchase orderGET /api/procurement/orders
– List purchase ordersGET /api/payroll/staff
– Staff list & profilesPOST /api/payroll/generate
– Generate payrollGET /api/attendance
– Staff attendance recordsGET /api/analytics/performance
– Staff & table KPIsANDROID APP