Rushabh Mehta | a9ba5ef | 2014-12-19 16:20:32 +0530 | [diff] [blame] | 1 | <div class="pos"> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 2 | <div class="row"> |
| 3 | <div class="col-sm-5 pos-bill-wrapper"> |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 4 | <div class="col-sm-12"><h6 class="form-section-heading uppercase">{{ __("Item Cart") }}</h6></div> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 5 | <div class="pos-bill"> |
| 6 | <div class="item-cart"> |
| 7 | <div class="pos-list-row pos-bill-header text-muted h6"> |
| 8 | <span class="cell subject"> |
| 9 | <!--<input class="list-select-all" type="checkbox" title="{%= __("Select All") %}">--> |
| 10 | {{ __("Item Name")}} |
| 11 | </span> |
| 12 | <span class="cell text-right">{{ __("Quantity") }}</span> |
| 13 | <span class="cell text-right">{{ __("Discount") }}</span> |
| 14 | <span class="cell text-right">{{ __("Rate") }}</span> |
| 15 | </div> |
| 16 | <div class="item-cart-items"> |
| 17 | <div class="no-items-message text-extra-muted"> |
| 18 | <span class="text-center"> |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 19 | <i class="fa fa-2x fa-shopping-cart"></i> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 20 | <p>Tap items to add them here</p> |
| 21 | </span> |
Faris Ansari | 1f261a8 | 2017-03-06 18:01:58 +0530 | [diff] [blame] | 22 | </div> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 23 | <div class="items"> |
| 24 | </div> |
| 25 | </div> |
| 26 | </div> |
| 27 | </div> |
| 28 | <div class="totals-area"> |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 29 | <div class="pos-list-row net-total-area"> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 30 | <div class="cell subject"></div> |
| 31 | <div class="cell"></div> |
| 32 | <div class="cell text-right">{%= __("Net Total") %}</div> |
| 33 | <div class="cell net-total text-right"></div> |
| 34 | </div> |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 35 | <div class="pos-list-row tax-area"> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 36 | <div class="cell subject"></div> |
| 37 | <div class="cell"></div> |
| 38 | <div class="cell text-muted">{%= __("Taxes") %}</div> |
| 39 | <div class="cell text-right tax-table"></div> |
| 40 | </div> |
| 41 | {% if (apply_discount_on) { %} |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 42 | <div class="pos-list-row discount-amount-area"> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 43 | <div class="cell text-muted">{%= __("Discount") %}</div> |
| 44 | <div class="cell discount-field-col"> |
| 45 | <div class="input-group input-group-sm"> |
| 46 | <span class="input-group-addon">%</span> |
| 47 | <input type="text" class="form-control discount-percentage text-right"> |
| 48 | </div> |
| 49 | </div> |
| 50 | <div class="cell discount-field-col"> |
| 51 | <div class="input-group input-group-sm"> |
| 52 | <span class="input-group-addon">{%= get_currency_symbol(currency) %}</span> |
| 53 | <input type="text" class="form-control discount-amount text-right" placeholder="{%= 0.00 %}"> |
| 54 | </div> |
| 55 | </div> |
| 56 | </div> |
| 57 | {% } %} |
| 58 | <div class="pos-list-row grand-total-area" style="border-bottom:1px solid #d1d8dd;"> |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 59 | <div class="cell"> |
| 60 | <a class="collapse-btn"> |
| 61 | <i class="octicon octicon-chevron-down"></i> |
| 62 | </a> |
| 63 | </div> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 64 | <div class="cell text-right bold">{%= __("Grand Total") %}</div> |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 65 | <div class="cell subject grand-total text-right lead"></div> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 66 | </div> |
| 67 | </div> |
| 68 | <div class="row" style="margin-top: 30px"> |
| 69 | <div class="col-xs-6 selected-item"> |
Faris Ansari | 1f261a8 | 2017-03-06 18:01:58 +0530 | [diff] [blame] | 70 | |
| 71 | </div> |
| 72 | <div class="col-xs-6 numeric_keypad" style="display:none"> |
| 73 | {% var chartData = ["Qty", "Disc", "Price"] %} {% for(var i=0; i |
| 74 | <3; i++) { %} <div class="row text-right"> |
| 75 | {% for(var j=i*3; j |
| 76 | <(i+1)*3; j++) { %} <button type="button" class="btn btn-default numeric-keypad" val="{{j+1}}">{{j+1}}</button> |
| 77 | {% } %} |
| 78 | <button type="button" id="pos-item-{{ chartData[i].toLowerCase() }}" class="btn text-center btn-default numeric-keypad pos-operation">{{ chartData[i] }}</button> |
| 79 | </div> |
| 80 | {% } %} |
| 81 | <div class="row text-right"> |
| 82 | <button type="button" class="btn btn-default numeric-keypad numeric-del">Del</button> |
| 83 | <button type="button" class="btn btn-default numeric-keypad" val="0">0</button> |
| 84 | <button type="button" class="btn btn-default numeric-keypad" val=".">.</button> |
| 85 | <button type="button" class="btn btn-primary numeric-keypad pos-pay">Pay</button> |
| 86 | </div> |
rohitwaghchaure | c13dbd4 | 2017-02-01 18:07:22 +0530 | [diff] [blame] | 87 | </div> |
Rohit Waghchaure | b5097ec | 2017-03-01 01:13:09 +0530 | [diff] [blame] | 88 | </div> |
Faris Ansari | 1f261a8 | 2017-03-06 18:01:58 +0530 | [diff] [blame] | 89 | </div> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 90 | <div class="col-sm-5 list-customers"> |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 91 | <div class="col-sm-12"><h6 class="form-section-heading uppercase">{{ __("Customers in Queue") }}</h6></div> |
| 92 | <div class="pos-list-row pos-bill-header"> |
Faris Ansari | 07c9f35 | 2017-03-09 17:03:14 +0530 | [diff] [blame] | 93 | <div class="cell subject"><input class="list-select-all" type="checkbox">{{ __("Customer") }}</div> |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 94 | <div class="cell text-left">{{ __("Status") }}</div> |
Faris Ansari | 07c9f35 | 2017-03-09 17:03:14 +0530 | [diff] [blame] | 95 | <div class="cell text-right">{{ __("Amount") }}</div> |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 96 | <div class="cell text-right">{{ __("Grand Total") }}</div> |
| 97 | </div> |
| 98 | <div class="list-customers-table border-left border-right border-bottom"> |
| 99 | <div class="no-items-message text-extra-muted"> |
| 100 | <span class="text-center"> |
| 101 | <i class="fa fa-2x fa-user"></i> |
| 102 | <p>No Customers yet!</p> |
| 103 | </span> |
| 104 | </div> |
| 105 | </div> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 106 | </div> |
| 107 | <div class="col-sm-7 pos-items-section"> |
Faris Ansari | 4551010 | 2017-03-09 14:43:37 +0530 | [diff] [blame] | 108 | <div class="col-sm-12"><h6 class="form-section-heading uppercase">{{ __("Stock Items") }}</h6></div> |
Faris Ansari | 1f261a8 | 2017-03-06 18:01:58 +0530 | [diff] [blame] | 109 | <div class="row pos-item-area"> |
| 110 | |
| 111 | </div> |
| 112 | <span id="customer-results" style="color:#68a;"></span> |
| 113 | <div class="row pos-item-toolbar hide"> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 114 | <!--<div class="search-item-group col-xs-5"></div>--> |
| 115 | <!--<div class="search-item col-xs-7"></div>--> |
Faris Ansari | 1f261a8 | 2017-03-06 18:01:58 +0530 | [diff] [blame] | 116 | </div> |
| 117 | <div class="item-list-area"> |
| 118 | <div class="pos-list-row pos-bill-header text-muted h6"> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 119 | <div class="cell subject search-item-group"> |
| 120 | <div class="dropdown"> |
| 121 | <a class="text-muted dropdown-toggle" data-toggle="dropdown"><span class="dropdown-text">All Item Groups</span><i class="caret"></i></a> |
| 122 | <ul class="dropdown-menu"> |
| 123 | </ul> |
| 124 | </div> |
| 125 | </div> |
| 126 | <div class="cell search-item"></div> |
Faris Ansari | 1f261a8 | 2017-03-06 18:01:58 +0530 | [diff] [blame] | 127 | </div> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 128 | <div class="app-listing item-list image-view-container"> |
Faris Ansari | 1f261a8 | 2017-03-06 18:01:58 +0530 | [diff] [blame] | 129 | |
| 130 | </div> |
| 131 | </div> |
| 132 | </div> |
Rohit Waghchaure | 1312fe3 | 2017-03-07 14:01:04 +0530 | [diff] [blame] | 133 | </div> |