Point of Sale Javascript With Source Code
The Point of Sale Javascript was developed using HTML, CSS and Javascript, Customers are rung up at a Javascript Point of Sale Sample , also known as a point of purchase. Customers are at the point of sale when they check out online, come up to your counter, or select an item from your stand or booth.
Your firm may collect payments from customers and keep track of sales with a Point of Sale User Interface. It appears simple enough, but depending on whether you sell online, have a physical storefront, or both, the arrangement can operate in a variety of ways.
This Javascript Project With Source Code also includes a downloadable javascript source code for free, just find the downloadable source code below and click to start downloading.
I have here a suggested list of Best JavaScript Projects with Source Code Free to download and I’m sure this can help you to improve your skills in JavaScript programming and web development as a whole.
To start executing a Point of Sale Javascript With Source Code , makes sure that you have any platform in creating a JavaScript, CSS, bootstrap, and HTML installed in your computer, in my case I will use Sublime Text.
Point of Sale Javascript With Source Code : Steps on how to create the project
Time needed: 5 minutes.
These are the steps on how to create Point of Sale Javascript With Source Code
- Step 1: Create a folder.
First, create a folder and named it.
- Step 2: Open the folder in “Sublime Text”.
Second ,after creating a folder, open it in “sublime text“.
- Step 3: Create a html file.
Third, create a “html” file and save it as “index.html“
The code given below is for the main module of the project
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 |
<!DOCTYPE html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="css/bootstrap.css"> <link rel="stylesheet" href="css/bootstrap-reboot.css"> <link rel="stylesheet" href="css/bootstrap-grid.css"> <link rel="stylesheet" href="css/Style.css"> <link rel="stylesheet" type="text/css" href="css/semantic.min.css"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"> <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script> <script src="js/semantic.min.js"></script> <title>Pos System</title> </head> <body> <nav class="navbar navbar-expand-lg navbar-dark bg-info"> <a class="navbar-brand" style="font-size: 25px;color: white"> POS SYSTEM </a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse mt-2" id="navbarSupportedContent"> <ul class="navbar-nav mr-auto"> <li class="nav-item"> <button class="nav-link btn-lg btn-success" id="navHome">Home</button> </li> <li class="nav-item"> <button class="nav-link btn-lg btn-success" id="navCustomer">Customer</button> </li> <li class="nav-item"> <button class="nav-link btn-lg btn-success" id="navItem">Item</button> </li> <li class="nav-item"> <button class="nav-link btn-lg btn-success" id="navOrder">Order</button> </li> </ul> </div> </nav> <div id="dashboardPanel"> <div class="ui link cards" style="margin: 3%"> <div class="card" style="margin: 1%"> <div class="ui violet label" style="font-size: 60px;padding-left: 35%"> <i class="fas fa-users"></i> </div> <div class="content"> <div class="header">Customers</div> <div class="description"> 316 </div> </div> <button class="ui button"> View </button> </div> <div class="card" style="margin: 1%"> <div class="ui green label" style="font-size: 60px;padding-left: 35%"> <i class="fas fa-box-open"></i> </div> <div class="content"> <div class="header">Items</div> <div class="description"> 2746 </div> </div> <button class="ui button"> View </button> </div> <div class="card" style="margin: 1%"> <div class="ui pink label" style="font-size: 60px;padding-left: 35%"> <i class="fas fa-cart-plus"></i> </div> <div class="content"> <div class="header">Orders</div> <div class="description"> 511 </div> </div> <button class="ui button"> View </button> </div> <div class="card" style="margin: 1%"> <div class="ui teal label" style="font-size: 60px;padding-left: 35%"> <i class="fas fa-comments"></i> </div> <div class="content"> <div class="header">New Messages</div> <div class="description"> 189 </div> </div> <button class="ui button"> <a> View </a> </button> </div> </div> <div style="margin: 10%;margin-top: 5%"> <h3 class="ui top attached header"> <i class="fas fa-chart-line" style="font-size: 30px"></i> Sales </h3> <div class="ui attached segment"> <div class="row"> <div class="col-lg-6"> <img src="images/sales.PNG" width="500px"> </div> <div class="col-lg-6"> <img src="images/2017.PNG" width="500px"> </div> </div> <div class="row"> <div class="col-lg-6"> <img src="images/2016.PNG" width="500px"> </div> <div class="col-lg-6"> <img src="images/2015.PNG" width="500px"> </div> </div> </div> </div> </div> <div id="customerPanel" style="display: none; "> <button type="button" class="btn btn-outline-secondary" style="margin: 10px" id="viewCustomers"> <i class="fas fa-arrow-circle-left"></i> View Customers </button> <label class="btn-primary" style="padding: 5px;border: 2px solid white; width: 100%">NEW CUSTOMER</label> <form style="margin: 1%;width: 98%"> <div class="form-group row"> <label for="inputNewID" class="col-sm-2 col-form-label">Customer ID</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewID" placeholder="Customer ID"> </div> </div> <div class="form-group row"> <label for="inputNewFirstName" class="col-sm-2 col-form-label">First Name</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewFirstName" placeholder="First Name"> </div> </div> <div class="form-group row"> <label for="inputNewLastName" class="col-sm-2 col-form-label">Last Name</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewLastName" placeholder="Last Name"> </div> </div> <div class="form-group row"> <label for="inputNewEmail" class="col-sm-2 col-form-label">Email</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewEmail" placeholder="Email"> </div> </div> <div class="form-group row"> <label for="inputNewAddress" class="col-sm-2 col-form-label">Address</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewAddress" placeholder="Address"> </div> </div> <div class="form-group row"> <label for="inputNewTelephone" class="col-sm-2 col-form-label">Telephone</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewTelephone" placeholder="Telephone"> </div> </div> </form> <div style="margin-left: 80%" class="buttons"> <button type="button" class="btn btn-outline-primary">Save</button> <button type="button" class="btn btn-outline-warning">Clear</button> </div> </div> <div id="customerViewPanel" style="display: none"> <form class="form-inline my-2 my-lg-0" style="margin: 10px"> <input class="form-control mr-sm-2" type="search" placeholder="Search Customers" aria-label="Search"> <button class="btn btn-outline-primary my-2 my-sm-0" type="button">Search</button> <button class="btn btn-outline-dark my-2 my-sm-0" type="button" id="addNewCustomer" style="margin-left: 65%">+ Add new Customer</button> </form> <table class="table table-hover" style="margin: 1%;width: 98%"> <thead class="thead-light"> <tr> <th scope="col"></th> <th scope="col">Customer ID</th> <th scope="col">First Name</th> <th scope="col">Last Name</th> <th scope="col">Email</th> <th scope="col">Address</th> <th scope="col">Telephone</th> </tr> </thead> <tbody> <tr> <td> <input type="radio"> </td> <th scope="row">C001</th> <td>Angel Jude</td> <td>Suarez</td> <td>suarez081119@gmail.com</td> <td>Himamaylan City</td> <td>09272777334</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">C002</th> <td>Adones</td> <td>Evangelista</td> <td>adones@gmail.com</td> <td>Kabankalan City</td> <td>09123456789</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">C003</th> <td>Adrian</td> <td>Mercurio</td> <td>adrian@gmail.com</td> <td>Himamaylan City</td> <td>0987654321</td> </tr> </tbody> </table> <div style="margin-left: 80%" class="buttons"> <a href="Customer-Update.html"> <button type="button" class="btn btn-outline-success"> Update </button> </a> <button type="button" class="btn btn-outline-danger">Delete</button> </div> </div> <div id="customerUpdatePanel" style="display: none"> <button type="button" class="btn btn-outline-secondary" style="margin: 10px" id="viewCustomersFromUpdate"> <i class="fas fa-arrow-circle-left"></i> View Customers </button> <label class="btn-primary" style="padding: 5px;border: 2px solid white; width: 100%">UPDATE CUSTOMER</label> <form style="margin: 1%;width: 98%"> <div class="form-group row"> <label for="inputID" class="col-sm-2 col-form-label">Customer ID</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputID" placeholder="Customer ID"> </div> </div> <div class="form-group row"> <label for="inputFirstName" class="col-sm-2 col-form-label">First Name</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputFirstName" placeholder="First Name"> </div> </div> <div class="form-group row"> <label for="inputLastName" class="col-sm-2 col-form-label">Last Name</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputLastName" placeholder="Last Name"> </div> </div> <div class="form-group row"> <label for="inputEmail" class="col-sm-2 col-form-label">Email</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputEmail" placeholder="Email"> </div> </div> <div class="form-group row"> <label for="inputAddress" class="col-sm-2 col-form-label">Address</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputAddress" placeholder="Address"> </div> </div> <div class="form-group row"> <label for="inputTelephone" class="col-sm-2 col-form-label">Telephone</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputTelephone" placeholder="Telephone"> </div> </div> </form> <div style="margin-left: 80%" class="buttons"> <button type="button" class="btn btn-outline-success">Update</button> </div> </div> <div id="itemPanel" style="display: none"> <button type="button" class="btn btn-outline-secondary" style="margin: 10px" id="viewItems"> <i class="fas fa-arrow-circle-left"></i> View Items </button> <label class="btn-primary" style="padding: 5px;border: 2px solid white; width: 100%">NEW ITEM</label> <form style="margin: 1%;width: 98%"> <div class="form-group row"> <label for="inputNewCode" class="col-sm-2 col-form-label">Item Code</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewCode" placeholder="I001"> </div> </div> <div class="form-group row"> <label for="inputNewName" class="col-sm-2 col-form-label">Item Name</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewName" placeholder="Item Name"> </div> </div> <div class="form-group row"> <label for="inputNewPrice" class="col-sm-2 col-form-label">Price</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewPrice" placeholder="Rs.1000.00"> </div> </div> <div class="form-group row"> <label for="inputNewAddedDate" class="col-sm-2 col-form-label">Added Date</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewAddedDate" placeholder="2019/01/01"> </div> </div> <div class="form-group row"> <label for="inputNewTotalQuantity" class="col-sm-2 col-form-label">Total Quantity</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewTotalQuantity" placeholder="100"> </div> </div> <div class="form-group row"> <label for="inputNewReturned" class="col-sm-2 col-form-label">Returned</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputNewReturned" placeholder="00"> </div> </div> </form> <div style="margin-left: 80%" class="buttons"> <button type="button" class="btn btn-outline-primary">Save</button> <button type="button" class="btn btn-outline-warning">Clear</button> </div> </div> <div id="itemViewPanel" style="display: none"> <form class="form-inline my-2 my-lg-0" style="margin: 10px"> <input class="form-control mr-sm-2" type="search" placeholder="Search Items" aria-label="Search"> <button class="btn btn-outline-primary my-2 my-sm-0" type="button">Search</button> <button class="btn btn-outline-dark my-2 my-sm-0" type="button" id="addNewItem" style="margin-left: 65%">+ Add New Item</button> </form> <table class="table table-hover" style="margin: 1%;width: 98%"> <thead class="thead-light"> <tr> <th scope="col"></th> <th scope="col">Item Code</th> <th scope="col">Item Name</th> <th scope="col">Price</th> <th scope="col">Added Date</th> <th scope="col">Total</th> <th scope="col">Sold</th> <th scope="col">Returned</th> <th scope="col">Left</th> <th scope="col">Supplier ID</th> </tr> </thead> <tbody> <tr> <td> <input type="radio"> </td> <th scope="row">I001</th> <td>School Bag</td> <td>Rs.1570.00</td> <td>05/03/2019</td> <td>100</td> <td>46</td> <td>0</td> <td>54</td> <td>Sup_0023</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">I001</th> <td>School Bag</td> <td>Rs.1570.00</td> <td>05/03/2019</td> <td>100</td> <td>46</td> <td>0</td> <td>54</td> <td>Sup_0023</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">I001</th> <td>School Bag</td> <td>Rs.1570.00</td> <td>05/03/2019</td> <td>100</td> <td>46</td> <td>0</td> <td>54</td> <td>Sup_0023</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">I001</th> <td>School Bag</td> <td>Rs.1570.00</td> <td>05/03/2019</td> <td>100</td> <td>46</td> <td>0</td> <td>54</td> <td>Sup_0023</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">I001</th> <td>School Bag</td> <td>Rs.1570.00</td> <td>05/03/2019</td> <td>100</td> <td>46</td> <td>0</td> <td>54</td> <td>Sup_0023</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">I001</th> <td>School Bag</td> <td>Rs.1570.00</td> <td>05/03/2019</td> <td>100</td> <td>46</td> <td>0</td> <td>54</td> <td>Sup_0023</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">I001</th> <td>School Bag</td> <td>Rs.1570.00</td> <td>05/03/2019</td> <td>100</td> <td>46</td> <td>0</td> <td>54</td> <td>Sup_0023</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">I001</th> <td>School Bag</td> <td>Rs.1570.00</td> <td>05/03/2019</td> <td>100</td> <td>46</td> <td>0</td> <td>54</td> <td>Sup_0023</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">I001</th> <td>School Bag</td> <td>Rs.1570.00</td> <td>05/03/2019</td> <td>100</td> <td>46</td> <td>0</td> <td>54</td> <td>Sup_0023</td> </tr> <tr> <td> <input type="radio"> </td> <th scope="row">I001</th> <td>School Bag</td> <td>Rs.1570.00</td> <td>05/03/2019</td> <td>100</td> <td>46</td> <td>0</td> <td>54</td> <td>Sup_0023</td> </tr> </tbody> </table> <div style="margin-left: 80%" class="buttons"> <a href="Item-Update.html"> <button type="button" class="btn btn-outline-success"> Update </button> </a> <button type="button" class="btn btn-outline-danger">Delete</button> </div> </div> <div id="itemUpdatePanel" style="display: none"> <button type="button" class="btn btn-outline-secondary" style="margin: 10px" id="viewItemsFromUpdate"> <i class="fas fa-arrow-circle-left"></i> View Items </button> <label class="btn-primary" style="padding: 5px;border: 2px solid white; width: 100%">UPDATE ITEM</label> <form style="margin: 1%;width: 98%"> <div class="form-group row"> <label for="inputCode" class="col-sm-2 col-form-label">Item Code</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputCode" placeholder="I001"> </div> </div> <div class="form-group row"> <label for="inputName" class="col-sm-2 col-form-label">Item Name</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputName" placeholder="Item Name"> </div> </div> <div class="form-group row"> <label for="inputPrice" class="col-sm-2 col-form-label">Price</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputPrice" placeholder="Rs.1000.00"> </div> </div> <div class="form-group row"> <label for="inputAddedDate" class="col-sm-2 col-form-label">Added Date</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputAddedDate" placeholder="2019/01/01"> </div> </div> <div class="form-group row"> <label for="inputTotalQuantity" class="col-sm-2 col-form-label">Total Quantity</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputTotalQuantity" placeholder="100"> </div> </div> <div class="form-group row"> <label for="inputReturned" class="col-sm-2 col-form-label">Returned</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputReturned" placeholder="00"> </div> </div> </form> <div style="margin-left: 80%" class="buttons"> <button type="button" class="btn btn-outline-success">Update</button> </div> </div> <div id="orderPanel" style="display: none"> <button type="button" class="btn btn-outline-secondary" style="margin: 10px" id="viewOrders"> <i class="fas fa-arrow-circle-left"></i> View Orders </button> <label class="btn-primary" style="padding: 5px;border: 2px solid white; width: 100%">NEW ORDER</label> <form style="width: 39%" id="orderForm"> <label class="btn-secondary" style="padding: 5px; width: 100%">ORDER DETAILS</label> <div class="form-group row"> <label for="inputOrderID" class="col-sm-2 col-form-label">Order ID</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputOrderID" placeholder="Ord-00123"> </div> </div> <div class="form-group row"> <label for="inputDate" class="col-sm-2 col-form-label">Date</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputDate" placeholder="01/01/2019"> </div> </div> </form> <form style="width: 59%" id="customerForm"> <label class="btn-secondary" style="padding: 5px;border: 2px solid white; width: 100%">CUSTOMER DETAILS</label> <div class="form-group row"> <label for="inputCustomerID4Order" class="col-sm-2 col-form-label">Customer ID</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputCustomerID4Order" placeholder="C00123"> </div> </div> <div class="form-group row"> <label for="inputFirstName4Order" class="col-sm-2 col-form-label">First Name</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputFirstName4Order" placeholder="First Name"> </div> </div> <div class="form-group row"> <label for="inputLastName4Order" class="col-sm-2 col-form-label">Last Name</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputLastName4Order" placeholder="Last Name"> </div> </div> </form> <label class="btn-secondary" style="position: absolute;top: 65%;margin-left: 1%; padding: 5px;border: 2px solid white; width: 99%">ITEM DETAILS</label> <form style="margin: 1%;width: 50%" id="itemForm"> <div class="form-group row"> <label for="inputItemCode" class="col-sm-2 col-form-label">Item Code</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputItemCode" placeholder="I-00123"> </div> </div> <div class="form-group row"> <label for="inputItemName" class="col-sm-2 col-form-label">Item Name</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputItemName" placeholder="Item Name"> </div> </div> <div class="form-group row"> <label for="inputAvailableQty" class="col-sm-2 col-form-label">Available Quantity</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputAvailableQty" placeholder="100"> </div> </div> <div class="form-group row"> <label for="inputUnitPrice" class="col-sm-2 col-form-label">Unit Price</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputUnitPrice" placeholder="Rs.1000.00"> </div> </div> <div class="form-group row"> <label for="inputQty" class="col-sm-2 col-form-label">Quantity</label> <div class="col-sm-10"> <input type="text" class="form-control" id="inputQty" placeholder="10"> </div> </div> <div> <button type="button" class="btn btn-primary" style="margin-left: 90%"> Add </button> </div> </form> <table class="table table-hover"style="margin: 1%;width: 46%" id="itemTable"> <thead class="thead-light"> <tr> <th scope="col">ITEM CODE</th> <th scope="col">ITEM NAME</th> <th scope="col">UNIT PRICE</th> <th scope="col">QUANTITY</th> <th scope="col">TOTAL</th> </tr> </thead> <tbody> <tr> <th scope="row">I-001</th> <td>School Bag</td> <td>Rs.12000.00</td> <td>01</td> <td>Rs.12000.00</td> </tr> <tr> <th scope="row">I-001</th> <td>School Bag</td> <td>Rs.12000.00</td> <td>01</td> <td>Rs.12000.00</td> </tr> <tr> <th scope="row">I-001</th> <td>School Bag</td> <td>Rs.12000.00</td> <td>01</td> <td>Rs.12000.00</td> </tr> <tr style="color: red"> <td colspan="4" style="text-align: right"> <b>Total</b> </td> <td><b>Rs.36000.00</b></td> </tr> </tbody> </table> <div class="container" style="position: absolute; top: 125%; margin: 10px"> <div class="row"> <div class="col-lg-4"> <label class="lbl">Total : Rs.</label> <input type="text"> </div> <div class="col-lg-4"> <label class="lbl">Discount : Rs.</label> <input type="text"> </div> <div class="col-lg-4"> <label class="lbl">Sub Total : Rs.</label> <input type="text"> </div> </div> </div> <button type="button" class="btn-lg btn-primary" id="btnProceed">Proceed</button> <button type="button" class="btn-lg btn-warning" id="btnClear">Clear</button> </div> <div id="orderViewPanel" style="display: none"> <form class="form-inline my-2 my-lg-0" style="margin: 10px"> <input class="form-control mr-sm-2" type="search" placeholder="Search Order" aria-label="Search"> <button class="btn btn-outline-primary my-2 my-sm-0" type="button">Search</button> <button class="btn btn-outline-dark my-2 my-sm-0" type="button" id="addNewOrder" style="margin-left: 65%">+ Add New Order</button> </form> <table class="table table-hover"style="margin: 1%;width: 98%"> <thead class="thead-light"> <tr> <th scope="col">Order ID</th> <th scope="col">Order Date</th> <th scope="col">Customer ID</th> <th scope="col">Total</th> </tr> </thead> <tbody> <tr> <th scope="row">Ord-001</th> <td>02-04-2019</td> <td>C001</td> <td>Rs.12000.00</td> </tr> <tr> <th scope="row">Ord-002</th> <td>02-04-2019</td> <td>C001</td> <td>Rs.12000.00</td> </tr> <tr> <th scope="row">Ord-003</th> <td>02-04-2019</td> <td>C001</td> <td>Rs.12000.00</td> </tr> <tr> <th scope="row">Ord-004</th> <td>02-04-2019</td> <td>C001</td> <td>Rs.12000.00</td> </tr> <tr> <th scope="row">Ord-005</th> <td>02-04-2019</td> <td>C001</td> <td>Rs.12000.00</td> </tr> </tbody> </table> </div> <!-- Optional JavaScript --> <script src="js/jquery-3.4.1.min.js"></script> <script src="js/Script.js"></script> <script src="js/bootstrap.js"></script> <script src="js/bootstrap.bundle.js"></script> </body> </html> |
Project Output

ABOUT PROJECT | PROJECT DETAILS |
---|---|
Project Name : | Point of Sale Javascript |
Project Platform : | JavaScript |
Programming Language Used: | php,javascript,html,css |
Developer Name : | itsourcecode.com |
IDE Tool (Recommended): | Sublime |
Project Type : | Web Application |
Database: | None |
Upload Date: | July 28, 2021 |
Run Quick Virus Scan for secure Download
Run Quick Scan for secure DownloadDownloadable Source Code
Summary
This JavaScript Project With Source Code is simply in HTML, CSS, and JavaScript. To start creating this Simple Javascript Project With Source Code, make sure that you have basic knowledge in HTML, CSS and Javascript. In this Javascript project also includes a downloadable source code for free.
Related Articles
- Todo List In JavaScript With Source Code
- Currency Converter Project in JavaScript with Source Code
- Calculator In JavaScript Source Code
- [SOLVED] How To Make A Live Chat In JavaScript With Source Code
Inquiries
If you have any questions or suggestions about Point of Sale Javascript With Source Code , please feel free to leave a comment below.
Hello, I see the code is fine, I would like to know the password to unzip the files.