checkout.html 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <div class="row ">
  2. <div class="col-md-4">
  3. <h3>Offene Rechnungen</h3>
  4. <table class="table table-striped">
  5. <tr>
  6. <th class="normal">Datum</th>
  7. <th class="normal">Kasse</th>
  8. <th class="normal">Anz. Art.</th>
  9. <th class="normal text-right">Gesamt-Preis</th>
  10. <th></th>
  11. </tr>
  12. <tr ng-repeat="invoice in filterInvoices(0)" >
  13. <td class="normal">{{invoice.invoice_date|datum}}</td>
  14. <td>
  15. <span class="label label-default pos{{invoice.pos_id}}-bg">{{invoice.pos_id}}</span>
  16. </td>
  17. <td class="text-right">{{invoice.line_count}}</td>
  18. <td class="text-right">{{invoice.total|euro}}</td>
  19. <td>
  20. <button type="button" class="btn btn-default" data-toggle="modal" data-target="#invoiceModal" ng-click="loadInvoice(invoice.invoice_number)">
  21. <i class="glyphicon glyphicon-shopping-cart"></i>
  22. </button>
  23. </td>
  24. </tr>
  25. </table>
  26. <br/><br/>
  27. <h3>Bezahlte Rechnungen</h3>
  28. <table class="table table-striped">
  29. <tr>
  30. <th></th>
  31. <th></th>
  32. <th class="normal">Datum</th>
  33. <th class="normal">Kasse</th>
  34. <th class="normal">Anz. Art.</th>
  35. <th class="normal text-right">Gesamt-Preis</th>
  36. <th class="normal text-right">Gegeben<br/>Rückgeld</th>
  37. </tr>
  38. <tr ng-repeat="invoice in filterInvoices(-1) | orderBy:'-invoice_date'" >
  39. <td><button type="button" class="btn" data-toggle="modal" data-target="#invoiceModal" ng-click="loadInvoice(invoice.invoice_number)"><i class="glyphicon glyphicon-pencil"></i></button></td>
  40. <td>
  41. <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>
  42. <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>
  43. </td>
  44. <td class="normal">{{invoice.invoice_date|datum}}</td>
  45. <td>
  46. <span class="label label-default pos{{invoice.pos_id}}-bg">{{invoice.pos_id}}</span>
  47. </td>
  48. <td class="text-right">{{invoice.line_count}}</td>
  49. <td class="text-right">{{invoice.total|euro}}</td>
  50. <td class="text-right" ng-show="invoice.checkout==2">
  51. <i class="glyphicon glyphicon-credit-card"></i>
  52. </td>
  53. <td class="normal text-right" ng-show="invoice.checkout==1">{{invoice.paid|euro}}<br/>{{(invoice.paid-invoice.total)|euro}}</td>
  54. </tr>
  55. <tr>
  56. <td></td>
  57. <td></td>
  58. <th class="normal">Kassenstand</th>
  59. <td></td>
  60. <td></td>
  61. <th class="text-right">{{total(1)|euro}}</th>
  62. <td class="text-right"></td>
  63. </tr>
  64. <tr>
  65. <td></td>
  66. <td></td>
  67. <th class="normal">Konto</th>
  68. <td></td>
  69. <td></td>
  70. <th class="text-right">{{total(2)|euro}}</th>
  71. <td class="text-right"></td>
  72. </tr>
  73. </table>
  74. </div>
  75. </div>
  76. <div class="modal fade" tabindex="-1" role="dialog" aria-labelledby="inactiveLabel" id="invoiceModal">
  77. <div class="modal-dialog modal-lg" role="document">
  78. <div class="modal-content">
  79. <div class="modal-header">
  80. <h4 class="modal-title" id="inactiveLabel">Bezahlvorgang</h4>
  81. </div>
  82. <div class="modal-body">
  83. <table class="table table-striped">
  84. <tr class="warning">
  85. <th class="col-md-1"># {{currentInvoice.invoice_number}}</th>
  86. <td class="col-md-2" colspan="3">
  87. {{currentInvoice.details.length}} Artikel
  88. </td>
  89. <th class="col-md-1 text-right big">
  90. {{invoiceTotal()|euro}} €
  91. </th>
  92. </tr>
  93. <tr ng-show="currentInvoice.checkout==0">
  94. <td colspan="3"></td>
  95. <td>
  96. <button type="button" class="btn btn-lg btn-primary" ng-click="setCheckout(2)">
  97. <i class="glyphicon glyphicon-credit-card"></i> Karte
  98. </button>
  99. </td>
  100. <td>
  101. <button type="button" class="btn btn-lg btn-info" ng-click="setCheckout(1)">
  102. <i class="glyphicon glyphicon-piggy-bank"></i> Bar
  103. </button>
  104. </td>
  105. </tr>
  106. <tr ng-show="currentInvoice.checkout==1">
  107. <td><i class="glyphicon glyphicon-download-alt"></i></td>
  108. <td colspan="3">
  109. Von Kunde erhalten (/)
  110. </td>
  111. <td class="text-right">
  112. <input id="paid" class="form-control text-right" type="text" ng-model="currentInvoice.paid" data-price/>
  113. </td>
  114. </tr>
  115. <tr ng-show="currentInvoice.checkout==1">
  116. <td><i class="glyphicon glyphicon-log-out"></i></td>
  117. <th colspan="3">
  118. Rückgeld
  119. </th>
  120. <td class="text-right">
  121. {{currentChange()|euro}} €
  122. </td>
  123. </tr>
  124. <tr ng-show="currentInvoice.checkout!=0">
  125. <td><i class="glyphicon glyphicon-print"></i></td>
  126. <td colspan="3">
  127. Drucken?
  128. </td>
  129. <td class="text-right">
  130. <button type="button" class="btn btn-warning" ng-click="printInvoice(currentInvoice.invoice_number)" ng-show="currentInvoice.printed==0"><i class="glyphicon glyphicon-print"></i></button>
  131. <button type="button" class="btn btn-success" ng-click="printInvoice(currentInvoice.invoice_number)" ng-show="currentInvoice.printed==1"><i class="glyphicon glyphicon-check"></i></button>
  132. </td>
  133. </tr>
  134. <tr ng-show="currentInvoice.checkout!=0">
  135. <td><i class="glyphicon glyphicon-download-alt"></i></td>
  136. <td colspan="3">
  137. Zahlung erfolgreich?
  138. </td>
  139. <td class="text-right">
  140. <button type="button" class="btn btn-lg btn-success" data-toggle="modal" data-target="#invoiceModal" ng-click="performCheckout(currentInvoice)">
  141. <i class="glyphicon glyphicon-ok"></i> Ja
  142. </button>
  143. <button type="button" class="btn btn-lg btn-danger" ng-click="currentInvoice.checkout=0">
  144. <i class="glyphicon glyphicon-remove"></i> Nein
  145. </button>
  146. </td>
  147. </tr>
  148. <tr>
  149. <th></th>
  150. <th class="text-right">Pos</th>
  151. <th>Artikel</th>
  152. <th class="text-right">Preis</th>
  153. <th></th>
  154. </tr>
  155. <tr ng-repeat="b in currentInvoice.details">
  156. <td></td>
  157. <td class="normal text-right">
  158. {{currentInvoice.details.length-$index}}
  159. </td>
  160. <td class="normal">
  161. {{b.item}}
  162. </td>
  163. <td class="normal text-right">
  164. {{b.price}}
  165. </td>
  166. <td></td>
  167. </tr>
  168. </table>
  169. </div>
  170. </div>
  171. </div>
  172. </div>