Manage Sizes
123 |125 |
Sizes |
158 |
|---|
<%= order.Size %> |
164 |
├── Procfile ├── .gitignore ├── error.log ├── public ├── logo.png ├── styles.css ├── admin.svg ├── creditcard.svg ├── login.css ├── addstock.svg ├── sales_filter.svg ├── stock_filter.svg ├── sales.svg ├── lock.svg ├── dashboard.svg ├── category.svg └── stock.svg ├── views ├── register.ejs ├── login.ejs ├── sizes.ejs ├── categories.ejs ├── brands.ejs ├── index.ejs ├── stock_filter.ejs ├── viewstocks.ejs ├── stocks.ejs ├── orders.ejs └── bill.ejs ├── package.json ├── passport-config.js └── README.md /Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShetuRaj/Inventory-Management-and-Billing-Website/HEAD/error.log -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShetuRaj/Inventory-Management-and-Billing-Website/HEAD/public/logo.png -------------------------------------------------------------------------------- /views/register.ejs: -------------------------------------------------------------------------------- 1 |
(Admin)
Sizes |
158 |
|---|
<%= order.Size %> |
164 |
(Admin)
Categories |
163 |
|---|
<%= order.Category %> |
169 |
(Admin)
Brands |
164 |
|---|
<%= order.Brand %> |
170 |
(Admin)
138 | ₹ 139 | <% total_sales.forEach(function(order){ %> 140 | <%= order.TotalItemsOrdered %> 141 | <% }); %> 142 |
143 |160 | <% ord_num.forEach(function(order){ %> 161 | <%= order. NumberOfProducts %> 162 | <% }); %> 163 |
164 |180 | <% stock_num.forEach(function(order){ %> 181 | <%= order. NumberOfProducts %> 182 | <% }); %> 183 |
184 |201 | <% total_stock.forEach(function(order){ %> 202 | <%= order. TotalItemsOrdered %> 203 | <% }); %> 204 |
205 |(Admin)
| Brand | 193 |Stock Left | 194 |Stock Value | 195 |
|---|---|---|
| <%= order.Brand %> | 201 |<%= order.Count %> | 202 |<%= order.Amount %> | 203 |
| Category | 235 |Stock Left | 236 |Stock Value | 237 |
|---|---|---|
| <%= order.Category %> | 243 |<%= order.Count %> | 244 |<%= order.Amount %> | 245 |
(Admin)
| Item ID | 178 |Item Name | 179 |Category | 180 |Brand Name | 181 |Size | 182 |Amount | 183 |Date Entered | 184 |Time Entered | 185 |
|---|---|---|---|---|---|---|---|
| <%= order.ItemID %> 191 | | <%= order.ItemName %> | 192 |<%= order.Category %> | 193 |<%= order.Brand %> | 194 |<%= order.Size %> | 195 |<%= order.Amount %> | 196 |<%= order.StockDate %> | 197 |<%= order.StockTime %> | 198 | 199 |
| Item ID | 213 |Item Name | 214 |Category | 215 |Brand Name | 216 |Size | 217 |Amount | 218 |Date Entered | 219 |Time Entered | 220 |
|---|---|---|---|---|---|---|---|
| <%= order.ItemID %> 226 | | <%= order.ItemName %> | 227 |<%= order.Category %> | 228 |<%= order.Brand %> | 229 |<%= order.Size %> | 230 |<%= order.Amount %> | 231 |<%= order.StockDate %> | 232 |<%= order.StockTime %> | 233 | 234 |
| Item ID | 248 |Item Name | 249 |Category | 250 |Brand Name | 251 |Size | 252 |Amount | 253 |Date Entered | 254 |Time Entered | 255 |
|---|---|---|---|---|---|---|---|
| <%= order.ItemID %> 261 | | <%= order.ItemName %> | 262 |<%= order.Category %> | 263 |<%= order.Brand %> | 264 |<%= order.Size %> | 265 |<%= order.Amount %> | 266 |<%= order.StockDate %> | 267 |<%= order.StockTime %> | 268 | 269 |
(Admin)
(Admin)
Order ID: <%= order.TransactionID %>
198 |Total Amount: <%= order.Amount %>
201 |Date: <%= order.TransactionDate %>
206 |Time: <%= order.TransactionTime %>
209 || Item ID | 220 |Item Name | 221 |Category | 222 |Brand Name | 223 |Size | 224 |Amount | 225 |Customer Number | 226 |
|---|---|---|---|---|---|---|
| <%= sub_order.ItemID %> | 236 |<%= sub_order.ItemName %> | 237 |<%= sub_order.Category %> | 238 |<%= sub_order.Brand %> | 239 |<%= sub_order.Size %> | 240 |<%= sub_order.Amount %> | 241 |<%= sub_order.CustomerNumber %> | 242 |
Order ID: <%= order.TransactionID %>
266 |Total Amount: <%= order.Amount %>
269 |Date: <%= order.TransactionDate %>
274 |Time: <%= order.TransactionTime %>
277 || Item ID | 287 |Item Name | 288 |Category | 289 |Brand Name | 290 |Size | 291 |Amount | 292 |Customer Number | 293 |
|---|---|---|---|---|---|---|
| <%= sub_order.ItemID %> | 303 |<%= sub_order.ItemName %> | 304 |<%= sub_order.Category %> | 305 |<%= sub_order.Brand %> | 306 |<%= sub_order.Size %> | 307 |<%= sub_order.Amount %> | 308 |<%= sub_order.CustomerNumber %> | 309 |
Order ID: <%= order.TransactionID %>
333 |Total Amount: <%= order.Amount %>
336 |Date: <%= order.TransactionDate %>
341 |Time: <%= order.TransactionTime %>
344 || Item ID | 354 |Item Name | 355 |Category | 356 |Brand Name | 357 |Size | 358 |Amount | 359 |Customer Number | 360 |
|---|---|---|---|---|---|---|
| <%= sub_order.ItemID %> | 370 |<%= sub_order.ItemName %> | 371 |<%= sub_order.Category %> | 372 |<%= sub_order.Brand %> | 373 |<%= sub_order.Size %> | 374 |<%= sub_order.Amount %> | 375 |<%= sub_order.CustomerNumber %> | 376 |
(Admin)