2023-03-28 12:30:57 +02:00
< ? php
/*
* Copyright ( c ) 2022 OpenXE project
*/
use Xentral\Components\Database\Exception\QueryFailureException ;
class Fibu_buchungen {
function __construct ( $app , $intern = false ) {
$this -> app = $app ;
if ( $intern )
return ;
$this -> app -> ActionHandlerInit ( $this );
$this -> app -> ActionHandler ( " list " , " fibu_buchungen_list " );
$this -> app -> ActionHandler ( " create " , " fibu_buchungen_edit " ); // This automatically adds a "New" button
$this -> app -> ActionHandler ( " edit " , " fibu_buchungen_edit " );
$this -> app -> ActionHandler ( " delete " , " fibu_buchungen_delete " );
$this -> app -> ActionHandler ( " assoc " , " fibu_buchungen_assoc " );
2023-04-08 14:49:08 +02:00
$this -> app -> ActionHandler ( " zuordnen " , " fibu_buchungen_zuordnen " );
2023-04-06 10:43:36 +02:00
$this -> app -> ActionHandler ( " einzelzuordnen " , " fibu_buchungen_einzelzuordnen " );
2023-03-28 12:30:57 +02:00
$this -> app -> DefaultActionHandler ( " list " );
$this -> app -> ActionHandlerListen ( $app );
$this -> app -> erp -> Headlines ( 'Buchhaltung Buchungen' );
}
public function Install () {
/* Fill out manually later */
}
function TableSearch ( & $app , $name , $erlaubtevars ) {
2023-04-01 20:42:37 +02:00
switch ( $name ) {
2023-03-28 12:30:57 +02:00
case " fibu_buchungen_list " :
$allowed [ 'fibu_buchungen_list' ] = array ( 'list' );
$doc_typ = $this -> app -> User -> GetParameter ( 'fibu_buchungen_doc_typ' );
$doc_id = $this -> app -> User -> GetParameter ( 'fibu_buchungen_doc_id' );
$heading = array ( '' , '' , 'Buchungsart' , 'Typ' , 'Datum' , 'Beleg' , 'Betrag' , 'Währung' , 'Menü' );
$width = array ( '1%' , '1%' , '10%' ); // Fill out manually later
// columns that are aligned right (numbers etc)
$alignright = array ( 7 );
$sumcol = array ( 7 );
2023-04-08 14:49:08 +02:00
$findcols = array ( 'f.id' , 'f.id' , 'f.buchungsart' , 'f.typ' , 'f.datum' , 'f.doc_info' , 'f.betrag' , 'f.waehrung' , 'f.id' );
2023-04-06 10:43:36 +02:00
$searchsql = array ( 'f.buchungsart' , 'f.typ' , 'f.datum' , 'f.doc_typ' , 'f.doc_info' );
2023-03-28 12:30:57 +02:00
$defaultorder = 1 ;
$defaultorderdesc = 0 ;
$dropnbox = " '<img src=./themes/new/images/details_open.png class=details>' AS `open`, CONCAT('<input type= \" checkbox \" name= \" auswahl[] \" value= \" ',f.id,' \" />') AS `auswahl` " ;
$menu = " <table cellpadding=0 cellspacing=0><tr><td nowrap> " . " <a href= \" index.php?action=edit&module=%value% \" ><img src= \" ./themes/ { $app -> Conf -> WFconf [ 'defaulttheme' ] } /images/edit.svg \" border= \" 0 \" ></a></td></tr></table> " ;
2023-04-08 14:49:08 +02:00
if ( ! empty ( $doc_typ ) && ! empty ( $doc_id )) {
2023-03-28 12:30:57 +02:00
$where = " `doc_typ` = ' $doc_typ ' AND `doc_id` = $doc_id " ;
} else {
$where = " 1 " ;
}
$sql = " SELECT SQL_CALC_FOUND_ROWS
f . id ,
$dropnbox ,
" . $app->erp ->FormatUCfirst('f.buchungsart'). " ,
" . $app->erp ->FormatUCfirst('f.typ'). " ,
" . $app->erp ->FormatDate('f.datum'). " ,
2023-04-06 10:43:36 +02:00
CONCAT ( " . $app->erp ->FormatUCfirst('f.doc_typ'). " , ' ' , f . doc_info ),
2023-03-28 12:30:57 +02:00
" . $app->erp ->FormatMenge('f.betrag',2). " ,
f . waehrung ,
CONCAT ( f . edit_module , '&id=' , f . edit_id )
FROM fibu_buchungen_alle f " ;
$count = " SELECT count(*) FROM fibu_buchungen_alle WHERE $where " ;
// $groupby = "";
break ;
2023-04-01 20:42:37 +02:00
case " fibu_buchungen_salden " :
$allowed [ 'fibu_buchungen_salden' ] = array ( 'list' );
2023-04-08 14:49:08 +02:00
$heading = array ( 'Typ' , 'Anzahl' , 'Saldo' , 'Menü' );
$width = array ( '83%' , '1%' , '1%' , '1%' );
2023-04-01 20:42:37 +02:00
2023-04-08 14:49:08 +02:00
$findcols = array ( 'typ' , '' , 'saldonum' );
$searchsql = array ( 'typ' , 'saldonum' );
2023-04-01 20:42:37 +02:00
$defaultorder = 1 ;
$defaultorderdesc = 0 ;
$dropnbox = " '<img src=./themes/new/images/details_open.png class=details>' AS `open`, CONCAT('<input type= \" checkbox \" name= \" auswahl[] \" value= \" ',f.id,' \" />') AS `auswahl` " ;
$menu = " <table cellpadding=0 cellspacing=0><tr><td nowrap> " . " <a href= \" index.php?module=fibu_buchungen&action=zuordnen&typ=%value% \" ><img src= \" ./themes/ { $app -> Conf -> WFconf [ 'defaulttheme' ] } /images/edit.svg \" border= \" 0 \" ></a></td></tr></table> " ;
$linkstart = '<table cellpadding=0 cellspacing=0><tr><td nowrap><a href="index.php?module=fibu_buchungen&action=edit&' ;
$linkend = '"><img src="./themes/' . $app -> Conf -> WFconf [ 'defaulttheme' ] . '/images/forward.svg" border=0></a></td></tr></table>' ;
2023-04-03 15:30:28 +02:00
$id = $app -> Secure -> GetGET ( 'id' );
2023-04-01 20:42:37 +02:00
$saldolink = array (
'<a href=\"index.php?module=fibu_buchungen&action=zuordnen&typ=' ,
[ 'sql' => 'typ' ],
'">' ,
[ 'sql' => $this -> app -> erp -> FormatMenge ( 'SUM(COALESCE(saldonum,0))' , 2 )],
'</a>'
);
$sql = " SELECT
'' ,
" . $this->app ->erp->FormatUCfirst('typ'). " AS typ ,
2023-04-08 14:49:08 +02:00
count ( id ) AS anzahl ,
2023-04-01 20:42:37 +02:00
" . $this->app ->erp->ConcatSQL( $saldolink ). " AS saldo ,
typ
FROM
(
SELECT
fb . typ ,
fb . id ,
fo . info ,
SUM ( betrag ) AS saldonum
FROM
2023-04-03 15:30:28 +02:00
`fibu_buchungen_alle` fb
2023-04-01 20:42:37 +02:00
INNER JOIN fibu_objekte fo ON
fb . typ = fo . typ AND fb . id = fo . id
WHERE
fb . typ <> 'kontorahmen'
GROUP BY
fb . typ ,
fb . id
) salden
" ;
$where = " saldonum <> 0 " ;
// $count = "SELECT count(DISTINCT id) FROM fibu_buchungen_alle WHERE $where";
$groupby = " GROUP BY typ " ;
$orderby = " ORDER BY typ " ;
2023-04-03 15:30:28 +02:00
//echo($sql." WHERE ".$where." ".$groupby);
2023-04-01 20:42:37 +02:00
break ;
2023-03-28 12:30:57 +02:00
case " fibu_buchungen_wahl " :
$allowed [ 'fibu_buchungen_wahl' ] = array ( 'list' );
2023-04-11 16:51:42 +02:00
$heading = array ( '' , '' , 'Datum' , 'Typ' , 'Info' , 'Von' , 'Nach' , 'Menü' );
2023-03-28 12:30:57 +02:00
$width = array ( '1%' , '1%' , '1%' , '20%' , '80%' , '1%' , '1%' , '%1' );
2023-04-11 16:51:42 +02:00
$findcols = array ( 'f.id' , 'f.id' , 'f.datum' , 'f.typ' , 'f.info' , 'f.id' , 'f.id' , 'f.id' );
$searchsql = array ( 'f.typ' , 'f.info' , 'f.datum' , 'f.parent_typ' , 'f.parent_info' );
2023-03-28 12:30:57 +02:00
$defaultorder = 1 ;
$defaultorderdesc = 0 ;
$dropnbox = " '<img src=./themes/new/images/details_open.png class=details>' AS `open`, CONCAT('<input type= \" checkbox \" name= \" auswahl[] \" value= \" ',f.id,' \" />') AS `auswahl` " ;
$menu = " <table cellpadding=0 cellspacing=0><tr><td nowrap> " . " <a href= \" index.php?action=edit&module=%value% \" ><img src= \" ./themes/ { $app -> Conf -> WFconf [ 'defaulttheme' ] } /images/edit.svg \" border= \" 0 \" ></a></td></tr></table> " ;
$menu = null ;
$linkstart = '<table cellpadding=0 cellspacing=0><tr><td nowrap><a href="index.php?module=fibu_buchungen&action=edit&' ;
$linkend = '"><img src="./themes/' . $app -> Conf -> WFconf [ 'defaulttheme' ] . '/images/forward.svg" border=0></a></td></tr></table>' ;
$id = $app -> Secure -> GetGET ( 'id' );
$sql = " SELECT SQL_CALC_FOUND_ROWS
f . id ,
$dropnbox ,
" . $app->erp ->FormatDate('f.datum'). " ,
" . $app->erp ->FormatUCfirst('f.typ'). " ,
f . info ,
CONCAT ( '".$linkstart."' , 'direction=von&id=".$id."&doc_typ=' , f . typ , '&doc_id=' , f . id , '".$linkend."' ),
CONCAT ( '".$linkstart."' , 'direction=nach&id=".$id."&doc_typ=' , f . typ , '&doc_id=' , f . id , '".$linkend."' ),
f . id ,
f . id
FROM fibu_objekte f
" ;
$where = " 1 " ;
2023-04-11 16:51:42 +02:00
$count = " SELECT count(id) FROM fibu_objekte " ;
2023-03-28 12:30:57 +02:00
// $groupby = "";
2023-04-05 11:07:12 +02:00
break ;
case 'fibu_buchungen_zuordnen' :
$allowed [ 'fibu_buchungen_zuordnung' ] = array ( 'list' );
2023-04-05 13:07:03 +02:00
$heading = array ( '' , '' , 'Datum' , 'Typ' , 'Info' , 'Betrag' , 'Währung' , 'Buchungsbetrag' , 'Vorschlag' , 'Menü' );
2023-04-05 11:07:12 +02:00
$width = array ( );
2023-04-08 14:49:08 +02:00
$findcols = array ( 'id' , 'auswahl' , 'datum' , 'typ' , 'objektlink' , 'saldo' , 'waehrung' , 'saldo' , 'vorschlag' , 'doc' );
$searchsql = array ( 'objektlink' , 'vorschlag' );
2023-04-05 11:07:12 +02:00
$defaultorder = 1 ;
$defaultorderdesc = 0 ;
$menu = " <table cellpadding=0 cellspacing=0><tr><td nowrap> " . " <a href= \" index.php?module=fibu_buchungen&action=einzelzuordnen&doc=%value% \" ><img src= \" ./themes/ { $app -> Conf -> WFconf [ 'defaulttheme' ] } /images/forward.svg \" border= \" 0 \" ></a></td></tr></table> " ;
$linkstart = '<table cellpadding=0 cellspacing=0><tr><td nowrap><a href="index.php?module=fibu_buchungen&action=edit&' ;
$linkend = '"><img src="./themes/' . $app -> Conf -> WFconf [ 'defaulttheme' ] . '/images/forward.svg" border=0></a></td></tr></table>' ;
2023-04-05 11:45:20 +02:00
2023-04-05 11:07:12 +02:00
$typ = $this -> app -> User -> GetParameter ( 'fibu_buchungen_doc_typ' );
2023-04-15 18:45:09 +02:00
2023-04-05 11:07:12 +02:00
$objektlink = array (
'<a href=\"index.php?action=edit&module=' ,
[ 'sql' => 'fb.typ' ],
'&id=' ,
[ 'sql' => 'fb.id' ],
'">' ,
[ 'sql' => 'fo.info' ],
'</a>'
);
2023-04-05 13:07:03 +02:00
$check_sql = " (fo.info <> '' AND salden.saldonum = -SUM(fbd.betrag)) " ;
2023-04-05 11:07:12 +02:00
$auswahl = array (
'<input type=\"text\" name=\"ids[]\" value=\"' ,
[ 'sql' => 'salden.typ' ],
'_' ,
[ 'sql' => 'salden.id' ],
'" hidden/>' ,
'<input type=\"checkbox\" name=\"auswahl[]\" value="' ,
[ 'sql' => 'salden.typ' ],
'_' ,
[ 'sql' => 'salden.id' ],
'"' ,
2023-04-05 13:07:03 +02:00
[ 'sql' => " if( " . $check_sql . " ,'checked','') " ],
2023-04-05 11:07:12 +02:00
' />'
);
$vorschlaege = array (
'<a href=\"index.php?action=edit&module=' ,
[ 'sql' => 'COALESCE(fo.typ,\'\')' ],
'&id=' ,
[ 'sql' => 'COALESCE(fo.id,\'\')' ],
'\">' ,
[ 'sql' => $this -> app -> erp -> FormatUCfirst ( 'COALESCE(fo.typ,\'\')' )],
' ' ,
[ 'sql' => 'COALESCE(fo.info,\'\')' ],
2023-04-05 11:45:20 +02:00
' ' ,
2023-04-15 10:48:47 +02:00
[ 'sql' => " if (SUM(fbd.betrag) IS NULL,'',CONCAT('(Saldo ', " . $this -> app -> erp -> FormatMenge ( 'SUM(fbd.betrag)' , 2 ) . " ,', Diff. ', " . $this -> app -> erp -> FormatMenge ( 'SUM(fbd.betrag)+saldonum' , 2 ) . " ,', ', " . $this -> app -> erp -> FormatMenge ( '(SUM(fbd.betrag)+saldonum)/SUM(fbd.betrag)*100' , 0 ) . " ,'%)')) " ],
2023-04-05 11:07:12 +02:00
'</a> ' ,
'<input type="text" name="vorschlaege[]" value="' ,
[ 'sql' => 'COALESCE(fo.typ,\'\')' ],
'_' ,
[ 'sql' => 'COALESCE(fo.id,\'\')' ],
'" hidden/>'
);
2023-04-15 10:48:47 +02:00
// ['sql' => "if (SUM(fbd.betrag) IS NULL,'',CONCAT('(Saldo ',".$this->app->erp->FormatMenge('SUM(fbd.betrag)',2).",', Diff. ',".$this->app->erp->FormatMenge('SUM(fbd.betrag)+saldonum',2).",')'))"],
2023-04-05 11:07:12 +02:00
$werte = array (
'<input type="number" step="0.01" name="werte[]" value="' ,
[ 'sql' => 'salden.saldonum' ],
'" min="' ,
[ 'sql' => 'if(salden.saldonum < 0,salden.saldonum,0)' ],
'" max="' ,
[ 'sql' => 'if(salden.saldonum < 0,0,salden.saldonum)' ],
'"/>'
);
$waehrungen = array (
[ 'sql' => 'salden.waehrung' ],
'<input type="text" name="waehrungen[]" value="' ,
[ 'sql' => 'salden.waehrung' ],
'" hidden/>'
);
$doc = array (
[ 'sql' => 'salden.typ' ],
'_' ,
[ 'sql' => 'salden.id' ],
);
2023-04-05 11:45:20 +02:00
$sql = " SELECT
'' AS dummy ,
'' AS dummy2 ,
2023-04-05 11:07:12 +02:00
auswahl ,
datum ,
2023-04-05 13:07:03 +02:00
" . $this->app ->erp->FormatUCfirst( " typ " ). " ,
2023-04-05 11:07:12 +02:00
objektlink ,
saldo ,
waehrung ,
wert ,
vorschlag ,
2023-04-05 13:07:03 +02:00
doc ,
doc_id ,
doc_saldo ,
checked
2023-04-05 11:45:20 +02:00
FROM
(
SELECT
'' AS dummy ,
" . $this->app ->erp->ConcatSQL( $auswahl ). " AS auswahl ,
salden . datum ,
salden . typ ,
salden . id ,
salden . info ,
salden . saldo ,
salden . objektlink ,
salden . saldonum ,
" . $this->app ->erp->ConcatSQL( $vorschlaege ). " AS vorschlag ,
" . $this->app ->erp->ConcatSQL( $werte ). " AS wert ,
" . $this->app ->erp->ConcatSQL( $waehrungen ). " AS waehrung ,
fo . typ AS doc_typ ,
fo . id AS doc_id ,
fo . info AS doc_info ,
SUM ( fbd . betrag ) as doc_saldo ,
2023-04-05 13:07:03 +02:00
if ( " . $check_sql . " , '1' , '0' ) AS checked ,
" . $this->app ->erp->ConcatSQL( $doc ). " AS doc
2023-04-05 11:45:20 +02:00
FROM
(
SELECT
" . $this->app ->erp->FormatDate( " fb . datum " ). " AS datum ,
fb . typ ,
fb . id ,
fo . info ,
" . $this->app ->erp->ConcatSQL( $objektlink ). " AS objektlink ,
" . $this->app ->erp->FormatMenge('SUM(COALESCE(fb.betrag,0))',2). " AS saldo ,
SUM ( betrag ) AS saldonum ,
fb . waehrung
FROM
`fibu_buchungen_alle` fb
INNER JOIN fibu_objekte fo ON
fb . typ = fo . typ AND fb . id = fo . id
WHERE
(
fb . typ = '".$typ."' OR '".$typ."' = ''
)
GROUP BY
fb . typ ,
fb . id ,
fb . waehrung
) salden
LEFT JOIN (
SELECT
fo . typ ,
fo . id ,
2023-04-05 13:07:03 +02:00
fo . info ,
SUM ( fob . betrag ) as doc_saldo
2023-04-05 11:45:20 +02:00
FROM
2023-04-05 13:07:03 +02:00
fibu_objekte fo
2023-04-13 21:58:11 +02:00
LEFT JOIN
2023-04-05 13:07:03 +02:00
fibu_buchungen_alle fob
ON
fo . typ = fob . typ AND fo . id = fob . id
2023-04-05 12:48:45 +02:00
WHERE fo . is_beleg = 1
2023-04-05 11:45:20 +02:00
GROUP BY
fo . typ ,
fo . id ,
fo . info
) AS fo
ON
salden . info LIKE CONCAT ( '%' , fo . info , '%' ) AND salden . typ <> fo . typ AND fo . info <> ''
LEFT JOIN
fibu_buchungen_alle fbd
ON
fbd . typ = fo . typ AND fbd . id = fo . id
WHERE
salden . saldonum <> 0
GROUP BY
salden . typ ,
2023-04-05 13:07:03 +02:00
salden . id ,
fo . typ ,
fo . id
2023-04-05 11:45:20 +02:00
) AS erg
2023-04-05 11:07:12 +02:00
" ;
$where = " 1 " ;
2023-04-05 11:45:20 +02:00
// Toggle filters
$this -> app -> Tpl -> Add ( 'JQUERYREADY' , " $ ('#vorschlagfilter').click( function() { fnFilterColumn1( 0 ); } ); " );
2023-04-05 13:07:03 +02:00
$this -> app -> Tpl -> Add ( 'JQUERYREADY' , " $ ('#checkedfilter').click( function() { fnFilterColumn2( 0 ); } ); " );
2023-04-05 11:45:20 +02:00
for ( $r = 1 ; $r <= 4 ; $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 doc_id IS NOT NULL " ;
} else {
}
2023-04-05 13:07:03 +02:00
$more_data2 = $this -> app -> Secure -> GetGET ( " more_data2 " );
if ( $more_data2 == 1 ) {
$where .= " AND checked = 1 " ;
} else {
}
2023-04-05 11:45:20 +02:00
// END Toggle filters
2023-04-05 11:07:12 +02:00
// $count = "SELECT count(DISTINCT id) FROM fibu_buchungen_alle WHERE $where";
$groupby = " GROUP BY typ, id " ;
2023-04-05 13:07:03 +02:00
//echo($sql." WHERE ".$where." ".$groupby);
2023-04-06 10:43:36 +02:00
break ;
case 'fibu_buchungen_einzelzuordnen' :
$allowed [ 'fibu_buchungen_einzelzuordnen' ] = array ( 'list' );
2023-04-15 10:48:47 +02:00
$heading = array ( '' , 'Datum' , 'Typ' , 'Info' , 'Übergeordnet' , 'Saldo' , 'Währung' , 'Berechnet' , 'Buchungsbetrag' , 'Menü' );
2023-04-06 10:43:36 +02:00
$width = array ( );
2023-04-15 10:48:47 +02:00
$findcols = array ( 'fo.id' , 'fo.datum' , 'fo.typ' , 'fo.info' , 'fo.parent_info' , 'fba.betrag' , 'waehrung' , 'fba.betrag' , 'fba.betrag' , 'fo.id' );
2023-04-06 10:43:36 +02:00
$searchsql = array ( 'fo.typ' , 'fo.info' , 'fo.parent_info' );
$defaultorder = 1 ;
$defaultorderdesc = 0 ;
// $menu = "<table cellpadding=0 cellspacing=0><tr><td nowrap>" . "<a href=\"index.php?module=fibu_buchungen&action=einzelzuordnen&doc=%value%\"><img src=\"./themes/{$app->Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\"></a></td></tr></table>";
$linkstart = '<table cellpadding=0 cellspacing=0><tr><td nowrap><a href="index.php?module=fibu_buchungen&action=edit&' ;
$linkend = '"><img src="./themes/' . $app -> Conf -> WFconf [ 'defaulttheme' ] . '/images/forward.svg" border=0></a></td></tr></table>' ;
$doc_typ = $this -> app -> User -> GetParameter ( 'fibu_buchungen_doc_typ' );
$doc_id = $this -> app -> User -> GetParameter ( 'fibu_buchungen_doc_id' );
2023-04-15 18:45:09 +02:00
$abschlag = $this -> app -> User -> GetParameter ( 'fibu_buchungen_abschlag' );
2023-04-15 10:48:47 +02:00
if ( ! is_numeric ( $abschlag )) {
$abschlag = 0 ;
}
2023-04-15 18:45:09 +02:00
$multifilter = $this -> app -> User -> GetParameter ( 'fibu_buchungen_multifilter' );
if ( ! empty ( $multifilter )) {
$multifilter = $this -> app -> DB -> real_escape_string ( $multifilter );
$multifilter = str_replace ( ',' , ' ' , $multifilter );
$multifilter = str_replace ( ';' , ' ' , $multifilter );
$multifilter = str_replace ( '\r' , ' ' , $multifilter );
$multifilter = str_replace ( '\n' , ' ' , $multifilter );
$multifilter_array = explode ( ' ' , $multifilter . " " );
}
2023-04-15 10:48:47 +02:00
2023-04-06 10:43:36 +02:00
$auswahl = array (
'<input type=\"text\" name=\"ids[]\" value=\"' ,
[ 'sql' => 'fo.typ' ],
'_' ,
[ 'sql' => 'fo.id' ],
'" hidden/>' ,
'<input type=\"checkbox\" name=\"auswahl[]\" value="' ,
[ 'sql' => 'fo.typ' ],
'_' ,
[ 'sql' => 'fo.id' ],
'"' ,
' />'
);
$objektlink = array (
'<a href=\"index.php?action=edit&module=' ,
[ 'sql' => 'fo.typ' ],
'&id=' ,
[ 'sql' => 'fo.id' ],
'">' ,
[ 'sql' => 'fo.info' ],
'</a>'
);
$parentlink = array (
'<a href=\"index.php?action=edit&module=' ,
[ 'sql' => 'fo.parent_typ' ],
'&id=' ,
[ 'sql' => 'fo.parent_id' ],
'">' ,
[ 'sql' => 'fo.parent_info' ],
'</a>'
);
2023-04-15 10:48:47 +02:00
$calculated = 'CONVERT(COALESCE(-SUM(fba.betrag*(1-(' . $abschlag . '/100))),0),DECIMAL(12,2))' ;
2023-04-06 10:43:36 +02:00
$werte = array (
'<input type="number" step="0.01" name="werte[]" value="' ,
2023-04-15 10:48:47 +02:00
[ 'sql' => $calculated ],
2023-04-11 16:51:42 +02:00
/* '" min="' ,
2023-04-06 10:43:36 +02:00
[ 'sql' => 'if(COALESCE(-SUM(fba.betrag),0) < 0,COALESCE(-SUM(fba.betrag),0),0)' ],
'" max="' ,
2023-04-11 16:51:42 +02:00
[ 'sql' => 'if(COALESCE(-SUM(fba.betrag),0) < 0,0,COALESCE(-SUM(fba.betrag),0))' ], */
2023-04-06 10:43:36 +02:00
'"/>'
);
$sql = " SELECT
'' ,
" . $this->app ->erp->ConcatSQL( $auswahl ). " AS auswahl ,
" . $this->app ->erp->FormatDate( " fo . datum " ). " as datum ,
" . $this->app ->erp->FormatUCfirst( " fo . typ " ). " as typ ,
" . $this->app ->erp->ConcatSQL( $objektlink ). " AS info ,
" . $this->app ->erp->ConcatSQL( $parentlink ). " AS parent_info ,
2023-04-15 10:48:47 +02:00
" . $this->app ->erp->FormatMenge('SUM(fba.betrag)',2). " as saldonum ,
2023-04-06 10:43:36 +02:00
waehrung ,
2023-04-15 10:48:47 +02:00
" . $this->app ->erp->FormatMenge( $calculated ,2). " as calculated ,
2023-04-06 10:43:36 +02:00
" . $this->app ->erp->ConcatSQL( $werte ). " AS werte
FROM
fibu_objekte fo
LEFT JOIN
fibu_buchungen_alle fba
ON
fba . typ = fo . typ AND fba . id = fo . id
" ;
2023-04-15 18:45:09 +02:00
$where = " fo.typ <> ' " . $doc_typ . " ' " ;
if ( ! empty ( $multifilter_array )) {
$where .= " AND fo.info IN (' " . implode ( " ',' " , $multifilter_array ) . " ') " ;
}
2023-04-06 10:43:36 +02:00
// $count = "SELECT count(DISTINCT id) FROM fibu_buchungen_alle WHERE $where";
$groupby = " GROUP BY fo.id, fo.typ " ;
//echo($sql." WHERE ".$where." ".$groupby);
2023-04-15 10:48:47 +02:00
$sumcol = array ( 6 , 8 );
2023-04-06 10:43:36 +02:00
break ;
2023-03-28 12:30:57 +02:00
}
$erg = false ;
foreach ( $erlaubtevars as $k => $v ) {
if ( isset ( $$v )) {
$erg [ $v ] = $$v ;
}
}
return $erg ;
}
2023-04-03 21:17:59 +02:00
function fibu_rebuild_tables () {
$sql = " DROP TABLE IF EXISTS `fibu_buchungen_alle` " ;
$this -> app -> DB -> Update ( $sql );
$sql = " DROP VIEW IF EXISTS `fibu_buchungen_alle` " ;
$this -> app -> DB -> Update ( $sql );
$sql = " CREATE TABLE `fibu_buchungen_alle` AS SELECT * FROM `fibu_buchungen_alle_view` " ;
$this -> app -> DB -> Update ( $sql );
$sql = " DROP TABLE IF EXISTS `fibu_objekte` " ;
$this -> app -> DB -> Update ( $sql );
$sql = " DROP VIEW IF EXISTS `fibu_objekte` " ;
$this -> app -> DB -> Update ( $sql );
$sql = " CREATE TABLE `fibu_objekte` AS SELECT * FROM `fibu_objekte_view` " ;
$this -> app -> DB -> Update ( $sql );
}
2023-03-28 12:30:57 +02:00
function fibu_buchungen_list () {
$this -> app -> erp -> MenuEintrag ( " index.php?module=fibu_buchungen&action=list " , " Übersicht " );
2023-04-01 20:42:37 +02:00
// $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=create", "Neu anlegen");
2023-03-28 12:30:57 +02:00
2023-04-23 17:18:51 +02:00
$startdatum = $this -> app -> erp -> Firmendaten ( 'fibu_buchungen_startdatum' );
if ( empty ( $startdatum )) {
$msg .= '<div class="error">Startdatum <a href="index.php?module=firmendaten&action=edit#tabs-8">("Buchungen erzeugen ab Datum")</a> in den Firmendaten nicht gesetzt.</div>' ;
}
2023-04-03 20:20:10 +02:00
$submit = $this -> app -> Secure -> GetPOST ( 'submit' );
if ( $submit == 'neuberechnen' ) {
2023-04-03 21:17:59 +02:00
$this -> fibu_rebuild_tables ();
2023-04-23 17:18:51 +02:00
$msg .= " <div class= \" info \" >Buchungen wurden neu berechnet.</div> " ;
2023-04-03 20:20:10 +02:00
}
2023-03-28 12:30:57 +02:00
// For transfer to tablesearch
$doc_typ = $this -> app -> Secure -> GetGET ( 'doc_typ' );
$doc_id = $this -> app -> Secure -> GetGET ( 'doc_id' );
$this -> app -> User -> SetParameter ( 'fibu_buchungen_doc_typ' , $doc_typ );
$this -> app -> User -> SetParameter ( 'fibu_buchungen_doc_id' , $doc_id );
2023-04-01 20:42:37 +02:00
$this -> app -> YUI -> TableSearch ( 'TAB1' , 'fibu_buchungen_salden' , " show " , " " , " " , basename ( __FILE__ ), __CLASS__ );
$this -> app -> YUI -> TableSearch ( 'TAB2' , 'fibu_buchungen_list' , " show " , " " , " " , basename ( __FILE__ ), __CLASS__ );
2023-04-04 14:15:01 +02:00
if ( ! empty ( $msg )) {
$this -> app -> Tpl -> Set ( 'MESSAGE' , $msg );
}
2023-03-28 12:30:57 +02:00
$this -> app -> Tpl -> Parse ( 'PAGE' , " fibu_buchungen_list.tpl " );
}
public function fibu_buchungen_delete () {
$id = ( int ) $this -> app -> Secure -> GetGET ( 'id' );
// $this->app->DB->Delete("DELETE FROM `fibu_buchungen` WHERE `id` = '{$id}'");
2023-04-04 14:15:01 +02:00
// $this->app->Tpl->Set('MESSAGE', "<div class=\"error\">Der Eintrag wurde gelöscht.</div>");
2023-03-28 12:30:57 +02:00
$this -> fibu_buchungen_list ();
}
/*
* Edit fibu_buchungen item
2023-04-15 10:48:47 +02:00
*/
2023-03-28 12:30:57 +02:00
function fibu_buchungen_edit () {
$id = $this -> app -> Secure -> GetGET ( 'id' );
// Check if other users are editing this id
if ( $this -> app -> erp -> DisableModul ( 'artikel' , $id ))
{
return ;
}
// Assoc?
$direction = $this -> app -> Secure -> GetGET ( 'direction' );
$doc_typ = $this -> app -> Secure -> GetGET ( 'doc_typ' );
$doc_id = $this -> app -> Secure -> GetGET ( 'doc_id' );
if ( in_array ( $direction , array ( 'von' , 'nach' ))) {
$sql = " SELECT typ, id FROM fibu_objekte WHERE typ = ' " . $doc_typ . " ' AND id = ' " . $doc_id . " ' " ;
$result = $this -> app -> DB -> SelectArr ( $sql );
if ( ! empty ( $result )) {
$sql = " UPDATE fibu_buchungen SET " . $direction . " _typ = ' " . $doc_typ . " ', " . $direction . " _id = ' " . $doc_id . " ' WHERE id = ' " . $id . " ' " ;
$this -> app -> DB -> Update ( $sql );
}
}
$this -> app -> Tpl -> Set ( 'ID' , $id );
$this -> app -> erp -> MenuEintrag ( " index.php?module=fibu_buchungen&action=edit&id= $id " , " Details " );
2023-04-15 10:48:47 +02:00
$this -> app -> erp -> MenuEintrag ( " index.php?module=fibu_buchungen&action=list#tabs-2 " , " Zurück zur Übersicht " );
2023-03-28 12:30:57 +02:00
$id = $this -> app -> Secure -> GetGET ( 'id' );
$input = $this -> GetInput ();
$submit = $this -> app -> Secure -> GetPOST ( 'submit' );
if ( empty ( $id )) {
2023-04-15 10:48:47 +02:00
$this -> fibu_buchungen_list ();
return ;
2023-03-28 12:30:57 +02:00
}
if ( $submit != '' )
{
// Write to database
// Add checks here
$input [ 'benutzer' ] = $this -> app -> User -> GetId ();
$input [ 'zeit' ] = date ( " Y-m-d H:i " );
$input [ 'betrag' ] = $this -> app -> erp -> ReplaceBetrag ( true , $input [ 'betrag' ]);
$input [ 'internebemerkung' ] = $this -> app -> DB -> real_escape_string ( $input [ 'internebemerkung' ]);
2023-04-11 16:51:42 +02:00
if ( empty ( $input [ 'datum' ])) {
$input [ 'datum' ] = date ( " Y-m-d " );
} else {
$input [ 'datum' ] = $this -> app -> erp -> ReplaceDatum ( true , $input [ 'datum' ], true );
}
2023-03-28 12:30:57 +02:00
$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 = " , " ;
}
$sql = " INSERT INTO fibu_buchungen ( " . $columns . " ) VALUES ( " . $values . " ) ON DUPLICATE KEY UPDATE " . $update ;
$this -> app -> DB -> Update ( $sql );
if ( $id == 'NULL' ) {
$msg = $this -> app -> erp -> base64_url_encode ( " <div class= \" success \" >Das Element wurde erfolgreich angelegt.</div> " );
header ( " Location: index.php?module=fibu_buchungen&action=list&msg= $msg " );
} else {
$this -> app -> Tpl -> Set ( 'MESSAGE' , " <div class= \" success \" >Die Einstellungen wurden erfolgreich übernommen.</div> " );
}
2023-04-15 10:48:47 +02:00
$this -> fibu_rebuild_tables ();
2023-03-28 12:30:57 +02:00
}
// 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= \" ',f.id,' \" />') AS `auswahl` " ;
$sql = "
SELECT SQL_CALC_FOUND_ROWS f . id ,
$dropnbox ,
f . von_typ ,
f . von_id ,
f . nach_typ ,
f . nach_id ,
" . $this->app ->erp->FormatMenge('f.betrag',2). " AS betrag ,
f . waehrung ,
adresse . name as benutzer ,
" . $this->app ->erp->FormatDateTime('f.zeit','zeit'). " ,
f . internebemerkung ,
f . id ,
2023-04-11 16:51:42 +02:00
" . $this->app ->erp->FormatDate('f.datum','datum'). " ,
2023-03-28 12:30:57 +02:00
fvon . info AS von_info ,
fnach . info AS nach_info
FROM
fibu_buchungen f " . "
LEFT JOIN
fibu_objekte fvon
ON
f . von_typ = fvon . typ AND f . von_id = fvon . id
LEFT JOIN
fibu_objekte fnach
ON
f . nach_typ = fnach . typ AND f . nach_id = fnach . id
LEFT JOIN
user
ON
f . benutzer = user . id
LEFT JOIN
adresse
ON
user . adresse = adresse . id
WHERE
f . id = $id
" ;
$result = $this -> app -> DB -> SelectArr ( $sql );
$this -> app -> erp -> ReplaceDatum ( false , $result [ 0 ][ 'zeit' ], false );
$result [ 0 ][ 'internebemerkung' ] = htmlentities ( $result [ 0 ][ 'internebemerkung' ]);
foreach ( $result [ 0 ] as $key => $value ) {
$this -> app -> Tpl -> Set ( strtoupper ( $key ), $value );
}
/*
* Add displayed items later
*
$this -> app -> Tpl -> Add ( 'KURZUEBERSCHRIFT2' , $email );
$this -> app -> Tpl -> Add ( 'EMAIL' , $email );
$this -> app -> Tpl -> Add ( 'ANGEZEIGTERNAME' , $angezeigtername );
*/
$this -> app -> Tpl -> Set ( 'VON' , ucfirst ( $result [ 0 ][ 'von_typ' ]) . " " . $result [ 0 ][ 'von_info' ]);
$this -> app -> Tpl -> Set ( 'NACH' , ucfirst ( $result [ 0 ][ 'nach_typ' ]) . " " . $result [ 0 ][ 'nach_info' ]);
$this -> app -> Tpl -> Set ( 'WAEHRUNG' , $this -> app -> erp -> getSelectAsso ( $this -> app -> erp -> GetWaehrung (), $result [ 0 ][ 'waehrung_von' ]));
2023-04-11 16:51:42 +02:00
$this -> app -> YUI -> DatePicker ( " datum " );
$this -> app -> Tpl -> Set ( 'DATUM' , $this -> app -> erp -> ReplaceDatum ( false , $result [ 0 ][ 'datum' ], true ));
2023-03-28 12:30:57 +02:00
$this -> app -> YUI -> TableSearch ( 'TAB1' , 'fibu_buchungen_wahl' , " show " , " " , " " , basename ( __FILE__ ), __CLASS__ );
$this -> app -> Tpl -> Parse ( 'PAGE' , " fibu_buchungen_edit.tpl " );
}
/**
* Get all paramters from html form and save into $input
*/
public function GetInput () : array {
$input = array ();
//$input['EMAIL'] = $this->app->Secure->GetPOST('email');
$input [ 'von_typ' ] = $this -> app -> Secure -> GetPOST ( 'von_typ' );
$input [ 'von_id' ] = $this -> app -> Secure -> GetPOST ( 'von_id' );
$input [ 'nach_typ' ] = $this -> app -> Secure -> GetPOST ( 'nach_typ' );
$input [ 'nach_id' ] = $this -> app -> Secure -> GetPOST ( 'nach_id' );
$input [ 'betrag' ] = $this -> app -> Secure -> GetPOST ( 'betrag' );
$input [ 'waehrung' ] = $this -> app -> Secure -> GetPOST ( 'waehrung' );
$input [ 'benutzer' ] = $this -> app -> Secure -> GetPOST ( 'benutzer' );
2023-04-11 16:51:42 +02:00
$input [ 'datum' ] = $this -> app -> Secure -> GetPOST ( 'datum' );
2023-03-28 12:30:57 +02:00
$input [ 'internebemerkung' ] = $this -> app -> Secure -> GetPOST ( 'internebemerkung' );
return $input ;
}
/*
* Set all fields in the page corresponding to $input
*/
function SetInput ( $input ) {
// $this->app->Tpl->Set('EMAIL', $input['email']);
$this -> app -> Tpl -> Set ( 'VON_TYP' , $input [ 'von_typ' ]);
$this -> app -> Tpl -> Set ( 'VON_ID' , $input [ 'von_id' ]);
$this -> app -> Tpl -> Set ( 'NACH_TYP' , $input [ 'nach_typ' ]);
$this -> app -> Tpl -> Set ( 'NACH_ID' , $input [ 'nach_id' ]);
$this -> app -> Tpl -> Set ( 'BETRAG' , $input [ 'betrag' ]);
$this -> app -> Tpl -> Set ( 'WAEHRUNG' , $input [ 'waehrung' ]);
$this -> app -> Tpl -> Set ( 'BENUTZER' , $input [ 'benutzer' ]);
$this -> app -> Tpl -> Set ( 'ZEIT' , $input [ 'zeit' ]);
$this -> app -> Tpl -> Set ( 'INTERNEBEMERKUNG' , $input [ 'internebemerkung' ]);
}
2023-04-11 16:51:42 +02:00
function fibu_buchungen_buchen ( string $von_typ , int $von_id , string $nach_typ , int $nach_id , $betrag , string $waehrung , $datum , string $internebemerkung ) {
$sql = " INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES (' " . $von_typ . " ',' " . $von_id . " ',' " . $nach_typ . " ', ' " . $nach_id . " ', ' " . $datum . " ', ' " . $betrag . " ', ' " . $waehrung . " ', ' " . $this -> app -> User -> GetID () . " ',' " . date ( " Y-m-d H:i " ) . " ', ' " . $internebemerkung . " ') " ;
$this -> app -> DB -> Insert ( $sql );
}
2023-04-08 14:49:08 +02:00
function fibu_buchungen_zuordnen () {
2023-04-05 11:07:12 +02:00
$submit = $this -> app -> Secure -> GetPOST ( 'submit' );
if ( $submit == 'neuberechnen' ) {
$this -> fibu_rebuild_tables ();
$msg = " <div class= \" info \" >Buchungen wurden neu berechnet.</div> " ;
}
if ( $submit == 'BUCHEN' ) {
2023-04-11 15:20:40 +02:00
2023-04-05 11:07:12 +02:00
// Process multi action
$ids = $this -> app -> Secure -> GetPOST ( 'ids' );
$werte = $this -> app -> Secure -> GetPOST ( 'werte' );
$waehrungen = $this -> app -> Secure -> GetPOST ( 'waehrungen' );
$auswahl = $this -> app -> Secure -> GetPOST ( 'auswahl' );
$vorschlaege = $this -> app -> Secure -> GetPOST ( 'vorschlaege' );
2023-04-11 15:20:40 +02:00
$aktion = $this -> app -> Secure -> GetPOST ( 'sel_aktion' );
2023-04-11 16:51:42 +02:00
$sachkonto = $this -> app -> Secure -> GetPOST ( 'sachkonto' );
2023-04-08 14:49:08 +02:00
2023-04-11 15:20:40 +02:00
$account_id = null ;
2023-04-08 14:49:08 +02:00
if ( ! empty ( $sachkonto )) {
$sachkonto_kennung = explode ( ' ' , $sachkonto )[ 0 ];
2023-04-11 15:20:40 +02:00
$account_id = $this -> app -> DB -> SelectArr ( " SELECT id from kontorahmen WHERE sachkonto = ' " . $sachkonto_kennung . " ' " )[ 0 ][ 'id' ];
2023-04-08 14:49:08 +02:00
}
2023-04-05 11:07:12 +02:00
if ( ! empty ( $auswahl )) {
foreach ( $ids as $id ) {
2023-04-08 14:49:08 +02:00
2023-04-05 11:07:12 +02:00
$key_ids = array_search ( $id , $ids );
$key_auswahl = array_search ( $id , $auswahl );
2023-04-08 14:49:08 +02:00
if ( $key_auswahl !== false ) {
2023-04-05 11:07:12 +02:00
$von = explode ( '_' , $id );
$von_typ = strtolower ( $von [ 0 ]);
$von_id = ( int ) $von [ 1 ];
$betrag = $werte [ $key_ids ];
2023-04-11 15:20:40 +02:00
2023-04-05 11:07:12 +02:00
$waehrung = $waehrungen [ $key_ids ];
2023-04-11 15:20:40 +02:00
$datum = $this -> app -> DB -> SelectArr ( " SELECT datum FROM fibu_buchungen_alle WHERE typ=' " . $von_typ . " ' AND id = ' " . $von_id . " ' " )[ 0 ][ 'datum' ]; // Get relevant date of source doc
2023-04-08 14:49:08 +02:00
2023-04-11 15:20:40 +02:00
$doc_id = null ;
if ( $vorschlaege [ $key_ids ] != '_' ) {
2023-04-08 14:49:08 +02:00
$doc = $vorschlaege [ $key_ids ];
$doc = explode ( '_' , $doc );
$doc_typ = strtolower ( $doc [ 0 ]);
$doc_id = ( int ) $doc [ 1 ];
}
2023-04-11 15:20:40 +02:00
switch ( $aktion ) {
case 'vorschlag' :
if ( $doc_id ) {
2023-04-11 16:51:42 +02:00
// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".$datum."', '".-$betrag."', '".$waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')";
2023-04-11 15:20:40 +02:00
// echo($sql."\n");
2023-04-11 16:51:42 +02:00
// $this->app->DB->Insert($sql);
$this -> fibu_buchungen_buchen ( $von_typ , $von_id , $doc_typ , $doc_id , - $betrag , $waehrung , $datum , '' );
2023-04-11 15:20:40 +02:00
}
break ;
case 'sachkonto' :
2023-04-11 16:51:42 +02:00
// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','kontorahmen', '".$account_id."', '".$datum."', '".-$betrag."', '".$waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')";
2023-04-11 15:20:40 +02:00
// echo($sql."\n");
2023-04-11 16:51:42 +02:00
// $this->app->DB->Insert($sql);
$this -> fibu_buchungen_buchen ( $von_typ , $von_id , 'kontorahmen' , $account_id , - $betrag , $waehrung , $datum , '' );
2023-04-11 15:20:40 +02:00
break ;
case 'vorschlag_diff_sachkonto' :
if ( $doc_id ) {
2023-04-11 16:51:42 +02:00
// Retrieve counter doc saldo
2023-04-11 15:20:40 +02:00
$doc_saldo = $this -> app -> erp -> GetSaldoDokument ( $doc_id , $doc_typ );
2023-04-11 16:51:42 +02:00
// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".$datum."', '".-$betrag."', '".$waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')";
2023-04-11 15:20:40 +02:00
// echo($sql."\n");
2023-04-11 16:51:42 +02:00
// $this->app->DB->Insert($sql);
$this -> fibu_buchungen_buchen ( $von_typ , $von_id , $doc_typ , $doc_id , - $betrag , $waehrung , $datum , '' );
2023-04-11 15:20:40 +02:00
}
if ( ! empty ( $doc_saldo ) && ( $doc_saldo [ 'waehrung' ] == $waehrung ) && ( $account_id !== null )) {
$diff = $betrag + $doc_saldo [ 'betrag' ];
2023-04-11 16:51:42 +02:00
// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$doc_typ."','".$doc_id."','kontorahmen', '".$account_id."', '".$datum."', '".-$diff."', '".$waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')";
2023-04-11 15:20:40 +02:00
// echo($sql."\n");
2023-04-11 16:51:42 +02:00
// $this->app->DB->Insert($sql);
$this -> fibu_buchungen_buchen ( $doc_typ , $doc_id , 'kontorahmen' , $account_id , - $diff , $waehrung , $datum , '' );
2023-04-11 15:20:40 +02:00
} else {
$msg .= " <div class= \" warning \" >Gegensaldo wurde nicht gebucht. " . count ( $doc_saldo ) . " " . $doc_saldo [ 0 ][ 'waehrung' ] . " </div> " ;
}
break ;
}
2023-04-08 14:49:08 +02:00
} // auswahl
} // foreach
2023-04-11 16:51:42 +02:00
} else { // auswahl
$msg .= " <div class= \" warning \" >Keine Posten ausgewählt.</div> " ;
}
2023-04-08 14:49:08 +02:00
} // submit
2023-04-05 11:07:12 +02:00
$this -> fibu_rebuild_tables ();
// For transfer to tablesearch
$doc_typ = $this -> app -> Secure -> GetGET ( 'typ' );
$this -> app -> User -> SetParameter ( 'fibu_buchungen_doc_typ' , $doc_typ );
2023-04-15 10:48:47 +02:00
$this -> app -> erp -> Headlines ( 'Buchhaltung' , 'zuordnen ' . strtoupper ( $doc_typ ));
2023-04-05 11:07:12 +02:00
$this -> app -> YUI -> TableSearch ( 'TAB1' , 'fibu_buchungen_zuordnen' , " show " , " " , " " , basename ( __FILE__ ), __CLASS__ );
$this -> app -> YUI -> TableSearch ( 'TAB2' , 'fibu_buchungen_list' , " show " , " " , " " , basename ( __FILE__ ), __CLASS__ );
if ( ! empty ( $msg )) {
$this -> app -> Tpl -> Set ( 'MESSAGE' , $msg );
}
2023-04-08 14:49:08 +02:00
$this -> app -> YUI -> AutoComplete ( 'sachkonto' , 'sachkonto' );
$this -> app -> erp -> MenuEintrag ( " index.php?module=fibu_buchungen&action=list " , " Übersicht " );
$this -> app -> erp -> MenuEintrag ( " index.php?module=fibu_buchungen&action=zuordnen&typ= " . $doc_typ , " Einzelsalden " );
2023-04-05 11:07:12 +02:00
$this -> app -> Tpl -> Parse ( 'PAGE' , " fibu_buchungen_zuordnen.tpl " );
}
2023-04-06 10:43:36 +02:00
function fibu_buchungen_einzelzuordnen () {
$submit = $this -> app -> Secure -> GetPOST ( 'submit' );
if ( $submit == 'neuberechnen' ) {
$this -> fibu_rebuild_tables ();
$msg = " <div class= \" info \" >Buchungen wurden neu berechnet.</div> " ;
}
// For transfer to tablesearch
$von = $this -> app -> Secure -> GetGET ( 'doc' );
$von = explode ( '_' , $von );
$von_typ = strtolower ( $von [ 0 ]);
$von_id = ( int ) $von [ 1 ];
$this -> app -> User -> SetParameter ( 'fibu_buchungen_doc_typ' , $von_typ );
$this -> app -> User -> SetParameter ( 'fibu_buchungen_doc_id' , $von_id );
2023-04-11 16:51:42 +02:00
$aktion = $this -> app -> Secure -> GetPOST ( 'sel_aktion' );
$sachkonto = $this -> app -> Secure -> GetPOST ( 'sachkonto' );
2023-04-15 10:48:47 +02:00
$abschlag = $this -> app -> Secure -> GetPOST ( 'abschlag' );
$this -> app -> User -> SetParameter ( 'fibu_buchungen_abschlag' , $abschlag );
2023-04-15 18:45:09 +02:00
$multifilter = $this -> app -> Secure -> GetPOST ( 'multifilter' );
$this -> app -> User -> SetParameter ( 'fibu_buchungen_multifilter' , $multifilter );
2023-04-11 16:51:42 +02:00
$account_id = null ;
if ( ! empty ( $sachkonto )) {
$sachkonto_kennung = explode ( ' ' , $sachkonto )[ 0 ];
$account_id = $this -> app -> DB -> SelectArr ( " SELECT id from kontorahmen WHERE sachkonto = ' " . $sachkonto_kennung . " ' " )[ 0 ][ 'id' ];
}
2023-04-06 10:43:36 +02:00
2023-04-08 14:49:08 +02:00
$this -> app -> erp -> MenuEintrag ( " index.php?module=fibu_buchungen&action=zuordnen&typ= " . $von_typ , " Zurück " );
2023-04-06 10:43:36 +02:00
$sql = " SELECT doc_typ, doc_id, doc_info, waehrung, sum(betrag) as saldonum, " . $this -> app -> erp -> FormatMenge ( " sum(betrag) " , 2 ) . " as saldo FROM fibu_buchungen_alle WHERE typ = ' " . $von_typ . " ' AND id = ' " . $von_id . " ' " ;
$von_row = $this -> app -> DB -> SelectArr ( $sql )[ 0 ];
$von_info = $von_row [ 'doc_info' ];
$von_saldonum = $von_row [ 'saldonum' ];
$von_saldo = $von_row [ 'saldo' ];
$von_waehrung = $von_row [ 'waehrung' ];
2023-04-11 16:51:42 +02:00
$datum = $this -> app -> DB -> SelectArr ( " SELECT datum FROM fibu_buchungen_alle WHERE typ=' " . $von_typ . " ' AND id = ' " . $von_id . " ' " )[ 0 ][ 'datum' ]; // Get relevant date of source doc
2023-04-06 10:43:36 +02:00
if ( $submit == 'BUCHEN' ) {
// Process multi action
$count_success = 0 ;
$ids = $this -> app -> Secure -> GetPOST ( 'ids' );
$werte = $this -> app -> Secure -> GetPOST ( 'werte' );
$auswahl = $this -> app -> Secure -> GetPOST ( 'auswahl' );
if ( ! empty ( $auswahl )) {
$gesamtnum = 0 ;
foreach ( $ids as $id ) {
$key_ids = array_search ( $id , $ids );
$key_auswahl = array_search ( $id , $auswahl );
if ( $key_auswahl !== false ) {
$gesamtnum += $werte [ $key_ids ];
}
}
$override = $this -> app -> Secure -> GetPOST ( 'override' );
2023-05-12 12:23:43 +02:00
$diff = round ( $gesamtnum - $von_saldonum , 2 );
$gesamtnum = round ( $von_saldonum , 2 );
$von_saldonum = round ( $von_saldonum , 2 );
2023-04-06 10:43:36 +02:00
if (
( $von_saldonum < 0 && ( $gesamtnum < $von_saldonum )) ||
( $von_saldonum > 0 && ( $gesamtnum > $von_saldonum ))
) {
$msg .= " <div class= \" error \" >Buchungssumme " . $this -> app -> erp -> EUR ( $gesamtnum ) . " übersteigt Saldosumme " . $this -> app -> erp -> EUR ( $von_saldonum ) . " . (Abweichung " . $this -> app -> erp -> EUR (( float ) $gesamtnum - ( float ) $von_saldonum ) . " )</div> " ;
}
else if ( $diff != 0 && ! $override ) {
$msg .= " <div class= \" error \" >Buchungssumme " . $this -> app -> erp -> EUR ( $gesamtnum ) . " entspricht nicht Saldosumme " . $this -> app -> erp -> EUR ( $von_saldonum ) . " . (Abweichung " . $this -> app -> erp -> EUR (( float ) $gesamtnum - ( float ) $von_saldonum ) . " )</div> " ;
} else {
foreach ( $ids as $id ) {
$key_ids = array_search ( $id , $ids );
$key_auswahl = array_search ( $id , $auswahl );
if ( $key_auswahl !== false ) {
$doc = explode ( '_' , $id );
$doc_typ = strtolower ( $doc [ 0 ]);
$doc_id = ( int ) $doc [ 1 ];
2023-04-11 16:51:42 +02:00
$betrag = $werte [ $key_ids ];
switch ( $aktion ) {
case 'buchen' :
if ( $betrag != 0 ) {
// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".$datum."', '".-$betrag."', '".$von_waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')";
// echo($sql."\n");
// $this->app->DB->Insert($sql);
$this -> fibu_buchungen_buchen ( $von_typ , $von_id , $doc_typ , $doc_id , - $betrag , $von_waehrung , $datum , '' );
$count_success ++ ;
}
break ;
case 'buchen_diff_sachkonto' :
$doc_saldo = $this -> app -> erp -> GetSaldoDokument ( $doc_id , $doc_typ );
if ( $betrag != 0 ) {
// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".$datum."', '".-$betrag."', '".$von_waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')";
// echo($sql."\n");
// $this->app->DB->Insert($sql);
$this -> fibu_buchungen_buchen ( $von_typ , $von_id , $doc_typ , $doc_id , - $betrag , $von_waehrung , $datum , '' );
$count_success ++ ;
}
if ( ! empty ( $doc_saldo ) && ( $doc_saldo [ 'waehrung' ] == $von_waehrung ) && ( $account_id !== null )) {
$diff = $betrag + $doc_saldo [ 'betrag' ];
// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('kontorahmen','".$account_id."','".$doc_typ."', '".$doc_id."', '".$datum."', '".$diff."', '".$von_waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')";
// echo($sql."\n");
// $this->app->DB->Insert($sql);
$this -> fibu_buchungen_buchen ( $doc_typ , $doc_id , 'kontorahmen' , $account_id , - $diff , $von_waehrung , $datum , '' );
} else {
$msg .= " <div class= \" warning \" >Gegensaldo wurde nicht gebucht.</div> " ;
}
break ;
}
2023-04-06 10:43:36 +02:00
}
}
}
$msg .= " <div class= \" info \" > " . $count_success . " Buchung " . (( $count_success === 1 ) ? '' : 'en' ) . " durchgeführt.</div> " ;
$this -> fibu_rebuild_tables ();
2023-04-11 16:51:42 +02:00
} else {
$msg .= " <div class= \" warning \" >Keine Posten ausgewählt.</div> " ;
2023-04-06 10:43:36 +02:00
}
}
// Reload after booking
2023-04-15 10:48:47 +02:00
$sql = " SELECT fo.info, fb.waehrung, sum(fb.betrag) as saldonum, " . $this -> app -> erp -> FormatMenge ( " sum(fb.betrag) " , 2 ) . " as saldo FROM fibu_buchungen_alle fb INNER JOIN fibu_objekte fo ON fb.typ = fo.typ AND fb.id = fo.id WHERE fb.typ = ' " . $von_typ . " ' AND fb.id = ' " . $von_id . " ' " ;
$row = $this -> app -> DB -> SelectArr ( $sql )[ 0 ];
$saldonum = $row [ 'saldonum' ];
$saldo = $row [ 'saldo' ];
$waehrung = $row [ 'waehrung' ];
$info = $row [ 'info' ];
$this -> app -> Tpl -> Set ( 'DOC_ZUORDNUNG' , ucfirst ( $von_typ ) . " " . $info );
$this -> app -> Tpl -> Set ( 'DOC_SALDO' , $saldo . " " . $waehrung );
$this -> app -> Tpl -> Set ( 'ABSCHLAG' , $abschlag );
2023-04-06 10:43:36 +02:00
2023-04-15 18:45:09 +02:00
$this -> app -> Tpl -> Set ( 'MULTIFILTER' , str_replace ( array ( '\r\n' , '\r' , '\n' ), " , " , $multifilter ));
2023-04-15 10:48:47 +02:00
$this -> app -> erp -> Headlines ( 'Buchhaltung' , 'Einzelzuordnung ' . strtoupper ( $von_typ ));
2023-04-06 10:43:36 +02:00
$this -> app -> YUI -> TableSearch ( 'TAB1' , 'fibu_buchungen_einzelzuordnen' , " show " , " " , " " , basename ( __FILE__ ), __CLASS__ );
if ( ! empty ( $msg )) {
$this -> app -> Tpl -> Set ( 'MESSAGE' , $msg );
}
2023-04-11 16:51:42 +02:00
$this -> app -> YUI -> AutoComplete ( 'sachkonto' , 'sachkonto' );
2023-04-06 10:43:36 +02:00
$this -> app -> Tpl -> Parse ( 'PAGE' , " fibu_buchungen_einzelzuordnen.tpl " );
}
2023-03-28 12:30:57 +02:00
}