This project provides a simple private web app for aluminum/fabrication teams to:
- Generate instant quotations from Width, Height, Quantity.
- Generate production cutting lists by applying configurable subtraction formulas per series/sub-category.
- Accountant can quickly generate quotes when owner shares dimensions remotely.
- Supports multiple product series and sub-categories.
- Keeps your formulas private (no subscription cloud dependency).
- Can be extended with your existing Excel code/price sheet.
python3 -m http.server 8000Then open http://localhost:8000.
Edit PRODUCT_LIBRARY in app.js.
Each category contains:
ratePerSqmproductionRules(part-wise width/height subtraction and piece count)notes
Example:
"2 Track 2 Shutter": {
ratePerSqm: 1550,
productionRules: {
track: { widthSubtract: 70, heightSubtract: 40, pieces: 2 },
shutter: { widthSubtract: 95, heightSubtract: 65, pieces: 2 }
}
}- Import your SKU/code and pricing matrix from Excel.
- Add admin panel to maintain formulas per hardware type.
- Add printable PDF quotation and production file.
- Add login + role access (owner, accountant, production).