📅 Monthly Revenue
🏭 By Office
💰 Status Breakdown
🏆 Top Products (by Qty)
🧾 GST Collection Summary
🕐 Recent Invoices
👤 Bill To / Ship To
📦 Line Items (Rate = GST Inclusive)
Product / DescriptionHSNQtyRate (₹)GST%Amount
Taxable Value (excl. GST)₹0.00
—₹0.00
GRAND TOTAL (Rate × Qty)₹0.00
👁 Live Preview
Auto-updates
All Invoices
🔍
📤 Bulk Excel Upload — All Orders → One PDF
📁
Click or drag Excel / CSV file here
Supports any number of rows — no limit
4 invoices per A4 page (A6 each) — tiny KB PDF, no images rendered
📋 Expected Column Headers
| Party Name* | GSTIN | Bill Address | City | State | PIN | Phone | POS Code | Product* | HSN | Qty* | Rate | GST% | Payment Mode | Order No. | Notes |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Sharma Traders | 06ABCDE1234F1Z5 | Faridabad, HR | Faridabad | Haryana | 121002 | 9958737071 | 06 | Slingo | 95049090 | 10 | Prepaid | ORD-001 |
* = Required. Download template for full guide with all columns explained.
📊 Upload Stats
Upload a file to see stats
🔗 Detected Mapping
Auto-detected after upload
🗂️ Invoice Archive
🏢 Company / Office Details
🏦 Bank & Policy
☁️ Supabase Cloud Sync
Checking...To enable cross-device sync, create this table in your Supabase project:
create table invoices (
inv_no text primary key,
bill_name text, bill_addr text,
bill_gstin text, bill_phone text,
ship_name text, ship_addr text,
pos text, items jsonb,
invoice_date text, payment_mode text,
sub_total numeric, total_tax numeric,
grand_total numeric, is_intra boolean,
office_id text, office_label text,
status text, created_at text,
local_id text
);
alter table invoices enable row level security;
create policy "Allow all" on invoices
for all using (true) with check (true);