dashboard.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <div class="row ">
  2. <div class="col-md-3" ng-repeat="pos in posList">
  3. <table class="table table-striped">
  4. <tr>
  5. <th>{{pos}}</th>
  6. <th></th>
  7. <th class="normal">Datum</th>
  8. <th class="normal">Anz. Art.</th>
  9. <th class="normal text-right">Gesamt-Preis</th>
  10. <th class="normal text-right">Gegeben<br/>Rückgeld</th>
  11. </tr>
  12. <tr ng-repeat="invoice in filterInvoices(pos) | orderBy:'-invoice_date' | limitTo: 5" >
  13. <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>
  14. <td>
  15. <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>
  16. <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>
  17. </td>
  18. <td class="normal">{{invoice.invoice_date|datum}}</td>
  19. <td class="text-right">{{invoice.line_count}}</td>
  20. <td class="text-right">{{invoice.total|euro}}</td>
  21. <td class="normal text-right">{{invoice.paid|euro}}<br/>{{(invoice.paid-invoice.total)|euro}}</td>
  22. </tr>
  23. <tr>
  24. <td></td>
  25. <td></td>
  26. <th class="normal">Kassenstand</th>
  27. <td></td>
  28. <th class="text-right">{{total(pos)|euro}}</th>
  29. <td class="text-right"></td>
  30. </tr>
  31. </table>
  32. <br/><br/>
  33. </div>
  34. </div>
  35. <div class="modal fade" tabindex="-1" role="dialog" aria-labelledby="inactiveLabel" id="invoiceModal">
  36. <div class="modal-dialog modal-lg" role="document">
  37. <div class="modal-content">
  38. <div class="modal-header">
  39. <h4 class="modal-title" id="inactiveLabel">Rechnung bearbeiten</h4>
  40. </div>
  41. <div class="modal-body">
  42. <table class="table table-striped">
  43. <tr class="warning">
  44. <th class="col-md-1">Gesamt</th>
  45. <td class="col-md-2">
  46. {{currentInvoice.details.length}} Artikel
  47. </td>
  48. <th class="col-md-1 text-right big">
  49. {{invoiceTotal()|euro}} €
  50. </th>
  51. </tr>
  52. <tr>
  53. <td><i class="glyphicon glyphicon-download-alt"></i></td>
  54. <td>
  55. Von Kunde erhalten (/)
  56. </td>
  57. <td class="text-right">
  58. <input id="paid" class="form-control text-right" type="text" ng-model="currentInvoice.paid" ng-keypress="keyPressPaid($event)" data-price/>
  59. </td>
  60. </tr>
  61. <tr ng-show="currentInvoice.valid">
  62. <td><i class="glyphicon glyphicon-log-out"></i></td>
  63. <th>
  64. Rückgeld
  65. </th>
  66. <td class="text-right">
  67. {{currentChange()|euro}} €
  68. </td>
  69. </tr>
  70. <tr>
  71. <th>Pos</th>
  72. <th>Artikel</th>
  73. <th class="text-right">Preis</th>
  74. </tr>
  75. <tr ng-repeat="b in currentInvoice.details ">
  76. <td>
  77. {{b.line_number}}
  78. </td>
  79. <td>
  80. <input class="form-control item monospace" type="text" required item ng-model="b.item" ng-keypress="keyPressItem($event, $index)"/>
  81. </td>
  82. <td class="text-right">
  83. <input class="form-control text-right price" type="text" required ng-model="b.price" ng-keypress="keyPressPrice($event, $index)" data-price />
  84. </td>
  85. </tr>
  86. </table>
  87. </div>
  88. <div class="modal-footer">
  89. <button type="button" class="btn btn-danger" ng-click="checkOut()">Änderungen speichern</button>
  90. </div>
  91. </div>
  92. </div>
  93. </div>