mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
245 lines
8.5 KiB
PHP
245 lines
8.5 KiB
PHP
<?php
|
|
/*
|
|
**** COPYRIGHT & LICENSE NOTICE *** DO NOT REMOVE ****
|
|
*
|
|
* Xentral (c) Xentral ERP Sorftware GmbH, Fuggerstrasse 11, D-86150 Augsburg, * Germany 2019
|
|
*
|
|
* This file is licensed under the Embedded Projects General Public License *Version 3.1.
|
|
*
|
|
* You should have received a copy of this license from your vendor and/or *along with this file; If not, please visit www.wawision.de/Lizenzhinweis
|
|
* to obtain the text of the corresponding license version.
|
|
*
|
|
**** END OF COPYRIGHT & LICENSE NOTICE *** DO NOT REMOVE ****
|
|
*/
|
|
?>
|
|
<?php
|
|
|
|
class ObjGenArbeitspaket
|
|
{
|
|
|
|
private $id;
|
|
private $adresse;
|
|
private $aufgabe;
|
|
private $beschreibung;
|
|
private $projekt;
|
|
private $zeit_geplant;
|
|
private $kostenstelle;
|
|
private $status;
|
|
private $abgabe;
|
|
private $abgenommen;
|
|
private $abgenommen_von;
|
|
private $abgenommen_bemerkung;
|
|
private $initiator;
|
|
private $art;
|
|
private $abgabedatum;
|
|
private $logdatei;
|
|
private $geloescht;
|
|
private $vorgaenger;
|
|
private $kosten_geplant;
|
|
private $artikel_geplant;
|
|
private $auftragid;
|
|
private $abgerechnet;
|
|
|
|
public $app; //application object
|
|
|
|
public function __construct($app)
|
|
{
|
|
$this->app = $app;
|
|
}
|
|
|
|
public function Select($id)
|
|
{
|
|
if(is_numeric($id))
|
|
$result = $this->app->DB->SelectArr("SELECT * FROM arbeitspaket WHERE (id = '$id')");
|
|
else
|
|
return -1;
|
|
|
|
$result = $result[0];
|
|
|
|
$this->id=$result['id'];
|
|
$this->adresse=$result['adresse'];
|
|
$this->aufgabe=$result['aufgabe'];
|
|
$this->beschreibung=$result['beschreibung'];
|
|
$this->projekt=$result['projekt'];
|
|
$this->zeit_geplant=$result['zeit_geplant'];
|
|
$this->kostenstelle=$result['kostenstelle'];
|
|
$this->status=$result['status'];
|
|
$this->abgabe=$result['abgabe'];
|
|
$this->abgenommen=$result['abgenommen'];
|
|
$this->abgenommen_von=$result['abgenommen_von'];
|
|
$this->abgenommen_bemerkung=$result['abgenommen_bemerkung'];
|
|
$this->initiator=$result['initiator'];
|
|
$this->art=$result['art'];
|
|
$this->abgabedatum=$result['abgabedatum'];
|
|
$this->logdatei=$result['logdatei'];
|
|
$this->geloescht=$result['geloescht'];
|
|
$this->vorgaenger=$result['vorgaenger'];
|
|
$this->kosten_geplant=$result['kosten_geplant'];
|
|
$this->artikel_geplant=$result['artikel_geplant'];
|
|
$this->auftragid=$result['auftragid'];
|
|
$this->abgerechnet=$result['abgerechnet'];
|
|
}
|
|
|
|
public function Create()
|
|
{
|
|
$sql = "INSERT INTO arbeitspaket (id,adresse,aufgabe,beschreibung,projekt,zeit_geplant,kostenstelle,status,abgabe,abgenommen,abgenommen_von,abgenommen_bemerkung,initiator,art,abgabedatum,logdatei,geloescht,vorgaenger,kosten_geplant,artikel_geplant,auftragid,abgerechnet)
|
|
VALUES('','{$this->adresse}','{$this->aufgabe}','{$this->beschreibung}','{$this->projekt}','{$this->zeit_geplant}','{$this->kostenstelle}','{$this->status}','{$this->abgabe}','{$this->abgenommen}','{$this->abgenommen_von}','{$this->abgenommen_bemerkung}','{$this->initiator}','{$this->art}','{$this->abgabedatum}','{$this->logdatei}','{$this->geloescht}','{$this->vorgaenger}','{$this->kosten_geplant}','{$this->artikel_geplant}','{$this->auftragid}','{$this->abgerechnet}')";
|
|
|
|
$this->app->DB->Insert($sql);
|
|
$this->id = $this->app->DB->GetInsertID();
|
|
}
|
|
|
|
public function Update()
|
|
{
|
|
if(!is_numeric($this->id))
|
|
return -1;
|
|
|
|
$sql = "UPDATE arbeitspaket SET
|
|
adresse='{$this->adresse}',
|
|
aufgabe='{$this->aufgabe}',
|
|
beschreibung='{$this->beschreibung}',
|
|
projekt='{$this->projekt}',
|
|
zeit_geplant='{$this->zeit_geplant}',
|
|
kostenstelle='{$this->kostenstelle}',
|
|
status='{$this->status}',
|
|
abgabe='{$this->abgabe}',
|
|
abgenommen='{$this->abgenommen}',
|
|
abgenommen_von='{$this->abgenommen_von}',
|
|
abgenommen_bemerkung='{$this->abgenommen_bemerkung}',
|
|
initiator='{$this->initiator}',
|
|
art='{$this->art}',
|
|
abgabedatum='{$this->abgabedatum}',
|
|
logdatei='{$this->logdatei}',
|
|
geloescht='{$this->geloescht}',
|
|
vorgaenger='{$this->vorgaenger}',
|
|
kosten_geplant='{$this->kosten_geplant}',
|
|
artikel_geplant='{$this->artikel_geplant}',
|
|
auftragid='{$this->auftragid}',
|
|
abgerechnet='{$this->abgerechnet}'
|
|
WHERE (id='{$this->id}')";
|
|
|
|
$this->app->DB->Update($sql);
|
|
}
|
|
|
|
public function Delete($id="")
|
|
{
|
|
if(is_numeric($id))
|
|
{
|
|
$this->id=$id;
|
|
}
|
|
else
|
|
return -1;
|
|
|
|
$sql = "DELETE FROM arbeitspaket WHERE (id='{$this->id}')";
|
|
$this->app->DB->Delete($sql);
|
|
|
|
$this->id="";
|
|
$this->adresse="";
|
|
$this->aufgabe="";
|
|
$this->beschreibung="";
|
|
$this->projekt="";
|
|
$this->zeit_geplant="";
|
|
$this->kostenstelle="";
|
|
$this->status="";
|
|
$this->abgabe="";
|
|
$this->abgenommen="";
|
|
$this->abgenommen_von="";
|
|
$this->abgenommen_bemerkung="";
|
|
$this->initiator="";
|
|
$this->art="";
|
|
$this->abgabedatum="";
|
|
$this->logdatei="";
|
|
$this->geloescht="";
|
|
$this->vorgaenger="";
|
|
$this->kosten_geplant="";
|
|
$this->artikel_geplant="";
|
|
$this->auftragid="";
|
|
$this->abgerechnet="";
|
|
}
|
|
|
|
public function Copy()
|
|
{
|
|
$this->id = "";
|
|
$this->Create();
|
|
}
|
|
|
|
/**
|
|
Mit dieser Funktion kann man einen Datensatz suchen
|
|
dafuer muss man die Attribute setzen nach denen gesucht werden soll
|
|
dann kriegt man als ergebnis den ersten Datensatz der auf die Suche uebereinstimmt
|
|
zurueck. Mit Next() kann man sich alle weiteren Ergebnisse abholen
|
|
**/
|
|
|
|
public function Find()
|
|
{
|
|
//TODO Suche mit den werten machen
|
|
}
|
|
|
|
public function FindNext()
|
|
{
|
|
//TODO Suche mit den alten werten fortsetzen machen
|
|
}
|
|
|
|
/** Funktionen um durch die Tabelle iterieren zu koennen */
|
|
|
|
public function Next()
|
|
{
|
|
//TODO: SQL Statement passt nach meiner Meinung nach noch nicht immer
|
|
}
|
|
|
|
public function First()
|
|
{
|
|
//TODO: SQL Statement passt nach meiner Meinung nach noch nicht immer
|
|
}
|
|
|
|
/** dank dieser funktionen kann man die tatsaechlichen werte einfach
|
|
ueberladen (in einem Objekt das mit seiner klasse ueber dieser steht)**/
|
|
|
|
function SetId($value) { $this->id=$value; }
|
|
function GetId() { return $this->id; }
|
|
function SetAdresse($value) { $this->adresse=$value; }
|
|
function GetAdresse() { return $this->adresse; }
|
|
function SetAufgabe($value) { $this->aufgabe=$value; }
|
|
function GetAufgabe() { return $this->aufgabe; }
|
|
function SetBeschreibung($value) { $this->beschreibung=$value; }
|
|
function GetBeschreibung() { return $this->beschreibung; }
|
|
function SetProjekt($value) { $this->projekt=$value; }
|
|
function GetProjekt() { return $this->projekt; }
|
|
function SetZeit_Geplant($value) { $this->zeit_geplant=$value; }
|
|
function GetZeit_Geplant() { return $this->zeit_geplant; }
|
|
function SetKostenstelle($value) { $this->kostenstelle=$value; }
|
|
function GetKostenstelle() { return $this->kostenstelle; }
|
|
function SetStatus($value) { $this->status=$value; }
|
|
function GetStatus() { return $this->status; }
|
|
function SetAbgabe($value) { $this->abgabe=$value; }
|
|
function GetAbgabe() { return $this->abgabe; }
|
|
function SetAbgenommen($value) { $this->abgenommen=$value; }
|
|
function GetAbgenommen() { return $this->abgenommen; }
|
|
function SetAbgenommen_Von($value) { $this->abgenommen_von=$value; }
|
|
function GetAbgenommen_Von() { return $this->abgenommen_von; }
|
|
function SetAbgenommen_Bemerkung($value) { $this->abgenommen_bemerkung=$value; }
|
|
function GetAbgenommen_Bemerkung() { return $this->abgenommen_bemerkung; }
|
|
function SetInitiator($value) { $this->initiator=$value; }
|
|
function GetInitiator() { return $this->initiator; }
|
|
function SetArt($value) { $this->art=$value; }
|
|
function GetArt() { return $this->art; }
|
|
function SetAbgabedatum($value) { $this->abgabedatum=$value; }
|
|
function GetAbgabedatum() { return $this->abgabedatum; }
|
|
function SetLogdatei($value) { $this->logdatei=$value; }
|
|
function GetLogdatei() { return $this->logdatei; }
|
|
function SetGeloescht($value) { $this->geloescht=$value; }
|
|
function GetGeloescht() { return $this->geloescht; }
|
|
function SetVorgaenger($value) { $this->vorgaenger=$value; }
|
|
function GetVorgaenger() { return $this->vorgaenger; }
|
|
function SetKosten_Geplant($value) { $this->kosten_geplant=$value; }
|
|
function GetKosten_Geplant() { return $this->kosten_geplant; }
|
|
function SetArtikel_Geplant($value) { $this->artikel_geplant=$value; }
|
|
function GetArtikel_Geplant() { return $this->artikel_geplant; }
|
|
function SetAuftragid($value) { $this->auftragid=$value; }
|
|
function GetAuftragid() { return $this->auftragid; }
|
|
function SetAbgerechnet($value) { $this->abgerechnet=$value; }
|
|
function GetAbgerechnet() { return $this->abgerechnet; }
|
|
|
|
}
|
|
|
|
?>
|