mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
1303 lines
63 KiB
PHP
1303 lines
63 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (c) 2023 OpenXE project
|
|
* Xentral (c) Xentral ERP Sorftware GmbH, Fuggerstrasse 11, D-86150 Augsburg, * Germany 2019
|
|
*/
|
|
|
|
use Xentral\Components\Database\Exception\QueryFailureException;
|
|
|
|
class Verbindlichkeit {
|
|
|
|
function __construct($app, $intern = false) {
|
|
$this->app = $app;
|
|
if ($intern)
|
|
return;
|
|
|
|
$this->app->ActionHandlerInit($this);
|
|
$this->app->ActionHandler("list", "verbindlichkeit_list");
|
|
$this->app->ActionHandler("create", "verbindlichkeit_edit"); // This automatically adds a "New" button
|
|
$this->app->ActionHandler("edit", "verbindlichkeit_edit");
|
|
$this->app->ActionHandler("positionen", "verbindlichkeit_positionen");
|
|
$this->app->ActionHandler("delete", "verbindlichkeit_delete");
|
|
$this->app->ActionHandler("deletepos", "verbindlichkeit_deletepos");
|
|
$this->app->ActionHandler("dateien", "verbindlichkeit_dateien");
|
|
$this->app->ActionHandler("inlinepdf", "verbindlichkeit_inlinepdf");
|
|
$this->app->ActionHandler("positioneneditpopup", "verbindlichkeit_positioneneditpopup");
|
|
$this->app->ActionHandler("freigabe", "verbindlichkeit_freigabe");
|
|
$this->app->ActionHandler("schreibschutz", "verbindlichkeit_schreibschutz");
|
|
$this->app->ActionHandler("freigabeeinkauf", "verbindlichkeit_freigabeeinkauf");
|
|
$this->app->ActionHandler("freigabebuchhaltung", "verbindlichkeit_freigabebuchhaltung");
|
|
$this->app->ActionHandler("freigabebezahlt", "verbindlichkeit_freigabebezahlt");
|
|
$this->app->ActionHandler("ruecksetzeneinkauf", "verbindlichkeit_ruecksetzeneinkauf");
|
|
$this->app->ActionHandler("ruecksetzenbuchhaltung", "verbindlichkeit_ruecksetzenbuchhaltung");
|
|
$this->app->ActionHandler("ruecksetzenbezahlt", "verbindlichkeit_ruecksetzenbezahlt");
|
|
$this->app->ActionHandler("minidetail", "verbindlichkeit_minidetail");
|
|
|
|
$this->app->DefaultActionHandler("list");
|
|
$this->app->ActionHandlerListen($app);
|
|
}
|
|
|
|
public function Install() {
|
|
/* Fill out manually later */
|
|
}
|
|
|
|
function TableSearch(&$app, $name, $erlaubtevars) {
|
|
switch ($name) {
|
|
case "verbindlichkeit_list":
|
|
$allowed['verbindlichkeit_list'] = array('list');
|
|
$heading = array('','','Belegnr','Adresse', 'Lieferant', 'RE-Nr', 'RE-Datum', 'Betrag (brutto)', 'Währung', 'Ziel','Skontoziel','Skonto','Status','Monitor', 'Menü');
|
|
$width = array('1%','1%','10%'); // Fill out manually later
|
|
|
|
// columns that are aligned right (numbers etc)
|
|
// $alignright = array(4,5,6,7,8);
|
|
|
|
$findcols = array(
|
|
'v.id',
|
|
'v.id',
|
|
'v.id',
|
|
'a.name',
|
|
'a.lieferantennummer',
|
|
'v.rechnung',
|
|
'v.rechnungsdatum',
|
|
'v.betrag',
|
|
'v.waehrung',
|
|
'v.zahlbarbis',
|
|
'v.skontobis',
|
|
'v.skonto',
|
|
'v.status',
|
|
'v.status_beleg',
|
|
'v.id'
|
|
);
|
|
|
|
$searchsql = array(
|
|
'a.name',
|
|
'a.lieferantennummer',
|
|
'v.rechnung',
|
|
'v.internebemerkung'
|
|
);
|
|
|
|
$defaultorder = 1;
|
|
$defaultorderdesc = 0;
|
|
$alignright = array(8);
|
|
$sumcol = array(8);
|
|
|
|
$dropnbox = "'<img src=./themes/new/images/details_open.png class=details>' AS `open`, CONCAT('<input type=\"checkbox\" name=\"auswahl[]\" value=\"',v.id,'\" />') AS `auswahl`";
|
|
|
|
// $moreinfo = true; // Allow drop down details
|
|
// $moreinfoaction = "lieferschein"; // specify suffix for minidetail-URL to allow different minidetails
|
|
// $menucol = 11; // Set id col for moredata/menu
|
|
|
|
$menu = "<table cellpadding=0 cellspacing=0><tr><td nowrap>" . "<a href=\"index.php?module=verbindlichkeit&action=edit&id=%value%\"><img src=\"./themes/{$app->Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\"></a> <a href=\"#\" onclick=DeleteDialog(\"index.php?module=verbindlichkeit&action=delete&id=%value%\");>" . "<img src=\"themes/{$app->Conf->WFconf['defaulttheme']}/images/delete.svg\" border=\"0\"></a>" . "</td></tr></table>";
|
|
|
|
$sql = "SELECT SQL_CALC_FOUND_ROWS
|
|
v.id,
|
|
$dropnbox,
|
|
v.belegnr,
|
|
a.name,
|
|
a.lieferantennummer,
|
|
v.rechnung,
|
|
".$app->erp->FormatDate("v.rechnungsdatum").",
|
|
".$app->erp->FormatMenge('v.betrag',2).",
|
|
v.waehrung,
|
|
".$app->erp->FormatDate("v.zahlbarbis").",
|
|
IF(v.skonto <> 0,".$app->erp->FormatDate("v.skontobis").",''),
|
|
IF(v.skonto <> 0,CONCAT(".$app->erp->FormatMenge('v.skonto',0).",'%'),''),
|
|
v.status,
|
|
".$app->YUI->IconsSQLVerbindlichkeit().",
|
|
v.id FROM verbindlichkeit v
|
|
LEFT JOIN adresse a ON v.adresse = a.id
|
|
|
|
";
|
|
|
|
$where = "1";
|
|
$count = "SELECT count(DISTINCT id) FROM verbindlichkeit WHERE $where";
|
|
// $groupby = "";
|
|
|
|
// Toggle filters
|
|
$this->app->Tpl->Add('JQUERYREADY', "$('#wareneingang').click( function() { fnFilterColumn1( 0 ); } );");
|
|
$this->app->Tpl->Add('JQUERYREADY', "$('#rechnungsfreigabe').click( function() { fnFilterColumn2( 0 ); } );");
|
|
$this->app->Tpl->Add('JQUERYREADY', "$('#nichtbezahlt').click( function() { fnFilterColumn3( 0 ); } );");
|
|
|
|
for ($r = 1;$r <= 3;$r++) {
|
|
$this->app->Tpl->Add('JAVASCRIPT', '
|
|
function fnFilterColumn' . $r . ' ( i )
|
|
{
|
|
if(oMoreData' . $r . $name . '==1)
|
|
oMoreData' . $r . $name . ' = 0;
|
|
else
|
|
oMoreData' . $r . $name . ' = 1;
|
|
|
|
$(\'#' . $name . '\').dataTable().fnFilter(
|
|
\'\',
|
|
i,
|
|
0,0
|
|
);
|
|
}
|
|
');
|
|
}
|
|
|
|
|
|
$more_data1 = $this->app->Secure->GetGET("more_data1");
|
|
if ($more_data1 == 1) {
|
|
$where .= " AND v.freigabe <> '1'";
|
|
} else {
|
|
}
|
|
|
|
$more_data2 = $this->app->Secure->GetGET("more_data2");
|
|
if ($more_data2 == 1) {
|
|
$where .= " AND v.rechnungsfreigabe <> '1'";
|
|
}
|
|
else {
|
|
}
|
|
|
|
$more_data3 = $this->app->Secure->GetGET("more_data3");
|
|
if ($more_data3 == 1) {
|
|
$where .= " AND v.bezahlt <> '1'";
|
|
}
|
|
else {
|
|
}
|
|
// END Toggle filters
|
|
|
|
$this->app->YUI->DatePicker('zahlbarbis');
|
|
$filterzahlbarbis = $this->app->YUI->TableSearchFilter($name, 4,'zahlbarbis');
|
|
if (!empty($filterzahlbarbis)) {
|
|
$filterzahlbarbis = $this->app->String->Convert($filterzahlbarbis,'%1.%2.%3','%3-%2-%1');
|
|
$where .= " AND v.zahlbarbis <= '".$filterzahlbarbis."'";
|
|
}
|
|
|
|
$this->app->YUI->DatePicker('skontobis');
|
|
$filterskontobis = $this->app->YUI->TableSearchFilter($name, 5,'skontobis');
|
|
if (!empty($filterskontobis)) {
|
|
$filterskontobis = $this->app->String->Convert($filterskontobis,'%1.%2.%3','%3-%2-%1');
|
|
$where .= " AND v.skontobis <= '".$filterskontobis."'";
|
|
}
|
|
|
|
$moreinfo = true; // Allow drop down details
|
|
$menucol = 1; // For moredata
|
|
|
|
break;
|
|
case 'verbindlichkeit_paketdistribution_list':
|
|
$allowed['verbindlichkeit_paketdistribution_list'] = array('list');
|
|
|
|
$id = $app->Secure->GetGET('id');
|
|
if (empty($id)) {
|
|
break;
|
|
}
|
|
|
|
$verbindlichkeit = $app->DB->SelectArr("SELECT v.adresse, v.rechnung, b.belegnr FROM verbindlichkeit v LEFT JOIN bestellung b ON b.id = v.bestellung WHERE v.id = ".$id)[0];
|
|
|
|
$lieferant = $verbindlichkeit['adresse'];
|
|
$bestellnummer = $verbindlichkeit['belegnr'];
|
|
$rechnung = $verbindlichkeit['rechnung'];
|
|
|
|
$heading = array('Paket-Nr.','Paket-Pos.', 'Bestellung', 'Lieferschein', 'Rechnung', 'Artikel-Nr.','Artikel','Menge','Menge offen','Eingabe','Preis','');
|
|
$width = array( '1%', '1%', '5%', '5%', '5%', '5%', '20%', '2%', '1%', '1%', '1%', '1%');
|
|
|
|
$findcols = array('pa','auswahl','belegnr','lsnr','renr','artikelnummer','name_de','menge','offen_menge','offen_menge','preis','pa');
|
|
$searchsql = array('p.nummer', 'p.name', 'p.bemerkung');
|
|
|
|
$alignright = array(8,9,11);
|
|
|
|
$defaultorder = 1;
|
|
$defaultorderdesc = 0;
|
|
|
|
$offen_menge = "TRIM(IF(
|
|
pd.menge > COALESCE(vp.menge,0),
|
|
pd.menge - COALESCE(vp.menge,0),
|
|
0
|
|
))+0";
|
|
|
|
$auswahl = array (
|
|
'<input type=\"text\" name=\"ids[]\" value=\"',
|
|
['sql' => 'pd.id'],
|
|
'" hidden/>',
|
|
['sql' => 'pd.id'],
|
|
'<input type="text" name="artikel[]" value="',
|
|
['sql' => 'art.id'],
|
|
'"/ hidden>',
|
|
'<input type="text" name="umsatzsteuer[]" value="',
|
|
['sql' => 'art.umsatzsteuer'],
|
|
'"/ hidden>'
|
|
);
|
|
|
|
$werte = array (
|
|
'<input type="number" name="werte[]" value="',
|
|
['sql' => $offen_menge],
|
|
'" min="0"',
|
|
'" max="',
|
|
['sql' => $offen_menge],
|
|
'"/>'
|
|
);
|
|
|
|
$preise = array (
|
|
'<input type="number" name="preise[]" step="0.01" value="',
|
|
['sql' => $this->app->erp->FormatMenge("COALESCE(bp.preis,0)",2)],
|
|
'" min="0"',
|
|
'"/>'
|
|
);
|
|
|
|
$artikellink = array (
|
|
'<a href="index.php?module=artikel&action=edit&id=',
|
|
['sql' => 'art.id'],
|
|
'">',
|
|
['sql' => 'art.nummer'],
|
|
'</a>'
|
|
);
|
|
|
|
$paketlink = array (
|
|
'<a href="index.php?module=wareneingang&action=distriinhalt&id=',
|
|
['sql' => 'pa.id'],
|
|
'">',
|
|
['sql' => 'pa.id'],
|
|
'</a>'
|
|
);
|
|
|
|
$where = "offen_menge > 0";
|
|
|
|
// Toggle filters
|
|
$this->app->Tpl->Add('JQUERYREADY', "$('#passende').click( function() { fnFilterColumn1( 0 ); } );");
|
|
|
|
for ($r = 1;$r <= 1;$r++) {
|
|
$this->app->Tpl->Add('JAVASCRIPT', '
|
|
function fnFilterColumn' . $r . ' ( i )
|
|
{
|
|
if(oMoreData' . $r . $name . '==1)
|
|
oMoreData' . $r . $name . ' = 0;
|
|
else
|
|
oMoreData' . $r . $name . ' = 1;
|
|
|
|
$(\'#' . $name . '\').dataTable().fnFilter(
|
|
\'\',
|
|
i,
|
|
0,0
|
|
);
|
|
}
|
|
');
|
|
}
|
|
|
|
$more_data1 = $this->app->Secure->GetGET("more_data1");
|
|
if ($more_data1 == 1) {
|
|
$innerwhere .= " AND (b.belegnr LIKE '%".$bestellnummer."%' OR pa.renr LIKE '%".$rechnung."%')";
|
|
} else {
|
|
}
|
|
// END Toggle filters
|
|
|
|
|
|
|
|
$sql = "
|
|
SELECT SQL_CALC_FOUND_ROWS * FROM (
|
|
SELECT
|
|
pa.id pa_id,
|
|
".$this->app->erp->ConcatSQL($paketlink)." pa,
|
|
".$this->app->erp->ConcatSQL($auswahl)." AS auswahl,
|
|
if(b.belegnr LIKE '%".$bestellnummer."%',CONCAT('<b>',b.belegnr,'</b>'),b.belegnr) AS belegnr,
|
|
pa.lsnr,
|
|
if(pa.renr LIKE '%".$rechnung."%',CONCAT('<b>',pa.renr,'</b>'),pa.renr) AS renr,
|
|
".$this->app->erp->ConcatSQL($artikellink)." AS artikelnummer,
|
|
art.name_de,
|
|
pd.menge,
|
|
IF(
|
|
pd.menge > COALESCE(vp.menge,0),
|
|
pd.menge - COALESCE(vp.menge,0),
|
|
0
|
|
) offen_menge,
|
|
".$this->app->erp->ConcatSQL($werte).",
|
|
".$this->app->erp->ConcatSQL($preise)." AS preis
|
|
FROM
|
|
paketannahme pa
|
|
INNER JOIN paketdistribution pd ON
|
|
pd.paketannahme = pa.id
|
|
INNER JOIN artikel art ON
|
|
art.id = pd.artikel
|
|
LEFT JOIN adresse adr ON
|
|
adr.id = pa.adresse
|
|
LEFT JOIN bestellung_position bp ON
|
|
bp.id = pd.bestellung_position
|
|
LEFT JOIN bestellung b ON
|
|
b.id = bp.bestellung
|
|
LEFT JOIN(
|
|
SELECT
|
|
paketdistribution,
|
|
SUM(menge) AS menge
|
|
FROM
|
|
verbindlichkeit_position vp
|
|
GROUP BY
|
|
paketdistribution
|
|
) vp
|
|
ON
|
|
vp.paketdistribution = pd.id
|
|
WHERE pa.adresse = ".$lieferant." AND pd.vorlaeufig IS NULL".$innerwhere."
|
|
) temp
|
|
";
|
|
|
|
$count = "";
|
|
// $groupby = "";
|
|
|
|
break;
|
|
case 'verbindlichkeit_positionen':
|
|
|
|
$allowed['verbindlichkeit_positionen'] = array('list');
|
|
|
|
$id = $app->Secure->GetGET('id');
|
|
$freigabe = $app->DB->Select("SELECT freigabe FROM verbindlichkeit WHERE id = '".$id."'");
|
|
|
|
// $heading = array('Paket-Nr.','Paket-Pos.', 'Bestellung', 'Artikel-Nr.','Artikel','Menge','Preis','Steuersatz','Sachkonto','Menü','');
|
|
$heading = array('', 'Paket-Nr.','Paket-Pos.', 'Bestellung', 'Artikel-Nr.','Artikel','Menge','Preis','Steuersatz abw.','Sachkonto abw.');
|
|
$width = array( '1%','1%', '1%' , '2%', '2%', '16%', '1%', '1%', '1%', '3%', '1%', '1%');
|
|
|
|
$findcols = array('vp.id','pd.paketannahme','pd.id','b.belegnr','art.nummer','art.name_de','vp.menge','vp.preis','vp.steuersatz',"CONCAT(skv.sachkonto,' ',skv.beschriftung)",'vp.id','1');
|
|
$searchsql = array('p.nummer', 'p.name', 'p.bemerkung');
|
|
|
|
$alignright = array(6,7,8,9);
|
|
|
|
$defaultorder = 1;
|
|
$defaultorderdesc = 0;
|
|
|
|
if (empty($freigabe)) {
|
|
$deletepos = array (
|
|
'<a href="#" onclick=DeleteDialog("index.php?module=verbindlichkeit&action=deletepos&id=',
|
|
['sql' => 'vp.id'],
|
|
'")>',
|
|
'<img src=\"themes/'.$app->Conf->WFconf['defaulttheme'].'/images/delete.svg\" border=\"0\"></a>'
|
|
);
|
|
$heading[] = 'Menü';
|
|
} else {
|
|
$deletepos = array('');
|
|
}
|
|
$heading[] = '';
|
|
|
|
$box = "CONCAT('<input type=\"checkbox\" name=\"auswahl[]\" value=\"',vp.id,'\" />') AS `auswahl`";
|
|
|
|
$paketlink = array (
|
|
'<a href="index.php?module=wareneingang&action=distriinhalt&id=',
|
|
['sql' => 'pd.paketannahme'],
|
|
'">',
|
|
['sql' => 'pd.paketannahme'],
|
|
'</a>'
|
|
);
|
|
|
|
$sql = "
|
|
SELECT SQL_CALC_FOUND_ROWS
|
|
vp.id,
|
|
$box,
|
|
".$this->app->erp->ConcatSQL($paketlink)." pa,
|
|
pd.id paket_position,
|
|
b.belegnr,
|
|
art.nummer,
|
|
art.name_de,
|
|
vp.menge,
|
|
vp.preis,
|
|
vp.steuersatz,
|
|
CONCAT(skv.sachkonto,' ',skv.beschriftung),
|
|
".$this->app->erp->ConcatSQL($deletepos)."
|
|
FROM
|
|
verbindlichkeit_position vp
|
|
INNER JOIN verbindlichkeit v ON
|
|
v.id = vp.verbindlichkeit
|
|
INNER JOIN paketdistribution pd ON
|
|
pd.id = vp.paketdistribution
|
|
INNER JOIN artikel art ON
|
|
art.id = pd.artikel
|
|
INNER JOIN adresse adr ON
|
|
adr.id = v.adresse
|
|
LEFT JOIN bestellung_position bp ON pd.bestellung_position = bp.id
|
|
LEFT JOIN bestellung b ON b.id = bp.bestellung
|
|
LEFT JOIN kontorahmen skv ON skv.id = vp.kontorahmen
|
|
";
|
|
|
|
$where = "vp.verbindlichkeit = ".$id;
|
|
|
|
$count = "";
|
|
|
|
break;
|
|
}
|
|
|
|
$erg = false;
|
|
|
|
foreach ($erlaubtevars as $k => $v) {
|
|
if (isset($$v)) {
|
|
$erg[$v] = $$v;
|
|
}
|
|
}
|
|
return $erg;
|
|
}
|
|
|
|
function verbindlichkeit_list() {
|
|
|
|
// Process multi action
|
|
$submit = $this->app->Secure->GetPOST('ausfuehren');
|
|
if (!empty($submit)) {
|
|
$auswahl = $this->app->Secure->GetPOST('auswahl');
|
|
$aktion = $this->app->Secure->GetPOST('sel_aktion');
|
|
|
|
$selectedIds = [];
|
|
if(!empty($auswahl)) {
|
|
foreach($auswahl as $selectedId) {
|
|
$selectedId = (int)$selectedId;
|
|
if($selectedId > 0) {
|
|
$selectedIds[] = $selectedId;
|
|
}
|
|
}
|
|
|
|
switch ($aktion) {
|
|
case 'freigabeeinkauf':
|
|
foreach ($selectedIds as $id) {
|
|
$this->verbindlichkeit_freigabeeinkauf($id);
|
|
}
|
|
break;
|
|
case 'freigabebuchhaltung':
|
|
foreach ($selectedIds as $id) {
|
|
$this->verbindlichkeit_freigabebuchhaltung($id);
|
|
}
|
|
break;
|
|
case 'bezahlt':
|
|
foreach ($selectedIds as $id) {
|
|
$this->verbindlichkeit_freigabebezahlt($id);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->app->erp->MenuEintrag("index.php?module=verbindlichkeit&action=list", "Übersicht");
|
|
$this->app->erp->MenuEintrag("index.php?module=verbindlichkeit&action=create", "Neu anlegen");
|
|
|
|
$this->app->erp->MenuEintrag("index.php", "Zurück");
|
|
|
|
$this->app->YUI->TableSearch('TAB1', 'verbindlichkeit_list', "show", "", "", basename(__FILE__), __CLASS__);
|
|
|
|
/*
|
|
|
|
Prepared for later use...
|
|
|
|
if($this->app->erp->RechteVorhanden('verbindlichkeit', 'freigabeeinkauf')){
|
|
$this->app->Tpl->Set('MANUELLFREIGABEEINKAUF', '<option value="freigabeeinkauf">{|freigeben (Einkauf)|}</option>');
|
|
}
|
|
|
|
if($this->app->erp->RechteVorhanden('verbindlichkeit', 'freigabebuchhaltung')){
|
|
$this->app->Tpl->Set('MANUELLFREIGABEBUCHHALTUNG', '<option value="freigabebuchhaltung">{|freigeben (Buchhaltung)|}</option>');
|
|
}
|
|
|
|
if($this->app->erp->RechteVorhanden('verbindlichkeit', 'freigabebezahlt')){
|
|
$this->app->Tpl->Set('ALSBEZAHLTMARKIEREN', '<option value="bezahlt">{|als bezahlt markieren|}</option>');
|
|
}
|
|
*/
|
|
$this->app->User->SetParameter('table_verbindlichkeit_list_zahlbarbis', '');
|
|
$this->app->User->SetParameter('table_verbindlichkeit_list_skontobis', '');
|
|
|
|
$this->app->Tpl->Parse('PAGE', "verbindlichkeit_list.tpl");
|
|
}
|
|
|
|
public function verbindlichkeit_delete() {
|
|
$id = (int) $this->app->Secure->GetGET('id');
|
|
|
|
$this->app->DB->Delete("UPDATE `verbindlichkeit` SET status='storniert' WHERE `id` = '{$id}'");
|
|
$this->app->Tpl->Set('MESSAGE', "<div class=\"error\">Der Eintrag wurde storniert.</div>");
|
|
|
|
$this->verbindlichkeit_list();
|
|
}
|
|
|
|
public function verbindlichkeit_deletepos() {
|
|
$id = (int) $this->app->Secure->GetGET('id');
|
|
$verbindlichkeit = $this->app->DB->Select("SELECT verbindlichkeit FROM verbindlichkeit_position WHERE id ='{$id}'");
|
|
$this->app->DB->Delete("DELETE vp FROM verbindlichkeit_position vp INNER JOIN verbindlichkeit v ON v.id = vp.verbindlichkeit WHERE vp.id = '{$id}' AND v.freigabe <> 1");
|
|
header("Location: index.php?module=verbindlichkeit&action=edit&id=$verbindlichkeit#tabs-2");
|
|
}
|
|
|
|
/*
|
|
* Edit verbindlichkeit item
|
|
* If id is empty, create a new one
|
|
*/
|
|
|
|
function verbindlichkeit_edit($einkauf_automatik_aus = false) {
|
|
$id = $this->app->Secure->GetGET('id');
|
|
|
|
// Check if other users are editing this id
|
|
if($this->app->erp->DisableModul('artikel',$id))
|
|
{
|
|
return;
|
|
}
|
|
|
|
$this->app->Tpl->Set('ID', $id);
|
|
|
|
$this->verbindlichkeit_menu($id);
|
|
|
|
$input = $this->GetInput();
|
|
$submit = $this->app->Secure->GetPOST('submit');
|
|
|
|
if (empty($id)) {
|
|
// New item
|
|
$id = 'NULL';
|
|
$input['status'] = 'angelegt';
|
|
}
|
|
|
|
switch($submit)
|
|
{
|
|
case 'speichern':
|
|
// Write to database
|
|
// Add checks here
|
|
$schreibschutz = $this->app->DB->Select("SELECT schreibschutz FROM verbindlichkeit WHERE id =".$id);
|
|
|
|
if ($schreibschutz) {
|
|
$internebemerkung = $input['internebemerkung'];
|
|
$projekt = $input['projekt'];
|
|
$kostenstelle = $input['kostenstelle'];
|
|
unset($input);
|
|
$input['internebemerkung'] = $internebemerkung;
|
|
$input['projekt'] = $this->app->erp->ReplaceProjekt(true,$projekt,true);
|
|
$input['kostenstelle'] = $this->app->DB->Select("SELECT id FROM kostenstellen WHERE nummer = '".$kostenstelle."'");
|
|
} else {
|
|
$input['adresse'] = $this->app->erp->ReplaceLieferantennummer(true,$input['adresse'],true); // Parameters: Target db?, value, from form?
|
|
$input['rechnungsdatum'] = $this->app->erp->ReplaceDatum(true,$input['rechnungsdatum'],true); // Parameters: Target db?, value, from form?
|
|
$input['eingangsdatum'] = $this->app->erp->ReplaceDatum(true,$input['eingangsdatum'],true); // Parameters: Target db?, value, from form?
|
|
$input['skontobis'] = $this->app->erp->ReplaceDatum(true,$input['skontobis'],true); // Parameters: Target db?, value, from form?
|
|
$input['zahlbarbis'] = $this->app->erp->ReplaceDatum(true,$input['zahlbarbis'],true); // Parameters: Target db?, value, from form?
|
|
$input['projekt'] = $this->app->erp->ReplaceProjekt(true,$input['projekt'],true);
|
|
$input['kostenstelle'] = $this->app->DB->Select("SELECT id FROM kostenstellen WHERE nummer = '".$input['kostenstelle']."'");
|
|
$input['projekt'] = $this->app->erp->ReplaceBestellung(true,$input['bestellung'],true);
|
|
if(empty($input['projekt']) && !empty($input['adresse'])) {
|
|
$input['projekt'] = $this->app->erp->GetCreateProjekt($input['adresse']);
|
|
}
|
|
|
|
if (!empty($input['adresse'])) {
|
|
$steuertyp = $this->app->DB->Select("SELECT ust_befreit FROM adresse WHERE id = ".$input['adresse']);
|
|
|
|
if ($steuertyp > 0) {
|
|
$input['steuersatz_normal'] = '0';
|
|
$input['steuersatz_ermaessigt'] = '0';
|
|
} else {
|
|
$input['steuersatz_normal'] = $this->app->erp->Firmendaten("steuersatz_normal");
|
|
$input['steuersatz_ermaessigt'] = $this->app->erp->Firmendaten("steuersatz_ermaessigt");
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
$columns = "id, ";
|
|
$values = "$id, ";
|
|
$update = "";
|
|
|
|
$fix = "";
|
|
|
|
foreach ($input as $key => $value) {
|
|
$columns = $columns.$fix.$key;
|
|
$values = $values.$fix."'".$value."'";
|
|
$update = $update.$fix.$key." = '$value'";
|
|
|
|
$fix = ", ";
|
|
}
|
|
|
|
// echo($columns."<br>");
|
|
// echo($values."<br>");
|
|
// echo($update."<br>");
|
|
|
|
$sql = "INSERT INTO verbindlichkeit (".$columns.") VALUES (".$values.") ON DUPLICATE KEY UPDATE ".$update;
|
|
|
|
// echo($sql);
|
|
|
|
$this->app->DB->Update($sql);
|
|
|
|
if ($id == 'NULL') {
|
|
$id = $this->app->DB->GetInsertID();
|
|
$msg = $this->app->erp->base64_url_encode("<div class=\"success\">Das Element wurde erfolgreich angelegt.</div>");
|
|
header("Location: index.php?module=verbindlichkeit&action=edit&id=$id&msg=$msg");
|
|
} else {
|
|
$this->app->Tpl->Set('MESSAGE', "<div class=\"success\">Die Einstellungen wurden erfolgreich übernommen.</div>");
|
|
}
|
|
break;
|
|
case 'positionen_hinzufuegen':
|
|
|
|
$freigabeeinkauf = $this->app->DB->Select("SELECT freigabe FROM verbindlichkeit WHERE id =".$id);
|
|
if ($freigabeeinkauf) {
|
|
break;
|
|
}
|
|
|
|
// Process multi action
|
|
$ids = $this->app->Secure->GetPOST('ids');
|
|
$werte = $this->app->Secure->GetPOST('werte');
|
|
$preise = $this->app->Secure->GetPOST('preise');
|
|
$umsatzsteuern = $this->app->Secure->GetPOST('umsatzsteuer');
|
|
$artikel = $this->app->Secure->GetPOST('artikel');
|
|
|
|
foreach ($ids as $key => $paketdistribution) {
|
|
$menge = $werte[$key];
|
|
|
|
if ($menge <= 0) {
|
|
continue;
|
|
}
|
|
|
|
$preis = $preise[$key];
|
|
$umsatzsteuer = $umsatzsteuern[$key];
|
|
$ein_artikel = $artikel[$key];
|
|
|
|
$sql = "INSERT INTO verbindlichkeit_position (verbindlichkeit,paketdistribution, menge, preis, umsatzsteuer, artikel) VALUES ($id, $paketdistribution, $menge, $preis, '$umsatzsteuer', $ein_artikel)";
|
|
|
|
$this->app->DB->Insert($sql);
|
|
|
|
}
|
|
break;
|
|
case 'positionen_sachkonto_speichern':
|
|
|
|
$rechnungsfreigabe = $this->app->DB->Select("SELECT rechnungsfreigabe FROM verbindlichkeit WHERE id =".$id);
|
|
if ($rechnungsfreigabe) {
|
|
break;
|
|
}
|
|
// Process multi action
|
|
$ids = $this->app->Secure->GetPOST('auswahl');
|
|
if (!is_array($ids)) {
|
|
break;
|
|
}
|
|
$sachkonto = $this->app->Secure->GetPOST('positionen_sachkonto');
|
|
$kontorahmen = $this->app->erp->ReplaceKontorahmen(true,$sachkonto,false);
|
|
$sql = "update verbindlichkeit_position SET kontorahmen = '".$kontorahmen."' WHERE id IN (".implode(',',$ids).")";
|
|
$this->app->DB->Update($sql);
|
|
break;
|
|
case 'positionen_steuersatz_speichern':
|
|
|
|
$rechnungsfreigabe = $this->app->DB->Select("SELECT rechnungsfreigabe FROM verbindlichkeit WHERE id =".$id);
|
|
if ($rechnungsfreigabe) {
|
|
break;
|
|
}
|
|
// Process multi action
|
|
$ids = $this->app->Secure->GetPOST('auswahl');
|
|
if (!is_array($ids)) {
|
|
break;
|
|
}
|
|
$steuersatz = $this->app->Secure->GetPOST('positionen_steuersatz');
|
|
if (!is_numeric($steuersatz)) {
|
|
$steuersatz = 'NULL';
|
|
}
|
|
$sql = "update verbindlichkeit_position SET steuersatz = ".$steuersatz." WHERE id IN (".implode(',',$ids).")";
|
|
$this->app->DB->Update($sql);
|
|
break;
|
|
}
|
|
|
|
|
|
// Load values again from database
|
|
$dropnbox = "'<img src=./themes/new/images/details_open.png class=details>' AS `open`, CONCAT('<input type=\"checkbox\" name=\"auswahl[]\" value=\"',v.id,'\" />') AS `auswahl`";
|
|
$result = $this->app->DB->SelectArr("SELECT SQL_CALC_FOUND_ROWS v.id,
|
|
$dropnbox,
|
|
v.belegnr,
|
|
v.status_beleg,
|
|
v.schreibschutz,
|
|
v.rechnung,
|
|
v.zahlbarbis,
|
|
".$this->app->erp->FormatMengeBetrag('v.betrag')." AS betrag,
|
|
v.umsatzsteuer,
|
|
v.ustid,
|
|
v.summenormal,
|
|
v.summeermaessigt,
|
|
v.summesatz3,
|
|
v.summesatz4,
|
|
v.steuersatzname3,
|
|
v.steuersatzname4,
|
|
v.skonto,
|
|
v.skontobis,
|
|
v.skontofestsetzen,
|
|
v.freigabe,
|
|
v.freigabemitarbeiter,
|
|
v.bestellung,
|
|
v.adresse,
|
|
v.projekt,
|
|
v.teilprojekt,
|
|
v.auftrag,
|
|
v.status,
|
|
v.bezahlt,
|
|
v.kontoauszuege,
|
|
v.firma,
|
|
v.logdatei,
|
|
v.waehrung,
|
|
v.zahlungsweise,
|
|
v.eingangsdatum,
|
|
v.buha_konto1,
|
|
v.buha_belegfeld1,
|
|
v.buha_betrag1,
|
|
v.buha_konto2,
|
|
v.buha_belegfeld2,
|
|
v.buha_betrag2,
|
|
v.buha_konto3,
|
|
v.buha_belegfeld3,
|
|
v.buha_betrag3,
|
|
v.buha_konto4,
|
|
v.buha_belegfeld4,
|
|
v.buha_betrag4,
|
|
v.buha_konto5,
|
|
v.buha_belegfeld5,
|
|
v.buha_betrag5,
|
|
v.rechnungsdatum,
|
|
v.rechnungsfreigabe,
|
|
v.kostenstelle,
|
|
v.beschreibung,
|
|
v.sachkonto,
|
|
v.art,
|
|
v.verwendungszweck,
|
|
v.dta_datei,
|
|
v.frachtkosten,
|
|
v.internebemerkung,
|
|
v.ustnormal,
|
|
v.ustermaessigt,
|
|
v.uststuer3,
|
|
v.uststuer4,
|
|
v.betragbezahlt,
|
|
v.bezahltam,
|
|
v.klaerfall,
|
|
v.klaergrund,
|
|
v.skonto_erhalten,
|
|
v.kurs,
|
|
v.sprache,
|
|
v.id,
|
|
a.lieferantennummer,
|
|
a.name AS adresse_name FROM verbindlichkeit v LEFT JOIN adresse a ON a.id = v.adresse"." WHERE v.id=$id");
|
|
|
|
foreach ($result[0] as $key => $value) {
|
|
$this->app->Tpl->Set(strtoupper($key), $value);
|
|
}
|
|
|
|
if (!empty($result[0])) {
|
|
$verbindlichkeit_from_db = $result[0];
|
|
}
|
|
|
|
// Summarize positions
|
|
|
|
$sql = "SELECT * FROM verbindlichkeit_position WHERE verbindlichkeit = ".$id;
|
|
$positionen = $this->app->DB->SelectArr($sql);
|
|
|
|
if (!empty($positionen)) {
|
|
$betrag_netto = 0;
|
|
$betrag_brutto = 0;
|
|
$steuer_normal = 0;
|
|
$steuer_ermaessigt = 0;
|
|
|
|
/*
|
|
Normal: umsatzsteuer leer, steuersatz = leer
|
|
Ermäßigt: umsatzsteuer ermaessigt, steuersatz = -1
|
|
Befreit: umsatzsteuer befreit, steursatz = -1
|
|
Individuell: umsatzsteuer leer, steuersatz = wert
|
|
*/
|
|
|
|
foreach ($positionen as $position) {
|
|
|
|
$tmpsteuersatz = null;
|
|
$tmpsteuertext = null;
|
|
$erloes = null;
|
|
|
|
// function GetSteuerPosition($typ, $posid,&$tmpsteuersatz = null, &$tmpsteuertext = null, &$erloes = null)
|
|
|
|
$this->app->erp->GetSteuerPosition("verbindlichkeit",$position['id'],$tmpsteuersatz,$tmpsteuertext,$erloes);
|
|
|
|
$position['steuersatz_berechnet'] = $tmpsteuersatz;
|
|
$position['steuertext_berechnet'] = $tmpsteuertext;
|
|
$position['steuererloes_berechnet'] = $erloes;
|
|
|
|
$betrag_netto += ($position['menge']*$position['preis']);
|
|
$betrag_brutto += ($position['menge']*$position['preis'])*(1+($tmpsteuersatz/100));
|
|
|
|
}
|
|
|
|
$this->app->Tpl->Set('BETRAGNETTO', $betrag_netto);
|
|
$this->app->Tpl->Set('BETRAGBRUTTOPOS', round($betrag_brutto,2));
|
|
|
|
if ($verbindlichkeit_from_db['betrag'] == round($betrag_brutto,2)) {
|
|
if (!$verbindlichkeit_from_db['freigabe'] && !$einkauf_automatik_aus) {
|
|
$this->app->DB->Update("UPDATE verbindlichkeit SET freigabe = 1 WHERE id = ".$id);
|
|
$verbindlichkeit_from_db['freigabe'] = 1;
|
|
$this->app->erp->BelegProtokoll("verbindlichkeit",$id,"Verbindlichkeit automatisch freigegeben (Einkauf)");
|
|
$this->app->YUI->Message('success',"Verbindlichkeit automatisch freigegeben (Einkauf)");
|
|
}
|
|
$this->app->Tpl->Set('POSITIONENMESSAGE', '<div class="success">Positionen vollständig</div>');
|
|
} else {
|
|
$this->app->Tpl->Set('POSITIONENMESSAGE', '<div class="warning">Positionen nicht vollständig. Bruttobetrag '.$verbindlichkeit_from_db['betrag'].', Summe Positionen (brutto) '.round($betrag_brutto,2).', Summe Positionen (netto) '.round($betrag_netto,2).'</div>');
|
|
|
|
if ($verbindlichkeit_from_db['freigabe']) {
|
|
$this->app->DB->Update("UPDATE verbindlichkeit SET freigabe = 0 WHERE id = ".$id);
|
|
}
|
|
|
|
}
|
|
|
|
$this->app->Tpl->Set('BETRAGDISABLED', 'disabled');
|
|
|
|
}
|
|
|
|
/*
|
|
* Add displayed items later
|
|
*
|
|
|
|
$this->app->Tpl->Add('KURZUEBERSCHRIFT2', $email);
|
|
$this->app->Tpl->Add('EMAIL', $email);
|
|
$this->app->Tpl->Add('ANGEZEIGTERNAME', $angezeigtername);
|
|
$this->app->YUI->AutoComplete("artikel", "artikelnummer");
|
|
|
|
*/
|
|
|
|
if ($verbindlichkeit_from_db['rechnungsfreigabe']) {
|
|
$this->app->Tpl->Set('SAVEDISABLED','disabled');
|
|
$this->app->Tpl->Set('MESSAGE',"<div class=\"warning\">Diese Verbindlichkeit ist schreibgeschützt und darf daher nicht mehr bearbeitet werden! <input type=\"button\" value=\"Schreibschutz entfernen\" onclick=\"if(!confirm('Soll der Schreibschutz für diese Verbindlichkeit wirklich entfernt werden?')) return false;else window.location.href='index.php?module=verbindlichkeit&action=ruecksetzenbuchhaltung&id=$id';\"></div>");
|
|
}
|
|
|
|
if (empty($verbindlichkeit_from_db['adresse'] || $verbindlichkeit_from_db['status'] == 'angelegt')) {
|
|
$this->app->Tpl->Set('FREIGABEEINKAUFHIDDEN','hidden');
|
|
$this->app->Tpl->Set('FREIGABEBUCHHALTUNGHIDDEN','hidden');
|
|
$this->app->Tpl->Set('FREIGABEBEZAHLTHIDDEN','hidden');
|
|
}
|
|
|
|
if ($verbindlichkeit_from_db['freigabe']) {
|
|
$this->app->Tpl->Set('FREIGABEEINKAUFHIDDEN','hidden');
|
|
$this->app->Tpl->Set('EINKAUFINFOHIDDEN','hidden');
|
|
$this->app->Tpl->Set('POSITIONHINZUFUEGENHIDDEN','hidden');
|
|
} else {
|
|
$this->app->Tpl->Set('RUECKSETZENEINKAUFHIDDEN','hidden');
|
|
$this->app->Tpl->Set('FREIGABEBUCHHALTUNGHIDDEN','hidden');
|
|
}
|
|
|
|
if (!empty($positionen)) {
|
|
$this->app->Tpl->Set('FREIGABEEINKAUFHIDDEN','hidden');
|
|
}
|
|
|
|
if ($verbindlichkeit_from_db['rechnungsfreigabe']) {
|
|
$this->app->Tpl->Set('FREIGABEBUCHHALTUNGHIDDEN','hidden');
|
|
$this->app->Tpl->Set('RUECKSETZENEINKAUFHIDDEN','hidden');
|
|
} else {
|
|
$this->app->Tpl->Set('RUECKSETZENBUCHHALTUNGHIDDEN','hidden');
|
|
}
|
|
if ($verbindlichkeit_from_db['bezahlt'] == '1') {
|
|
$this->app->Tpl->Set('FREIGABEBEZAHLTHIDDEN','hidden');
|
|
} else {
|
|
$this->app->Tpl->Set('RUECKSETZENBEZAHLTHIDDEN','hidden');
|
|
}
|
|
|
|
$this->app->Tpl->Set('WARENEINGANGCHECKED', $verbindlichkeit_from_db['freigabe']==1?"checked":"");
|
|
$this->app->Tpl->Set('RECHNUNGSFREIGABECHECKED', $verbindlichkeit_from_db['rechnungsfreigabe']==1?"checked":"");
|
|
$this->app->Tpl->Set('BEZAHLTCHECKED', $verbindlichkeit_from_db['bezahlt']==1?"checked":"");
|
|
|
|
$this->app->Tpl->Set('RECHNUNGSDATUM',$this->app->erp->ReplaceDatum(false,$verbindlichkeit_from_db['rechnungsdatum'],false));
|
|
$this->app->YUI->DatePicker("rechnungsdatum");
|
|
$this->app->Tpl->Set('EINGANGSDATUM',$this->app->erp->ReplaceDatum(false,$verbindlichkeit_from_db['eingangsdatum'],false));
|
|
$this->app->YUI->DatePicker("eingangsdatum");
|
|
$this->app->Tpl->Set('SKONTOBIS',$this->app->erp->ReplaceDatum(false,$verbindlichkeit_from_db['skontobis'],false));
|
|
$this->app->YUI->DatePicker("skontobis");
|
|
$this->app->Tpl->Set('ZAHLBARBIS',$this->app->erp->ReplaceDatum(false,$verbindlichkeit_from_db['zahlbarbis'],false));
|
|
$this->app->YUI->DatePicker("zahlbarbis");
|
|
|
|
$sql = "SELECT " . $this->app->YUI->IconsSQLVerbindlichkeit() . " AS `icons` FROM verbindlichkeit v WHERE id=$id";
|
|
$icons = $this->app->DB->SelectArr($sql);
|
|
$this->app->Tpl->Add('STATUSICONS', $icons[0]['icons']);
|
|
|
|
$this->app->YUI->AutoComplete("adresse", "lieferant");
|
|
$this->app->YUI->AutoComplete("projekt", "projektname", 1);
|
|
$this->app->Tpl->Set('PROJEKT',$this->app->erp->ReplaceProjekt(false,$verbindlichkeit_from_db['projekt'],false));
|
|
$this->app->YUI->AutoComplete("kostenstelle", "kostenstelle", 1);
|
|
$this->app->Tpl->Set('KOSTENSTELLE',$this->app->DB->SELECT("SELECT nummer FROM kostenstellen WHERE id = '".$verbindlichkeit_from_db['kostenstelle']."'"));
|
|
|
|
$waehrungenselect = $this->app->erp->GetSelect($this->app->erp->GetWaehrung(), $verbindlichkeit_from_db['waehrung']);
|
|
$this->app->Tpl->Set('WAEHRUNGSELECT', $waehrungenselect);
|
|
|
|
$this->app->Tpl->Set('ADRESSE_ID', $verbindlichkeit_from_db['adresse']);
|
|
|
|
$this->app->Tpl->Set('ADRESSE', $this->app->erp->ReplaceLieferantennummer(false,$verbindlichkeit_from_db['adresse'],false)); // Convert ID to form display
|
|
|
|
$this->app->Tpl->Set('BESTELLUNG',$this->app->erp->ReplaceBestellung(false,$verbindlichkeit_from_db['bestellung'],false));
|
|
$this->app->YUI->AutoComplete("bestellung", "lieferantenbestellung",0,"&adresse=".$verbindlichkeit_from_db['adresse']);
|
|
|
|
$this->app->YUI->CkEditor("internebemerkung");
|
|
|
|
$anzahldateien = $this->app->erp->AnzahlDateien("verbindlichkeit",$id);
|
|
if ($anzahldateien > 0) {
|
|
$file = urlencode("../../../../index.php?module=verbindlichkeit&action=inlinepdf&id=$id");
|
|
$iframe = "<iframe width=\"100%\" height=\"100%\" style=\"height:calc(100vh - 110px)\" src=\"./js/production/generic/web/viewer.html?file=$file\"></iframe>";
|
|
$this->app->Tpl->Set('INLINEPDF', $iframe);
|
|
} else {
|
|
$this->app->Tpl->Set('INLINEPDF', 'Keine Dateien vorhanden.');
|
|
}
|
|
|
|
if (empty($verbindlichkeit_from_db['freigabe'])) {
|
|
$this->app->YUI->TableSearch('PAKETDISTRIBUTION', 'verbindlichkeit_paketdistribution_list', "show", "", "", basename(__FILE__), __CLASS__);
|
|
}
|
|
|
|
// -- POSITIONEN
|
|
$this->app->YUI->AutoComplete("positionen_sachkonto", "sachkonto", 1);
|
|
$this->app->YUI->TableSearch('POSITIONEN', 'verbindlichkeit_positionen', "show", "", "", basename(__FILE__), __CLASS__);
|
|
$this->app->Tpl->Parse('POSITIONENTAB', "verbindlichkeit_positionen.tpl");
|
|
// -- POSITIONEN
|
|
|
|
$this->verbindlichkeit_minidetail('MINIDETAIL',false);
|
|
$this->app->Tpl->Parse('PAGE', "verbindlichkeit_edit.tpl");
|
|
|
|
}
|
|
|
|
/**
|
|
* Get all paramters from html form and save into $input
|
|
*/
|
|
public function GetInput(): array {
|
|
$input = array();
|
|
$input['adresse'] = $this->app->Secure->GetPOST('adresse');
|
|
$input['rechnung'] = $this->app->Secure->GetPOST('rechnung');
|
|
$input['zahlbarbis'] = $this->app->Secure->GetPOST('zahlbarbis');
|
|
$input['betrag'] = $this->app->Secure->GetPOST('betrag');
|
|
$input['waehrung'] = $this->app->Secure->GetPOST('waehrung');
|
|
$input['skonto'] = $this->app->Secure->GetPOST('skonto');
|
|
$input['skontobis'] = $this->app->Secure->GetPOST('skontobis');
|
|
$input['projekt'] = $this->app->Secure->GetPOST('projekt');
|
|
$input['bezahlt'] = $this->app->Secure->GetPOST('bezahlt')?'1':'0';;
|
|
$input['zahlungsweise'] = $this->app->Secure->GetPOST('zahlungsweise');
|
|
$input['eingangsdatum'] = $this->app->Secure->GetPOST('eingangsdatum');
|
|
$input['rechnungsdatum'] = $this->app->Secure->GetPOST('rechnungsdatum');
|
|
$input['bestellung'] = $this->app->Secure->GetPOST('bestellung');
|
|
$input['freigabe'] = $this->app->Secure->GetPOST('freigabe')?'1':'0';
|
|
$input['rechnungsfreigabe'] = $this->app->Secure->GetPOST('rechnungsfreigabe')?'1':'0';
|
|
$input['kostenstelle'] = $this->app->Secure->GetPOST('kostenstelle');
|
|
$input['internebemerkung'] = $this->app->Secure->GetPOST('internebemerkung');
|
|
return $input;
|
|
}
|
|
|
|
function verbindlichkeit_menu($id) {
|
|
|
|
$this->app->erp->MenuEintrag("index.php?module=verbindlichkeit&action=edit&id=$id", "Details");
|
|
$this->app->erp->MenuEintrag("index.php?module=verbindlichkeit&action=list", "Zurück zur Übersicht");
|
|
|
|
$anzahldateien = $this->app->erp->AnzahlDateien("verbindlichkeit",$id);
|
|
if ($anzahldateien > 0) {
|
|
$anzahldateien = " (".$anzahldateien.")";
|
|
} else {
|
|
$anzahldateien="";
|
|
}
|
|
|
|
if ($id != 'NULL') {
|
|
$this->app->erp->MenuEintrag("index.php?module=verbindlichkeit&action=dateien&id=$id", "Dateien".$anzahldateien);
|
|
}
|
|
|
|
$invoiceArr = $this->app->DB->SelectRow("SELECT v.belegnr, a.name, v.status, schreibschutz FROM verbindlichkeit v LEFT JOIN adresse a ON v.adresse = a.id WHERE v.id='$id' LIMIT 1");
|
|
$belegnr = $invoiceArr['belegnr'];
|
|
$name = $invoiceArr['name'];
|
|
if($belegnr=='0' || $belegnr=='') {
|
|
$belegnr ='(Entwurf)';
|
|
}
|
|
$this->app->Tpl->Set('KURZUEBERSCHRIFT2',"$name Verbindlichkeit $belegnr");
|
|
|
|
if ($invoiceArr['status'] === 'angelegt' || empty($invoiceArr['status'])) {
|
|
$this->app->erp->MenuEintrag("index.php?module=verbindlichkeit&action=freigabe&id=$id",'Freigabe');
|
|
}
|
|
}
|
|
|
|
function verbindlichkeit_dateien()
|
|
{
|
|
$id = $this->app->Secure->GetGET("id");
|
|
$this->verbindlichkeit_menu($id);
|
|
$this->app->Tpl->Add('UEBERSCHRIFT'," (Dateien)");
|
|
$this->app->YUI->DateiUpload('PAGE',"verbindlichkeit",$id);
|
|
}
|
|
|
|
function verbindlichkeit_inlinepdf() {
|
|
$id = $this->app->Secure->GetGET('id');
|
|
|
|
$file_attachments = $this->app->erp->GetDateiSubjektObjekt('%','verbindlichkeit',$id);
|
|
|
|
if (!empty($file_attachments)) {
|
|
|
|
// print_r($file_attachments);
|
|
|
|
// Try to merge all PDFs
|
|
$file_paths = array();
|
|
foreach ($file_attachments as $file_attachment) {
|
|
if ($this->app->erp->GetDateiEndung($file_attachment) == 'pdf') {
|
|
$file_paths[] = $this->app->erp->GetDateiPfad($file_attachment);
|
|
}
|
|
}
|
|
$pdfMerger = $this->app->Container->get('PdfMerger');
|
|
$mergeOutputPath = realpath($this->app->erp->GetTMP()) . '/' . uniqid('sammelpdf_', true) . '.pdf';
|
|
try {
|
|
$pdfMerger->merge($file_paths, $mergeOutputPath);
|
|
header('Content-type:application/pdf');
|
|
header('Content-Disposition: attachment;filename='.md5(microtime(true)).'.pdf');
|
|
readfile($mergeOutputPath);
|
|
$this->app->ExitXentral();
|
|
} catch (\Xentral\Components\Pdf\Exception\PdfComponentExceptionInterface $exception) {
|
|
// Just the first PDF
|
|
foreach ($file_attachments as $file_attachment) {
|
|
if ($this->app->erp->GetDateiEndung($file_attachment) == 'pdf') {
|
|
$file_contents = $this->app->erp->GetDatei($file_attachment);
|
|
header('Content-type:application/pdf');
|
|
header('Content-Disposition: attachment;filename=verbindlichkeit_'.$id.'.pdf');
|
|
echo($file_contents);
|
|
$this->app->ExitXentral();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$this->app->ExitXentral();
|
|
}
|
|
|
|
function verbindlichkeit_freigabe()
|
|
{
|
|
$id = $this->app->Secure->GetGET('id');
|
|
$this->app->erp->BelegFreigabe('verbindlichkeit',$id);
|
|
$this->app->erp->BelegProtokoll("verbindlichkeit",$id,"Verbindlichkeit freigegeben");
|
|
$this->app->DB->Update("UPDATE verbindlichkeit SET schreibschutz = 1 WHERE id = ".$id);
|
|
$this->verbindlichkeit_edit();
|
|
}
|
|
|
|
function verbindlichkeit_freigabeeinkauf($id = null)
|
|
{
|
|
if (empty($id)) {
|
|
$id = $this->app->Secure->GetGET('id');
|
|
$gotoedit = true;
|
|
}
|
|
$sql = "UPDATE verbindlichkeit SET freigabe = 1, schreibschutz = 1 WHERE id=".$id;
|
|
$this->app->DB->Update($sql);
|
|
$this->app->erp->BelegProtokoll("verbindlichkeit",$id,"Verbindlichkeit freigegeben (Einkauf)");
|
|
if ($gotoedit) {
|
|
$this->verbindlichkeit_edit();
|
|
}
|
|
}
|
|
|
|
function verbindlichkeit_freigabebuchhaltung($id = null)
|
|
{
|
|
if (empty($id)) {
|
|
$id = $this->app->Secure->GetGET('id');
|
|
$gotoedit = true;
|
|
}
|
|
$sql = "UPDATE verbindlichkeit SET rechnungsfreigabe = 1 WHERE freigabe = 1 AND id=".$id;
|
|
$this->app->DB->Update($sql);
|
|
$this->app->erp->BelegProtokoll("verbindlichkeit",$id,"Verbindlichkeit freigegeben (Buchhaltung)");
|
|
if ($gotoedit) {
|
|
$this->verbindlichkeit_edit();
|
|
}
|
|
}
|
|
|
|
function verbindlichkeit_freigabebezahlt($id = null)
|
|
{
|
|
if (empty($id)) {
|
|
$id = $this->app->Secure->GetGET('id');
|
|
$gotoedit = true;
|
|
}
|
|
$sql = "UPDATE verbindlichkeit SET bezahlt = 1 WHERE id=".$id;
|
|
$this->app->DB->Update($sql);
|
|
$this->app->erp->BelegProtokoll("verbindlichkeit",$id,"Verbindlichkeit als bezahlt markiert");
|
|
if ($gotoedit) {
|
|
$this->verbindlichkeit_edit();
|
|
}
|
|
}
|
|
|
|
function verbindlichkeit_ruecksetzeneinkauf($id = null)
|
|
{
|
|
if (empty($id)) {
|
|
$id = $this->app->Secure->GetGET('id');
|
|
$gotoedit = true;
|
|
}
|
|
$sql = "UPDATE verbindlichkeit SET freigabe = 0, schreibschutz = 0 WHERE id=".$id;
|
|
$this->app->DB->Update($sql);
|
|
$this->app->erp->BelegProtokoll("verbindlichkeit",$id,"Verbindlichkeit rückgesetzt (Einkauf)");
|
|
if ($gotoedit) {
|
|
$this->verbindlichkeit_edit(true);
|
|
}
|
|
}
|
|
|
|
function verbindlichkeit_ruecksetzenbuchhaltung($id = null)
|
|
{
|
|
if (empty($id)) {
|
|
$id = $this->app->Secure->GetGET('id');
|
|
$gotoedit = true;
|
|
}
|
|
$sql = "UPDATE verbindlichkeit SET rechnungsfreigabe = 0 WHERE id=".$id;
|
|
$this->app->DB->Update($sql);
|
|
$this->app->erp->BelegProtokoll("verbindlichkeit",$id,"Verbindlichkeit rückgesetzt (Buchhaltung)");
|
|
if ($gotoedit) {
|
|
$this->verbindlichkeit_edit();
|
|
}
|
|
}
|
|
|
|
function verbindlichkeit_ruecksetzenbezahlt($id = null)
|
|
{
|
|
if (empty($id)) {
|
|
$id = $this->app->Secure->GetGET('id');
|
|
$gotoedit = true;
|
|
}
|
|
$sql = "UPDATE verbindlichkeit SET bezahlt = 0 WHERE id=".$id;
|
|
$this->app->DB->Update($sql);
|
|
$this->app->erp->BelegProtokoll("verbindlichkeit",$id,"Verbindlichkeit bezahlt rückgesetzt");
|
|
if ($gotoedit) {
|
|
$this->verbindlichkeit_edit();
|
|
}
|
|
}
|
|
|
|
function verbindlichkeit_schreibschutz($id = null)
|
|
{
|
|
if (empty($id)) {
|
|
$id = $this->app->Secure->GetGET('id');
|
|
$gotoedit = true;
|
|
}
|
|
$sql = "UPDATE verbindlichkeit SET schreibschutz = 0 WHERE id=".$id;
|
|
$this->app->DB->Update($sql);
|
|
$this->app->erp->BelegProtokoll("verbindlichkeit",$id,"Verbindlichkeit Schreibschutz entfernt");
|
|
if ($gotoedit) {
|
|
$this->verbindlichkeit_edit();
|
|
}
|
|
}
|
|
|
|
public function verbindlichkeit_minidetail($parsetarget='',$menu=true) {
|
|
|
|
$id = $this->app->Secure->GetGET('id');
|
|
|
|
$result = $this->app->DB->SelectArr("SELECT SQL_CALC_FOUND_ROWS
|
|
v.id,
|
|
v.belegnr,
|
|
v.status_beleg,
|
|
v.schreibschutz,
|
|
v.rechnung,
|
|
".$this->app->erp->FormatDate('v.zahlbarbis', 'zahlbarbis').",
|
|
".$this->app->erp->FormatMengeBetrag('v.betrag')." AS betrag,
|
|
v.umsatzsteuer,
|
|
v.ustid,
|
|
v.summenormal,
|
|
v.summeermaessigt,
|
|
v.summesatz3,
|
|
v.summesatz4,
|
|
v.steuersatzname3,
|
|
v.steuersatzname4,
|
|
v.skonto,
|
|
".$this->app->erp->FormatDate('v.skontobis', 'skontobis').",
|
|
v.skontofestsetzen,
|
|
v.freigabe,
|
|
v.freigabemitarbeiter,
|
|
p.abkuerzung AS projekt,
|
|
v.teilprojekt,
|
|
v.auftrag,
|
|
v.status,
|
|
v.bezahlt,
|
|
v.kontoauszuege,
|
|
v.firma,
|
|
v.logdatei,
|
|
v.waehrung,
|
|
v.zahlungsweise,
|
|
".$this->app->erp->FormatDate('v.eingangsdatum', 'eingangsdatum').",
|
|
".$this->app->erp->FormatDate('v.rechnungsdatum', 'rechnungsdatum').",
|
|
v.rechnungsfreigabe,
|
|
k.nummer as kostenstelle,
|
|
v.beschreibung,
|
|
v.sachkonto,
|
|
v.art,
|
|
v.verwendungszweck,
|
|
v.dta_datei,
|
|
v.frachtkosten,
|
|
v.internebemerkung,
|
|
v.ustnormal,
|
|
v.ustermaessigt,
|
|
v.uststuer3,
|
|
v.uststuer4,
|
|
v.betragbezahlt,
|
|
v.bezahltam,
|
|
v.klaerfall,
|
|
v.klaergrund,
|
|
v.skonto_erhalten,
|
|
v.kurs,
|
|
v.sprache,
|
|
v.id,
|
|
CONCAT(a.lieferantennummer,' ',a.name) AS adresse
|
|
FROM verbindlichkeit v
|
|
LEFT JOIN adresse a ON a.id = v.adresse
|
|
LEFT JOIN projekt p ON a.projekt = p.id
|
|
LEFT JOIN kostenstellen k ON v.kostenstelle = k.id
|
|
WHERE v.id='$id'");
|
|
|
|
foreach ($result[0] as $key => $value) {
|
|
$this->app->Tpl->Set(strtoupper($key), $value);
|
|
}
|
|
|
|
if (!empty($result[0])) {
|
|
$verbindlichkeit_from_db = $result[0];
|
|
}
|
|
|
|
$positionen = $this->app->DB->SelectArr("SELECT vp.id,
|
|
vp.sort,
|
|
art.name_de,
|
|
art.nummer,
|
|
vp.menge,
|
|
vp.preis,
|
|
vp.steuersatz,
|
|
if (skv.sachkonto <> 0,
|
|
CONCAT(skv.sachkonto,' ',skv.beschriftung),
|
|
(
|
|
if (skart.sachkonto <> 0,
|
|
CONCAT(skart.sachkonto,' ',skart.beschriftung, ' (Artikel)'),
|
|
CONCAT(skadr.sachkonto,' ',skadr.beschriftung, ' (Adresse)')
|
|
)
|
|
)
|
|
) AS sachkonto,
|
|
''
|
|
FROM verbindlichkeit_position vp
|
|
INNER JOIN artikel art ON art.id = vp.artikel
|
|
LEFT JOIN verbindlichkeit v ON v.id = vp.verbindlichkeit
|
|
LEFT JOIN adresse adr ON adr.id = v.adresse
|
|
LEFT JOIN kontorahmen skv ON skv.id = vp.kontorahmen
|
|
LEFT JOIN kontorahmen skart ON skart.id = art.kontorahmen
|
|
LEFT JOIN kontorahmen skadr ON skadr.id = adr.kontorahmen
|
|
WHERE verbindlichkeit='$id'
|
|
ORDER by vp.sort ASC");
|
|
|
|
$tmp = new EasyTable($this->app);
|
|
$tmp->headings = array('Pos.','Artikel-Nr.','Artikel','Menge','Preis','Steuersatz','WIRDUNTENGEFÜLLTWARUMAUCHIMMER');
|
|
$betrag_netto = 0;
|
|
$betrag_brutto = 0;
|
|
$steuer_normal = 0;
|
|
$steuer_ermaessigt = 0;
|
|
foreach ($positionen as $position) {
|
|
|
|
$tmpsteuersatz = null;
|
|
$tmpsteuertext = null;
|
|
$erloes = null;
|
|
|
|
$this->app->erp->GetSteuerPosition("verbindlichkeit",$position['id'],$tmpsteuersatz,$tmpsteuertext,$erloes);
|
|
|
|
$position['steuersatz_berechnet'] = $tmpsteuersatz;
|
|
$position['steuertext_berechnet'] = $tmpsteuertext;
|
|
$position['steuererloes_berechnet'] = $erloes;
|
|
|
|
$betrag_netto += ($position['menge']*$position['preis']);
|
|
$betrag_brutto += ($position['menge']*$position['preis'])*(1+($tmpsteuersatz/100));
|
|
|
|
$row = array(
|
|
$position['sort'],
|
|
$position['nummer'],
|
|
$position['name_de'],
|
|
$position['menge'],
|
|
$position['preis'],
|
|
$position['steuersatz_berechnet'],
|
|
$position['sachkonto']
|
|
);
|
|
$tmp->AddRow($row);
|
|
}
|
|
|
|
$row = array(
|
|
'',
|
|
'',
|
|
'',
|
|
'',
|
|
'<b>Betrag Positionen netto</b>',
|
|
'<b>Betrag Positionen brutto</b>'
|
|
);
|
|
$tmp->AddRow($row);
|
|
$row = array(
|
|
'',
|
|
'',
|
|
'',
|
|
'',
|
|
round($betrag_netto,2),
|
|
round($betrag_brutto,2)
|
|
);
|
|
$tmp->AddRow($row);
|
|
$tmp->DisplayNew('ARTIKEL',"Sachkonto","noAction");
|
|
|
|
$tmp = new EasyTable($this->app);
|
|
$tmp->Query("SELECT zeit,bearbeiter,grund FROM verbindlichkeit_protokoll WHERE verbindlichkeit='$id' ORDER by zeit DESC",0,"");
|
|
$tmp->DisplayNew('PROTOKOLL',"Protokoll","noAction");
|
|
|
|
if($parsetarget=='')
|
|
{
|
|
$this->app->Tpl->Output('verbindlichkeit_minidetail.tpl');
|
|
$this->app->ExitXentral();
|
|
}
|
|
$this->app->Tpl->Parse($parsetarget,'verbindlichkeit_minidetail.tpl');
|
|
}
|
|
|
|
}
|