| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501 | 
							- <?php
 
- require_once(dirname(__FILE__)."/../config.php");
 
- if(!function_exists("array_column"))
 
- {
 
- 	function array_column($array,$column_name)
 
- 	{
 
- 		return array_map(function($element) use($column_name){return $element[$column_name];}, $array);
 
- 	}
 
- }
 
- if(!function_exists("printer_write"))
 
- {
 
- 	function printer_write($printer, $text) {
 
- 		shell_exec("echo \"" . $text . "\" > " . $printer);
 
- 	}
 
- }
 
- class RequestController
 
- {
 
- 	private $mdate;
 
- 	private $invoice_date;
 
- 	private $dbh;
 
-     private $project;
 
-     private $project_id;
 
- 	function __construct ($path = "", $path2 = "")
 
- 	{
 
-         date_default_timezone_set('Europe/Berlin');
 
- 		$this->mdate = date('Y-m-d H:i:s', strtotime("now"));
 
- 		$this->invoice_date = date('Y-m-d', strtotime("now"));
 
- 		$this->dbh = new PDO(DB_CONN_STRING, DB_USER, DB_PASSWORD);
 
- 		$this->dbh->setAttribute(PDO::ATTR_CASE, PDO::CASE_LOWER);
 
-         $q = $this->dbh->query("SELECT * FROM projects			 				  
 
-                                 WHERE active = '1' 
 
-                                 ORDER BY project_id DESC
 
-                                 LIMIT 1");
 
- 		$this->project = $q->fetch(PDO::FETCH_ASSOC);
 
-         $this->project_id = $this->project['project_id'];
 
-         
 
- 	}
 
- 	function bootstrap ($data)
 
- 	{
 
- 		$result = array();
 
- 		$action = (isset($_REQUEST['a'])) ? $_REQUEST['a'] : "";
 
- 		switch ($action) {
 
- 			case 'pos_token':
 
- 				$result = $this->posToken($data);
 
- 				break;
 
- 			case 'pos_invoices':
 
- 				$result = $this->posInvoices($data);
 
- 				break;
 
- 			case 'pos_upload':
 
- 				$result = $this->posUpload($data);
 
- 				break;
 
- 			case 'pos_checkout':
 
- 				$result = $this->posCheckout($data);
 
- 				break;
 
-             case 'pos_print':
 
-                 $result = $this->posPrint($data);
 
-                 break;
 
- 			case 'pos_infos':
 
- 				$result = $this->posInfos($data);
 
- 				break;
 
- 			case 'pos_infos2':
 
- 				$result = $this->posInfos2($data);
 
- 				break;
 
- 			case 'pos_cancel':
 
- 				$result = $this->posCancel($data);
 
- 				break;
 
-             case 'projects':
 
- 				$result = $this->projects($data);
 
- 				break;
 
-             case 'sellers':
 
- 				$result = $this->sellers($data);
 
- 				break;
 
- 			default:
 
- 				$result = array("No action defined!");
 
- 				break;
 
- 		}
 
- 		$this->setJsonHeader();
 
- 		echo json_encode($result);
 
- 	}
 
- 	private function setJsonHeader ()
 
- 	{
 
- 		header('Access-Control-Allow-Origin: *');
 
- 		header('Access-Control-Allow-Methods: GET, POST, PUT');
 
- 		header('Access-Control-Allow-Headers: accept, content-type');
 
- 		header('Cache-Control: no-cache, must-revalidate');
 
- 		header('Content-type: application/json');
 
- 	}
 
- 	private function posToken ($data)
 
- 	{
 
- 		$disabled = array('token' => 0, 'active' => 0, 'disabled' => 1);
 
- 		$q = $this->dbh->query("SELECT * FROM pos			 				  
 
- 						  		WHERE pos_id = '{$data['pos_id']}' LIMIT 1");
 
- 		$result = $q->fetch(PDO::FETCH_ASSOC);
 
- 		if (!$result || $result['disabled'] != 0) {
 
- 			return $disabled;
 
- 		}
 
- 		if ($data['token'] == 0) {
 
- 			if ($result['token'] != 0) {
 
- 				return $disabled;
 
- 			}
 
- 			$result['token'] = rand(1, 65000);
 
- 			$result['active'] = 1;
 
- 		} else {
 
- 			if ($data['token'] != $result['token']) {
 
- 				return $disabled;
 
- 			}
 
- 			$result['active'] = ($result['disabled'] == 1) ? 0 : $data['active'];
 
- 			$result['disabled'] = $data['disabled'];
 
- 		}
 
- 		$this->dbh->exec("UPDATE pos SET token = '{$result['token']}', active = '{$result['active']}', disabled = '{$result['disabled']}', mdate = '{$this->mdate}' 
 
- 							   WHERE pos_id = '{$result['pos_id']}' ");
 
- 		return $result;
 
- 	}
 
- 	private function posInvoices ($data)
 
- 	{
 
- 		/*
 
- 		if (!isset($data['params']) || isset($data['params']['token']) || $data['params']['token'] == 0) {
 
- 			return false;
 
- 		}
 
- 		*/
 
- 		if (isset($data['invoice'])) {
 
- 			$d = $data['invoice'];
 
- 			if ($d['invoice_number'] == 0) {
 
- 				$this->dbh->exec("INSERT INTO invoice_header (project_id, pos_id, invoice_date, cashier, line_count, total, paid, mdate, cdate) 
 
- 							   VALUES ( '{$this->project_id}','{$d['pos_id']}',  '{$d['invoice_date']}',
 
- 										'{$d['cashier']}','{$d['line_count']}', '{$d['total']}','{$d['paid']}', 
 
- 										'{$this->mdate}','{$this->mdate}' )");
 
- 				$data['invoice_number'] = $this->dbh->lastInsertId();
 
- 			} else {
 
- 				$data['invoice_number'] = $d['invoice_number'];
 
- 				$this->dbh->exec("UPDATE invoice_header SET
 
- 									pos_id = '{$d['pos_id']}', 
 
- 									invoice_date = '{$d['invoice_date']}', 
 
- 									cashier = '{$d['cashier']}', 
 
- 									line_count = '{$d['line_count']}', 
 
- 									total = '{$d['total']}', 
 
- 									paid = '{$d['paid']}', 
 
- 									mdate = '{$this->mdate}'
 
- 							   WHERE invoice_number = '{$data['invoice_number']}' ");
 
- 			}
 
- 			$this->dbh->exec("DELETE FROM invoice_details
 
- 	 					   WHERE invoice_number = '{$data['invoice_number']}' ");
 
- 			foreach ($d['details'] as $item) {
 
-                 if ($item['item'] != "") {
 
- 				$this->dbh->exec("INSERT INTO invoice_details (project_id, invoice_number, line_number, item, seller_id, item_id, price) 
 
- 										   VALUES ( '{$this->project_id}','{$data['invoice_number']}', '{$item['line_number']}',
 
- 										   			'{$item['item']}','{$item['seller_id']}','{$item['item_id']}', 
 
- 										   	   		'{$item['price']}' )");
 
-                 }
 
- 			}
 
- 		}
 
- 		if (!isset($data['invoice_number'])) {
 
- 			$data['invoice_number'] = $data['invoice']['invoice_number'];
 
- 		}
 
- 		$q = $this->dbh->query("SELECT * FROM invoice_header WHERE invoice_number = '{$data['invoice_number']}' LIMIT 1");
 
- 		$result = $q->fetch(PDO::FETCH_ASSOC);
 
- 		if ($result) {
 
- 			$q = $this->dbh->query("SELECT * FROM invoice_details 
 
- 			                        WHERE invoice_number = '{$data['invoice_number']}' 
 
- 									ORDER BY line_number DESC ");
 
- 			$result['details'] = $q->fetchAll(PDO::FETCH_ASSOC);
 
- 		}
 
- 		return $result;
 
- 	}
 
- 	private function posUpload ($data)
 
- 	{
 
- 		$data = array(
 
- 			'post' => $_POST,
 
- 			'get' => $_GET
 
- 		);
 
- 		$data = json_encode($data, JSON_PRETTY_PRINT);
 
- 		$this->dbh->exec("INSERT INTO logs VALUES ( '{$this->mdate}', 'pos_upload', '{$data}');");
 
- 		$data = array();
 
- 		$total = 0;
 
- 		$items = array();
 
- 		$i = 1;
 
- 		foreach ($_POST as $item => $price) {
 
- 			$split = explode('-', $item);
 
- 			if (count($split) < 2) {
 
- 				$split[] = '000';
 
- 			}
 
- 			$items[] = array(
 
- 				'line_number' => $i,
 
- 				'item' => $item,
 
- 				'seller_id' => $split[0],
 
- 				'item_id' => $split[1],
 
- 				'price' => $price
 
- 			);
 
- 			$i++;
 
- 			$total += $price;
 
- 		}
 
- 		$d = array(
 
- 			'pos_id' => '0',
 
- 			'invoice_date' => $this->mdate,
 
- 			'cashier' => '',
 
- 			'line_count' => count($items),
 
- 			'total' => $total,
 
- 			'paid' => 0,
 
- 			'details' => $items
 
- 		);
 
- 		$d = array_merge($d, $_GET);
 
- 		$this->dbh->exec("INSERT INTO invoice_header (project_id, pos_id, invoice_date, cashier, line_count, total, paid, mdate, cdate) 
 
- 							VALUES ( '{$this->project_id}','{$d['pos_id']}',  '{$d['invoice_date']}',
 
- 				 					'{$d['cashier']}','{$d['line_count']}', '{$d['total']}','{$d['paid']}', 
 
- 				 					'{$this->mdate}','{$this->mdate}' )");
 
- 		$d['invoice_number'] = $this->dbh->lastInsertId();
 
- 		foreach ($d['details'] as $item) {
 
- 			if ($item['item'] != "") {
 
- 			$this->dbh->exec("INSERT INTO invoice_details (project_id, invoice_number, line_number, item, seller_id, item_id, price) 
 
- 									   VALUES ( '{$this->project_id}','{$d['invoice_number']}', '{$item['line_number']}',
 
- 												   '{$item['item']}','{$item['seller_id']}','{$item['item_id']}', 
 
- 													  '{$item['price']}' )");
 
- 			}
 
- 		}
 
- 		// header("Location: {$_SERVER['HTTP_REFERER']}");
 
- 		echo '<html><head><meta name="viewport" content="width=device-width, initial-scale=1"></head>';
 
- 		echo "<body><pre>" . $this->printFormat($d) . "</pre><br/>";
 
- 		echo "<form action=\"" . $_SERVER['HTTP_REFERER'] . "\" method=\"POST\"><input type=\"submit\" value=\"Nächster Kunde\"/></form></body></html>";
 
- 		exit();
 
- 	}
 
- 	private function posInfos ($data)
 
- 	{
 
- 		$result = array('items' => array(), 'invoices' => array());
 
- 		$q = $this->dbh->query("SELECT item FROM invoice_details 
 
- 		                        WHERE project_id = '{$this->project_id}' AND item NOT IN ('000-000','123-456') AND cancelled = 0 
 
- 								ORDER BY item ");
 
- 		if ($q) {
 
- 			$r = $q->fetchAll(PDO::FETCH_ASSOC);
 
- 			$result['items'] = array_column($r, 'item');
 
- 		}
 
- 		if ($data['pos_id'] == 0) {
 
-             $q = $this->dbh->query("SELECT * FROM `view_invoice_header` a
 
- 								    WHERE a.project_id = '{$this->project_id}' 
 
- 									ORDER BY a.invoice_number ");
 
- 		    
 
-         } else {
 
-             $q = $this->dbh->query("SELECT * FROM `view_invoice_header` a
 
- 								    WHERE a.project_id = '{$this->project_id}' AND a.pos_id = '{$data['pos_id']}' 
 
- 									ORDER BY a.invoice_number ");
 
-         }
 
- 		if ($q) {
 
- 			$result['invoices'] = $q->fetchAll(PDO::FETCH_ASSOC);
 
- 		}
 
- 				
 
- 		return $result;
 
- 	}
 
-     private function posInfos2 ($data)
 
- 	{
 
- 		$result = array('items' => array(), 'invoices' => array());
 
- 		if ($data['pos_id'] == 0) {
 
-             $q = $this->dbh->query("SELECT * FROM `view_invoice_header` a
 
- 								    WHERE a.project_id = '{$this->project_id}' 
 
- 									ORDER BY a.invoice_number ");
 
- 		    
 
-         } else {
 
-             $q = $this->dbh->query("SELECT * FROM `view_invoice_header` a
 
- 								    WHERE a.project_id = '{$this->project_id}' AND a.pos_id = '{$data['pos_id']}' 
 
- 								    ORDER BY a.invoice_number ");
 
-         }
 
- 		if ($q) {
 
- 			$result['invoices'] = $q->fetchAll(PDO::FETCH_ASSOC);
 
- 		}
 
- 				
 
- 		return $result;
 
- 	}
 
- 	private function posCheckout ($data)
 
-     {
 
-         $result = $data['invoice'];
 
-         $this->dbh->exec("UPDATE invoice_header 
 
- 					      SET checkout = '{$result['checkout']}'
 
- 						  WHERE invoice_number = '{$result['invoice_number']}' ");
 
- 		return $result;
 
- 	}
 
-     
 
-     private function posPrint ($data)
 
-     {
 
-         $result = $this->posInvoices($data);
 
-         $this->dbh->exec("UPDATE invoice_header 
 
- 						  SET printed = '1'
 
- 						  WHERE invoice_number = '{$result['invoice_number']}' ");
 
-         // print options
 
-         // $ptr = printer_open("POS-58");
 
-         // printer_set_option($ptr, PRINTER_MODE, "raw");
 
- 		$ptr = "/dev/usb/lp0";
 
- 		printer_write($ptr, $this->printFormat($result));
 
-         // printer_close($ptr);
 
-         return $result;
 
-     }
 
- 	private function printFormat ($data)
 
- 	{
 
- 		$result = array();
 
-         $result[] = $this->project['print_header'];
 
-         $result[] = str_repeat("\n", 1);
 
-         
 
-         $result[] = "Rechn.-Nr. " . $data['invoice_number'];
 
-         $result[] = "Kasse " . $data['pos_id'] . ", " . $data['cashier'];
 
-         $data['details'] = array_reverse($data['details']);
 
-         foreach ($data['details'] as $entry) {
 
-             $result[] = "#" . str_pad(str_replace(".",",",$entry['line_number']), 2, " ", STR_PAD_LEFT) .  ": " . $entry['item'] . "" . str_pad(number_format($entry['price'], 2, ",", "."), 19, " ", STR_PAD_LEFT);
 
-         }
 
-         $result[] = "________________________________";
 
-         $result[] = str_pad(number_format($data['total'], 2, ",", "."), 31, " ", STR_PAD_LEFT);
 
-         $result[] = $this->project['print_footer'];
 
-         $result[] = str_repeat("\n", 7);
 
- 		return implode("\n", $result);
 
- 	}
 
-     private function posCancel ($data)
 
-     {
 
-         $result = "error";
 
-         
 
-         if (isset($data['item']) && $data['item'] != "") {
 
- 			$item = $data['item'];
 
-             
 
-             $this->dbh->exec("UPDATE invoice_details SET
 
- 									cancelled = '1'
 
- 							   WHERE item = '{$item}' ");
 
-             $result = "OK";
 
-         }
 
-         return $result;
 
-     }
 
-     private function projects ($data)
 
- 	{
 
- 		if (isset($data['sellers']) && is_array($data['sellers']) && count($data['sellers']) > 0) {
 
-             if (in_array($seller['seller_id'], $seller_ids)) {
 
-                 $this->dbh->exec("UPDATE projects 
 
-                                        SET event_date = '{$data['event_date']}',
 
-                                            event_location = '{$data['event_location']}', 
 
-                                            print_header = '{$data['print_header']}',
 
-                                            print_footer = '{$data['print_footer']}', 
 
-                                            active = '{$data['active']}', 
 
-                                            mdate = '{$this->mdate}' 
 
-                                        WHERE project_id = '{$data['project_id']}' ");
 
-             } else {
 
-                 $this->dbh->exec("INSERT INTO projects (project_id, event_date, event_location, print_header, print_footer, active, mdate, cdate) 
 
-                                        VALUES ( '{$data['project_id']}','{$data['event_date']}',  '{$data['event_location']}',  '{$data['print_header']}',
 
-                                                 '{$data['print_footer']}',  '{$data['active']}','{$this->mdate}','{$this->mdate}' )");
 
-             }
 
- 		}
 
- 		$q = $this->dbh->query("SELECT * FROM projects ORDER BY project_id");
 
- 		return $q->fetchAll(PDO::FETCH_ASSOC);
 
- 	}
 
-     
 
- 	private function sellers ($data)
 
- 	{
 
- 		if (isset($data['sellers']) && is_array($data['sellers']) && count($data['sellers']) > 0) {
 
- 			$q = $this->dbh->query("SELECT seller_id FROM sellers WHERE project_id = '{$this->project_id}' ORDER BY seller_id");
 
- 			$r = $q->fetchAll(PDO::FETCH_ASSOC);
 
- 			$seller_ids = array();
 
- 			if ($r) {
 
- 				$seller_ids = array_column($r, 'seller_id');
 
- 			}
 
- 			foreach ($data['sellers'] as $seller) {
 
- 				if (in_array($seller['seller_id'], $seller_ids)) {
 
- 					$this->dbh->exec("UPDATE sellers 
 
- 										   SET name = '{$seller['name']}',
 
- 										       first_name = '{$seller['first_name']}', 
 
- 										   	   address = '{$seller['address']}',
 
- 										   	   zip_code = '{$seller['zip_code']}', 
 
- 										   	   place = '{$seller['place']}', 
 
- 										   	   mail = '{$seller['mail']}', 
 
- 										   	   phone = '{$seller['phone']}', 
 
- 										   	   mdate = '{$this->mdate}' 
 
- 							   			   WHERE project_id = '{$this->project_id}' AND seller_id = '{$seller['seller_id']}' ");
 
- 				} else {
 
- 					$this->dbh->exec("INSERT INTO sellers (project_id, seller_id, name, first_name, address, zip_code, place, mail, phone, mdate, cdate) 
 
- 										   VALUES ( '{$this->project_id}','{$seller['seller_id']}',  '{$seller['name']}',  '{$seller['first_name']}',
 
- 										   			'{$seller['address']}',  '{$seller['zip_code']}', '{$seller['place']}','{$seller['mail']}', 
 
- 										   	   		'{$seller['phone']}','{$this->mdate}','{$this->mdate}' )");
 
- 				}
 
- 			}
 
- 		}
 
- 		$q = $this->dbh->query("SELECT * FROM sellers WHERE project_id = '{$this->project_id}' ORDER BY seller_id");
 
- 		return $q->fetchAll(PDO::FETCH_ASSOC);
 
- 	}
 
- 	public function CsvExport ($data)
 
- 	{
 
- 		$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 = '{$this->project_id}' ORDER BY seller_id");
 
- 		
 
- 		$sellers = array();
 
- 		foreach ($q->fetchAll(PDO::FETCH_ASSOC) as $s) {
 
- 			$sellers[$s['seller_id']] = $s;
 
- 			for ($j = 1; $j <= 50; $j++) {
 
- 				$item_id = substr("00".$j, -3);
 
- 				$sellers[$s['seller_id']][$item_id] = "n.v.";
 
- 			}
 
- 		}		
 
- 		
 
- 		// Verkäufe nachladen, 
 
- 		$q = $this->dbh->query("SELECT * FROM invoice_details WHERE project_id = '{$this->project_id}' AND cancelled = 0");
 
- 		
 
- 		while ($row = $q->fetch(PDO::FETCH_ASSOC)) {
 
-             if (isset($sellers[$row['seller_id']])) {
 
- 			    $sellers[$row['seller_id']][$row['item_id']] = $row['price'];
 
-             } else {
 
-                 $sellers[] = $row;
 
-             }
 
- 		}
 
- 		
 
- 		// Summen berechnen
 
- 		$q = $this->dbh->query("SELECT seller_id, sum(price) as price FROM invoice_details WHERE project_id = '{$this->project_id}' AND cancelled = 0 GROUP BY seller_id ");
 
- 		while ($row = $q->fetch(PDO::FETCH_ASSOC)) {
 
-             if (isset($sellers[$row['seller_id']])) {
 
-                 $sellers[$row['seller_id']]['total'] = $row['price'];
 
-                 $sellers[$row['seller_id']]['provision'] = $row['price'] * 0.2;
 
-                 $sellers[$row['seller_id']]['cash_out'] = $row['price'] * 0.8;
 
-             } else {
 
-                 $sellers[] = $row;
 
-             }
 
- 		}
 
- 		
 
- 		$result = "Verk-Nr;Name;Vorname;Adresse;PLZ;Ort;E-Mail;Telefon;Gesamt;Provision;Auszahlung;A001;A002;A003;A004;A005;A006;A007;A008;A009;A010;" .
 
- 			      "A011;A012;A013;A014;A015;A016;A017;A018;A019;A020;A021;A022;A023;A024;A025;A026;A027;A028;A029;A030;A031;A032;A033;A034;A035;" .
 
- 			      "A036;A037;A038;A039;A040;A041;A042;A043;A044;A045;A046;A047;A048;A049;A050\r\n";
 
-         $blacklist = array("seller_id", "name", "first_name", "address", "zip_code", "place", "mail", "phone");
 
- 		foreach ($sellers as $s) {
 
-             foreach ($s as $k => $v) {
 
-                 if (!in_array($k, $blacklist) && $v != "n.v.") {
 
-                     $s[$k] = @number_format($v, 2, ",", ".");
 
-                 }
 
-             }
 
- 			$result .= implode(";", $s) . "\r\n";
 
- 		}
 
- 		return $result;
 
- 	}
 
- 	private function jsonLastErrorMsg ()
 
- 	{
 
- 		switch (json_last_error()) {
 
- 			case JSON_ERROR_NONE:
 
- 				return ' - No errors';
 
- 			case JSON_ERROR_DEPTH:
 
- 				return ' - Maximum stack depth exceeded';
 
- 			case JSON_ERROR_STATE_MISMATCH:
 
- 				return ' - Underflow or the modes mismatch';
 
- 			case JSON_ERROR_CTRL_CHAR:
 
- 				return ' - Unexpected control character found';
 
- 			case JSON_ERROR_SYNTAX:
 
- 				return ' - Syntax error, malformed JSON';
 
- 			case JSON_ERROR_UTF8:
 
- 				return ' - Malformed UTF-8 characters, possibly incorrectly encoded';
 
- 			default:
 
- 				return ' - Unknown error';
 
- 		}
 
- 	}
 
- }
 
 
  |