2018-10-24 15:00:27 +02:00
|
|
|
<?php
|
|
|
|
class item {
|
|
|
|
public $ID, $Anzahl, $Einheit, $Name, $Erledigt;
|
2023-12-02 09:50:15 +01:00
|
|
|
function __construct($ID, $Anzahl, $Einheit, $Name, $Erledigt){
|
2018-10-24 15:00:27 +02:00
|
|
|
$this->ID = $ID;
|
|
|
|
$this->Anzahl = $Anzahl;
|
|
|
|
$this->Einheit = $Einheit;
|
|
|
|
$this->Name = $Name;
|
|
|
|
$this->Erledigt = $Erledigt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class shopping {
|
|
|
|
public $list = array();
|
|
|
|
private function addItem($ID, $Anzahl, $Einheit, $Name, $Erledigt){
|
|
|
|
$current = new item($ID, $Anzahl, $Einheit, $Name, $Erledigt);
|
|
|
|
array_push($this->list, $current);
|
|
|
|
}
|
|
|
|
|
2023-12-02 09:50:15 +01:00
|
|
|
function __construct(){
|
2018-10-24 15:00:27 +02:00
|
|
|
include $_SESSION["docroot"].'/config/config.php';
|
|
|
|
include $_SESSION["docroot"].'/php/connect.php';
|
2019-05-22 10:16:13 +02:00
|
|
|
$result = $mysqli->query("SELECT * FROM `ViewEinkauf` ORDER BY `ViewEinkauf`.`Name` ASC;");
|
2018-10-24 15:00:27 +02:00
|
|
|
while($item = $result->fetch_assoc()){
|
|
|
|
$this->addItem($item["ID"], $item["Anzahl"], $item["Einheit"], $item["Name"], $item["Erledigt"]);
|
|
|
|
}
|
|
|
|
$mysqli->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
function newItem($anzahl, $einheit, $name){
|
|
|
|
include $_SESSION["docroot"].'/config/config.php';
|
|
|
|
include $_SESSION["docroot"].'/php/connect.php';
|
|
|
|
if(!is_int($einheit)){
|
2019-05-22 10:16:13 +02:00
|
|
|
$selectQuery = $mysqli->prepare("SELECT * FROM `Einheit` WHERE `Name` = ?;");
|
|
|
|
$selectQuery->bind_param("s", $einheit);
|
|
|
|
$selectQuery->execute();
|
|
|
|
$result = $selectQuery->get_result();
|
2018-10-24 15:00:27 +02:00
|
|
|
while($row = $result->fetch_assoc()){
|
|
|
|
$einheit = $row["ID"];
|
|
|
|
}
|
|
|
|
}
|
2019-05-22 10:16:13 +02:00
|
|
|
$insertQuery = $mysqli->prepare("INSERT INTO `Einkauf` (`Anzahl`, `Einheit`, `Name`, `Erledigt`) VALUES (?, ?, ?, 0);");
|
2019-05-22 08:37:37 +02:00
|
|
|
$insertQuery->bind_param("sss", $anzahl, $einheit, $name);
|
|
|
|
$result = $insertQuery->execute();
|
2019-05-22 21:17:53 +02:00
|
|
|
$insertID = $mysqli->insert_id;
|
2018-10-24 15:00:27 +02:00
|
|
|
$mysqli->close();
|
2019-05-22 21:17:53 +02:00
|
|
|
return $insertID;
|
2018-10-24 15:00:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function newItems($itemList){
|
|
|
|
foreach ($itemList as $item) {
|
|
|
|
$this->newItem($item["amount"], $item["unit"], $item["name"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-28 09:12:47 +02:00
|
|
|
function removeSingleItem($id){
|
|
|
|
include $_SESSION["docroot"].'/config/config.php';
|
|
|
|
include $_SESSION["docroot"].'/php/connect.php';
|
|
|
|
$deleteQuery = $mysqli->prepare("DELETE FROM `Einkauf` WHERE `Einkauf`.`ID` = ?;");
|
|
|
|
$deleteQuery->bind_param("s", $id);
|
|
|
|
$deleteQuery->execute();
|
|
|
|
$mysqli->close();
|
|
|
|
}
|
|
|
|
|
2019-05-28 15:55:00 +02:00
|
|
|
function changeSingleItem($id, $anzahl, $einheit, $name){
|
|
|
|
include $_SESSION["docroot"].'/config/config.php';
|
|
|
|
include $_SESSION["docroot"].'/php/connect.php';
|
|
|
|
$paramCount = "s";
|
|
|
|
$query = "UPDATE `Einkauf` SET";
|
|
|
|
if($anzahl!=""){
|
|
|
|
$paramCount .= "s";
|
|
|
|
$query .= " `Anzahl` = ?";
|
|
|
|
}
|
|
|
|
if($einheit!=""){
|
|
|
|
if(strlen($paramCount)>1){
|
|
|
|
$query .= ",";
|
|
|
|
}
|
|
|
|
$paramCount .= "s";
|
|
|
|
$query .= " `Einheit` = ?";
|
|
|
|
}
|
|
|
|
if($name!=""){
|
|
|
|
if(strlen($paramCount)>1){
|
|
|
|
$query .= ",";
|
|
|
|
}
|
|
|
|
$paramCount .= "s";
|
|
|
|
$query .= " `Name` = ?";
|
|
|
|
}
|
|
|
|
if(strlen($paramCount)>1){
|
|
|
|
$query .= " WHERE `Einkauf`.`ID` = ?;";
|
|
|
|
$updateQuery = $mysqli->prepare($query);
|
|
|
|
if($anzahl!="" && $name!=""){
|
|
|
|
$updateQuery->bind_param($paramCount, $anzahl, $einheit, $name, $id);
|
|
|
|
}
|
|
|
|
elseif($anzahl!="" && $name==""){
|
|
|
|
$updateQuery->bind_param($paramCount, $anzahl, $einheit, $id);
|
|
|
|
}
|
|
|
|
elseif($anzahl=="" && $name!=""){
|
|
|
|
$updateQuery->bind_param($paramCount, $einheit, $name, $id);
|
|
|
|
}
|
|
|
|
elseif($anzahl=="" && $name==""){
|
|
|
|
$updateQuery->bind_param($paramCount, $einheit, $id);
|
|
|
|
}
|
|
|
|
$updateQuery->execute();
|
|
|
|
$mysqli->close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-24 15:00:27 +02:00
|
|
|
function removeChecked(){
|
|
|
|
include $_SESSION["docroot"].'/config/config.php';
|
|
|
|
include $_SESSION["docroot"].'/php/connect.php';
|
2019-05-22 10:16:13 +02:00
|
|
|
$mysqli->query("DELETE FROM `Einkauf` WHERE `Erledigt`=1;");
|
2018-10-24 15:00:27 +02:00
|
|
|
$mysqli->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
function check($id, $status){
|
|
|
|
include $_SESSION["docroot"].'/config/config.php';
|
|
|
|
include $_SESSION["docroot"].'/php/connect.php';
|
2019-05-22 10:16:13 +02:00
|
|
|
$updateQuery = $mysqli->prepare("UPDATE `Einkauf` SET `Erledigt` = $status WHERE `Einkauf`.`ID` = ?;");
|
2019-05-22 09:12:09 +02:00
|
|
|
$updateQuery->bind_param("s", $id);
|
|
|
|
$updateQuery->execute();
|
2018-10-24 15:00:27 +02:00
|
|
|
$mysqli->close();
|
|
|
|
}
|
2018-11-14 16:25:50 +01:00
|
|
|
|
|
|
|
function import(){
|
|
|
|
$import = json_decode($_POST["content"]);
|
|
|
|
$units = new units();
|
|
|
|
foreach($import->list as $item){
|
|
|
|
$this->newItem($item->Anzahl, $units->getID($item->Einheit), $item->Name);
|
|
|
|
}
|
2019-05-19 18:37:00 +02:00
|
|
|
print_r("0");
|
2018-11-14 16:25:50 +01:00
|
|
|
}
|
2018-10-24 15:00:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class unit {
|
|
|
|
public $ID, $Name, $Standard;
|
2023-12-02 09:50:15 +01:00
|
|
|
function __construct($ID, $Name, $Standard){
|
2018-10-24 15:00:27 +02:00
|
|
|
$this->ID = $ID;
|
|
|
|
$this->Name = $Name;
|
|
|
|
$this->Standard = $Standard;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class units {
|
|
|
|
public $list = array();
|
|
|
|
private function addItem($ID, $Name, $Standard){
|
|
|
|
$current = new unit($ID, $Name, $Standard);
|
|
|
|
array_push($this->list, $current);
|
|
|
|
}
|
|
|
|
|
2023-12-02 09:50:15 +01:00
|
|
|
function __construct(){
|
2018-10-24 15:00:27 +02:00
|
|
|
include $_SESSION["docroot"].'/config/config.php';
|
|
|
|
include $_SESSION["docroot"].'/php/connect.php';
|
2019-05-22 10:16:13 +02:00
|
|
|
$result = $mysqli->query("SELECT * FROM `Einheit`;");
|
2018-10-24 15:00:27 +02:00
|
|
|
while($item = $result->fetch_assoc()){
|
|
|
|
$this->addItem($item["ID"], $item["Name"], $item["Standard"]);
|
|
|
|
}
|
|
|
|
$mysqli->close();
|
|
|
|
}
|
2018-11-14 16:25:50 +01:00
|
|
|
|
|
|
|
function getID($Name){
|
|
|
|
foreach($this->list as $units){
|
|
|
|
if($units->Name==$Name){
|
|
|
|
return $units->ID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-24 15:00:27 +02:00
|
|
|
}
|
|
|
|
?>
|