100 lines
3.9 KiB
PHP
Executable file
100 lines
3.9 KiB
PHP
Executable file
<?php
|
|
define('NOTOKENRENEWAL', 1);
|
|
require '../../../main.inc.php';
|
|
require_once __DIR__.'/../lib/subtotaltitle.lib.php';
|
|
require_once __DIR__.'/../class/DocumentTypeHelper.class.php';
|
|
|
|
$facture_id = GETPOST('facture_id', 'int');
|
|
$section_id = GETPOST('section_id', 'int');
|
|
$docType = GETPOST('document_type', 'alpha');
|
|
|
|
subtotaltitle_debug_log('🔍 assign_last_product: facture=' . $facture_id . ', section=' . $section_id . ', docType=' . $docType);
|
|
|
|
if (!$facture_id || !$section_id || !$docType) {
|
|
echo json_encode(['success' => false, 'error' => 'Missing parameters']);
|
|
exit;
|
|
}
|
|
|
|
// Hole die richtigen Tabellennamen für diesen Dokumenttyp
|
|
$tables = DocumentTypeHelper::getTableNames($docType);
|
|
if (!$tables) {
|
|
echo json_encode(['success' => false, 'error' => 'Invalid document type']);
|
|
exit;
|
|
}
|
|
|
|
$db->begin();
|
|
|
|
// Hole das neueste Produkt dieses Dokuments (höchster rang)
|
|
$sql = "SELECT rowid, rang FROM ".MAIN_DB_PREFIX.$tables['lines_table'];
|
|
$sql .= " WHERE ".$tables['fk_parent']." = ".(int)$facture_id;
|
|
$sql .= " ORDER BY rang DESC LIMIT 1";
|
|
$resql = $db->query($sql);
|
|
|
|
if (!$resql || $db->num_rows($resql) == 0) {
|
|
$db->rollback();
|
|
echo json_encode(['success' => false, 'error' => 'Kein Produkt gefunden']);
|
|
exit;
|
|
}
|
|
|
|
$product = $db->fetch_object($resql);
|
|
$product_id = $product->rowid;
|
|
|
|
subtotaltitle_debug_log(' → Neustes Produkt: #' . $product_id . ' (rang=' . $product->rang . ')');
|
|
|
|
// Prüfe ob schon in Manager-Tabelle (anhand der Detail-FK-Spalte)
|
|
$sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."facture_lines_manager";
|
|
$sql .= " WHERE ".$tables['fk_line']." = ".(int)$product_id;
|
|
$resql = $db->query($sql);
|
|
|
|
if ($db->num_rows($resql) == 0) {
|
|
// Produkt fehlt - hinzufügen
|
|
$next_order = 1;
|
|
$sql_max = "SELECT MAX(line_order) as max_order FROM ".MAIN_DB_PREFIX."facture_lines_manager";
|
|
$sql_max .= " WHERE ".$tables['fk_parent']." = ".(int)$facture_id;
|
|
$sql_max .= " AND document_type = '".$db->escape($docType)."'";
|
|
$resql_max = $db->query($sql_max);
|
|
if ($obj = $db->fetch_object($resql_max)) {
|
|
$next_order = ($obj->max_order ? $obj->max_order + 1 : 1);
|
|
}
|
|
|
|
// Setze alle FK-Felder explizit (NULL für nicht genutzte)
|
|
$fk_facture = ($docType === 'invoice') ? (int)$facture_id : 'NULL';
|
|
$fk_propal = ($docType === 'propal') ? (int)$facture_id : 'NULL';
|
|
$fk_commande = ($docType === 'order') ? (int)$facture_id : 'NULL';
|
|
|
|
$sql_ins = "INSERT INTO ".MAIN_DB_PREFIX."facture_lines_manager";
|
|
$sql_ins .= " (fk_facture, fk_propal, fk_commande, document_type, line_type, ".$tables['fk_line'].", parent_section, line_order, date_creation)";
|
|
$sql_ins .= " VALUES (".$fk_facture.", ".$fk_propal.", ".$fk_commande.", '".$db->escape($docType)."', 'product', ".(int)$product_id.", ".(int)$section_id.", ".$next_order.", NOW())";
|
|
$db->query($sql_ins);
|
|
|
|
subtotaltitle_debug_log(' → Produkt zu Manager-Tabelle hinzugefügt (line_order=' . $next_order . ')');
|
|
} else {
|
|
// Produkt existiert - UPDATE parent_section
|
|
subtotaltitle_debug_log('🔵🔵🔵 assign_last_product: Produkt #'.$product_id.' → parent_section='.$section_id);
|
|
|
|
$sql_upd = "UPDATE ".MAIN_DB_PREFIX."facture_lines_manager";
|
|
$sql_upd .= " SET parent_section = ".(int)$section_id;
|
|
$sql_upd .= " WHERE ".$tables['fk_line']." = ".(int)$product_id;
|
|
$db->query($sql_upd);
|
|
|
|
subtotaltitle_debug_log(' → parent_section updated');
|
|
}
|
|
|
|
// Neu sortieren
|
|
require_once DOL_DOCUMENT_ROOT.'/custom/subtotaltitle/class/actions_subtotaltitle.class.php';
|
|
$hook = new ActionsSubtotalTitle($db);
|
|
|
|
$reflection = new ReflectionClass($hook);
|
|
$method = $reflection->getMethod('reorderLines');
|
|
$method->setAccessible(true);
|
|
$method->invoke($hook, $facture_id);
|
|
|
|
$method = $reflection->getMethod('syncRangFromManager');
|
|
$method->setAccessible(true);
|
|
$method->invoke($hook, $facture_id);
|
|
|
|
$db->commit();
|
|
|
|
subtotaltitle_debug_log('✅ Assignment erfolgreich');
|
|
|
|
echo json_encode(['success' => true, 'product_id' => $product_id]);
|