Browse Source

Farben angepasst. Fehler bei Druck

Robert Bedner 2 years ago
parent
commit
b75408b921
3 changed files with 10 additions and 10 deletions
  1. 1 1
      scripts/controllers/checkout.js
  2. 8 8
      styles/main.css
  3. 1 1
      templates/checkout.html

+ 1 - 1
scripts/controllers/checkout.js

@@ -380,7 +380,7 @@ angular.module('pos')
                     if (response.data.invoice_number !== undefined) {
                         var invoice = $scope.getInvoiceByNumber(invoiceNumber);
                         invoice.printed = 1;
-                        $scope.currentInvoice = null;
+                        // $scope.currentInvoice = null;
                     }
                 });
         };

+ 8 - 8
styles/main.css

@@ -140,12 +140,12 @@ input.ng-pristine {
 }
 
 .pos1 {
-    color: blue;
+    color: red;
 }
 
 .pos1-bg {
     color: white;
-    background-color: blue;
+    background-color: red;
 }
 
 .pos2 {
@@ -158,12 +158,12 @@ input.ng-pristine {
 }
 
 .pos3 {
-    color: red;
+    color: blue;
 }
 
 .pos3-bg {
     color: white;
-    background-color: red;
+    background-color: blue;
 }
 
 .pos4 {
@@ -195,12 +195,12 @@ input.ng-pristine {
 }
 
 .pos7 {
-    color: orange;
+    color: pink;
 }
 
 .pos7-bg {
     color: black;
-    background-color: orange;
+    background-color: pink;
 }
 
 .pos8 {
@@ -213,10 +213,10 @@ input.ng-pristine {
 }
 
 .pos9 {
-    color: pink;
+    color: orange;
 }
 
 .pos9-bg {
     color: black;
-    background-color: pink;
+    background-color: orange;
 }

+ 1 - 1
templates/checkout.html

@@ -39,7 +39,7 @@
                 <th class="normal text-right">Gegeben<br/>Rückgeld</th>
             </tr>
 
-            <tr ng-repeat="invoice in filterInvoices(-1)" >
+            <tr ng-repeat="invoice in filterInvoices(-1) | orderBy:'-invoice_date'" >
                 <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>
                 <td>
                     <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>