|
@@ -12,6 +12,8 @@ class RequestController
|
|
|
{
|
|
|
private $mdate;
|
|
|
private $dbh;
|
|
|
+ private $project;
|
|
|
+ private $project_id;
|
|
|
|
|
|
function __construct ($path = "", $path2 = "")
|
|
|
{
|
|
@@ -19,6 +21,13 @@ class RequestController
|
|
|
$this->mdate = date('Y-m-d H:i:s', strtotime("now"));
|
|
|
$this->dbh = new PDO("mysql:host=localhost;dbname=kasse", "root", "gc01mysql");
|
|
|
$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'];
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|
|
@@ -42,6 +51,12 @@ class RequestController
|
|
|
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;
|
|
@@ -65,7 +80,7 @@ class RequestController
|
|
|
$disabled = array('token' => 0, 'active' => 0, 'disabled' => 1);
|
|
|
|
|
|
$q = $this->dbh->query("SELECT * FROM pos
|
|
|
- WHERE project_id = '{$data['project_id']}' AND pos_id = '{$data['pos_id']}' LIMIT 1");
|
|
|
+ WHERE pos_id = '{$data['pos_id']}' LIMIT 1");
|
|
|
$result = $q->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
|
if (!$result || $result['disabled'] != 0) {
|
|
@@ -89,7 +104,7 @@ class RequestController
|
|
|
}
|
|
|
|
|
|
$this->dbh->exec("UPDATE pos SET token = '{$result['token']}', active = '{$result['active']}', disabled = '{$result['disabled']}', mdate = '{$this->mdate}'
|
|
|
- WHERE project_id = '{$result['project_id']}' AND pos_id = '{$result['pos_id']}' ");
|
|
|
+ WHERE pos_id = '{$result['pos_id']}' ");
|
|
|
|
|
|
return $result;
|
|
|
}
|
|
@@ -107,7 +122,7 @@ class RequestController
|
|
|
|
|
|
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 ( '{$d['project_id']}','{$d['pos_id']}', '{$d['invoice_date']}',
|
|
|
+ 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();
|
|
@@ -130,7 +145,7 @@ class RequestController
|
|
|
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 ( '{$d['project_id']}','{$data['invoice_number']}', '{$item['line_number']}',
|
|
|
+ VALUES ( '{$this->project_id}','{$data['invoice_number']}', '{$item['line_number']}',
|
|
|
'{$item['item']}','{$item['seller_id']}','{$item['item_id']}',
|
|
|
'{$item['price']}' )");
|
|
|
}
|
|
@@ -152,7 +167,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 NOT IN ('000-000','123-456') ORDER BY item ");
|
|
|
+ $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');
|
|
@@ -160,11 +175,11 @@ class RequestController
|
|
|
|
|
|
if ($data['pos_id'] == 0) {
|
|
|
$q = $this->dbh->query("SELECT * FROM `view_invoice_header` a
|
|
|
- WHERE a.project_id = '{$data['project_id']}' ORDER BY a.invoice_number ");
|
|
|
+ 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 = '{$data['project_id']}' AND a.pos_id = '{$data['pos_id']}' ORDER BY a.invoice_number ");
|
|
|
+ WHERE a.project_id = '{$this->project_id}' AND a.pos_id = '{$data['pos_id']}' ORDER BY a.invoice_number ");
|
|
|
}
|
|
|
|
|
|
if ($q) {
|
|
@@ -180,11 +195,11 @@ class RequestController
|
|
|
|
|
|
if ($data['pos_id'] == 0) {
|
|
|
$q = $this->dbh->query("SELECT * FROM `view_invoice_header` a
|
|
|
- WHERE a.project_id = '{$data['project_id']}' ORDER BY a.invoice_number ");
|
|
|
+ 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 = '{$data['project_id']}' AND a.pos_id = '{$data['pos_id']}' ORDER BY a.invoice_number ");
|
|
|
+ WHERE a.project_id = '{$this->project_id}' AND a.pos_id = '{$data['pos_id']}' ORDER BY a.invoice_number ");
|
|
|
}
|
|
|
|
|
|
if ($q) {
|
|
@@ -205,8 +220,9 @@ class RequestController
|
|
|
$ptr = printer_open("POS-58");
|
|
|
printer_set_option($ptr, PRINTER_MODE, "raw");
|
|
|
|
|
|
- printer_write($ptr, implode("", file(dirname(__FILE__)."\\..\\..\data\\header.txt")));
|
|
|
-
|
|
|
+ printer_write($ptr, $this->project['print_header']);
|
|
|
+ printer_write($ptr, str_repeat("\r\n", 2));
|
|
|
+
|
|
|
printer_write($ptr, "Rechn.-Nr. " . $result['invoice_number'] . "\r\n");
|
|
|
printer_write($ptr, "Kasse " . $result['pos_id'] . ", " . $result['cashier'] . "\r\n");
|
|
|
printer_write($ptr, "\r\n");
|
|
@@ -220,17 +236,55 @@ class RequestController
|
|
|
printer_write($ptr, "________________________________\r\n");
|
|
|
printer_write($ptr, str_pad(str_replace(".",",",$result['total']), 31, " ", STR_PAD_LEFT) . "\r\n");
|
|
|
|
|
|
- printer_write($ptr, implode("", file(dirname(__FILE__)."\\..\\..\data\\footer.txt")));
|
|
|
+ printer_write($ptr, $this->project['print_footer']);
|
|
|
+ printer_write($ptr, str_repeat("\r\n", 7));
|
|
|
printer_close($ptr);
|
|
|
|
|
|
return $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 = '{$data['project_id']}' ORDER BY seller_id");
|
|
|
+ $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) {
|
|
@@ -248,25 +302,24 @@ class RequestController
|
|
|
mail = '{$seller['mail']}',
|
|
|
phone = '{$seller['phone']}',
|
|
|
mdate = '{$this->mdate}'
|
|
|
- WHERE project_id = '{$data['project_id']}' AND seller_id = '{$seller['seller_id']}' ");
|
|
|
+ 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 ( '{$seller['project_id']}','{$seller['seller_id']}', '{$seller['name']}', '{$seller['first_name']}',
|
|
|
+ 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 = '{$data['project_id']}' ORDER BY seller_id");
|
|
|
+ $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)
|
|
|
{
|
|
|
- $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");
|
|
|
+ FROM sellers WHERE project_id = '{$this->project_id}' ORDER BY seller_id");
|
|
|
|
|
|
$sellers = array();
|
|
|
foreach ($q->fetchAll(PDO::FETCH_ASSOC) as $s) {
|
|
@@ -279,7 +332,7 @@ class RequestController
|
|
|
}
|
|
|
|
|
|
// Verkäufe nachladen,
|
|
|
- $q = $this->dbh->query("SELECT * FROM invoice_details WHERE project_id = '{$data['project_id']}' ");
|
|
|
+ $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']])) {
|
|
@@ -290,7 +343,7 @@ class RequestController
|
|
|
}
|
|
|
|
|
|
// Summen berechnen
|
|
|
- $q = $this->dbh->query("SELECT seller_id, sum(price) as price FROM invoice_details WHERE project_id = '{$data['project_id']}' GROUP BY seller_id ");
|
|
|
+ $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'];
|