RequestController.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  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("\n", 1));
  220. printer_write($ptr, "Rechn.-Nr. " . $result['invoice_number']);
  221. printer_write($ptr, "Kasse " . $result['pos_id'] . ", " . $result['cashier']);
  222. $result['details'] = array_reverse($result['details']);
  223. foreach ($result['details'] as $entry) {
  224. 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));
  225. }
  226. printer_write($ptr, "________________________________");
  227. printer_write($ptr, str_pad(str_replace(".",",",$result['total']), 31, " ", STR_PAD_LEFT));
  228. printer_write($ptr, $this->project['print_footer']);
  229. printer_write($ptr, str_repeat("\n", 7));
  230. // printer_close($ptr);
  231. return $result;
  232. }
  233. private function posCancel ($data)
  234. {
  235. $result = "error";
  236. if (isset($data['item']) && $data['item'] != "") {
  237. $item = $data['item'];
  238. $this->dbh->exec("UPDATE invoice_details SET
  239. cancelled = '1'
  240. WHERE item = '{$item}' ");
  241. $result = "OK";
  242. }
  243. return $result;
  244. }
  245. private function projects ($data)
  246. {
  247. if (isset($data['sellers']) && is_array($data['sellers']) && count($data['sellers']) > 0) {
  248. if (in_array($seller['seller_id'], $seller_ids)) {
  249. $this->dbh->exec("UPDATE projects
  250. SET event_date = '{$data['event_date']}',
  251. event_location = '{$data['event_location']}',
  252. print_header = '{$data['print_header']}',
  253. print_footer = '{$data['print_footer']}',
  254. active = '{$data['active']}',
  255. mdate = '{$this->mdate}'
  256. WHERE project_id = '{$data['project_id']}' ");
  257. } else {
  258. $this->dbh->exec("INSERT INTO projects (project_id, event_date, event_location, print_header, print_footer, active, mdate, cdate)
  259. VALUES ( '{$data['project_id']}','{$data['event_date']}', '{$data['event_location']}', '{$data['print_header']}',
  260. '{$data['print_footer']}', '{$data['active']}','{$this->mdate}','{$this->mdate}' )");
  261. }
  262. }
  263. $q = $this->dbh->query("SELECT * FROM projects ORDER BY project_id");
  264. return $q->fetchAll(PDO::FETCH_ASSOC);
  265. }
  266. private function sellers ($data)
  267. {
  268. if (isset($data['sellers']) && is_array($data['sellers']) && count($data['sellers']) > 0) {
  269. $q = $this->dbh->query("SELECT seller_id FROM sellers WHERE project_id = '{$this->project_id}' ORDER BY seller_id");
  270. $r = $q->fetchAll(PDO::FETCH_ASSOC);
  271. $seller_ids = array();
  272. if ($r) {
  273. $seller_ids = array_column($r, 'seller_id');
  274. }
  275. foreach ($data['sellers'] as $seller) {
  276. if (in_array($seller['seller_id'], $seller_ids)) {
  277. $this->dbh->exec("UPDATE sellers
  278. SET name = '{$seller['name']}',
  279. first_name = '{$seller['first_name']}',
  280. address = '{$seller['address']}',
  281. zip_code = '{$seller['zip_code']}',
  282. place = '{$seller['place']}',
  283. mail = '{$seller['mail']}',
  284. phone = '{$seller['phone']}',
  285. mdate = '{$this->mdate}'
  286. WHERE project_id = '{$this->project_id}' AND seller_id = '{$seller['seller_id']}' ");
  287. } else {
  288. $this->dbh->exec("INSERT INTO sellers (project_id, seller_id, name, first_name, address, zip_code, place, mail, phone, mdate, cdate)
  289. VALUES ( '{$this->project_id}','{$seller['seller_id']}', '{$seller['name']}', '{$seller['first_name']}',
  290. '{$seller['address']}', '{$seller['zip_code']}', '{$seller['place']}','{$seller['mail']}',
  291. '{$seller['phone']}','{$this->mdate}','{$this->mdate}' )");
  292. }
  293. }
  294. }
  295. $q = $this->dbh->query("SELECT * FROM sellers WHERE project_id = '{$this->project_id}' ORDER BY seller_id");
  296. return $q->fetchAll(PDO::FETCH_ASSOC);
  297. }
  298. public function CsvExport ($data)
  299. {
  300. $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
  301. FROM sellers WHERE project_id = '{$this->project_id}' ORDER BY seller_id");
  302. $sellers = array();
  303. foreach ($q->fetchAll(PDO::FETCH_ASSOC) as $s) {
  304. $sellers[$s['seller_id']] = $s;
  305. for ($j = 1; $j <= 50; $j++) {
  306. $item_id = substr("00".$j, -3);
  307. $sellers[$s['seller_id']][$item_id] = "n.v.";
  308. }
  309. }
  310. // Verkäufe nachladen,
  311. $q = $this->dbh->query("SELECT * FROM invoice_details WHERE project_id = '{$this->project_id}' AND cancelled = 0");
  312. while ($row = $q->fetch(PDO::FETCH_ASSOC)) {
  313. if (isset($sellers[$row['seller_id']])) {
  314. $sellers[$row['seller_id']][$row['item_id']] = $row['price'];
  315. } else {
  316. $sellers[] = $row;
  317. }
  318. }
  319. // Summen berechnen
  320. $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 ");
  321. while ($row = $q->fetch(PDO::FETCH_ASSOC)) {
  322. if (isset($sellers[$row['seller_id']])) {
  323. $sellers[$row['seller_id']]['total'] = $row['price'];
  324. $sellers[$row['seller_id']]['provision'] = $row['price'] * 0.2;
  325. $sellers[$row['seller_id']]['cash_out'] = $row['price'] * 0.8;
  326. } else {
  327. $sellers[] = $row;
  328. }
  329. }
  330. $result = "Verk-Nr;Name;Vorname;Adresse;PLZ;Ort;E-Mail;Telefon;Gesamt;Provision;Auszahlung;A001;A002;A003;A004;A005;A006;A007;A008;A009;A010;" .
  331. "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;" .
  332. "A036;A037;A038;A039;A040;A041;A042;A043;A044;A045;A046;A047;A048;A049;A050\r\n";
  333. $blacklist = array("seller_id", "name", "first_name", "address", "zip_code", "place", "mail", "phone");
  334. foreach ($sellers as $s) {
  335. foreach ($s as $k => $v) {
  336. if (!in_array($k, $blacklist) && $v != "n.v.") {
  337. $s[$k] = @number_format($v, 2, ",", ".");
  338. }
  339. }
  340. $result .= implode(";", $s) . "\r\n";
  341. }
  342. return $result;
  343. }
  344. private function jsonLastErrorMsg ()
  345. {
  346. switch (json_last_error()) {
  347. case JSON_ERROR_NONE:
  348. return ' - No errors';
  349. case JSON_ERROR_DEPTH:
  350. return ' - Maximum stack depth exceeded';
  351. case JSON_ERROR_STATE_MISMATCH:
  352. return ' - Underflow or the modes mismatch';
  353. case JSON_ERROR_CTRL_CHAR:
  354. return ' - Unexpected control character found';
  355. case JSON_ERROR_SYNTAX:
  356. return ' - Syntax error, malformed JSON';
  357. case JSON_ERROR_UTF8:
  358. return ' - Malformed UTF-8 characters, possibly incorrectly encoded';
  359. default:
  360. return ' - Unknown error';
  361. }
  362. }
  363. }