Retail Chain ERPKEJ IT Solutions
Main Menu
Reports

Dashboard

Live ERP Demo — KEJ IT Solutions

Back to KEJ IT
RC
Recent Invoices View All →
InvoiceCustomerAmountStatus
Quick Stats
Monthly Revenue

Sales / POS Orders

All Sales Orders
Invoice #CustomerItemsAmountPaymentBranchStatusDateActions

Inventory Management

Product Stock List
ProductCategorySKUStockPriceBranchStatusActions

Branch Management

All Branches
Branch NameLocationManagerStaffMonthly SalesStatusActions

Customer Management

Customer List
NamePhoneEmailOrdersTotal SpentLoyaltyStatusActions

GST Reports

GST Summary by Category

Analytics & Reports

Sales by Branch
Top Products
Weekly Revenue Trend
Payment Method Breakdown
Category Sales

Settings

Store Information
System Config
CurrencyINR ₹
GST Rate18%
Invoice PrefixINV-
Fiscal YearApr 2025 – Mar 2026
SoftwareKEJ IT Retail ERP v2.1
BackupAuto Daily
function submitEnquiry() { var name=document.getElementById('enq-name').value.trim(); var email=document.getElementById('enq-email').value.trim(); var phone=document.getElementById('enq-phone').value.trim(); if(!name||!email||!phone){toast('Name, email and phone required','red');return;} var btn=document.getElementById('enq-submit'); btn.disabled=true;btn.innerHTML=' Sending...'; var fd=new FormData(); fd.append('name',name);fd.append('email',email);fd.append('phone',phone); fd.append('company',document.getElementById('enq-company').value); fd.append('city',document.getElementById('enq-city').value); fd.append('erp','Retail Chain ERP'); fd.append('message',document.getElementById('enq-msg').value||''); fetch('/enquire.php',{method:'POST',body:fd}) .then(function(r){return r.json();}) .then(function(d){ document.getElementById('enq-body').innerHTML='
Enquiry Sent!
Thank you '+name+'! Our team will contact you at '+email+' within 24 hours.
'; document.querySelector('#enq-modal .mf').innerHTML=''; }) .catch(function(){ toast('Enquiry sent! We will contact you shortly.'); setTimeout(function(){document.getElementById('enq-modal').classList.remove('open');},2000); }); }