pos.html 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <div class="row ">
  2. <div class="col-md-7">
  3. <table class="table table-striped">
  4. <tr class="warning">
  5. <th class="col-md-1">Gesamt</th>
  6. <td class="col-md-2">
  7. {{currentInvoice.details.length}} Artikel
  8. </td>
  9. <th class="col-md-1 text-right big">
  10. {{invoiceTotal()|euro}} €
  11. </th>
  12. </tr>
  13. <tr>
  14. <td><i class="glyphicon glyphicon-download-alt"></i></td>
  15. <td>
  16. Von Kunde erhalten (/)
  17. </td>
  18. <td class="text-right">
  19. <input id="paid" class="form-control text-right" type="text" ng-model="currentInvoice.paid" ng-keypress="keyPressPaid($event)" data-price/>
  20. </td>
  21. </tr>
  22. <tr ng-show="currentInvoice.valid">
  23. <td><i class="glyphicon glyphicon-log-out"></i></td>
  24. <th>
  25. Rückgeld
  26. </th>
  27. <td class="text-right">
  28. {{currentChange()|euro}} €
  29. </td>
  30. </tr>
  31. <tr>
  32. <th>Pos</th>
  33. <th>Artikel</th>
  34. <th class="text-right">Preis</th>
  35. </tr>
  36. <tr ng-repeat="b in currentInvoice.details ">
  37. <td>
  38. {{b.line_number}}
  39. </td>
  40. <td>
  41. <input class="form-control item monospace" type="text" required item ng-model="b.item" ng-keypress="keyPressItem($event, $index)"/>
  42. </td>
  43. <td class="text-right">
  44. <input class="form-control text-right price" type="text" required ng-model="b.price" ng-keypress="keyPressPrice($event, $index)" data-price />
  45. </td>
  46. </tr>
  47. </table>
  48. </div>
  49. <div class="col-md-5">
  50. <table class="table">
  51. <tr>
  52. <td style="width: 180px; font-size: 30pt; text-align: center;">
  53. Kasse Nr. {{postParams.pos_id}}
  54. </td>
  55. <td>
  56. Kassierer: <input class="form-control" type="text" ng-model="postParams.cashier"/>
  57. </td>
  58. </tr>
  59. </table>
  60. </div>
  61. <div class="col-md-5">
  62. <table class="table table-striped">
  63. <tr>
  64. <th></th>
  65. <th></th>
  66. <th class="normal">Datum</th>
  67. <th class="normal">Anz. Art.</th>
  68. <th class="normal text-right">Gesamt-Preis</th>
  69. <th class="normal text-right">Gegeben<br/>Rückgeld</th>
  70. </tr>
  71. <tr ng-repeat="invoice in offlineInvoices | orderBy:'-invoice_date' " >
  72. <td></td>
  73. <td></td>
  74. <td class="normal">{{invoice.invoice_date|datum}}</td>
  75. <td class="text-right">{{invoice.line_count}}</td>
  76. <td class="text-right">{{invoice.total|euro}}</td>
  77. <td class="normal text-right">{{invoice.paid|euro}}<br/>{{(invoice.paid-invoice.total)|euro}}</td>
  78. </tr>
  79. <tr ng-repeat="invoice in invoices | orderBy:'-invoice_date' | limitTo: 15" >
  80. <td><button type="button" class="btn" ng-click="loadInvoice(invoice.invoice_number)"><i class="glyphicon glyphicon-pencil"></i></button></td>
  81. <td>
  82. <button type="button" class="btn btn-warning" ng-click="printInvoice(invoice.invoice_number)" ng-show="invoice.printed==0"><i class="glyphicon glyphicon-print"></i></button>
  83. <button type="button" class="btn btn-success" ng-click="printInvoice(invoice.invoice_number)" ng-show="invoice.printed==1"><i class="glyphicon glyphicon-check"></i></button>
  84. </td>
  85. <td class="normal">{{invoice.invoice_date|datum}}</td>
  86. <td class="text-right">{{invoice.line_count}}</td>
  87. <td class="text-right">{{invoice.total|euro}}</td>
  88. <td class="normal text-right">{{invoice.paid|euro}}<br/>{{(invoice.paid-invoice.total)|euro}}</td>
  89. </tr>
  90. <tr>
  91. <td></td>
  92. <td></td>
  93. <th class="normal">Kassenstand</th>
  94. <td></td>
  95. <th class="text-right">{{total()|euro}}</th>
  96. <td class="text-right"></td>
  97. </tr>
  98. </table>
  99. </div>
  100. </div>
  101. <div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="disabledLabel" ng-show="postParams.disabled=1">
  102. <div class="modal-dialog modal-sm" role="document">
  103. <div class="modal-content">
  104. <div class="modal-header">
  105. <h4 class="modal-title" id="disabledLabel">Kasse nicht verfügbar</h4>
  106. </div>
  107. <div class="modal-body">
  108. Die Instanz wird bereits von einem anderen PC genutzt oder die Kasse wurde geschlossen.
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. <div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="inactiveLabel" ng-show="postParams.active=0">
  114. <div class="modal-dialog modal-sm" role="document">
  115. <div class="modal-content">
  116. <div class="modal-header">
  117. <h4 class="modal-title" id="inactiveLabel">Kasse gesperrt</h4>
  118. </div>
  119. <div class="modal-body">
  120. Die Kasse ist gerade gesperrt.
  121. </div>
  122. <div class="modal-footer">
  123. <button type="button" class="btn btn-default" ng-click="setActive()">Kasse entsperren</button>
  124. <button type="button" class="btn btn-danger" ng-click="closePos()">Kasse schließen</button>
  125. </div>
  126. </div>
  127. </div>
  128. </div>
  129. <div id="warningModal" class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="warningLabel" aria-hidden="true" ng-keypress="keyPressModal($event)">
  130. <div class="modal-dialog modal-sm" role="document">
  131. <div class="modal-content">
  132. <div class="modal-header">
  133. <h4 class="modal-title" id="warningLabel">Warnung</h4>
  134. </div>
  135. <div class="modal-body">
  136. {{warningInfo[warning]}}!
  137. </div>
  138. <div class="modal-footer">
  139. <button type="button" class="btn btn-danger" data-dismiss="modal">OK</button>
  140. </div>
  141. </div>
  142. </div>
  143. </div>