mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
59 lines
2.0 KiB
PHP
59 lines
2.0 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 GenProformarechnung {
|
|
|
|
function __construct(&$app) {
|
|
|
|
$this->app=&$app;
|
|
$this->app->ActionHandlerInit($this);
|
|
|
|
$this->app->ActionHandler("create","ProformarechnungCreate");
|
|
$this->app->ActionHandler("edit","ProformarechnungEdit");
|
|
$this->app->ActionHandler("copy","ProformarechnungCopy");
|
|
$this->app->ActionHandler("list","ProformarechnungList");
|
|
$this->app->ActionHandler("delete","ProformarechnungDelete");
|
|
|
|
$this->app->Tpl->Set("HEADING","Proformarechnung"); //$this->app->ActionHandlerListen($app);
|
|
}
|
|
|
|
function ProformarechnungCreate(){
|
|
$this->app->Tpl->Set("HEADING","Proformarechnung (Anlegen)");
|
|
$this->app->PageBuilder->CreateGen("proformarechnung_create.tpl");
|
|
}
|
|
|
|
function ProformarechnungEdit(){
|
|
$this->app->Tpl->Set("HEADING","Proformarechnung (Bearbeiten)");
|
|
$this->app->PageBuilder->CreateGen("proformarechnung_edit.tpl");
|
|
}
|
|
|
|
function ProformarechnungCopy(){
|
|
$this->app->Tpl->Set("HEADING","Proformarechnung (Kopieren)");
|
|
$this->app->PageBuilder->CreateGen("proformarechnung_copy.tpl");
|
|
}
|
|
|
|
function ProformarechnungDelete(){
|
|
$this->app->Tpl->Set("HEADING","Proformarechnung (Löschen)");
|
|
$this->app->PageBuilder->CreateGen("proformarechnung_delete.tpl");
|
|
}
|
|
|
|
function ProformarechnungList(){
|
|
$this->app->Tpl->Set("HEADING","Proformarechnung (Übersicht)");
|
|
$this->app->PageBuilder->CreateGen("proformarechnung_list.tpl");
|
|
}
|
|
|
|
}
|
|
?>
|