RequestController.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. <?php
  2. require_once(dirname(__FILE__)."/../config.php");
  3. if(!function_exists("array_column"))
  4. {
  5. function array_column($array,$column_name)
  6. {
  7. return array_map(function($element) use($column_name){return $element[$column_name];}, $array);
  8. }
  9. }
  10. if(!function_exists("printer_write"))
  11. {
  12. function printer_write($printer, $text) {
  13. shell_exec("echo \"" . $text . "\" > " . $printer);
  14. }
  15. }
  16. class RequestController
  17. {
  18. private $mdate;
  19. private $dbh;
  20. private $project;
  21. private $project_id;
  22. function __construct ($path = "", $path2 = "")
  23. {
  24. date_default_timezone_set('Europe/Berlin');
  25. $this->mdate = date('Y-m-d H:i:s', strtotime("now"));
  26. $this->dbh = new PDO(DB_CONN_STRING, DB_USER, DB_PASSWORD);
  27. $this->dbh->setAttribute(PDO::ATTR_CASE, PDO::CASE_LOWER);
  28. $q = $this->dbh->query("SELECT * FROM projects
  29. WHERE active = '1'
  30. ORDER BY project_id DESC
  31. LIMIT 1");
  32. $this->project = $q->fetch(PDO::FETCH_ASSOC);
  33. $this->project_id = $this->project['project_id'];
  34. }
  35. function bootstrap ($data)
  36. {
  37. $result = array();
  38. $action = (isset($_REQUEST['a'])) ? $_REQUEST['a'] : "";
  39. switch ($action) {
  40. case 'pos_token':
  41. $result = $this->posToken($data);
  42. break;
  43. case 'pos_invoices':
  44. $result = $this->posInvoices($data);
  45. break;
  46. case 'pos_checkout':
  47. $result = $this->posCheckout($data);
  48. break;
  49. case 'pos_print':
  50. $result = $this->posPrint($data);
  51. break;
  52. case 'pos_infos':
  53. $result = $this->posInfos($data);
  54. break;
  55. case 'pos_infos2':
  56. $result = $this->posInfos2($data);
  57. break;
  58. case 'pos_cancel':
  59. $result = $this->posCancel($data);
  60. break;
  61. case 'projects':
  62. $result = $this->projects($data);
  63. break;
  64. case 'sellers':
  65. $result = $this->sellers($data);
  66. break;
  67. default:
  68. $result = array("No action defined!");
  69. break;
  70. }
  71. $this->setJsonHeader();
  72. echo json_encode($result);
  73. }
  74. private function setJsonHeader ()
  75. {
  76. header('Access-Control-Allow-Origin: *');
  77. header('Access-Control-Allow-Methods: GET, POST, PUT');
  78. header('Access-Control-Allow-Headers: accept, content-type');
  79. header('Cache-Control: no-cache, must-revalidate');
  80. header('Content-type: application/json');
  81. }
  82. private function posToken ($data)
  83. {
  84. $disabled = array('token' => 0, 'active' => 0, 'disabled' => 1);
  85. $q = $this->dbh->query("SELECT * FROM pos
  86. WHERE pos_id = '{$data['pos_id']}' LIMIT 1");
  87. $result = $q->fetch(PDO::FETCH_ASSOC);
  88. if (!$result || $result['disabled'] != 0) {
  89. return $disabled;
  90. }
  91. if ($data['token'] == 0) {
  92. if ($result['token'] != 0) {
  93. return $disabled;
  94. }
  95. $result['token'] = rand(1, 65000);
  96. $result['active'] = 1;
  97. } else {
  98. if ($data['token'] != $result['token']) {
  99. return $disabled;
  100. }
  101. $result['active'] = ($result['disabled'] == 1) ? 0 : $data['active'];
  102. $result['disabled'] = $data['disabled'];
  103. }
  104. $this->dbh->exec("UPDATE pos SET token = '{$result['token']}', active = '{$result['active']}', disabled = '{$result['disabled']}', mdate = '{$this->mdate}'
  105. WHERE pos_id = '{$result['pos_id']}' ");
  106. return $result;
  107. }
  108. private function posInvoices ($data)
  109. {
  110. /*
  111. if (!isset($data['params']) || isset($data['params']['token']) || $data['params']['token'] == 0) {
  112. return false;
  113. }
  114. */
  115. if (isset($data['invoice'])) {
  116. $d = $data['invoice'];
  117. if ($d['invoice_number'] == 0) {
  118. $this->dbh->exec("INSERT INTO invoice_header (project_id, pos_id, invoice_date, cashier, line_count, total, paid, mdate, cdate)
  119. VALUES ( '{$this->project_id}','{$d['pos_id']}', '{$d['invoice_date']}',
  120. '{$d['cashier']}','{$d['line_count']}', '{$d['total']}','{$d['paid']}',
  121. '{$this->mdate}','{$this->mdate}' )");
  122. $data['invoice_number'] = $this->dbh->lastInsertId();
  123. } else {
  124. $data['invoice_number'] = $d['invoice_number'];
  125. $this->dbh->exec("UPDATE invoice_header SET
  126. pos_id = '{$d['pos_id']}',
  127. invoice_date = '{$d['invoice_date']}',
  128. cashier = '{$d['cashier']}',
  129. line_count = '{$d['line_count']}',
  130. total = '{$d['total']}',
  131. paid = '{$d['paid']}',
  132. mdate = '{$this->mdate}'
  133. WHERE invoice_number = '{$data['invoice_number']}' ");
  134. }
  135. $this->dbh->exec("DELETE FROM invoice_details
  136. WHERE invoice_number = '{$data['invoice_number']}' ");
  137. foreach ($d['details'] as $item) {
  138. if ($item['item'] != "") {
  139. $this->dbh->exec("INSERT INTO invoice_details (project_id, invoice_number, line_number, item, seller_id, item_id, price)
  140. VALUES ( '{$this->project_id}','{$data['invoice_number']}', '{$item['line_number']}',
  141. '{$item['item']}','{$item['seller_id']}','{$item['item_id']}',
  142. '{$item['price']}' )");
  143. }
  144. }
  145. }
  146. if (!isset($data['invoice_number'])) {
  147. $data['invoice_number'] = $data['invoice']['invoice_number'];
  148. }
  149. $q = $this->dbh->query("SELECT * FROM invoice_header WHERE invoice_number = '{$data['invoice_number']}' LIMIT 1");
  150. $result = $q->fetch(PDO::FETCH_ASSOC);
  151. if ($result) {
  152. $q = $this->dbh->query("SELECT * FROM invoice_details
  153. WHERE invoice_number = '{$data['invoice_number']}'
  154. ORDER BY line_number DESC ");
  155. $result['details'] = $q->fetchAll(PDO::FETCH_ASSOC);
  156. }
  157. return $result;
  158. }
  159. private function posInfos ($data)
  160. {
  161. $result = array('items' => array(), 'invoices' => array());
  162. $q = $this->dbh->query("SELECT item FROM invoice_details
  163. WHERE project_id = '{$this->project_id}' AND item NOT IN ('000-000','123-456') AND cancelled = 0
  164. ORDER BY item ");
  165. if ($q) {
  166. $r = $q->fetchAll(PDO::FETCH_ASSOC);
  167. $result['items'] = array_column($r, 'item');
  168. }
  169. if ($data['pos_id'] == 0) {
  170. $q = $this->dbh->query("SELECT * FROM `view_invoice_header` a
  171. WHERE a.project_id = '{$this->project_id}'
  172. ORDER BY a.invoice_number ");
  173. } else {
  174. $q = $this->dbh->query("SELECT * FROM `view_invoice_header` a
  175. WHERE a.project_id = '{$this->project_id}' AND a.pos_id = '{$data['pos_id']}'
  176. ORDER BY a.invoice_number ");
  177. }
  178. if ($q) {
  179. $result['invoices'] = $q->fetchAll(PDO::FETCH_ASSOC);
  180. }
  181. return $result;
  182. }
  183. private function posInfos2 ($data)
  184. {
  185. $result = array('items' => array(), 'invoices' => array());
  186. if ($data['pos_id'] == 0) {
  187. $q = $this->dbh->query("SELECT * FROM `view_invoice_header` a
  188. WHERE a.project_id = '{$this->project_id}'
  189. ORDER BY a.invoice_number ");
  190. } else {
  191. $q = $this->dbh->query("SELECT * FROM `view_invoice_header` a
  192. WHERE a.project_id = '{$this->project_id}' AND a.pos_id = '{$data['pos_id']}'
  193. ORDER BY a.invoice_number ");
  194. }
  195. if ($q) {
  196. $result['invoices'] = $q->fetchAll(PDO::FETCH_ASSOC);
  197. }
  198. return $result;
  199. }
  200. private function posCheckout ($data)
  201. {
  202. $result = $data['invoice'];
  203. $this->dbh->exec("UPDATE invoice_header
  204. SET checkout = '{$result['checkout']}'
  205. WHERE invoice_number = '{$result['invoice_number']}' ");
  206. return $result;
  207. }
  208. private function posPrint ($data)
  209. {
  210. $result = $this->posInvoices($data);
  211. $this->dbh->exec("UPDATE invoice_header
  212. SET printed = '1'
  213. WHERE invoice_number = '{$result['invoice_number']}' ");
  214. // print options
  215. // $ptr = printer_open("POS-58");
  216. // printer_set_option($ptr, PRINTER_MODE, "raw");
  217. $ptr = "/dev/usb/lp0";
  218. printer_write($ptr, $this->project['print_header']);
  219. printer_write($ptr, str_repeat("\r\n", 2));
  220. printer_write($ptr, "Rechn.-Nr. " . $result['invoice_number'] . "\r\n");
  221. printer_write($ptr, "Kasse " . $result['pos_id'] . ", " . $result['cashier'] . "\r\n");
  222. printer_write($ptr, "\r\n");
  223. $result['details'] = array_reverse($result['details']);
  224. foreach ($result['details'] as $entry) {
  225. printer_write($ptr, "#" . str_pad(str_replace(".",",",$entry['line_number']), 2, " ", STR_PAD_LEFT) . ": " . $entry['item'] . "" . str_pad(str_replace(".",",",$entry['price']), 19, " ", STR_PAD_LEFT) . "\r\n");
  226. }
  227. printer_write($ptr, "________________________________\r\n");
  228. printer_write($ptr, str_pad(str_replace(".",",",$result['total']), 31, " ", STR_PAD_LEFT) . "\r\n");
  229. printer_write($ptr, $this->project['print_footer']);
  230. printer_write($ptr, str_repeat("\r\n", 7));
  231. // printer_close($ptr);
  232. return $result;
  233. }
  234. private function posCancel ($data)
  235. {
  236. $result = "error";
  237. if (isset($data['item']) && $data['item'] != "") {
  238. $item = $data['item'];
  239. $this->dbh->exec("UPDATE invoice_details SET
  240. cancelled = '1'
  241. WHERE item = '{$item}' ");
  242. $result = "OK";
  243. }
  244. return $result;
  245. }
  246. private function projects ($data)
  247. {
  248. if (isset($data['sellers']) && is_array($data['sellers']) && count($data['sellers']) > 0) {
  249. if (in_array($seller['seller_id'], $seller_ids)) {
  250. $this->dbh->exec("UPDATE projects
  251. SET event_date = '{$data['event_date']}',
  252. event_location = '{$data['event_location']}',
  253. print_header = '{$data['print_header']}',
  254. print_footer = '{$data['print_footer']}',
  255. active = '{$data['active']}',
  256. mdate = '{$this->mdate}'
  257. WHERE project_id = '{$data['project_id']}' ");
  258. } else {
  259. $this->dbh->exec("INSERT INTO projects (project_id, event_date, event_location, print_header, print_footer, active, mdate, cdate)
  260. VALUES ( '{$data['project_id']}','{$data['event_date']}', '{$data['event_location']}', '{$data['print_header']}',
  261. '{$data['print_footer']}', '{$data['active']}','{$this->mdate}','{$this->mdate}' )");
  262. }
  263. }
  264. $q = $this->dbh->query("SELECT * FROM projects ORDER BY project_id");
  265. return $q->fetchAll(PDO::FETCH_ASSOC);
  266. }
  267. private function sellers ($data)
  268. {
  269. if (isset($data['sellers']) && is_array($data['sellers']) && count($data['sellers']) > 0) {
  270. $q = $this->dbh->query("SELECT seller_id FROM sellers WHERE project_id = '{$this->project_id}' ORDER BY seller_id");
  271. $r = $q->fetchAll(PDO::FETCH_ASSOC);
  272. $seller_ids = array();
  273. if ($r) {
  274. $seller_ids = array_column($r, 'seller_id');
  275. }
  276. foreach ($data['sellers'] as $seller) {
  277. if (in_array($seller['seller_id'], $seller_ids)) {
  278. $this->dbh->exec("UPDATE sellers
  279. SET name = '{$seller['name']}',
  280. first_name = '{$seller['first_name']}',
  281. address = '{$seller['address']}',
  282. zip_code = '{$seller['zip_code']}',
  283. place = '{$seller['place']}',
  284. mail = '{$seller['mail']}',
  285. phone = '{$seller['phone']}',
  286. mdate = '{$this->mdate}'
  287. WHERE project_id = '{$this->project_id}' AND seller_id = '{$seller['seller_id']}' ");
  288. } else {
  289. $this->dbh->exec("INSERT INTO sellers (project_id, seller_id, name, first_name, address, zip_code, place, mail, phone, mdate, cdate)
  290. VALUES ( '{$this->project_id}','{$seller['seller_id']}', '{$seller['name']}', '{$seller['first_name']}',
  291. '{$seller['address']}', '{$seller['zip_code']}', '{$seller['place']}','{$seller['mail']}',
  292. '{$seller['phone']}','{$this->mdate}','{$this->mdate}' )");
  293. }
  294. }
  295. }
  296. $q = $this->dbh->query("SELECT * FROM sellers WHERE project_id = '{$this->project_id}' ORDER BY seller_id");
  297. return $q->fetchAll(PDO::FETCH_ASSOC);
  298. }
  299. public function CsvExport ($data)
  300. {
  301. $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
  302. FROM sellers WHERE project_id = '{$this->project_id}' ORDER BY seller_id");
  303. $sellers = array();
  304. foreach ($q->fetchAll(PDO::FETCH_ASSOC) as $s) {
  305. $sellers[$s['seller_id']] = $s;
  306. for ($j = 1; $j <= 50; $j++) {
  307. $item_id = substr("00".$j, -3);
  308. $sellers[$s['seller_id']][$item_id] = "n.v.";
  309. }
  310. }
  311. // Verkäufe nachladen,
  312. $q = $this->dbh->query("SELECT * FROM invoice_details WHERE project_id = '{$this->project_id}' AND cancelled = 0");
  313. while ($row = $q->fetch(PDO::FETCH_ASSOC)) {
  314. if (isset($sellers[$row['seller_id']])) {
  315. $sellers[$row['seller_id']][$row['item_id']] = $row['price'];
  316. } else {
  317. $sellers[] = $row;
  318. }
  319. }
  320. // Summen berechnen
  321. $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 ");
  322. while ($row = $q->fetch(PDO::FETCH_ASSOC)) {
  323. if (isset($sellers[$row['seller_id']])) {
  324. $sellers[$row['seller_id']]['total'] = $row['price'];
  325. $sellers[$row['seller_id']]['provision'] = $row['price'] * 0.2;
  326. $sellers[$row['seller_id']]['cash_out'] = $row['price'] * 0.8;
  327. } else {
  328. $sellers[] = $row;
  329. }
  330. }
  331. $result = "Verk-Nr;Name;Vorname;Adresse;PLZ;Ort;E-Mail;Telefon;Gesamt;Provision;Auszahlung;A001;A002;A003;A004;A005;A006;A007;A008;A009;A010;" .
  332. "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;" .
  333. "A036;A037;A038;A039;A040;A041;A042;A043;A044;A045;A046;A047;A048;A049;A050\r\n";
  334. $blacklist = array("seller_id", "name", "first_name", "address", "zip_code", "place", "mail", "phone");
  335. foreach ($sellers as $s) {
  336. foreach ($s as $k => $v) {
  337. if (!in_array($k, $blacklist) && $v != "n.v.") {
  338. $s[$k] = @number_format($v, 2, ",", ".");
  339. }
  340. }
  341. $result .= implode(";", $s) . "\r\n";
  342. }
  343. return $result;
  344. }
  345. private function jsonLastErrorMsg ()
  346. {
  347. switch (json_last_error()) {
  348. case JSON_ERROR_NONE:
  349. return ' - No errors';
  350. case JSON_ERROR_DEPTH:
  351. return ' - Maximum stack depth exceeded';
  352. case JSON_ERROR_STATE_MISMATCH:
  353. return ' - Underflow or the modes mismatch';
  354. case JSON_ERROR_CTRL_CHAR:
  355. return ' - Unexpected control character found';
  356. case JSON_ERROR_SYNTAX:
  357. return ' - Syntax error, malformed JSON';
  358. case JSON_ERROR_UTF8:
  359. return ' - Malformed UTF-8 characters, possibly incorrectly encoded';
  360. default:
  361. return ' - Unknown error';
  362. }
  363. }
  364. }