bericht/api/reports.php
Eduard Wisch bcf48ccddc
All checks were successful
Deploy bericht / deploy (push) Successful in 1s
feat: Phase 4 API — Bericht-Liste, Finalize, Photo-Delete, Voice-Upload
- reports.php: GET ohne id listet alle Berichte des Users
  (Multi-User-Filter über fk_user_creat + Parent fk_user_*),
  mit parent_ref, page_count, status
- reports.php action=finalize: generiert jetzt wirklich das PDF
  (TCPDF+FPDI + bericht_render_page_to_pdf), schreibt ECM-Eintrag,
  setzt Status auf Final
- api/delete_photo.php: JWT-Version von delete_attachment
- api/voice.php: Audio-Upload pro Auftrag (webm/mp4/mp3/ogg)
  in das Auftrags-Anhang-Verzeichnis

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[deploy]
2026-04-09 00:31:38 +02:00

171 lines
7.2 KiB
PHP

<?php
/* GET /api/reports.php?id=<id> — Detail eines Berichts
* POST /api/reports.php?id=<id>&action=finalize — Finalisierung anstoßen
*
* Listing aller Berichte läuft über orders.php (pro Auftrag).
*/
require_once __DIR__.'/_inc.php';
api_authenticate();
global $db, $user, $conf, $langs;
$id = (int) ($_GET['id'] ?? 0);
$action = $_GET['action'] ?? '';
/* ----- LISTE aller Berichte für den User ----- */
if (!$id && $action === '') {
// Multi-User-Filter: Berichte an Aufträgen, die der User angelegt/validiert/modifiziert hat
// PLUS eigene Berichte (fk_user_creat)
$extra = '';
if (empty($user->admin)) {
$extra = " AND (b.fk_user_creat = ".((int) $user->id)
." OR EXISTS (SELECT 1 FROM ".$db->prefix()."commande c WHERE c.rowid = b.fk_element AND b.element_type='order' AND (c.fk_user_author = ".((int) $user->id)." OR c.fk_user_valid = ".((int) $user->id)." OR c.fk_user_modif = ".((int) $user->id)."))"
." OR EXISTS (SELECT 1 FROM ".$db->prefix()."facture f WHERE f.rowid = b.fk_element AND b.element_type='invoice' AND (f.fk_user_author = ".((int) $user->id)." OR f.fk_user_valid = ".((int) $user->id)." OR f.fk_user_modif = ".((int) $user->id)."))"
.")";
}
$sql = "SELECT b.rowid, b.ref, b.titel, b.element_type, b.fk_element, b.status, b.datec, b.auftragsnummer,"
." (SELECT COUNT(*) FROM ".$db->prefix()."bericht_page WHERE fk_bericht = b.rowid) AS page_count"
." FROM ".$db->prefix()."bericht b"
." WHERE b.entity IN (".getEntity('bericht').") ".$extra
." ORDER BY b.datec DESC LIMIT 200";
$r = $db->query($sql);
if (!$r) api_fail('DB-Fehler: '.$db->lasterror(), 500);
$items = array();
while ($o = $db->fetch_object($r)) {
// Parent-Ref für Anzeige ermitteln
$parent_ref = '';
if ($o->element_type === 'order') {
$pr = $db->query("SELECT ref FROM ".$db->prefix()."commande WHERE rowid = ".((int) $o->fk_element));
if ($pr && ($p = $db->fetch_object($pr))) $parent_ref = $p->ref;
} elseif ($o->element_type === 'invoice') {
$pr = $db->query("SELECT ref FROM ".$db->prefix()."facture WHERE rowid = ".((int) $o->fk_element));
if ($pr && ($p = $db->fetch_object($pr))) $parent_ref = $p->ref;
}
$items[] = array(
'id' => (int) $o->rowid,
'ref' => $o->ref,
'titel' => $o->titel,
'element_type' => $o->element_type,
'fk_element' => (int) $o->fk_element,
'parent_ref' => $parent_ref,
'status' => (int) $o->status,
'datec' => $db->jdate($o->datec),
'auftragsnummer'=> $o->auftragsnummer,
'page_count' => (int) $o->page_count,
);
}
api_ok(array('reports' => $items, 'count' => count($items)));
}
if (!$id) api_fail('id erforderlich');
$bericht = new Bericht($db);
if ($bericht->fetch($id) <= 0) api_fail('Bericht nicht gefunden', 404);
if ($action === 'finalize') {
if (!$user->hasRight('bericht', 'write')) api_fail('Schreibrechte fehlen', 403);
// Wir laden generate_pdf.php inline — es erwartet aber POST mit berichtid und ausreichend
// gesetzter Token-Kontext. Einfacher: Wir replizieren die Kernlogik hier direkt.
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
require_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmfiles.class.php';
$parent = bericht_fetch_parent($db, $bericht->element_type, $bericht->fk_element);
if (!$parent) api_fail('Parent-Objekt nicht gefunden', 404);
$pages = BerichtPage::fetchAllForBericht($db, $bericht->id);
if (empty($pages)) api_fail('Bericht enthält keine Seiten');
// TCPDF + FPDI laden
$tcpdf_loaded = false;
foreach (array(
DOL_DOCUMENT_ROOT.'/includes/tecnickcom/tcpdf/tcpdf.php',
DOL_DOCUMENT_ROOT.'/includes/tcpdf/tcpdf.php',
) as $p) { if (file_exists($p)) { require_once $p; $tcpdf_loaded = true; break; } }
if (!$tcpdf_loaded) api_fail('TCPDF nicht gefunden', 500);
$fpdi_loaded = false;
foreach (array(
DOL_DOCUMENT_ROOT.'/includes/setasign/vendor/setasign/fpdi/src/Tcpdf/Fpdi.php',
DOL_DOCUMENT_ROOT.'/includes/fpdi/src/Tcpdf/Fpdi.php',
) as $p) { if (file_exists($p)) { require_once $p; $fpdi_loaded = true; break; } }
$ori = in_array($bericht->page_orientation, array('P','L'), true) ? $bericht->page_orientation : 'P';
$fmt = in_array($bericht->page_format, array('A4','A3','A5','Letter'), true) ? $bericht->page_format : 'A4';
if ($fpdi_loaded) {
$pdf = new \setasign\Fpdi\Tcpdf\Fpdi($ori, 'mm', $fmt, true, 'UTF-8', false);
} else {
$pdf = new TCPDF($ori, 'mm', $fmt, true, 'UTF-8', false);
}
$pdf->SetCreator('Dolibarr Bericht-Modul (PWA)');
$pdf->SetAuthor($user->getFullName($langs));
$pdf->SetTitle($bericht->titel ?: $bericht->ref);
$pdf->SetMargins(10, 10, 10);
$pdf->SetAutoPageBreak(true, 10);
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
foreach ($pages as $page) {
bericht_render_page_to_pdf($pdf, $page, $ori, $fmt, $fpdi_loaded);
}
$dir_key = bericht_element_to_dir_key($bericht->element_type);
$target_dir = $conf->{$dir_key}->multidir_output[$parent->entity].'/'.dol_sanitizeFileName($parent->ref);
if (!is_dir($target_dir)) dol_mkdir($target_dir);
$filename = 'Bericht_'.dol_sanitizeFileName($bericht->auftragsnummer ?: $bericht->ref).'_'.dol_print_date(dol_now(), '%Y%m%d_%H%M%S').'.pdf';
$target_path = $target_dir.'/'.$filename;
$pdf->Output($target_path, 'F');
if (!file_exists($target_path)) api_fail('PDF-Output fehlgeschlagen', 500);
$ecmfile = new EcmFiles($db);
$ecmfile->filepath = $dir_key.'/'.dol_sanitizeFileName($parent->ref);
$ecmfile->filename = $filename;
$ecmfile->fullpath_orig = $target_path;
$ecmfile->src_object_type = $dir_key;
$ecmfile->src_object_id = $parent->id;
$ecmfile->label = md5_file($target_path);
@$ecmfile->create($user);
$bericht->status = Bericht::STATUS_FINAL;
$bericht->final_pdf_path = str_replace(DOL_DATA_ROOT.'/', '', $target_path);
$bericht->update($user);
api_ok(array(
'status' => 'final',
'filename' => $filename,
'path' => $bericht->final_pdf_path,
));
}
// Detail
$pages = BerichtPage::fetchAllForBericht($db, $bericht->id);
$pages_out = array();
foreach ($pages as $p) {
$pages_out[] = array(
'id' => (int) $p->id,
'page_order' => (int) $p->page_order,
'source_type'=> $p->source_type,
'source_path'=> $p->source_path,
'rotation' => (int) $p->rotation,
'note' => $p->note,
'layout' => $p->layout,
);
}
api_ok(array(
'report' => array(
'id' => (int) $bericht->id,
'ref' => $bericht->ref,
'titel' => $bericht->titel,
'auftragsnummer' => $bericht->auftragsnummer,
'element_type' => $bericht->element_type,
'fk_element' => (int) $bericht->fk_element,
'page_format' => $bericht->page_format,
'page_orientation'=> $bericht->page_orientation,
'status' => (int) $bericht->status,
'datec' => (int) $bericht->datec,
),
'pages' => $pages_out,
));