function einheit2_wirt($w_id, $import_aus, $anzeigen) { echo $import_aus . $anzeigen; $bk = new bk(); if ($anzeigen == 'einheit') { $last_wtab_id = $bk->last_id('WIRT_EIN_TAB', 'WZ_ID') + 1; $db_abfrage = "INSERT INTO WIRT_EIN_TAB VALUES (NULL, '{$last_wtab_id}', '{$w_id}', '{$import_aus}', '1')"; $resultat = mysql_query($db_abfrage) or die(mysql_error()); } if ($anzeigen == 'haus') { $einheiten_arr = $this->liste_aller_einheiten_haus($w_id, $import_aus); $anzahl = count($einheiten_arr); for ($a = 0; $a < $anzahl; $a++) { $ein_id = $einheiten_arr[$a][EINHEIT_ID]; $last_wtab_id = $bk->last_id('WIRT_EIN_TAB', 'WZ_ID') + 1; $db_abfrage = "INSERT INTO WIRT_EIN_TAB VALUES (NULL, '{$last_wtab_id}', '{$w_id}', '{$ein_id}', '1')"; $resultat = mysql_query($db_abfrage) or die(mysql_error()); } } if ($anzeigen == 'objekt') { $einheiten_arr = $this->liste_aller_einheiten_objekt($w_id, $import_aus); // echo '<pre>'; // print_r($einheiten_arr); // die(); $anzahl = count($einheiten_arr); for ($a = 0; $a < $anzahl; $a++) { $ein_id = $einheiten_arr[$a][EINHEIT_ID]; $last_wtab_id = $bk->last_id('WIRT_EIN_TAB', 'WZ_ID') + 1; $db_abfrage = "INSERT INTO WIRT_EIN_TAB VALUES (NULL, '{$last_wtab_id}', '{$w_id}', '{$ein_id}', '1')"; $resultat = mysql_query($db_abfrage) or die(mysql_error()); } } header("Location: ?daten=bk&option=wirt_einheiten_hinzu&anzeigen={$anzeigen}&w_id={$w_id}"); }
function zuweisung_speichern($kos_typ, $kos_id, $geldkonto_id) { $bk = new bk(); $last_b_id = $bk->last_id('GELD_KONTEN_ZUWEISUNG', 'ZUWEISUNG_ID') + 1; $db_abfrage = "INSERT INTO GELD_KONTEN_ZUWEISUNG VALUES (NULL, '{$last_b_id}', '{$geldkonto_id}', '{$kos_typ}','{$kos_id}', '1')"; $resultat = mysql_query($db_abfrage) or die(mysql_error()); /* Protokollieren */ $last_dat = mysql_insert_id(); // protokollieren('GELD_KONTEN_ZUWEISUNG', $last_dat, '0'); return $last_b_id; }
function haus_speichern($strasse, $haus_nr, $ort, $plz, $qm, $objekt_id) { include_once 'classes/class_bk.php'; $bk = new bk(); $last_id = $bk->last_id('HAUS', 'HAUS_ID') + 1; /* Speichern */ $db_abfrage = "INSERT INTO HAUS VALUES(NULL, '{$last_id}', '{$strasse}', '{$haus_nr}','{$ort}', '{$plz}', '{$qm}', '1', '{$objekt_id}')"; $resultat = mysql_query($db_abfrage) or die(mysql_error()); /* Protokollieren */ $last_dat = mysql_insert_id(); protokollieren('HAUS', $last_dat, '0'); return $last_id; }
function sepa_file_kopieren($file) { $arr = $this->get_sepa_files_daten_arr($file); if (!is_array($arr)) { fehlermeldung_ausgeben("Keine Datensätze zur Datei {$file}"); } else { $sum = 0; $anz = count($arr); for ($a = 0; $a < $anz; $a++) { $kat = $arr[$a]['KAT']; $empf = $arr[$a]['BEGUENSTIGTER']; $vzweck = $arr[$a]['VZWECK']; $betrag = $arr[$a]['BETRAG']; $iban = $arr[$a]['IBAN']; $bic = $arr[$a]['BIC']; $bankname = $arr[$a]['BANKNAME']; $beguenstigter = $arr[$a]['BEGUENSTIGTER']; $konto = $arr[$a]['KONTO']; $kos_typ = $arr[$a]['KOS_TYP']; $kos_id = $arr[$a]['KOS_ID']; $vzweckn = "{$beguenstigter}, {$vzweck}"; $z = $a + 1; $sep = new sepa(); $von_gk_id = $_SESSION['geldkonto_id']; $bk = new bk(); $last_b_id = $bk->last_id('SEPA_UEBERWEISUNG', 'ID') + 1; $db_abfrage = "INSERT INTO SEPA_UEBERWEISUNG VALUES (NULL, '{$last_b_id}', NULL, '{$kat}', '{$vzweckn}', '{$betrag}', '{$von_gk_id}', '{$iban}', '{$bic}', '{$bankname}', '{$beguenstigter}', '{$kos_typ}', '{$kos_id}', '{$konto}', '1')"; $resultat = mysql_query($db_abfrage) or die(mysql_error()); /* Protokollieren */ $last_dat = mysql_insert_id(); protokollieren('SEPA_UEBERWEISUNG', $last_dat, '0'); } return true; } }