Robert Bedner 6 жил өмнө
parent
commit
bb000c399c

+ 2 - 2
api/controllers/RequestController.php

@@ -152,7 +152,7 @@ class RequestController
 	private function posInfos ($data)
 	{
 		$result = array('items' => array(), 'invoices' => array());
-		$q = $this->dbh->query("SELECT item FROM invoice_details WHERE project_id = '{$data['project_id']}' AND item != '000-000' ORDER BY item ");
+		$q = $this->dbh->query("SELECT item FROM invoice_details WHERE project_id = '{$data['project_id']}' AND item NOT IN ('000-000','123-456') ORDER BY item ");
 		if ($q) {
 			$r = $q->fetchAll(PDO::FETCH_ASSOC);
 			$result['items'] = array_column($r, 'item');
@@ -264,7 +264,7 @@ class RequestController
 
 	public function CsvExport ($data)
 	{
-		$data['project_id'] = "1";
+		$data['project_id'] = "3";
 		$q = $this->dbh->query("SELECT seller_id, name, first_name, address, zip_code, place, mail, phone, 0.0 as total, 0.0 as provision, 0.0 as cash_out  
 								FROM sellers WHERE project_id = '{$data['project_id']}' ORDER BY seller_id");
 		

+ 1 - 1
data/footer.txt

@@ -4,7 +4,7 @@
 
 ********************************
       Naechster Flohmarkt:
-   Sonntag,  07. Oktober 2018
+    Sonntag,  14. April 2019
           10 - 12  Uhr
      Kulturhalle  Steinheim
 ********************************

+ 1 - 1
data/header.txt

@@ -1,7 +1,7 @@
 ********************************
  Vorsortierter  Flohmarkt  fuer
    Kinder-  und  Babykleidung 
-      Sonntag,  15.04.2017
+      Sonntag,  07.10.2018
      Kulturhalle  Steinheim
 ********************************
  Familientagesstaette Steinheim

+ 1 - 1
scripts/controllers/dashboard.js

@@ -5,7 +5,7 @@ angular.module('pos')
         var webservice = 'api/?a=pos';
 
         $scope.postParams = {
-            'project_id': "1",
+            'project_id': "3",
             'pos_id': 0,
             'cashier': window.localStorage.getItem("cashier"),
             'token': window.localStorage.getItem("token"),

+ 1 - 1
scripts/controllers/pos.js

@@ -5,7 +5,7 @@ angular.module('pos')
         var webservice = 'api/?a=pos';
 
         $scope.postParams = {
-            'project_id': "1",
+            'project_id': "3",
             'pos_id': $routeParams.id,
             'cashier': window.localStorage.getItem("cashier"),
             'token': window.localStorage.getItem("token"),

+ 3 - 3
scripts/controllers/seller.js

@@ -8,7 +8,7 @@ angular.module('pos')
         $scope.generateSellers = function (count) {
               return _.map(_.range(1, count + 1), function (num) {
                   return {
-                      'project_id': "1",
+                      'project_id': "3",
                       'seller_id': num.toString().padLeft('0', 3),
                       'name': "",
                       'address': "",
@@ -22,13 +22,13 @@ angular.module('pos')
         $scope.sellers = []; // $scope.generateSellers(85);
 
         $scope.save = function () {
-            $http.post(webservice, { 'project_id': "1", 'sellers': $scope.sellers }).then(function (response) {
+            $http.post(webservice, { 'project_id': "3", 'sellers': $scope.sellers }).then(function (response) {
                 $scope.sellers = response.data;
             });
         };
 
         $scope.load = function () {
-            $http.post(webservice, { 'project_id': "1" }).then(function (response) {
+            $http.post(webservice, { 'project_id': "3" }).then(function (response) {
                 $scope.sellers = response.data;
             });
         };