This commit is contained in:
Paminger
2016-05-04 07:05:23 +02:00
parent a932cfd0ad
commit 6836c3608d
216 changed files with 2934 additions and 147 deletions
@@ -0,0 +1,14 @@
<?php
class Aufteilung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_aufteilung';
$this->pk = 'aufteilung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Bestelldetail_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_bestelldetail';
$this->pk = 'bestelldetail_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Bestelldetailtag_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_bestelldetailtag';
$this->pk = array('bestelldetail_id', 'tag');
}
}
@@ -0,0 +1,14 @@
<?php
class Bestellstatus_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_bestellstatus';
$this->pk = 'bestellstatus_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Bestellung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_bestellung';
$this->pk = 'bestellung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Bestellungtag_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_bestellungtag';
$this->pk = array('bestellung_id', 'tag');
}
}
@@ -0,0 +1,14 @@
<?php
class Buchung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_buchung';
$this->pk = 'buchung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Buchungstyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_buchungstyp';
$this->pk = 'buchungstyp_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Budget_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_budget';
$this->pk = array('kostenstelle_id', 'geschaeftsjahr_kurzbz');
}
}
@@ -0,0 +1,14 @@
<?php
class Konto_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_konto';
$this->pk = 'konto_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Kostenstelle_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_kostenstelle';
$this->pk = 'kostenstelle_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Rechnung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_rechnung';
$this->pk = 'rechnung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Rechnungsbetrag_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_rechnungsbetrag';
$this->pk = 'rechnungsbetrag_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Rechnungstyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_rechnungstyp';
$this->pk = 'rechnungstyp_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Vertrag_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_vertrag';
$this->pk = 'vertrag_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Vertragsstatus_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_vertragsstatus';
$this->pk = 'vertragsstatus_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Vertragstyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_vertragstyp';
$this->pk = 'vertragstyp_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Zahlungstyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_zahlungstyp';
$this->pk = 'zahlungstyp_kurzbz';
}
}