kundenkarte/ajax/favorite_update.php
data 844e6060c6 feat(pwa): Offline-fähige Progressive Web App für Elektriker
PWA Mobile App für Schaltschrank-Dokumentation vor Ort:
- Token-basierte Authentifizierung (15 Tage gültig)
- Kundensuche mit Offline-Cache
- Anlagen-Auswahl und Offline-Laden
- Felder/Hutschienen/Automaten erfassen
- Automatische Synchronisierung wenn wieder online
- Installierbar auf dem Smartphone Home Screen
- Touch-optimiertes Dark Mode Design
- Quick-Select für Automaten-Werte (B16, C32, etc.)

Schaltplan-Editor Verbesserungen:
- Block Hover-Tooltip mit show_in_hover Feldern
- Produktinfo mit Icon im Tooltip
- Position und Breite in TE

Neue Dateien:
- pwa.php, pwa_auth.php - PWA Einstieg & Auth
- ajax/pwa_api.php - PWA AJAX API
- js/pwa.js, css/pwa.css - PWA App & Styles
- sw.js, manifest.json - Service Worker & Manifest
- img/pwa-icon-192.png, img/pwa-icon-512.png

Version: 5.2.0

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-23 15:27:06 +01:00

78 lines
1.9 KiB
PHP
Executable file

<?php
/* Copyright (C) 2026 Alles Watt lauft
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*/
/**
* \file ajax/favorite_update.php
* \brief AJAX handler for updating favorite product quantity
*/
if (!defined('NOTOKENRENEWAL')) {
define('NOTOKENRENEWAL', '1');
}
if (!defined('NOREQUIREMENU')) {
define('NOREQUIREMENU', '1');
}
if (!defined('NOREQUIREAJAX')) {
define('NOREQUIREAJAX', '1');
}
// Load Dolibarr environment
$res = 0;
if (!$res && file_exists("../../../main.inc.php")) $res = @include "../../../main.inc.php";
if (!$res && file_exists("../../../../main.inc.php")) $res = @include "../../../../main.inc.php";
if (!$res && file_exists("../../../../../main.inc.php")) $res = @include "../../../../../main.inc.php";
if (!$res) die("Include of main fails");
dol_include_once('/kundenkarte/class/favoriteproduct.class.php');
// Check permission
if (!$user->hasRight('kundenkarte', 'write')) {
http_response_code(403);
echo json_encode(array('error' => 'Permission denied'));
exit;
}
header('Content-Type: application/json');
$id = GETPOSTINT('id');
$qty = GETPOST('qty', 'alpha');
if ($id <= 0) {
echo json_encode(array('error' => 'Invalid ID'));
exit;
}
// Simple check: just needs to be numeric
if (!is_numeric($qty)) {
echo json_encode(array('error' => 'Invalid quantity'));
exit;
}
$qty = (float) $qty;
$favoriteProduct = new FavoriteProduct($db);
$result = $favoriteProduct->fetch($id);
if ($result <= 0) {
echo json_encode(array('error' => 'Record not found'));
exit;
}
$favoriteProduct->qty = $qty;
$result = $favoriteProduct->update($user);
if ($result > 0) {
echo json_encode(array(
'success' => true,
'id' => $id,
'qty' => $qty
));
} else {
echo json_encode(array('error' => $favoriteProduct->error));
}