Merge branch 'filter'
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Phinx\Migration\AbstractMigration;
|
||||
|
||||
final class DropUniqPartAnalysisIndex extends AbstractMigration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
$table = $this->table('identification_parts_analyses');
|
||||
|
||||
if ($table->hasIndexByName('uniq_part_analysis')) {
|
||||
$table->removeIndexByName('uniq_part_analysis')->update();
|
||||
}
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
$table = $this->table('identification_parts_analyses');
|
||||
|
||||
if (!$table->hasIndexByName('uniq_part_analysis')) {
|
||||
$table->addIndex(['part_id', 'analysis_recordkey'], [
|
||||
'unique' => true,
|
||||
'name' => 'uniq_part_analysis',
|
||||
])->update();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -106,8 +106,9 @@
|
||||
}
|
||||
|
||||
container.innerHTML = items
|
||||
.map(function (item) {
|
||||
.map(function (item, index) {
|
||||
const recordKey = item.analysis_recordkey || "";
|
||||
const rowId = item.id != null ? item.id : "";
|
||||
const title = item.analysis_name || "Unnamed analysis";
|
||||
const method = item.analysis_method || "";
|
||||
|
||||
@@ -121,6 +122,8 @@
|
||||
class="analysis-remove-btn"
|
||||
data-part-id="${escapeHtml(partId)}"
|
||||
data-recordkey="${escapeHtml(recordKey)}"
|
||||
data-row-id="${escapeHtml(rowId)}"
|
||||
data-index="${index}"
|
||||
title="Remove analysis">×</button>
|
||||
</div>
|
||||
`;
|
||||
@@ -166,19 +169,21 @@
|
||||
};
|
||||
}
|
||||
|
||||
function addAnalysisToLocalState(partId, payload, iddatadb, idmatrice) {
|
||||
function addAnalysisToLocalState(
|
||||
partId,
|
||||
payload,
|
||||
iddatadb,
|
||||
idmatrice,
|
||||
newId,
|
||||
) {
|
||||
const key = String(partId);
|
||||
if (!Array.isArray(analysisAssignedState[key])) {
|
||||
analysisAssignedState[key] = [];
|
||||
}
|
||||
|
||||
const exists = analysisAssignedState[key].some(function (item) {
|
||||
return item.analysis_recordkey === payload.analysis_recordkey;
|
||||
});
|
||||
|
||||
if (!exists) {
|
||||
{
|
||||
analysisAssignedState[key].push({
|
||||
id: null,
|
||||
id: newId || null,
|
||||
part_id: parseInt(partId, 10),
|
||||
iddatadb: iddatadb || null,
|
||||
idmatrice: idmatrice || null,
|
||||
@@ -195,17 +200,24 @@
|
||||
}
|
||||
}
|
||||
|
||||
function removeAnalysisFromLocalState(partId, recordKey) {
|
||||
function removeAnalysisFromLocalState(partId, recordKey, index) {
|
||||
const key = String(partId);
|
||||
if (!Array.isArray(analysisAssignedState[key])) {
|
||||
return;
|
||||
}
|
||||
|
||||
analysisAssignedState[key] = analysisAssignedState[key].filter(
|
||||
function (item) {
|
||||
return item.analysis_recordkey !== recordKey;
|
||||
},
|
||||
);
|
||||
const i = parseInt(index, 10);
|
||||
if (!isNaN(i) && i >= 0 && i < analysisAssignedState[key].length) {
|
||||
analysisAssignedState[key].splice(i, 1);
|
||||
return;
|
||||
}
|
||||
|
||||
const found = analysisAssignedState[key].findIndex(function (item) {
|
||||
return item.analysis_recordkey === recordKey;
|
||||
});
|
||||
if (found !== -1) {
|
||||
analysisAssignedState[key].splice(found, 1);
|
||||
}
|
||||
}
|
||||
|
||||
function saveAnalysisAssociation(partId, payload, callback) {
|
||||
@@ -237,12 +249,13 @@
|
||||
is_accredited: payload.is_accredited,
|
||||
},
|
||||
})
|
||||
.done(function () {
|
||||
.done(function (resp) {
|
||||
addAnalysisToLocalState(
|
||||
partId,
|
||||
payload,
|
||||
iddatadb,
|
||||
idmatrice !== "NO_MATRIX" ? idmatrice : null,
|
||||
resp && resp.id ? resp.id : null,
|
||||
);
|
||||
renderAssignedAnalysesForPart(partId);
|
||||
if (typeof callback === "function") callback(true);
|
||||
@@ -257,7 +270,13 @@
|
||||
});
|
||||
}
|
||||
|
||||
function deleteAnalysisAssociation(partId, recordKey, callback) {
|
||||
function deleteAnalysisAssociation(
|
||||
partId,
|
||||
recordKey,
|
||||
rowId,
|
||||
index,
|
||||
callback,
|
||||
) {
|
||||
$.ajax({
|
||||
url: "delete_part_analysis.php",
|
||||
method: "POST",
|
||||
@@ -265,10 +284,11 @@
|
||||
data: {
|
||||
part_id: partId,
|
||||
analysis_recordkey: recordKey,
|
||||
row_id: rowId || "",
|
||||
},
|
||||
})
|
||||
.done(function () {
|
||||
removeAnalysisFromLocalState(partId, recordKey);
|
||||
removeAnalysisFromLocalState(partId, recordKey, index);
|
||||
renderAssignedAnalysesForPart(partId);
|
||||
if (typeof callback === "function") callback(true);
|
||||
})
|
||||
@@ -707,10 +727,18 @@
|
||||
|
||||
const partId = removeBtn.getAttribute("data-part-id");
|
||||
const recordKey = removeBtn.getAttribute("data-recordkey");
|
||||
const rowId = removeBtn.getAttribute("data-row-id");
|
||||
const index = removeBtn.getAttribute("data-index");
|
||||
|
||||
deleteAnalysisAssociation(partId, recordKey, function () {
|
||||
const stillUsed = Object.keys(analysisAssignedState).some(
|
||||
function (pid) {
|
||||
deleteAnalysisAssociation(
|
||||
partId,
|
||||
recordKey,
|
||||
rowId,
|
||||
index,
|
||||
function () {
|
||||
const stillUsed = Object.keys(
|
||||
analysisAssignedState,
|
||||
).some(function (pid) {
|
||||
return (
|
||||
Array.isArray(analysisAssignedState[pid]) &&
|
||||
analysisAssignedState[pid].some(
|
||||
@@ -722,15 +750,15 @@
|
||||
},
|
||||
)
|
||||
);
|
||||
},
|
||||
);
|
||||
});
|
||||
|
||||
if (!stillUsed) {
|
||||
delete analysisSelectedState[recordKey];
|
||||
}
|
||||
if (!stillUsed) {
|
||||
delete analysisSelectedState[recordKey];
|
||||
}
|
||||
|
||||
syncSelectedAnalysisRows();
|
||||
});
|
||||
syncSelectedAnalysisRows();
|
||||
},
|
||||
);
|
||||
|
||||
return;
|
||||
}
|
||||
@@ -751,17 +779,6 @@
|
||||
}
|
||||
|
||||
const recordKey = payload.analysis_recordkey;
|
||||
const alreadySelected = !!analysisSelectedState[recordKey];
|
||||
|
||||
if (alreadySelected) {
|
||||
selectedPartIds.forEach(function (partId) {
|
||||
deleteAnalysisAssociation(partId, recordKey);
|
||||
});
|
||||
|
||||
delete analysisSelectedState[recordKey];
|
||||
syncSelectedAnalysisRows();
|
||||
return;
|
||||
}
|
||||
|
||||
let pending = selectedPartIds.length;
|
||||
let atLeastOneSaved = false;
|
||||
|
||||
@@ -14,6 +14,7 @@ $targetList = $data['target_iddatadb_list'] ?? [];
|
||||
// (comportamento di default richiesto, coerente con la checkbox pre-spuntata)
|
||||
$cloneNotes = array_key_exists('clone_notes', $data) ? !empty($data['clone_notes']) : true;
|
||||
$cloneAnalyses = !empty($data['clone_analyses']);
|
||||
$overwrite = !empty($data['overwrite']);
|
||||
|
||||
$targetIds = array_values(array_unique(array_filter(array_map('intval', (array)$targetList), function ($v) use ($sourceIddatadb) {
|
||||
return $v > 0 && $v !== $sourceIddatadb;
|
||||
@@ -93,6 +94,28 @@ try {
|
||||
$details = [];
|
||||
$totalClonedParts = 0;
|
||||
$totalClonedAnalyses = 0;
|
||||
$totalDeletedParts = 0;
|
||||
|
||||
// 2b. Se overwrite: elimina le parti esistenti dei target (e i loro figli)
|
||||
if ($overwrite) {
|
||||
$stmtSelectExisting = $pdo->prepare("SELECT id FROM identification_parts WHERE iddatadb = ?");
|
||||
$stmtDeleteCFByPart = $pdo->prepare("DELETE FROM identification_parts_customfields WHERE part_id = ?");
|
||||
$stmtDeleteAnByPart = $pdo->prepare("DELETE FROM identification_parts_analyses WHERE part_id = ?");
|
||||
$stmtDeletePart = $pdo->prepare("DELETE FROM identification_parts WHERE id = ?");
|
||||
|
||||
foreach ($targetIds as $targetIddatadb) {
|
||||
$stmtSelectExisting->execute([$targetIddatadb]);
|
||||
$existingIds = $stmtSelectExisting->fetchAll(PDO::FETCH_COLUMN);
|
||||
|
||||
foreach ($existingIds as $existingPartId) {
|
||||
$existingPartId = (int)$existingPartId;
|
||||
$stmtDeleteCFByPart->execute([$existingPartId]);
|
||||
$stmtDeleteAnByPart->execute([$existingPartId]);
|
||||
$stmtDeletePart->execute([$existingPartId]);
|
||||
$totalDeletedParts++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 3. Clone source parts to each target record
|
||||
foreach ($targetIds as $targetIddatadb) {
|
||||
|
||||
@@ -15,8 +15,9 @@ try {
|
||||
|
||||
$partId = isset($_POST['part_id']) ? (int)$_POST['part_id'] : 0;
|
||||
$analysisRecordkey = trim($_POST['analysis_recordkey'] ?? '');
|
||||
$rowId = isset($_POST['row_id']) && $_POST['row_id'] !== '' ? (int)$_POST['row_id'] : 0;
|
||||
|
||||
if ($partId <= 0 || $analysisRecordkey === '') {
|
||||
if ($partId <= 0 || ($analysisRecordkey === '' && $rowId <= 0)) {
|
||||
http_response_code(400);
|
||||
echo json_encode(['success' => false, 'message' => 'Missing required data']);
|
||||
exit;
|
||||
@@ -25,15 +26,29 @@ try {
|
||||
$db = DBHandlerSelect::getInstance();
|
||||
$pdo = $db->getConnection();
|
||||
|
||||
$stmt = $pdo->prepare("
|
||||
DELETE FROM identification_parts_analyses
|
||||
WHERE part_id = :part_id
|
||||
AND analysis_recordkey = :analysis_recordkey
|
||||
");
|
||||
$stmt->execute([
|
||||
':part_id' => $partId,
|
||||
':analysis_recordkey' => $analysisRecordkey,
|
||||
]);
|
||||
if ($rowId > 0) {
|
||||
$stmt = $pdo->prepare("
|
||||
DELETE FROM identification_parts_analyses
|
||||
WHERE id = :id
|
||||
AND part_id = :part_id
|
||||
LIMIT 1
|
||||
");
|
||||
$stmt->execute([
|
||||
':id' => $rowId,
|
||||
':part_id' => $partId,
|
||||
]);
|
||||
} else {
|
||||
$stmt = $pdo->prepare("
|
||||
DELETE FROM identification_parts_analyses
|
||||
WHERE part_id = :part_id
|
||||
AND analysis_recordkey = :analysis_recordkey
|
||||
LIMIT 1
|
||||
");
|
||||
$stmt->execute([
|
||||
':part_id' => $partId,
|
||||
':analysis_recordkey' => $analysisRecordkey,
|
||||
]);
|
||||
}
|
||||
|
||||
echo json_encode([
|
||||
'success' => true,
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* Single export + batch export (Export All) with validation.
|
||||
*/
|
||||
(function () {
|
||||
'use strict';
|
||||
"use strict";
|
||||
|
||||
let pendingConfirmHandler = null;
|
||||
let batchRunning = false;
|
||||
@@ -17,7 +17,7 @@
|
||||
// ── Helpers ──────────────────────────────────────────────────────────
|
||||
|
||||
function cleanupBackdrop() {
|
||||
document.querySelectorAll(".modal-backdrop").forEach(b => b.remove());
|
||||
document.querySelectorAll(".modal-backdrop").forEach((b) => b.remove());
|
||||
document.body.classList.remove("modal-open");
|
||||
document.body.style.paddingRight = "";
|
||||
const overlay = document.querySelector(".overlay.toggle-icon");
|
||||
@@ -29,7 +29,9 @@
|
||||
}
|
||||
|
||||
function getRowIndexByIddatadb(iddatadb) {
|
||||
return (window.gridData || []).findIndex(r => String(r.iddatadb) === String(iddatadb));
|
||||
return (window.gridData || []).findIndex(
|
||||
(r) => String(r.iddatadb) === String(iddatadb),
|
||||
);
|
||||
}
|
||||
|
||||
// ── Validation ──────────────────────────────────────────────────────
|
||||
@@ -40,21 +42,31 @@
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({ rows: rowsToValidate }),
|
||||
});
|
||||
if (!response.ok) throw new Error(`Validation HTTP error: ${response.status}`);
|
||||
if (!response.ok)
|
||||
throw new Error(`Validation HTTP error: ${response.status}`);
|
||||
return response.json();
|
||||
}
|
||||
|
||||
function clearValidationErrors() {
|
||||
// Clear from gridData
|
||||
(window.gridData || []).forEach(row => { delete row._validationErrors; delete row._exportError; });
|
||||
|
||||
document.querySelectorAll(".grid-cell.validation-error").forEach(cell => {
|
||||
cell.classList.remove("validation-error");
|
||||
cell.querySelectorAll(".input-validation-error").forEach(el => el.classList.remove("input-validation-error"));
|
||||
const tooltip = cell.querySelector(".validation-tooltip");
|
||||
if (tooltip) tooltip.remove();
|
||||
(window.gridData || []).forEach((row) => {
|
||||
delete row._validationErrors;
|
||||
delete row._exportError;
|
||||
});
|
||||
document.querySelectorAll(".grid-row.validation-row-error").forEach(row => row.classList.remove("validation-row-error"));
|
||||
|
||||
document
|
||||
.querySelectorAll(".grid-cell.validation-error")
|
||||
.forEach((cell) => {
|
||||
cell.classList.remove("validation-error");
|
||||
cell.querySelectorAll(".input-validation-error").forEach((el) =>
|
||||
el.classList.remove("input-validation-error"),
|
||||
);
|
||||
const tooltip = cell.querySelector(".validation-tooltip");
|
||||
if (tooltip) tooltip.remove();
|
||||
});
|
||||
document
|
||||
.querySelectorAll(".grid-row.validation-row-error")
|
||||
.forEach((row) => row.classList.remove("validation-row-error"));
|
||||
clearAllRowErrors();
|
||||
}
|
||||
|
||||
@@ -67,7 +79,7 @@
|
||||
gridRow.classList.add("validation-row-error");
|
||||
const messages = [];
|
||||
|
||||
errors.forEach(err => {
|
||||
errors.forEach((err) => {
|
||||
messages.push(err.message);
|
||||
if (!err.field) return;
|
||||
|
||||
@@ -76,19 +88,26 @@
|
||||
const label = err.field.substring("field_label:".length);
|
||||
const headers = document.querySelectorAll(".grid-header");
|
||||
let targetIndex = null;
|
||||
headers.forEach(h => {
|
||||
if (h.textContent.trim() === label) targetIndex = h.getAttribute("data-index");
|
||||
headers.forEach((h) => {
|
||||
if (h.textContent.trim() === label)
|
||||
targetIndex = h.getAttribute("data-index");
|
||||
});
|
||||
if (targetIndex) {
|
||||
cell = gridRow.querySelector(`.grid-cell[data-index="${targetIndex}"]`);
|
||||
cell = gridRow.querySelector(
|
||||
`.grid-cell[data-index="${targetIndex}"]`,
|
||||
);
|
||||
}
|
||||
} else {
|
||||
cell = gridRow.querySelector(`.grid-cell[data-col="${err.field}"]`);
|
||||
cell = gridRow.querySelector(
|
||||
`.grid-cell[data-col="${err.field}"]`,
|
||||
);
|
||||
}
|
||||
|
||||
if (cell) {
|
||||
cell.classList.add("validation-error");
|
||||
cell.querySelectorAll("input, select").forEach(el => el.classList.add("input-validation-error"));
|
||||
cell.querySelectorAll("input, select").forEach((el) =>
|
||||
el.classList.add("input-validation-error"),
|
||||
);
|
||||
let tooltip = cell.querySelector(".validation-tooltip");
|
||||
if (!tooltip) {
|
||||
tooltip = document.createElement("div");
|
||||
@@ -109,34 +128,43 @@
|
||||
formData.append("iddatadb", iddatadb);
|
||||
if (batchUuid) formData.append("batch_uuid", batchUuid);
|
||||
|
||||
const response = await fetch("export_to_lims.php", { method: "POST", body: formData });
|
||||
if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`);
|
||||
const response = await fetch("export_to_lims.php", {
|
||||
method: "POST",
|
||||
body: formData,
|
||||
});
|
||||
if (!response.ok)
|
||||
throw new Error(`HTTP error! status: ${response.status}`);
|
||||
const data = await response.json();
|
||||
|
||||
if (data.success) {
|
||||
// Update gridData
|
||||
const idx = getRowIndexByIddatadb(iddatadb);
|
||||
if (idx >= 0) {
|
||||
window.gridData[idx].status = 'l';
|
||||
window.gridData[idx].status = "l";
|
||||
window.gridData[idx].commessaweb = data.commessaweb;
|
||||
}
|
||||
|
||||
// Update visible DOM row
|
||||
const gridRow = getGridRow(iddatadb);
|
||||
if (gridRow) {
|
||||
const statusBadge = gridRow.querySelector('.grid-cell[data-col="status"] .status-badge');
|
||||
const statusBadge = gridRow.querySelector(
|
||||
'.grid-cell[data-col="status"] .status-badge',
|
||||
);
|
||||
if (statusBadge) {
|
||||
statusBadge.classList.remove("status-i", "status-P");
|
||||
statusBadge.classList.add("status-l");
|
||||
statusBadge.textContent = "To LIMS";
|
||||
}
|
||||
const statusCell = gridRow.querySelector('.grid-cell[data-col="status"]');
|
||||
const statusCell = gridRow.querySelector(
|
||||
'.grid-cell[data-col="status"]',
|
||||
);
|
||||
if (statusCell && data.commessaweb) {
|
||||
let cwSpan = statusCell.querySelector(".commessaweb-code");
|
||||
if (!cwSpan) {
|
||||
cwSpan = document.createElement("span");
|
||||
cwSpan.className = "commessaweb-code";
|
||||
cwSpan.style.cssText = "display:block; font-size:0.75em; color:#555; margin-top:2px;";
|
||||
cwSpan.style.cssText =
|
||||
"display:block; font-size:0.75em; color:#555; margin-top:2px;";
|
||||
statusCell.appendChild(cwSpan);
|
||||
}
|
||||
cwSpan.textContent = data.commessaweb;
|
||||
@@ -164,7 +192,8 @@
|
||||
const label = document.getElementById("exportResponseModalLabel");
|
||||
|
||||
if (data.success) {
|
||||
msg.innerHTML = `${data.message.replace(/\n/g, "<br>")}` +
|
||||
msg.innerHTML =
|
||||
`${data.message.replace(/\n/g, "<br>")}` +
|
||||
`<br>ID CommessaWeb: ${data.idcommessaweb}` +
|
||||
`<br>Codice CommessaWeb: ${data.commessaweb}` +
|
||||
(data.totalPhotos > 0 ? `<br>Foto: ${data.totalPhotos}` : "");
|
||||
@@ -186,10 +215,14 @@
|
||||
row.classList.remove("batch-disabled");
|
||||
row.classList.add("batch-exporting");
|
||||
if (btnCell) {
|
||||
btnCell.querySelectorAll(".action-btn").forEach(b => { b.dataset.prevDisplay = b.style.display; b.style.display = "none"; });
|
||||
btnCell.querySelectorAll(".action-btn").forEach((b) => {
|
||||
b.dataset.prevDisplay = b.style.display;
|
||||
b.style.display = "none";
|
||||
});
|
||||
const spinner = document.createElement("span");
|
||||
spinner.className = "batch-row-spinner";
|
||||
spinner.innerHTML = '<i class="fas fa-spinner fa-spin"></i> Exporting...';
|
||||
spinner.innerHTML =
|
||||
'<i class="fas fa-spinner fa-spin"></i> Exporting...';
|
||||
btnCell.appendChild(spinner);
|
||||
}
|
||||
} else {
|
||||
@@ -197,7 +230,10 @@
|
||||
if (btnCell) {
|
||||
const spinner = btnCell.querySelector(".batch-row-spinner");
|
||||
if (spinner) spinner.remove();
|
||||
btnCell.querySelectorAll(".action-btn").forEach(b => { b.style.display = b.dataset.prevDisplay || ""; delete b.dataset.prevDisplay; });
|
||||
btnCell.querySelectorAll(".action-btn").forEach((b) => {
|
||||
b.style.display = b.dataset.prevDisplay || "";
|
||||
delete b.dataset.prevDisplay;
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -213,32 +249,56 @@
|
||||
errorEl.className = "batch-error-msg";
|
||||
errorEl.textContent = "Warning — click for details";
|
||||
errorEl.addEventListener("click", () => {
|
||||
document.getElementById("exportResponseMessage").innerHTML = message.replace(/\n/g, "<br>");
|
||||
document.getElementById("exportResponseModalLabel").textContent = "Error (id: " + iddatadb + ")";
|
||||
new bootstrap.Modal(document.getElementById("exportResponseModal"), { keyboard: false }).show();
|
||||
document.getElementById("exportResponseMessage").innerHTML =
|
||||
message.replace(/\n/g, "<br>");
|
||||
document.getElementById(
|
||||
"exportResponseModalLabel",
|
||||
).textContent = "Error (id: " + iddatadb + ")";
|
||||
new bootstrap.Modal(
|
||||
document.getElementById("exportResponseModal"),
|
||||
{ keyboard: false },
|
||||
).show();
|
||||
});
|
||||
btnCell.appendChild(errorEl);
|
||||
}
|
||||
}
|
||||
|
||||
function clearAllRowErrors() {
|
||||
document.querySelectorAll(".grid-row.batch-row-error").forEach(row => {
|
||||
row.classList.remove("batch-row-error");
|
||||
const msg = row.querySelector(".batch-error-msg");
|
||||
if (msg) msg.remove();
|
||||
});
|
||||
document
|
||||
.querySelectorAll(".grid-row.batch-row-error")
|
||||
.forEach((row) => {
|
||||
row.classList.remove("batch-row-error");
|
||||
const msg = row.querySelector(".batch-error-msg");
|
||||
if (msg) msg.remove();
|
||||
});
|
||||
}
|
||||
|
||||
function disableAllRowButtons() {
|
||||
document.querySelectorAll(".grid-row[data-id]").forEach(row => row.classList.add("batch-disabled"));
|
||||
const toggle = document.querySelector(".actions-dropdown .dropdown-toggle");
|
||||
if (toggle) { toggle.disabled = true; toggle.style.opacity = "0.5"; toggle.style.pointerEvents = "none"; }
|
||||
document
|
||||
.querySelectorAll(".grid-row[data-id]")
|
||||
.forEach((row) => row.classList.add("batch-disabled"));
|
||||
const toggle = document.querySelector(
|
||||
".actions-dropdown .dropdown-toggle",
|
||||
);
|
||||
if (toggle) {
|
||||
toggle.disabled = true;
|
||||
toggle.style.opacity = "0.5";
|
||||
toggle.style.pointerEvents = "none";
|
||||
}
|
||||
}
|
||||
|
||||
function enableAllRowButtons() {
|
||||
document.querySelectorAll(".grid-row[data-id]").forEach(row => row.classList.remove("batch-disabled"));
|
||||
const toggle = document.querySelector(".actions-dropdown .dropdown-toggle");
|
||||
if (toggle) { toggle.disabled = false; toggle.style.opacity = ""; toggle.style.pointerEvents = ""; }
|
||||
document
|
||||
.querySelectorAll(".grid-row[data-id]")
|
||||
.forEach((row) => row.classList.remove("batch-disabled"));
|
||||
const toggle = document.querySelector(
|
||||
".actions-dropdown .dropdown-toggle",
|
||||
);
|
||||
if (toggle) {
|
||||
toggle.disabled = false;
|
||||
toggle.style.opacity = "";
|
||||
toggle.style.pointerEvents = "";
|
||||
}
|
||||
}
|
||||
|
||||
// ── Single row export: validate → confirm → send ────────────────────
|
||||
@@ -250,40 +310,61 @@
|
||||
if (gridRow) {
|
||||
setRowExporting(gridRow, true);
|
||||
const spinner = gridRow.querySelector(".batch-row-spinner");
|
||||
if (spinner) spinner.innerHTML = '<i class="fas fa-spinner fa-spin"></i> Validating...';
|
||||
if (spinner)
|
||||
spinner.innerHTML =
|
||||
'<i class="fas fa-spinner fa-spin"></i> Validating...';
|
||||
}
|
||||
|
||||
validateRows([{ iddatadb: parseInt(iddatadb), index: rowIndex }])
|
||||
.then(validationData => {
|
||||
if (gridRow) { setRowExporting(gridRow, false); gridRow.classList.remove("batch-disabled"); }
|
||||
.then((validationData) => {
|
||||
if (gridRow) {
|
||||
setRowExporting(gridRow, false);
|
||||
gridRow.classList.remove("batch-disabled");
|
||||
}
|
||||
|
||||
if (!validationData.success) {
|
||||
showExportResult({ success: false, message: validationData.message || "Validation error" });
|
||||
showExportResult({
|
||||
success: false,
|
||||
message: validationData.message || "Validation error",
|
||||
});
|
||||
return;
|
||||
}
|
||||
const result = validationData.results[rowIndex];
|
||||
if (result && !result.valid) {
|
||||
if (gridRow) showValidationErrors(gridRow, iddatadb, result.errors);
|
||||
if (gridRow)
|
||||
showValidationErrors(gridRow, iddatadb, result.errors);
|
||||
return;
|
||||
}
|
||||
showConfirmAndExport(iddatadb, rowIndex);
|
||||
})
|
||||
.catch(error => {
|
||||
if (gridRow) { setRowExporting(gridRow, false); gridRow.classList.remove("batch-disabled"); }
|
||||
showExportResult({ success: false, message: "Validation error: " + error.message });
|
||||
.catch((error) => {
|
||||
if (gridRow) {
|
||||
setRowExporting(gridRow, false);
|
||||
gridRow.classList.remove("batch-disabled");
|
||||
}
|
||||
showExportResult({
|
||||
success: false,
|
||||
message: "Validation error: " + error.message,
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function showConfirmAndExport(iddatadb, rowIndex) {
|
||||
const confirmModalElement = document.getElementById("exportConfirmModal");
|
||||
const confirmModalElement =
|
||||
document.getElementById("exportConfirmModal");
|
||||
if (!confirmModalElement) return;
|
||||
|
||||
const confirmModal = new bootstrap.Modal(confirmModalElement, { keyboard: false });
|
||||
const confirmModal = new bootstrap.Modal(confirmModalElement, {
|
||||
keyboard: false,
|
||||
});
|
||||
document.getElementById("exportIddatadb").textContent = iddatadb;
|
||||
confirmModal.show();
|
||||
|
||||
const confirmBtn = document.getElementById("exportConfirmBtn");
|
||||
if (!confirmBtn) { confirmModal.hide(); return; }
|
||||
if (!confirmBtn) {
|
||||
confirmModal.hide();
|
||||
return;
|
||||
}
|
||||
|
||||
const confirmHandler = async () => {
|
||||
pendingConfirmHandler = null;
|
||||
@@ -294,24 +375,36 @@
|
||||
|
||||
try {
|
||||
const data = await sendExport(iddatadb);
|
||||
if (gridRow) { setRowExporting(gridRow, false); gridRow.classList.remove("batch-disabled"); }
|
||||
if (!data.success) showRowError(gridRow, iddatadb, data.message || "Unknown error");
|
||||
if (gridRow) {
|
||||
setRowExporting(gridRow, false);
|
||||
gridRow.classList.remove("batch-disabled");
|
||||
}
|
||||
if (!data.success)
|
||||
showRowError(
|
||||
gridRow,
|
||||
iddatadb,
|
||||
data.message || "Unknown error",
|
||||
);
|
||||
showExportResult(data);
|
||||
} catch (error) {
|
||||
if (gridRow) { setRowExporting(gridRow, false); gridRow.classList.remove("batch-disabled"); }
|
||||
if (gridRow) {
|
||||
setRowExporting(gridRow, false);
|
||||
gridRow.classList.remove("batch-disabled");
|
||||
}
|
||||
showRowError(gridRow, iddatadb, error.message);
|
||||
showExportResult({ success: false, message: error.message });
|
||||
}
|
||||
};
|
||||
|
||||
if (pendingConfirmHandler) confirmBtn.removeEventListener("click", pendingConfirmHandler);
|
||||
if (pendingConfirmHandler)
|
||||
confirmBtn.removeEventListener("click", pendingConfirmHandler);
|
||||
pendingConfirmHandler = confirmHandler;
|
||||
confirmBtn.addEventListener("click", confirmHandler, { once: true });
|
||||
}
|
||||
|
||||
// ── Single row click (event delegation) ─────────────────────────────
|
||||
|
||||
$(document).on('click', '.export-lims-btn', function (e) {
|
||||
$(document).on("click", ".export-lims-btn", function (e) {
|
||||
e.preventDefault();
|
||||
if (batchRunning) return;
|
||||
|
||||
@@ -322,24 +415,34 @@
|
||||
// Check unsaved changes for this row
|
||||
const dataRow = window.gridData?.[rowIndex];
|
||||
if (dataRow && dataRow._dirty) {
|
||||
const unsavedModal = new bootstrap.Modal(document.getElementById("exportUnsavedModal"), { keyboard: false });
|
||||
const unsavedModal = new bootstrap.Modal(
|
||||
document.getElementById("exportUnsavedModal"),
|
||||
{ keyboard: false },
|
||||
);
|
||||
unsavedModal.show();
|
||||
|
||||
document.getElementById("saveAndExportBtn")?.addEventListener("click", () => {
|
||||
unsavedModal.hide();
|
||||
// Save first, then export
|
||||
const formData = window.buildSavePayload(rowIndex);
|
||||
fetch('save_edited_row.php', { method: 'POST', body: formData })
|
||||
.then(r => r.json())
|
||||
.then(result => {
|
||||
if (result.success) {
|
||||
dataRow._dirty = false;
|
||||
startExportConfirmFlow(iddatadb, rowIndex);
|
||||
} else {
|
||||
alert('Save failed: ' + result.message);
|
||||
}
|
||||
});
|
||||
}, { once: true });
|
||||
document.getElementById("saveAndExportBtn")?.addEventListener(
|
||||
"click",
|
||||
() => {
|
||||
unsavedModal.hide();
|
||||
// Save first, then export
|
||||
const formData = window.buildSavePayload(rowIndex);
|
||||
fetch("save_edited_row.php", {
|
||||
method: "POST",
|
||||
body: formData,
|
||||
})
|
||||
.then((r) => r.json())
|
||||
.then((result) => {
|
||||
if (result.success) {
|
||||
dataRow._dirty = false;
|
||||
startExportConfirmFlow(iddatadb, rowIndex);
|
||||
} else {
|
||||
alert("Save failed: " + result.message);
|
||||
}
|
||||
});
|
||||
},
|
||||
{ once: true },
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -349,18 +452,33 @@
|
||||
// ── Batch export (Export All) ───────────────────────────────────────
|
||||
|
||||
function collectEligibleRows() {
|
||||
// Read from gridData, not DOM
|
||||
// Read from gridData, not DOM. Se i filtri sono attivi, limita al target set.
|
||||
const target =
|
||||
typeof window.getTargetGridIds === "function"
|
||||
? window.getTargetGridIds()
|
||||
: null;
|
||||
const eligible = [];
|
||||
(window.gridData || []).forEach((row, index) => {
|
||||
if (row.status !== 'l') {
|
||||
eligible.push({ iddatadb: row.iddatadb, index, row: getGridRow(row.iddatadb) });
|
||||
}
|
||||
if (row.status === "l") return;
|
||||
if (target && !target.has(parseInt(row.iddatadb, 10))) return;
|
||||
eligible.push({
|
||||
iddatadb: row.iddatadb,
|
||||
index,
|
||||
row: getGridRow(row.iddatadb),
|
||||
});
|
||||
});
|
||||
return eligible;
|
||||
}
|
||||
|
||||
function hasUnsavedChanges() {
|
||||
return (window.gridData || []).some(r => r._dirty);
|
||||
const target =
|
||||
typeof window.getTargetGridIds === "function"
|
||||
? window.getTargetGridIds()
|
||||
: null;
|
||||
return (window.gridData || []).some(
|
||||
(r) =>
|
||||
r._dirty && (!target || target.has(parseInt(r.iddatadb, 10))),
|
||||
);
|
||||
}
|
||||
|
||||
async function validateAndFilter(eligibleRows) {
|
||||
@@ -369,7 +487,8 @@
|
||||
index,
|
||||
}));
|
||||
const validationData = await validateRows(rowsToValidate);
|
||||
if (!validationData.success) throw new Error(validationData.message || "Validation error");
|
||||
if (!validationData.success)
|
||||
throw new Error(validationData.message || "Validation error");
|
||||
|
||||
const validRows = [];
|
||||
let invalidCount = 0;
|
||||
@@ -377,7 +496,12 @@
|
||||
for (const item of eligibleRows) {
|
||||
const result = validationData.results[item.index];
|
||||
if (result && !result.valid) {
|
||||
if (item.row) showValidationErrors(item.row, item.iddatadb, result.errors);
|
||||
if (item.row)
|
||||
showValidationErrors(
|
||||
item.row,
|
||||
item.iddatadb,
|
||||
result.errors,
|
||||
);
|
||||
invalidCount++;
|
||||
} else {
|
||||
validRows.push(item);
|
||||
@@ -410,54 +534,92 @@
|
||||
if (validRows.length === 0) {
|
||||
document.getElementById("exportResponseMessage").innerHTML =
|
||||
`No valid rows for export.<br><strong>${invalidCount}</strong> rows with validation errors.`;
|
||||
document.getElementById("exportResponseModalLabel").textContent = "Validation Failed";
|
||||
new bootstrap.Modal(document.getElementById("exportResponseModal"), { keyboard: false }).show();
|
||||
document.getElementById(
|
||||
"exportResponseModalLabel",
|
||||
).textContent = "Validation Failed";
|
||||
new bootstrap.Modal(
|
||||
document.getElementById("exportResponseModal"),
|
||||
{ keyboard: false },
|
||||
).show();
|
||||
return;
|
||||
}
|
||||
|
||||
const confirmModal = new bootstrap.Modal(document.getElementById("exportBatchConfirmModal"), { keyboard: false });
|
||||
const confirmModal = new bootstrap.Modal(
|
||||
document.getElementById("exportBatchConfirmModal"),
|
||||
{ keyboard: false },
|
||||
);
|
||||
let countText = String(validRows.length);
|
||||
if (invalidCount > 0) countText += ` (${invalidCount} excluded due to errors)`;
|
||||
document.getElementById("exportBatchCount").textContent = countText;
|
||||
if (invalidCount > 0)
|
||||
countText += ` (${invalidCount} excluded due to errors)`;
|
||||
document.getElementById("exportBatchCount").textContent =
|
||||
countText;
|
||||
confirmModal.show();
|
||||
|
||||
const confirmBtn = document.getElementById("exportBatchConfirmBtn");
|
||||
if (pendingBatchConfirmHandler) confirmBtn.removeEventListener("click", pendingBatchConfirmHandler);
|
||||
const confirmBtn = document.getElementById(
|
||||
"exportBatchConfirmBtn",
|
||||
);
|
||||
if (pendingBatchConfirmHandler)
|
||||
confirmBtn.removeEventListener(
|
||||
"click",
|
||||
pendingBatchConfirmHandler,
|
||||
);
|
||||
pendingBatchConfirmHandler = () => {
|
||||
pendingBatchConfirmHandler = null;
|
||||
confirmModal.hide();
|
||||
startBatchExport(validRows);
|
||||
};
|
||||
confirmBtn.addEventListener("click", pendingBatchConfirmHandler, { once: true });
|
||||
confirmBtn.addEventListener(
|
||||
"click",
|
||||
pendingBatchConfirmHandler,
|
||||
{ once: true },
|
||||
);
|
||||
})
|
||||
.catch(error => {
|
||||
.catch((error) => {
|
||||
showValidationSpinner(false);
|
||||
document.getElementById("exportResponseMessage").textContent = "Validation error: " + error.message;
|
||||
document.getElementById("exportResponseModalLabel").textContent = "Validation Error";
|
||||
new bootstrap.Modal(document.getElementById("exportResponseModal"), { keyboard: false }).show();
|
||||
document.getElementById("exportResponseMessage").textContent =
|
||||
"Validation error: " + error.message;
|
||||
document.getElementById(
|
||||
"exportResponseModalLabel",
|
||||
).textContent = "Validation Error";
|
||||
new bootstrap.Modal(
|
||||
document.getElementById("exportResponseModal"),
|
||||
{ keyboard: false },
|
||||
).show();
|
||||
});
|
||||
}
|
||||
|
||||
$(document).on('click', '.export-all-lims-btn', function (e) {
|
||||
$(document).on("click", ".export-all-lims-btn", function (e) {
|
||||
e.preventDefault();
|
||||
if (batchRunning) return;
|
||||
|
||||
if (hasUnsavedChanges()) {
|
||||
const unsavedModal = new bootstrap.Modal(document.getElementById("exportBatchUnsavedModal"), { keyboard: false });
|
||||
const unsavedModal = new bootstrap.Modal(
|
||||
document.getElementById("exportBatchUnsavedModal"),
|
||||
{ keyboard: false },
|
||||
);
|
||||
unsavedModal.show();
|
||||
document.getElementById("batchSaveAndExportBtn")?.addEventListener("click", () => {
|
||||
unsavedModal.hide();
|
||||
// Trigger save all first — listen for completion
|
||||
alert("Please Save All first, then Export All.");
|
||||
}, { once: true });
|
||||
document.getElementById("batchSaveAndExportBtn")?.addEventListener(
|
||||
"click",
|
||||
() => {
|
||||
unsavedModal.hide();
|
||||
// Trigger save all first — listen for completion
|
||||
alert("Please Save All first, then Export All.");
|
||||
},
|
||||
{ once: true },
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
const eligibleRows = collectEligibleRows();
|
||||
if (eligibleRows.length === 0) {
|
||||
document.getElementById("exportResponseMessage").textContent = "All rows already exported to LIMS.";
|
||||
document.getElementById("exportResponseModalLabel").textContent = "Export All";
|
||||
new bootstrap.Modal(document.getElementById("exportResponseModal"), { keyboard: false }).show();
|
||||
document.getElementById("exportResponseMessage").textContent =
|
||||
"All rows already exported to LIMS.";
|
||||
document.getElementById("exportResponseModalLabel").textContent =
|
||||
"Export All";
|
||||
new bootstrap.Modal(
|
||||
document.getElementById("exportResponseModal"),
|
||||
{ keyboard: false },
|
||||
).show();
|
||||
return;
|
||||
}
|
||||
showBatchConfirm(eligibleRows);
|
||||
@@ -468,7 +630,9 @@
|
||||
batchRunning = true;
|
||||
const batchUuid = crypto.randomUUID();
|
||||
const total = eligibleRows.length;
|
||||
let processed = 0, succeeded = 0, failed = 0;
|
||||
let processed = 0,
|
||||
succeeded = 0,
|
||||
failed = 0;
|
||||
|
||||
disableAllRowButtons();
|
||||
|
||||
@@ -479,18 +643,25 @@
|
||||
if (cancelBtn) cancelBtn.disabled = false;
|
||||
if (statusEl) statusEl.textContent = `Exporting 0 / ${total}...`;
|
||||
|
||||
cancelBtn?.addEventListener("click", () => {
|
||||
batchCancelled = true;
|
||||
if (statusEl) statusEl.textContent = "Cancelling... (waiting for current row)";
|
||||
if (cancelBtn) cancelBtn.disabled = true;
|
||||
}, { once: true });
|
||||
cancelBtn?.addEventListener(
|
||||
"click",
|
||||
() => {
|
||||
batchCancelled = true;
|
||||
if (statusEl)
|
||||
statusEl.textContent =
|
||||
"Cancelling... (waiting for current row)";
|
||||
if (cancelBtn) cancelBtn.disabled = true;
|
||||
},
|
||||
{ once: true },
|
||||
);
|
||||
|
||||
(async () => {
|
||||
for (let i = 0; i < eligibleRows.length; i++) {
|
||||
if (batchCancelled) break;
|
||||
|
||||
const { iddatadb, row } = eligibleRows[i];
|
||||
if (statusEl) statusEl.textContent = `Exporting ${processed + 1} / ${total} (id: ${iddatadb})...`;
|
||||
if (statusEl)
|
||||
statusEl.textContent = `Exporting ${processed + 1} / ${total} (id: ${iddatadb})...`;
|
||||
|
||||
const gridRow = row || getGridRow(iddatadb);
|
||||
if (gridRow) setRowExporting(gridRow, true);
|
||||
@@ -503,18 +674,29 @@
|
||||
} else {
|
||||
failed++;
|
||||
const errIdx = getRowIndexByIddatadb(iddatadb);
|
||||
if (errIdx >= 0) window.gridData[errIdx]._exportError = data.message || "Unknown error";
|
||||
if (gridRow) showRowError(gridRow, iddatadb, data.message || "Unknown error");
|
||||
if (errIdx >= 0)
|
||||
window.gridData[errIdx]._exportError =
|
||||
data.message || "Unknown error";
|
||||
if (gridRow)
|
||||
showRowError(
|
||||
gridRow,
|
||||
iddatadb,
|
||||
data.message || "Unknown error",
|
||||
);
|
||||
}
|
||||
} catch (error) {
|
||||
processed++;
|
||||
failed++;
|
||||
const errIdx = getRowIndexByIddatadb(iddatadb);
|
||||
if (errIdx >= 0) window.gridData[errIdx]._exportError = error.message;
|
||||
if (errIdx >= 0)
|
||||
window.gridData[errIdx]._exportError = error.message;
|
||||
if (gridRow) showRowError(gridRow, iddatadb, error.message);
|
||||
}
|
||||
|
||||
if (gridRow) { setRowExporting(gridRow, false); gridRow.classList.remove("batch-disabled"); }
|
||||
if (gridRow) {
|
||||
setRowExporting(gridRow, false);
|
||||
gridRow.classList.remove("batch-disabled");
|
||||
}
|
||||
}
|
||||
|
||||
batchRunning = false;
|
||||
@@ -529,7 +711,8 @@
|
||||
(window.gridData || []).forEach((row, idx) => {
|
||||
if (row._exportError) {
|
||||
const gridRow = getGridRow(row.iddatadb);
|
||||
if (gridRow) showRowError(gridRow, row.iddatadb, row._exportError);
|
||||
if (gridRow)
|
||||
showRowError(gridRow, row.iddatadb, row._exportError);
|
||||
}
|
||||
});
|
||||
|
||||
@@ -549,7 +732,9 @@
|
||||
|
||||
const modalEl = document.getElementById("exportResponseModal");
|
||||
new bootstrap.Modal(modalEl, { keyboard: false }).show();
|
||||
modalEl.addEventListener("hidden.bs.modal", cleanupBackdrop, { once: true });
|
||||
modalEl.addEventListener("hidden.bs.modal", cleanupBackdrop, {
|
||||
once: true,
|
||||
});
|
||||
})();
|
||||
}
|
||||
})();
|
||||
|
||||
@@ -0,0 +1,394 @@
|
||||
<?php
|
||||
|
||||
include('include/headscript.php');
|
||||
require_once __DIR__ . '/include/grid_data_builder.php';
|
||||
header('Content-Type: application/json');
|
||||
|
||||
$pdo = DBHandlerSelect::getInstance()->getConnection();
|
||||
|
||||
const FILTER_ALLOWED_PER_PAGE = [20, 40, 60, 100];
|
||||
const FILTER_ALLIDS_CAP = 5000;
|
||||
|
||||
$body = json_decode(file_get_contents('php://input'), true) ?: [];
|
||||
|
||||
$templateId = (int)($body['template_id'] ?? 0);
|
||||
if ($templateId <= 0) {
|
||||
echo json_encode(['success' => false, 'message' => 'template_id mancante']);
|
||||
exit;
|
||||
}
|
||||
|
||||
$status = in_array($body['status'] ?? 'i', ['i', 'P', 'l'], true) ? $body['status'] : 'i';
|
||||
$showAll = !empty($body['all_users']);
|
||||
$importref = trim((string)($body['importref'] ?? '')); // scope su un singolo import
|
||||
$filters = is_array($body['filters'] ?? null) ? $body['filters'] : [];
|
||||
$userId = (int)($iduserlogin ?? 0);
|
||||
$perPage = in_array((int)($body['per_page'] ?? 20), FILTER_ALLOWED_PER_PAGE, true) ? (int)$body['per_page'] : 20;
|
||||
$page = max(1, (int)($body['page'] ?? 1));
|
||||
$wantAllIds = !empty($body['want_all_ids']);
|
||||
|
||||
$cacheDir = __DIR__ . '/cache';
|
||||
|
||||
$explicitIds = [];
|
||||
if (isset($body['ids']) && is_array($body['ids'])) {
|
||||
$explicitIds = array_values(array_unique(array_filter(
|
||||
array_map('intval', $body['ids']),
|
||||
fn($v) => $v > 0
|
||||
)));
|
||||
}
|
||||
if (!empty($explicitIds)) {
|
||||
// Scoping di sicurezza: solo record del template/utente/import corretti.
|
||||
$conds = ['d.templateid = ?', 'd.status = ?'];
|
||||
$params = [$templateId, $status];
|
||||
if (!$showAll) { $conds[] = 'd.user_id = ?'; $params[] = $userId; }
|
||||
if ($importref !== '') { $conds[] = 'd.importreferencecode = ?'; $params[] = $importref; }
|
||||
$ph = implode(',', array_fill(0, count($explicitIds), '?'));
|
||||
$conds[] = "d.iddatadb IN ($ph)";
|
||||
foreach ($explicitIds as $id) $params[] = $id;
|
||||
$whereSql = implode(' AND ', $conds);
|
||||
|
||||
try {
|
||||
$countStmt = $pdo->prepare("SELECT COUNT(*) FROM datadb d WHERE {$whereSql}");
|
||||
$countStmt->execute($params);
|
||||
$total = (int)$countStmt->fetchColumn();
|
||||
$totalPages = max(1, (int)ceil($total / $perPage));
|
||||
if ($page > $totalPages) $page = $totalPages;
|
||||
$offset = ($page - 1) * $perPage;
|
||||
|
||||
$idStmt = $pdo->prepare("
|
||||
SELECT d.iddatadb FROM datadb d
|
||||
WHERE {$whereSql}
|
||||
ORDER BY d.excelrow ASC, d.iddatadb ASC
|
||||
LIMIT {$perPage} OFFSET {$offset}
|
||||
");
|
||||
$idStmt->execute($params);
|
||||
$pageIds = array_map('intval', $idStmt->fetchAll(PDO::FETCH_COLUMN));
|
||||
|
||||
$config = buildGridConfig($pdo, $templateId);
|
||||
$rows = buildGridRows($pdo, $pageIds, $config);
|
||||
|
||||
echo json_encode([
|
||||
'success' => true,
|
||||
'total' => $total,
|
||||
'page' => $page,
|
||||
'per_page' => $perPage,
|
||||
'total_pages' => $totalPages,
|
||||
'rows' => $rows,
|
||||
'mode' => 'selection',
|
||||
]);
|
||||
} catch (Exception $e) {
|
||||
error_log('filter_records (ids mode) error: ' . $e->getMessage());
|
||||
echo json_encode(['success' => false, 'message' => $e->getMessage()]);
|
||||
}
|
||||
exit;
|
||||
}
|
||||
|
||||
$fixedAliasMap = [
|
||||
'ClienteResponsabile' => 'cliente_responsabile_id',
|
||||
'ClienteFornitore' => 'cliente_fornitore_id',
|
||||
'ClienteAnalisi' => 'clienteAnalisi',
|
||||
'ClienteFatturazione' => 'ClienteFatturazione',
|
||||
'MoltiplicatorePrezzo' => 'moltiplicatore_prezzo_id',
|
||||
'AnagraficaCertestObject' => 'anagrafica_certest_object_id',
|
||||
'AnagraficaCertestService' => 'anagrafica_certest_service_id',
|
||||
'ConsegnaRichiesta' => 'consegna_richiesta',
|
||||
];
|
||||
$staticCols = ['importreferencecode', 'filename_import', 'importdate', 'commessaweb'];
|
||||
|
||||
// ── Risolutori "etichetta → lista di ID" via cache ────────────────────────
|
||||
function cacheItems(string $file): array
|
||||
{
|
||||
if (!is_file($file)) return [];
|
||||
$data = json_decode(file_get_contents($file), true);
|
||||
if (!is_array($data)) return [];
|
||||
return $data['value'] ?? $data ?? [];
|
||||
}
|
||||
|
||||
/** Clienti: label "Nome - X - id" (come search_clienti.php). */
|
||||
function resolveClientIdsByTerm(string $cacheDir, string $term): array
|
||||
{
|
||||
$term = mb_strtolower(trim($term));
|
||||
if ($term === '') return [];
|
||||
$ids = [];
|
||||
foreach (cacheItems($cacheDir . '/clienti.json') as $c) {
|
||||
$name = trim($c['Nominativo'] ?? '');
|
||||
$id = trim((string)($c['IdCliente'] ?? ''));
|
||||
$code = trim((string)($c['CodiceCliente'] ?? ''));
|
||||
$parts = explode('_', $code);
|
||||
$suffix = trim($parts[1] ?? '');
|
||||
if ($suffix === '' && $code !== '') $suffix = substr($code, 0, 1);
|
||||
if ($suffix === '') $suffix = '--';
|
||||
$label = mb_strtolower($name . ' - ' . $suffix . ' - ' . $id);
|
||||
if (mb_strpos($label, $term) !== false) $ids[] = (int)$c['IdCliente'];
|
||||
}
|
||||
return array_values(array_unique($ids));
|
||||
}
|
||||
|
||||
/** Dropdown generico: matcha il termine su qualsiasi label field, ritorna gli id. */
|
||||
function resolveIdsFromCache(string $file, string $idField, array $labelFields, string $term): array
|
||||
{
|
||||
$term = mb_strtolower(trim($term));
|
||||
if ($term === '') return [];
|
||||
$ids = [];
|
||||
foreach (cacheItems($file) as $it) {
|
||||
$hay = '';
|
||||
foreach ($labelFields as $lf) $hay .= ' ' . ($it[$lf] ?? '');
|
||||
if (mb_strpos(mb_strtolower($hay), $term) !== false && isset($it[$idField])) {
|
||||
$ids[] = (int)$it[$idField];
|
||||
}
|
||||
}
|
||||
return array_values(array_unique($ids));
|
||||
}
|
||||
|
||||
/**
|
||||
* Per un fixed field che memorizza un ID, risolve il termine in lista di id.
|
||||
* Ritorna: array di id (IN), [] se il termine non matcha nulla, null se la colonna
|
||||
* non è risolvibile (→ il chiamante la salta invece di fare LIKE sbagliato).
|
||||
*/
|
||||
function resolveFixedIds(string $cacheDir, string $key, string $term): ?array
|
||||
{
|
||||
switch ($key) {
|
||||
case 'ClienteAnalisi':
|
||||
case 'ClienteFatturazione':
|
||||
return resolveClientIdsByTerm($cacheDir, $term);
|
||||
case 'MoltiplicatorePrezzo':
|
||||
return resolveIdsFromCache($cacheDir . '/moltiplicatori_prezzo.json', 'IdMoltiplicatorePrezzo', ['Codice', 'Descrizione'], $term);
|
||||
case 'AnagraficaCertestObject':
|
||||
return resolveIdsFromCache($cacheDir . '/anagrafica_certest_object.json', 'IdAnagrafica', ['Codice', 'NomeAnagrafica'], $term);
|
||||
case 'AnagraficaCertestService':
|
||||
return resolveIdsFromCache($cacheDir . '/anagrafica_certest_service.json', 'IdAnagrafica', ['Codice', 'NomeAnagrafica'], $term);
|
||||
default:
|
||||
// ClienteResponsabile (per-cliente) e altri: non risolvibili globalmente
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<array{0:int,1:int}> lista di [idclient, idResponsabile]
|
||||
*/
|
||||
function resolveResponsabilePairs(string $cacheDir, string $term): array
|
||||
{
|
||||
$term = mb_strtolower(trim($term));
|
||||
if ($term === '') return [];
|
||||
$pairs = [];
|
||||
foreach (glob($cacheDir . '/cliente_responsabili_*.json') ?: [] as $file) {
|
||||
if (!preg_match('/cliente_responsabili_(\d+)\.json$/', $file, $m)) continue;
|
||||
$cid = (int)$m[1];
|
||||
$data = json_decode(file_get_contents($file), true);
|
||||
foreach (($data['Responsabili'] ?? []) as $r) {
|
||||
$name = mb_strtolower((string)($r['Nominativo'] ?? ''));
|
||||
if ($name !== '' && mb_strpos($name, $term) !== false && isset($r['IdClienteResponsabile'])) {
|
||||
$pairs[] = [$cid, (int)$r['IdClienteResponsabile']];
|
||||
}
|
||||
}
|
||||
}
|
||||
return $pairs;
|
||||
}
|
||||
|
||||
/** Meta di un mapping (data_type, field_id), con cache statica. */
|
||||
function mappingMeta(PDO $pdo, int $mappingId): array
|
||||
{
|
||||
static $cache = [];
|
||||
if (!array_key_exists($mappingId, $cache)) {
|
||||
$st = $pdo->prepare("SELECT data_type, field_id FROM template_mapping WHERE id = ?");
|
||||
$st->execute([$mappingId]);
|
||||
$cache[$mappingId] = $st->fetch(PDO::FETCH_ASSOC) ?: ['data_type' => 'Testo', 'field_id' => null];
|
||||
}
|
||||
return $cache[$mappingId];
|
||||
}
|
||||
|
||||
function resolveCustomFieldValueIds(string $cacheDir, $fieldId, string $term): array
|
||||
{
|
||||
$fieldId = (int)$fieldId;
|
||||
$term = mb_strtolower(trim($term));
|
||||
if ($fieldId <= 0 || $term === '') return [];
|
||||
$ids = [];
|
||||
foreach (cacheItems($cacheDir . "/customfield_{$fieldId}.json") as $it) {
|
||||
$label = mb_strtolower((string)($it['Valore'] ?? ''));
|
||||
if (mb_strpos($label, $term) !== false && isset($it['IdCustomFieldsValue'])) {
|
||||
$ids[] = (int)$it['IdCustomFieldsValue'];
|
||||
}
|
||||
}
|
||||
return array_values(array_unique($ids));
|
||||
}
|
||||
|
||||
// ── Costruzione WHERE ──────────────────────────────────────────────────────
|
||||
$conds = ['d.templateid = ?', 'd.status = ?'];
|
||||
$params = [$templateId, $status];
|
||||
$needUserJoin = false;
|
||||
|
||||
if (!$showAll) {
|
||||
$conds[] = 'd.user_id = ?';
|
||||
$params[] = $userId;
|
||||
}
|
||||
|
||||
// Scope su un singolo import (come imported.php ?importref=)
|
||||
if ($importref !== '') {
|
||||
$conds[] = 'd.importreferencecode = ?';
|
||||
$params[] = $importref;
|
||||
}
|
||||
|
||||
/** Aggiunge una condizione "colonna id IN (lista risolta)". */
|
||||
function addIdInCondition(array &$conds, array &$params, string $col, array $ids): void
|
||||
{
|
||||
if (empty($ids)) {
|
||||
$conds[] = '1 = 0'; // termine dato ma nessun match → zero risultati
|
||||
return;
|
||||
}
|
||||
$ph = implode(',', array_fill(0, count($ids), '?'));
|
||||
$conds[] = "d.`{$col}` IN ($ph)";
|
||||
foreach ($ids as $id) $params[] = (int)$id;
|
||||
}
|
||||
|
||||
foreach ($filters as $f) {
|
||||
$term = trim((string)($f['term'] ?? ''));
|
||||
if ($term === '') continue;
|
||||
$type = (string)($f['type'] ?? '');
|
||||
$key = (string)($f['key'] ?? '');
|
||||
$like = '%' . $term . '%';
|
||||
|
||||
switch ($type) {
|
||||
case 'detail':
|
||||
case 'main_field':
|
||||
$mappingId = (int)$key;
|
||||
if ($mappingId <= 0) break;
|
||||
$mm = mappingMeta($pdo, $mappingId);
|
||||
if (($mm['data_type'] ?? '') === 'SceltaMultipla') {
|
||||
// Dropdown: field_value = ID valore → risolvi label→id, match IN (= non LIKE)
|
||||
$vids = resolveCustomFieldValueIds($cacheDir, $mm['field_id'], $term);
|
||||
if (empty($vids)) {
|
||||
$conds[] = '1 = 0';
|
||||
break;
|
||||
}
|
||||
$inph = implode(',', array_fill(0, count($vids), '?'));
|
||||
$conds[] = "EXISTS (SELECT 1 FROM import_data_details x
|
||||
WHERE x.id = d.iddatadb AND x.mapping_id = ? AND x.field_value IN ($inph))";
|
||||
$params[] = $mappingId;
|
||||
foreach ($vids as $vid) $params[] = $vid;
|
||||
} else {
|
||||
// Testo / Data: match testuale
|
||||
$conds[] = "EXISTS (SELECT 1 FROM import_data_details x
|
||||
WHERE x.id = d.iddatadb AND x.mapping_id = ? AND x.field_value LIKE ?)";
|
||||
$params[] = $mappingId;
|
||||
$params[] = $like;
|
||||
}
|
||||
break;
|
||||
|
||||
case 'idclient':
|
||||
addIdInCondition($conds, $params, 'idclient', resolveClientIdsByTerm($cacheDir, $term));
|
||||
break;
|
||||
|
||||
case 'cliente_fornitore_id':
|
||||
addIdInCondition($conds, $params, 'cliente_fornitore_id', resolveClientIdsByTerm($cacheDir, $term));
|
||||
break;
|
||||
|
||||
case 'tested_component':
|
||||
$conds[] = 'd.tested_component LIKE ?';
|
||||
$params[] = $like;
|
||||
break;
|
||||
|
||||
case 'status':
|
||||
// Il dropdown invia direttamente il codice ('i'/'P'/'l').
|
||||
if (in_array($term, ['i', 'P', 'l'], true)) {
|
||||
$conds[] = 'd.status = ?';
|
||||
$params[] = $term;
|
||||
} else {
|
||||
$conds[] = '1 = 0';
|
||||
}
|
||||
break;
|
||||
|
||||
case 'fixed':
|
||||
$col = $fixedAliasMap[$key] ?? null;
|
||||
if ($col === null) break;
|
||||
if ($key === 'ConsegnaRichiesta') {
|
||||
// Data: match testuale sul valore data (es. "2026-03").
|
||||
$conds[] = "CAST(d.`{$col}` AS CHAR) LIKE ?";
|
||||
$params[] = $like;
|
||||
} elseif ($key === 'ClienteResponsabile') {
|
||||
// Match sulla coppia (idclient, id responsabile).
|
||||
$pairs = resolveResponsabilePairs($cacheDir, $term);
|
||||
if (empty($pairs)) {
|
||||
$conds[] = '1 = 0';
|
||||
break;
|
||||
}
|
||||
$rowvals = implode(',', array_fill(0, count($pairs), '(?,?)'));
|
||||
$conds[] = "(d.idclient, d.`{$col}`) IN ($rowvals)";
|
||||
foreach ($pairs as $pr) {
|
||||
$params[] = $pr[0];
|
||||
$params[] = $pr[1];
|
||||
}
|
||||
} else {
|
||||
$ids = resolveFixedIds($cacheDir, $key, $term);
|
||||
if ($ids === null) break; // non risolvibile → non filtrare (niente LIKE su id)
|
||||
addIdInCondition($conds, $params, $col, $ids);
|
||||
}
|
||||
break;
|
||||
|
||||
case 'static':
|
||||
if ($key === 'user_name') {
|
||||
$needUserJoin = true;
|
||||
$conds[] = "CONCAT(COALESCE(u.first_name,''),' ',COALESCE(u.last_name,'')) LIKE ?";
|
||||
$params[] = $like;
|
||||
} elseif (in_array($key, $staticCols, true)) {
|
||||
$conds[] = "d.`{$key}` LIKE ?";
|
||||
$params[] = $like;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
break; // tracking/awb ecc. → non filtrabili
|
||||
}
|
||||
}
|
||||
|
||||
$whereSql = implode(' AND ', $conds);
|
||||
$joinSql = $needUserJoin ? 'LEFT JOIN auth_users u ON d.user_id = u.id' : '';
|
||||
|
||||
try {
|
||||
// Totale + pagine
|
||||
$countStmt = $pdo->prepare("SELECT COUNT(*) FROM datadb d {$joinSql} WHERE {$whereSql}");
|
||||
$countStmt->execute($params);
|
||||
$total = (int)$countStmt->fetchColumn();
|
||||
$totalPages = max(1, (int)ceil($total / $perPage));
|
||||
if ($page > $totalPages) $page = $totalPages;
|
||||
$offset = ($page - 1) * $perPage;
|
||||
|
||||
// Pagina corrente
|
||||
$pageStmt = $pdo->prepare("
|
||||
SELECT d.iddatadb
|
||||
FROM datadb d {$joinSql}
|
||||
WHERE {$whereSql}
|
||||
ORDER BY d.excelrow ASC, d.iddatadb ASC
|
||||
LIMIT {$perPage} OFFSET {$offset}
|
||||
");
|
||||
$pageStmt->execute($params);
|
||||
$pageIds = array_map('intval', $pageStmt->fetchAll(PDO::FETCH_COLUMN));
|
||||
|
||||
$config = buildGridConfig($pdo, $templateId);
|
||||
$rows = buildGridRows($pdo, $pageIds, $config);
|
||||
|
||||
$out = [
|
||||
'success' => true,
|
||||
'total' => $total,
|
||||
'page' => $page,
|
||||
'per_page' => $perPage,
|
||||
'total_pages' => $totalPages,
|
||||
'rows' => $rows,
|
||||
];
|
||||
|
||||
// Tutti gli id del match (per "seleziona tutti"), solo su richiesta
|
||||
if ($wantAllIds) {
|
||||
$allStmt = $pdo->prepare("
|
||||
SELECT d.iddatadb FROM datadb d {$joinSql}
|
||||
WHERE {$whereSql}
|
||||
ORDER BY d.excelrow ASC, d.iddatadb ASC
|
||||
LIMIT " . FILTER_ALLIDS_CAP . "
|
||||
");
|
||||
$allStmt->execute($params);
|
||||
$out['all_ids'] = array_map('intval', $allStmt->fetchAll(PDO::FETCH_COLUMN));
|
||||
$out['all_ids_capped'] = $total > FILTER_ALLIDS_CAP;
|
||||
}
|
||||
|
||||
echo json_encode($out);
|
||||
} catch (Exception $e) {
|
||||
error_log('filter_records error: ' . $e->getMessage());
|
||||
echo json_encode(['success' => false, 'message' => $e->getMessage()]);
|
||||
}
|
||||
@@ -0,0 +1,844 @@
|
||||
/**
|
||||
* gridFilter.js — Selezione righe + filtri colonna a scomparsa per imported.php
|
||||
* Dipende da window.gridRenderer (gridRenderer.js). Includere DOPO gridRenderer.js.
|
||||
*/
|
||||
(function () {
|
||||
"use strict";
|
||||
|
||||
let filtersActive = false;
|
||||
let restricted = false;
|
||||
const selected = new Set(); // iddatadb selezionati
|
||||
const colFilters = {}; // colKey -> testo filtro
|
||||
let restrictedIds = null; // Set di iddatadb visibili quando ristretto
|
||||
|
||||
function R() {
|
||||
return window.gridRenderer;
|
||||
}
|
||||
function data() {
|
||||
return R().getData();
|
||||
}
|
||||
function meta() {
|
||||
return R().getMeta();
|
||||
}
|
||||
|
||||
// ── Filtro SERVER-SIDE (paginato, come la lista normale ma filtrata) ──────
|
||||
// Il filtro gira su TUTTO il template; il server restituisce UNA PAGINA di righe
|
||||
// filtrate + il totale, e navighiamo le pagine del set filtrato via AJAX.
|
||||
const TEMPLATE_ID =
|
||||
new URLSearchParams(location.search).get("id") || (meta().templateId ?? "");
|
||||
const SHOW_ALL =
|
||||
new URLSearchParams(location.search).get("all_users") === "1";
|
||||
const IMPORTREF =
|
||||
new URLSearchParams(location.search).get("importref") || "";
|
||||
const FILTER_PER_PAGE =
|
||||
parseInt(new URLSearchParams(location.search).get("limit"), 10) || 20;
|
||||
|
||||
let serverFiltered = false;
|
||||
let filterPage = 1;
|
||||
let filterTotalPages = 1;
|
||||
let filterTotal = 0;
|
||||
let originalData = null; // snapshot della pagina originale (per ripristino)
|
||||
let filterReqSeq = 0;
|
||||
let showingSelection = false; // true quando mostriamo l'UNIONE dei selezionati
|
||||
let pagerFn = null; // paginazione corrente (applyServerFilter | showSelectedRecords)
|
||||
|
||||
function collectActiveFilters() {
|
||||
const cols = meta().columns || [];
|
||||
const out = [];
|
||||
for (const [key, term] of Object.entries(colFilters)) {
|
||||
if (!term || !String(term).trim()) continue;
|
||||
const col = cols.find((c) => String(c.key) === String(key));
|
||||
if (!col) continue;
|
||||
out.push({ key: String(key), type: col.type, term: String(term).trim() });
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
// Sostituisce il dataset del renderer in-place e ridisegna.
|
||||
function swapData(rows) {
|
||||
const arr = data();
|
||||
arr.length = 0;
|
||||
(rows || []).forEach((r) => arr.push(r));
|
||||
R().renderVisibleRows();
|
||||
}
|
||||
|
||||
function hidePagination(hide) {
|
||||
// Durante il filtro la paginazione server (per pagina, via URL) è fuorviante.
|
||||
document.querySelectorAll(".pager-bar").forEach((el) => {
|
||||
el.style.display = hide ? "none" : "";
|
||||
});
|
||||
}
|
||||
|
||||
// Pager del set filtrato (Prec / pag X di Y / Succ) nella toolbar.
|
||||
function updateFilterPager() {
|
||||
const el = document.getElementById("filterPager");
|
||||
if (!el) return;
|
||||
if (!serverFiltered) {
|
||||
el.style.display = "none";
|
||||
el.innerHTML = "";
|
||||
return;
|
||||
}
|
||||
el.style.display = "inline-flex";
|
||||
const label = showingSelection ? "selezionati" : "trovati";
|
||||
el.innerHTML =
|
||||
`<button type="button" class="btn btn-outline-secondary btn-sm" id="filterPrevBtn" ${filterPage <= 1 ? "disabled" : ""}>‹</button>` +
|
||||
`<span style="font-size:12px;color:#333;">${filterTotal} ${label} · pag ${filterPage}/${filterTotalPages}</span>` +
|
||||
`<button type="button" class="btn btn-outline-secondary btn-sm" id="filterNextBtn" ${filterPage >= filterTotalPages ? "disabled" : ""}>›</button>`;
|
||||
const go = pagerFn || applyServerFilter;
|
||||
const prev = document.getElementById("filterPrevBtn");
|
||||
const next = document.getElementById("filterNextBtn");
|
||||
if (prev) prev.addEventListener("click", () => go(filterPage - 1));
|
||||
if (next) next.addEventListener("click", () => go(filterPage + 1));
|
||||
}
|
||||
|
||||
function restoreOriginal() {
|
||||
serverFiltered = false;
|
||||
filterPage = 1;
|
||||
filterTotalPages = 1;
|
||||
filterTotal = 0;
|
||||
if (originalData) swapData(originalData);
|
||||
updateFilterPager();
|
||||
hidePagination(false);
|
||||
updateToolbar();
|
||||
}
|
||||
|
||||
async function applyServerFilter(page = 1) {
|
||||
const active = collectActiveFilters();
|
||||
if (active.length === 0) {
|
||||
if (serverFiltered) restoreOriginal();
|
||||
return;
|
||||
}
|
||||
if (!originalData) originalData = [...data()]; // snapshot pagina 1 originale
|
||||
|
||||
const seq = ++filterReqSeq;
|
||||
try {
|
||||
const resp = await fetch("filter_records.php", {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({
|
||||
template_id: parseInt(TEMPLATE_ID, 10),
|
||||
all_users: SHOW_ALL,
|
||||
importref: IMPORTREF,
|
||||
status: "i",
|
||||
filters: active,
|
||||
page: Math.max(1, page),
|
||||
per_page: FILTER_PER_PAGE,
|
||||
}),
|
||||
});
|
||||
const json = await resp.json();
|
||||
if (seq !== filterReqSeq) return; // risposta obsoleta: ignora
|
||||
if (!json.success) {
|
||||
console.error("[gridFilter] filtro:", json.message);
|
||||
return;
|
||||
}
|
||||
serverFiltered = true;
|
||||
showingSelection = false;
|
||||
pagerFn = applyServerFilter;
|
||||
filterPage = json.page;
|
||||
filterTotalPages = json.total_pages;
|
||||
filterTotal = json.total;
|
||||
swapData(json.rows || []);
|
||||
updateFilterPager();
|
||||
hidePagination(true);
|
||||
updateToolbar();
|
||||
} catch (e) {
|
||||
console.error("[gridFilter] fetch filtro fallita", e);
|
||||
}
|
||||
}
|
||||
|
||||
// ── Mostra i SELEZIONATI (unione tra filtri diversi) ──────────────────
|
||||
// La selezione si accumula tra filtri; questo carica dal server TUTTI i record
|
||||
// selezionati (per id) e li mostra, paginati, a prescindere dai filtri correnti.
|
||||
async function showSelectedRecords(page = 1) {
|
||||
const ids = [...selected];
|
||||
if (!ids.length) {
|
||||
showingSelection = false;
|
||||
updateToolbar();
|
||||
return;
|
||||
}
|
||||
pagerFn = showSelectedRecords;
|
||||
try {
|
||||
const resp = await fetch("filter_records.php", {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({
|
||||
template_id: parseInt(TEMPLATE_ID, 10),
|
||||
all_users: SHOW_ALL,
|
||||
importref: IMPORTREF,
|
||||
status: "i",
|
||||
ids: ids,
|
||||
page: Math.max(1, page),
|
||||
per_page: FILTER_PER_PAGE,
|
||||
}),
|
||||
});
|
||||
const json = await resp.json();
|
||||
if (!json.success) {
|
||||
console.error("[gridFilter] mostra selezionati:", json.message);
|
||||
return;
|
||||
}
|
||||
if (!originalData) originalData = [...data()];
|
||||
showingSelection = true;
|
||||
serverFiltered = true;
|
||||
filterPage = json.page;
|
||||
filterTotalPages = json.total_pages;
|
||||
filterTotal = json.total;
|
||||
swapData(json.rows || []);
|
||||
updateFilterPager();
|
||||
hidePagination(true);
|
||||
updateToolbar();
|
||||
} catch (e) {
|
||||
console.error("[gridFilter] mostra selezionati fallita", e);
|
||||
}
|
||||
}
|
||||
|
||||
// Tumbler "Mostra selezionati" / "Torna al filtro".
|
||||
function toggleShowSelected() {
|
||||
if (!showingSelection) {
|
||||
if (!selected.size) return;
|
||||
showSelectedRecords(1);
|
||||
} else {
|
||||
exitSelectionView();
|
||||
}
|
||||
}
|
||||
|
||||
// Torna dal "mostra selezionati" al filtro corrente (o alla pagina originale).
|
||||
function exitSelectionView() {
|
||||
showingSelection = false;
|
||||
pagerFn = applyServerFilter;
|
||||
if (collectActiveFilters().length) {
|
||||
applyServerFilter(1);
|
||||
} else {
|
||||
restoreOriginal();
|
||||
}
|
||||
updateToolbar();
|
||||
}
|
||||
|
||||
// Deseleziona tutto.
|
||||
function clearSelection() {
|
||||
selected.clear();
|
||||
document
|
||||
.querySelectorAll("#gridRowContainer .grid-row.row-selected")
|
||||
.forEach((el) => el.classList.remove("row-selected"));
|
||||
document
|
||||
.querySelectorAll(".filter-row-checkbox")
|
||||
.forEach((cb) => (cb.checked = false));
|
||||
const sa = document.getElementById("filterSelectAll");
|
||||
if (sa) sa.checked = false;
|
||||
if (showingSelection) {
|
||||
exitSelectionView();
|
||||
} else {
|
||||
updateToolbar();
|
||||
}
|
||||
}
|
||||
|
||||
// "Seleziona tutti i filtrati": chiede al server TUTTI gli id del match e li seleziona.
|
||||
async function selectAllMatching(on) {
|
||||
if (!serverFiltered) return;
|
||||
const active = collectActiveFilters();
|
||||
try {
|
||||
const resp = await fetch("filter_records.php", {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({
|
||||
template_id: parseInt(TEMPLATE_ID, 10),
|
||||
all_users: SHOW_ALL,
|
||||
importref: IMPORTREF,
|
||||
status: "i",
|
||||
filters: active,
|
||||
page: filterPage,
|
||||
per_page: FILTER_PER_PAGE,
|
||||
want_all_ids: true,
|
||||
}),
|
||||
});
|
||||
const json = await resp.json();
|
||||
if (!json.success) return;
|
||||
(json.all_ids || []).forEach((id) => (on ? selected.add(id) : selected.delete(id)));
|
||||
document
|
||||
.querySelectorAll("#gridRowContainer .grid-row")
|
||||
.forEach((rowEl) => {
|
||||
rowEl.classList.toggle("row-selected", on);
|
||||
const cb = rowEl.querySelector(".filter-row-checkbox");
|
||||
if (cb) cb.checked = on;
|
||||
});
|
||||
updateToolbar();
|
||||
if (json.all_ids_capped) {
|
||||
alert("Selezione limitata a " + (json.all_ids || []).length + " record.");
|
||||
}
|
||||
} catch (e) {
|
||||
console.error("[gridFilter] select-all fallita", e);
|
||||
}
|
||||
}
|
||||
|
||||
function syncFilterRow() {
|
||||
const fr = document.getElementById("gridFilterRow");
|
||||
const header = document.getElementById("gridHeaderContainer");
|
||||
if (!fr || !header) return;
|
||||
|
||||
const actHeader = header.querySelector(".button-header");
|
||||
const actCell = fr.querySelector(".filter-actions-cell");
|
||||
if (actHeader && actCell) {
|
||||
const aw = actHeader.offsetWidth;
|
||||
actCell.style.flex = `0 0 ${aw}px`;
|
||||
actCell.style.minWidth = `${aw}px`;
|
||||
}
|
||||
|
||||
const headerCells = header.querySelectorAll(
|
||||
".grid-header:not(.button-header)",
|
||||
);
|
||||
const filterCells = fr.querySelectorAll(
|
||||
".grid-cell:not(.filter-actions-cell)",
|
||||
);
|
||||
headerCells.forEach((hc, i) => {
|
||||
const fc = filterCells[i];
|
||||
if (fc) fc.style.flex = `0 0 ${hc.offsetWidth}px`;
|
||||
});
|
||||
}
|
||||
|
||||
function syncStickyLeft() {
|
||||
const btnHeader = document.querySelector(
|
||||
"#gridHeaderContainer .button-header",
|
||||
);
|
||||
if (!btnHeader) return;
|
||||
const w1 = btnHeader.offsetWidth; // larghezza reale colonna Actions
|
||||
|
||||
const fixRow = (rowEl) => {
|
||||
if (!rowEl) return;
|
||||
const cells = rowEl.querySelectorAll(
|
||||
":scope > .grid-cell, :scope > .grid-header",
|
||||
);
|
||||
const c2 = cells[1];
|
||||
const c3 = cells[2];
|
||||
if (c2 && getComputedStyle(c2).position === "sticky") {
|
||||
c2.style.left = `${w1}px`;
|
||||
}
|
||||
if (c3 && getComputedStyle(c3).position === "sticky") {
|
||||
c3.style.left = `${w1 + (c2 ? c2.offsetWidth : 0)}px`;
|
||||
}
|
||||
};
|
||||
|
||||
fixRow(document.getElementById("gridHeaderContainer"));
|
||||
document.querySelectorAll(".grid-top").forEach(fixRow);
|
||||
document
|
||||
.querySelectorAll("#gridRowContainer .grid-row")
|
||||
.forEach(fixRow);
|
||||
fixRow(document.getElementById("gridFilterRow"));
|
||||
}
|
||||
|
||||
let _headerObs = null;
|
||||
let _rowObs = null;
|
||||
let _syncRaf = null;
|
||||
|
||||
function reconnectObservers() {
|
||||
const header = document.getElementById("gridHeaderContainer");
|
||||
const rows = document.getElementById("gridRowContainer");
|
||||
if (_headerObs && header)
|
||||
_headerObs.observe(header, {
|
||||
attributes: true,
|
||||
attributeFilter: ["style"],
|
||||
subtree: true,
|
||||
});
|
||||
if (_rowObs && rows) _rowObs.observe(rows, { childList: true });
|
||||
}
|
||||
|
||||
function scheduleSync() {
|
||||
if (_syncRaf) return;
|
||||
_syncRaf = requestAnimationFrame(() => {
|
||||
_syncRaf = null;
|
||||
if (_headerObs) _headerObs.disconnect();
|
||||
if (_rowObs) _rowObs.disconnect();
|
||||
syncStickyLeft();
|
||||
syncFilterRow();
|
||||
reconnectObservers();
|
||||
});
|
||||
}
|
||||
|
||||
function hookGridSync() {
|
||||
_headerObs = new MutationObserver(scheduleSync);
|
||||
_rowObs = new MutationObserver(scheduleSync);
|
||||
reconnectObservers();
|
||||
scheduleSync(); // primo allineamento
|
||||
}
|
||||
|
||||
function rowMatchesFilters(row) {
|
||||
if (serverFiltered) return true;
|
||||
for (const [key, term] of Object.entries(colFilters)) {
|
||||
if (!term) continue;
|
||||
const t = term.toLowerCase();
|
||||
const val = getRowColValue(row, key);
|
||||
if (!String(val).toLowerCase().includes(t)) return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
function getRowColValue(row, key) {
|
||||
const cols = meta().columns || [];
|
||||
const col = cols.find((c) => String(c.key) === String(key));
|
||||
if (!col) return "";
|
||||
switch (col.type) {
|
||||
case "detail":
|
||||
case "main_field":
|
||||
return row.details?.[String(key)] ?? "";
|
||||
case "fixed":
|
||||
return row.fixedFields?.[key] ?? "";
|
||||
case "idclient":
|
||||
return row.idclient ?? "";
|
||||
case "cliente_fornitore_id":
|
||||
return row.cliente_fornitore_id ?? "";
|
||||
case "tested_component":
|
||||
return row.tested_component ?? "";
|
||||
case "static":
|
||||
return row[key] ?? "";
|
||||
case "status":
|
||||
return row.status ?? "";
|
||||
default:
|
||||
return row[key] ?? "";
|
||||
}
|
||||
}
|
||||
|
||||
// ── Applica visibilità righe (filtri + restrizione) ──
|
||||
function applyVisibility() {
|
||||
const rows = document.querySelectorAll("#gridRowContainer .grid-row");
|
||||
rows.forEach((rowEl) => {
|
||||
const id = parseInt(rowEl.dataset.id, 10);
|
||||
const row = data().find((r) => String(r.iddatadb) === String(id));
|
||||
let show = true;
|
||||
if (row && !rowMatchesFilters(row)) show = false;
|
||||
if (restricted && restrictedIds && !restrictedIds.has(id))
|
||||
show = false;
|
||||
rowEl.style.display = show ? "" : "none";
|
||||
});
|
||||
window.dispatchEvent(new Event("resize")); // ricalcola scrollbar top
|
||||
}
|
||||
|
||||
// ── Lista iddatadb attualmente visibili (per propagazione/export ecc.) ──
|
||||
window.getVisibleGridIds = function () {
|
||||
if (serverFiltered) {
|
||||
return data()
|
||||
.map((r) => parseInt(r.iddatadb, 10))
|
||||
.filter(Boolean);
|
||||
}
|
||||
const ids = [];
|
||||
document
|
||||
.querySelectorAll("#gridRowContainer .grid-row")
|
||||
.forEach((el) => {
|
||||
if (el.style.display !== "none")
|
||||
ids.push(parseInt(el.dataset.id, 10));
|
||||
});
|
||||
return ids.filter(Boolean);
|
||||
};
|
||||
|
||||
// ── Righe target per operazioni bulk (propaga/export/clona/save) ──
|
||||
// Regola: filtri attivi + selezione → solo selezionate;
|
||||
// filtri attivi senza selezione → solo visibili;
|
||||
// filtri non attivi → null (= tutte, comportamento originale).
|
||||
window.getTargetGridIds = function () {
|
||||
if (!filtersActive) return null; // null = nessun vincolo
|
||||
if (selected.size > 0) return new Set([...selected]);
|
||||
return new Set(window.getVisibleGridIds());
|
||||
};
|
||||
|
||||
// Helper: true se l'id è tra i target (o se non c'è vincolo)
|
||||
window.isTargetGridId = function (id) {
|
||||
const t = window.getTargetGridIds();
|
||||
if (t === null) return true;
|
||||
return t.has(parseInt(id, 10));
|
||||
};
|
||||
|
||||
// ── Toggle selezione riga ──
|
||||
function toggleRow(id, on) {
|
||||
id = parseInt(id, 10);
|
||||
if (on) selected.add(id);
|
||||
else selected.delete(id);
|
||||
const rowEl = document.querySelector(
|
||||
`#gridRowContainer .grid-row[data-id="${id}"]`,
|
||||
);
|
||||
if (rowEl) {
|
||||
rowEl.classList.toggle("row-selected", selected.has(id));
|
||||
const cb = rowEl.querySelector(".filter-row-checkbox");
|
||||
if (cb) cb.checked = selected.has(id);
|
||||
}
|
||||
updateToolbar();
|
||||
}
|
||||
|
||||
// ── Inietta checkbox nelle righe visibili ──
|
||||
// ── Inietta checkbox dentro la cella Actions (già sticky) ──
|
||||
function injectCheckboxes() {
|
||||
document
|
||||
.querySelectorAll("#gridRowContainer .grid-row")
|
||||
.forEach((rowEl) => {
|
||||
const btnCell = rowEl.querySelector(".button-cell");
|
||||
if (!btnCell) return;
|
||||
if (btnCell.querySelector(".filter-row-checkbox")) return;
|
||||
const id = parseInt(rowEl.dataset.id, 10);
|
||||
const wrap = document.createElement("label");
|
||||
wrap.className = "filter-cb-wrap";
|
||||
wrap.innerHTML = `<input type="checkbox" class="filter-row-checkbox" ${selected.has(id) ? "checked" : ""}>`;
|
||||
btnCell.insertBefore(wrap, btnCell.firstChild);
|
||||
if (selected.has(id)) rowEl.classList.add("row-selected");
|
||||
});
|
||||
}
|
||||
|
||||
function removeCheckboxes() {
|
||||
document
|
||||
.querySelectorAll(".filter-cb-wrap")
|
||||
.forEach((el) => el.remove());
|
||||
document
|
||||
.querySelectorAll(".grid-row.row-selected")
|
||||
.forEach((el) => el.classList.remove("row-selected"));
|
||||
}
|
||||
|
||||
// ── Riga input filtri colonna (allineata alle larghezze reali) ──
|
||||
// ── Riga input filtri colonna (allineata alle larghezze reali) ──
|
||||
function injectFilterRow() {
|
||||
if (document.getElementById("gridFilterRow")) return;
|
||||
const top = document.getElementById("gridTopContainer");
|
||||
const header = document.getElementById("gridHeaderContainer");
|
||||
if (!top || !header) return;
|
||||
|
||||
const fr = document.createElement("div");
|
||||
fr.className = "grid-row grid-filter-row";
|
||||
fr.id = "gridFilterRow";
|
||||
|
||||
// cella allineata alla colonna Actions (sticky, legge larghezza reale)
|
||||
const actHeader = header.querySelector(".button-header");
|
||||
const actCell = document.createElement("div");
|
||||
actCell.className = "grid-cell button-cell filter-actions-cell";
|
||||
const aw = actHeader ? actHeader.offsetWidth : 220;
|
||||
actCell.style.flex = `0 0 ${aw}px`;
|
||||
actCell.style.minWidth = `${aw}px`;
|
||||
actCell.innerHTML = `<label class="filter-cb-wrap" style="display:inline-flex;" title="Seleziona tutti i filtrati"><input type="checkbox" id="filterSelectAll"></label>`;
|
||||
fr.appendChild(actCell);
|
||||
|
||||
// una cella per colonna, larghezza letta dall'header reale
|
||||
const headerCells = header.querySelectorAll(
|
||||
".grid-header:not(.button-header)",
|
||||
);
|
||||
(meta().columns || []).forEach((col, i) => {
|
||||
const hc = headerCells[i];
|
||||
const w = hc ? hc.offsetWidth : col.width || 150;
|
||||
const cell = document.createElement("div");
|
||||
cell.className = "grid-cell";
|
||||
cell.style.flex = `0 0 ${w}px`;
|
||||
if (col.type === "tracking" || col.type === "awb") {
|
||||
// niente filtro
|
||||
} else if (col.type === "status") {
|
||||
// Status: dropdown (3 valori) invece del testo libero.
|
||||
const cur = colFilters[col.key] || "";
|
||||
const opt = (v, lbl) =>
|
||||
`<option value="${v}" ${cur === v ? "selected" : ""}>${lbl}</option>`;
|
||||
cell.innerHTML =
|
||||
`<select class="filter-col-input" data-col-key="${col.key}" style="width:100%;padding:3px 6px;font-size:12px;border:1px solid #ced4da;border-radius:4px;">` +
|
||||
opt("", "— tutti —") +
|
||||
opt("i", "Imported") +
|
||||
opt("P", "In Progress") +
|
||||
opt("l", "To LIMS") +
|
||||
`</select>`;
|
||||
} else {
|
||||
cell.innerHTML = `<input type="text" class="filter-col-input" data-col-key="${col.key}" placeholder="🔍 ${col.label || ""}" value="${colFilters[col.key] || ""}" style="width:100%;padding:3px 6px;font-size:12px;border:1px solid #ced4da;border-radius:4px;">`;
|
||||
}
|
||||
fr.appendChild(cell);
|
||||
});
|
||||
|
||||
top.parentNode.insertBefore(fr, top);
|
||||
scheduleSync(); // allinea larghezze filtri + offset sticky
|
||||
}
|
||||
|
||||
function removeFilterRow() {
|
||||
const fr = document.getElementById("gridFilterRow");
|
||||
if (fr) fr.remove();
|
||||
}
|
||||
|
||||
// ── Toolbar (bottoni contestuali) ──
|
||||
function updateToolbar() {
|
||||
const bar = document.getElementById("filterActionBar");
|
||||
if (!bar) return;
|
||||
const count = selected.size;
|
||||
bar.style.display = filtersActive ? "inline-flex" : "none";
|
||||
const cntEl = document.getElementById("filterSelCount");
|
||||
if (cntEl) cntEl.textContent = count;
|
||||
document.getElementById("filterDeleteBtn").disabled = count === 0;
|
||||
|
||||
const showBtn = document.getElementById("filterRestrictBtn");
|
||||
showBtn.disabled = count === 0 && !showingSelection;
|
||||
showBtn.innerHTML = showingSelection
|
||||
? '<i class="fas fa-eye"></i> Torna al filtro'
|
||||
: '<i class="fas fa-list-check"></i> Mostra selezionati';
|
||||
|
||||
const clearSelBtn = document.getElementById("filterClearSelBtn");
|
||||
if (clearSelBtn) clearSelBtn.disabled = count === 0;
|
||||
}
|
||||
|
||||
// ── Main toggle ──
|
||||
function toggleFilters() {
|
||||
filtersActive = !filtersActive;
|
||||
const grid = document.getElementById("gridContainer");
|
||||
const btn = document.getElementById("filtersToggleBtn");
|
||||
if (filtersActive) {
|
||||
grid.classList.add("filters-on");
|
||||
btn.classList.add("active");
|
||||
injectCheckboxes();
|
||||
injectFilterRow();
|
||||
} else {
|
||||
grid.classList.remove("filters-on");
|
||||
btn.classList.remove("active");
|
||||
removeCheckboxes();
|
||||
removeFilterRow();
|
||||
// reset filtri colonna + ripristina la pagina originale
|
||||
Object.keys(colFilters).forEach((k) => delete colFilters[k]);
|
||||
if (serverFiltered) restoreOriginal();
|
||||
}
|
||||
updateToolbar();
|
||||
}
|
||||
|
||||
// ── Batch delete ──
|
||||
async function batchDelete() {
|
||||
const ids = [...selected];
|
||||
if (!ids.length) return;
|
||||
if (
|
||||
!confirm(
|
||||
`Eliminare ${ids.length} righe dal database? Operazione irreversibile.`,
|
||||
)
|
||||
)
|
||||
return;
|
||||
|
||||
const btn = document.getElementById("filterDeleteBtn");
|
||||
btn.disabled = true;
|
||||
const original = btn.innerHTML;
|
||||
|
||||
let ok = 0,
|
||||
fail = 0;
|
||||
for (const id of ids) {
|
||||
try {
|
||||
btn.innerHTML = `<i class="fas fa-spinner fa-spin"></i> ${ok + fail + 1}/${ids.length}`;
|
||||
const resp = await fetch("delete_record.php", {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({ id: id }),
|
||||
});
|
||||
const json = await resp.json();
|
||||
if (json.success) {
|
||||
ok++;
|
||||
// rimuovi da gridData
|
||||
const arr = data();
|
||||
const idx = arr.findIndex(
|
||||
(r) => String(r.iddatadb) === String(id),
|
||||
);
|
||||
if (idx !== -1) arr.splice(idx, 1);
|
||||
selected.delete(id);
|
||||
if (restrictedIds) restrictedIds.delete(id);
|
||||
} else fail++;
|
||||
} catch (e) {
|
||||
fail++;
|
||||
}
|
||||
}
|
||||
|
||||
btn.innerHTML = original;
|
||||
R().renderVisibleRows();
|
||||
if (filtersActive) {
|
||||
injectCheckboxes();
|
||||
}
|
||||
applyVisibility();
|
||||
updateToolbar();
|
||||
alert(`Eliminate: ${ok}${fail ? " — Falliti: " + fail : ""}`);
|
||||
}
|
||||
|
||||
// ── Restringi / mostra tutti ──
|
||||
function toggleRestrict() {
|
||||
if (!restricted) {
|
||||
if (!selected.size) return;
|
||||
restrictedIds = new Set([...selected]);
|
||||
restricted = true;
|
||||
} else {
|
||||
restricted = false;
|
||||
restrictedIds = null;
|
||||
}
|
||||
applyVisibility();
|
||||
updateToolbar();
|
||||
}
|
||||
|
||||
// ── Costruzione UI toolbar (bottoni in cima) ──
|
||||
function buildUI() {
|
||||
const addBtn = document.getElementById("addRowBtn");
|
||||
if (!addBtn) return;
|
||||
|
||||
// bottone Filters
|
||||
const fBtn = document.createElement("button");
|
||||
fBtn.type = "button";
|
||||
fBtn.id = "filtersToggleBtn";
|
||||
fBtn.className = "btn btn-outline-info btn-sm";
|
||||
fBtn.style.flexShrink = "0";
|
||||
fBtn.innerHTML = '<i class="fas fa-filter"></i> Filters';
|
||||
addBtn.parentNode.insertBefore(fBtn, addBtn.nextSibling);
|
||||
|
||||
// barra azioni contestuali
|
||||
const bar = document.createElement("span");
|
||||
bar.id = "filterActionBar";
|
||||
bar.style.cssText =
|
||||
"display:none;align-items:center;gap:8px;flex-shrink:0;";
|
||||
bar.innerHTML = `
|
||||
<span id="filterPager" style="display:none;align-items:center;gap:6px;"></span>
|
||||
<button type="button" id="filterClearBtn" class="btn btn-outline-secondary btn-sm"><i class="fas fa-times"></i> Pulisci filtri</button>
|
||||
<span style="font-size:12px;color:#555;">Selezionate: <strong id="filterSelCount">0</strong></span>
|
||||
<button type="button" id="filterRestrictBtn" class="btn btn-outline-primary btn-sm"><i class="fas fa-list-check"></i> Mostra selezionati</button>
|
||||
<button type="button" id="filterClearSelBtn" class="btn btn-outline-secondary btn-sm"><i class="fas fa-square"></i> Deseleziona</button>
|
||||
<button type="button" id="filterDeleteBtn" class="btn btn-outline-danger btn-sm"><i class="fas fa-trash"></i> Elimina selezionati</button>
|
||||
`;
|
||||
fBtn.parentNode.insertBefore(bar, fBtn.nextSibling);
|
||||
|
||||
fBtn.addEventListener("click", toggleFilters);
|
||||
document
|
||||
.getElementById("filterClearBtn")
|
||||
.addEventListener("click", clearFilters);
|
||||
document
|
||||
.getElementById("filterDeleteBtn")
|
||||
.addEventListener("click", batchDelete);
|
||||
document
|
||||
.getElementById("filterRestrictBtn")
|
||||
.addEventListener("click", toggleShowSelected);
|
||||
document
|
||||
.getElementById("filterClearSelBtn")
|
||||
.addEventListener("click", clearSelection);
|
||||
}
|
||||
|
||||
// Svuota tutti i filtri di colonna (input + select) e torna alla pagina originale.
|
||||
function clearFilters() {
|
||||
Object.keys(colFilters).forEach((k) => delete colFilters[k]);
|
||||
document
|
||||
.querySelectorAll("#gridFilterRow .filter-col-input")
|
||||
.forEach((el) => {
|
||||
el.value = "";
|
||||
});
|
||||
if (serverFiltered) restoreOriginal();
|
||||
}
|
||||
|
||||
// ── Event delegation ──
|
||||
function attachEvents() {
|
||||
// checkbox click
|
||||
document.addEventListener("change", function (e) {
|
||||
if (e.target.classList.contains("filter-row-checkbox")) {
|
||||
const rowEl = e.target.closest(".grid-row");
|
||||
toggleRow(rowEl.dataset.id, e.target.checked);
|
||||
}
|
||||
});
|
||||
|
||||
// Seleziona / deseleziona tutti i FILTRATI
|
||||
document.addEventListener("change", function (e) {
|
||||
if (e.target.id !== "filterSelectAll") return;
|
||||
const on = e.target.checked;
|
||||
|
||||
// Con filtro server-side: seleziona TUTTI i match (anche altre pagine).
|
||||
if (serverFiltered) {
|
||||
selectAllMatching(on);
|
||||
return;
|
||||
}
|
||||
|
||||
document
|
||||
.querySelectorAll("#gridRowContainer .grid-row")
|
||||
.forEach((rowEl) => {
|
||||
if (rowEl.style.display === "none") return;
|
||||
const id = parseInt(rowEl.dataset.id, 10);
|
||||
if (!id) return;
|
||||
if (on) selected.add(id);
|
||||
else selected.delete(id);
|
||||
rowEl.classList.toggle("row-selected", on);
|
||||
const cb = rowEl.querySelector(".filter-row-checkbox");
|
||||
if (cb) cb.checked = on;
|
||||
});
|
||||
updateToolbar();
|
||||
});
|
||||
|
||||
// click su QUALSIASI punto della riga (tranne campi interattivi) = seleziona
|
||||
document.addEventListener("click", function (e) {
|
||||
if (!filtersActive) return;
|
||||
const rowEl = e.target.closest("#gridRowContainer .grid-row");
|
||||
if (!rowEl) return;
|
||||
|
||||
// ignora click su elementi interattivi
|
||||
if (
|
||||
e.target.closest(
|
||||
"input, select, textarea, button, a, .select2-container, .action-btn, .propagate-btn, .add-part-btn",
|
||||
)
|
||||
) {
|
||||
// ma se ho cliccato proprio la checkbox, lascia fare al change
|
||||
return;
|
||||
}
|
||||
|
||||
const cb = rowEl.querySelector(".filter-row-checkbox");
|
||||
if (!cb) return;
|
||||
cb.checked = !cb.checked;
|
||||
toggleRow(rowEl.dataset.id, cb.checked);
|
||||
});
|
||||
|
||||
// filtri colonna testo (debounce) → filtro server-side su tutto il template
|
||||
let t = null;
|
||||
document.addEventListener("input", function (e) {
|
||||
if (!e.target.classList.contains("filter-col-input")) return;
|
||||
if (e.target.tagName === "SELECT") return; // i select li gestisce 'change'
|
||||
const key = e.target.dataset.colKey;
|
||||
colFilters[key] = e.target.value;
|
||||
clearTimeout(t);
|
||||
t = setTimeout(applyServerFilter, 250);
|
||||
});
|
||||
|
||||
// dropdown (es. Status): applica subito, senza debounce
|
||||
document.addEventListener("change", function (e) {
|
||||
if (!e.target.classList.contains("filter-col-input")) return;
|
||||
if (e.target.tagName !== "SELECT") return;
|
||||
colFilters[e.target.dataset.colKey] = e.target.value;
|
||||
applyServerFilter();
|
||||
});
|
||||
}
|
||||
|
||||
// ── Ripristina stato filtri dopo un re-render (checkbox + restrizione) ──
|
||||
let _restoring = false;
|
||||
function restoreFilterState() {
|
||||
if (!filtersActive || _restoring) return;
|
||||
_restoring = true; // evita loop con l'observer mentre iniettiamo/nascondiamo
|
||||
try {
|
||||
injectCheckboxes();
|
||||
applyVisibility(); // ri-applica filtri colonna E restringi selezione
|
||||
} finally {
|
||||
// rilascia dopo il tick così le nostre mutazioni non ci ri-triggerano subito
|
||||
setTimeout(() => {
|
||||
_restoring = false;
|
||||
}, 0);
|
||||
}
|
||||
}
|
||||
|
||||
// ── Observer: qualunque cosa ricrei le righe (propagazione, save, ecc.)
|
||||
// ripristina automaticamente checkbox + restrizione. Robusto perché
|
||||
// non dipende da chi chiama renderVisibleRows. ──
|
||||
function hookRerender() {
|
||||
const rowC = document.getElementById("gridRowContainer");
|
||||
if (!rowC) return;
|
||||
|
||||
const obs = new MutationObserver(() => {
|
||||
if (!filtersActive || _restoring) return;
|
||||
// debounce leggero: aspetta che il render finisca
|
||||
clearTimeout(hookRerender._t);
|
||||
hookRerender._t = setTimeout(restoreFilterState, 30);
|
||||
});
|
||||
|
||||
obs.observe(rowC, { childList: true });
|
||||
}
|
||||
|
||||
function init() {
|
||||
if (!window.gridRenderer) {
|
||||
console.error("[gridFilter] gridRenderer non trovato");
|
||||
return;
|
||||
}
|
||||
buildUI();
|
||||
attachEvents();
|
||||
hookRerender();
|
||||
hookGridSync();
|
||||
}
|
||||
|
||||
// parte dopo che gridRenderer ha finito init
|
||||
if (document.readyState === "loading") {
|
||||
document.addEventListener("DOMContentLoaded", () =>
|
||||
setTimeout(init, 300),
|
||||
);
|
||||
} else {
|
||||
setTimeout(init, 300);
|
||||
}
|
||||
})();
|
||||
@@ -143,7 +143,54 @@
|
||||
}),
|
||||
);
|
||||
}
|
||||
// Ranking inizio/centro/fine per select con dati già in memoria.
|
||||
// Restituisce { matcher, sorter } da passare a select2().
|
||||
function rankedLocalSelect2() {
|
||||
return {
|
||||
matcher: function (params, data) {
|
||||
const term = $.trim(params.term || "").toLowerCase();
|
||||
if (term === "") return data;
|
||||
if (typeof data.text === "undefined") return null;
|
||||
|
||||
// AND multi-termine, posizione indipendente
|
||||
const text = data.text.toLowerCase();
|
||||
const terms = term.split(/\s+/).filter(Boolean);
|
||||
const all = terms.every((t) => text.indexOf(t) !== -1);
|
||||
return all ? data : null;
|
||||
},
|
||||
sorter: function (results) {
|
||||
const term = $(
|
||||
".select2-container--open .select2-search__field",
|
||||
).val();
|
||||
const search = (term || "").toLowerCase().trim();
|
||||
if (!search) return results;
|
||||
|
||||
const first = search.split(/\s+/)[0];
|
||||
|
||||
function score(text) {
|
||||
const t = (text || "").toLowerCase();
|
||||
if (t === search) return 0; // match esatto
|
||||
if (t.indexOf(first) === 0) return 1; // inizia col termine
|
||||
if (new RegExp("(^|\\s)" + escapeRegExp(first)).test(t))
|
||||
return 2; // inizio parola
|
||||
return 3; // in mezzo
|
||||
}
|
||||
|
||||
return results.slice().sort(function (a, b) {
|
||||
const sa = score(a.text);
|
||||
const sb = score(b.text);
|
||||
if (sa !== sb) return sa - sb;
|
||||
return (a.text || "").localeCompare(b.text || "", "it", {
|
||||
sensitivity: "base",
|
||||
});
|
||||
});
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
function escapeRegExp(s) {
|
||||
return String(s).replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
||||
}
|
||||
function sortSelect2ResultsByStart(data) {
|
||||
const term = $(".select2-container--open .select2-search__field").val();
|
||||
|
||||
@@ -683,7 +730,7 @@
|
||||
|
||||
const reqCls = col.isRequired ? " required-input" : "";
|
||||
const req = col.isRequired ? " required" : "";
|
||||
return `<select class="cell-input manual-input fixed-input ${selectClass}${reqCls}" data-fixed-key="${escAttr(col.key)}" data-current-value="${escAttr(value)}"${req}>${options}</select>`;
|
||||
return `<select class="cell-input manual-input fixed-input searchable-fixed ${selectClass}${reqCls}" data-fixed-key="${escAttr(col.key)}" data-current-value="${escAttr(value)}"${req}>${options}</select>`;
|
||||
}
|
||||
|
||||
function buildDropdownOptionsHTML(fieldId, selectedValue) {
|
||||
@@ -967,6 +1014,11 @@
|
||||
|
||||
if (!row) return;
|
||||
|
||||
// Salta le righe nascoste (filtrate / non nella selezione ristretta):
|
||||
// non devono essere sincronizzate né marcate dirty.
|
||||
const rowEl = cell.closest(".grid-row");
|
||||
if (rowEl && rowEl.style.display === "none") return;
|
||||
|
||||
const colType = cell.dataset.colType;
|
||||
const colKey = cell.dataset.col;
|
||||
const input = cell.querySelector(".cell-input");
|
||||
@@ -1198,6 +1250,12 @@
|
||||
items.forEach((item) =>
|
||||
sel.add(new Option(item.text, item.id)),
|
||||
);
|
||||
$(sel).select2({
|
||||
placeholder: "Seleziona...",
|
||||
allowClear: true,
|
||||
width: "100%",
|
||||
...rankedLocalSelect2(),
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
@@ -1220,6 +1278,59 @@
|
||||
function attachEvents() {
|
||||
if (!rowContainer) return;
|
||||
|
||||
// ── Auto-copy: Sample Arrival date/time → Unlock date/time ──────────
|
||||
// Coppie basate sui fieldId dei campi (source → target)
|
||||
const AUTO_COPY_FIELD_PAIRS = [
|
||||
{ from: 259, to: 260 }, // Sample Arrival date → Unlock Date
|
||||
{ from: 348, to: 349 }, // Sample Arrival time → Unlock time
|
||||
];
|
||||
|
||||
// Risolve fieldId → col.key (mapping id) usando le definizioni colonne
|
||||
function colKeyByFieldId(fieldId) {
|
||||
const col = columns.find(
|
||||
(c) =>
|
||||
(c.type === "detail" || c.type === "main_field") &&
|
||||
String(c.fieldId) === String(fieldId),
|
||||
);
|
||||
return col ? String(col.key) : null;
|
||||
}
|
||||
|
||||
// Precalcola le coppie come col.key (sourceKey → targetKey)
|
||||
const AUTO_COPY_KEY_PAIRS = AUTO_COPY_FIELD_PAIRS.map((p) => ({
|
||||
fromKey: colKeyByFieldId(p.from),
|
||||
toKey: colKeyByFieldId(p.to),
|
||||
})).filter((p) => p.fromKey && p.toKey);
|
||||
|
||||
function applyAutoCopy(rowIndex, changedColKey, value) {
|
||||
const pair = AUTO_COPY_KEY_PAIRS.find(
|
||||
(p) => p.fromKey === String(changedColKey),
|
||||
);
|
||||
if (!pair) return;
|
||||
|
||||
const row = data[rowIndex];
|
||||
if (!row) return;
|
||||
if (!row.details) row.details = {};
|
||||
|
||||
row.details[pair.toKey] = value;
|
||||
row._dirty = true;
|
||||
|
||||
// Aggiorna la cella target visibile, se presente
|
||||
const targetCell = rowContainer.querySelector(
|
||||
`.grid-cell[data-row="${rowIndex}"][data-col="${pair.toKey}"]`,
|
||||
);
|
||||
if (targetCell) {
|
||||
const input = targetCell.querySelector(".cell-input");
|
||||
if (input) {
|
||||
if ($(input).hasClass("select2-hidden-accessible")) {
|
||||
$(input).val(value).trigger("change.select2");
|
||||
} else {
|
||||
input.value = value;
|
||||
}
|
||||
}
|
||||
targetCell.classList.add("cell-changed");
|
||||
}
|
||||
}
|
||||
|
||||
// Cell value changes → write to gridData
|
||||
rowContainer.addEventListener("change", function (e) {
|
||||
const cell = e.target.closest(".grid-cell");
|
||||
@@ -1234,6 +1345,7 @@
|
||||
data[rowIndex].mainFieldValue = value;
|
||||
}
|
||||
setDetailValue(rowIndex, colKey, value);
|
||||
applyAutoCopy(rowIndex, colKey, value);
|
||||
} else if (colType === "fixed") {
|
||||
setFixedValue(rowIndex, colKey, value);
|
||||
} else if (colType === "idclient") {
|
||||
@@ -1387,6 +1499,11 @@
|
||||
|
||||
if (column === "idclient") {
|
||||
data.forEach((row) => {
|
||||
if (
|
||||
window.isTargetGridId &&
|
||||
!window.isTargetGridId(row.iddatadb)
|
||||
)
|
||||
return;
|
||||
const oldClientId = row.idclient || "";
|
||||
|
||||
row.idclient = value;
|
||||
@@ -1420,6 +1537,11 @@
|
||||
|
||||
if (column === "cliente_fornitore_id") {
|
||||
data.forEach((row) => {
|
||||
if (
|
||||
window.isTargetGridId &&
|
||||
!window.isTargetGridId(row.iddatadb)
|
||||
)
|
||||
return;
|
||||
row.cliente_fornitore_id = value;
|
||||
row._dirty = true;
|
||||
});
|
||||
@@ -1433,6 +1555,11 @@
|
||||
const fixedKey = column.replace("fixed_", "");
|
||||
|
||||
data.forEach((row) => {
|
||||
if (
|
||||
window.isTargetGridId &&
|
||||
!window.isTargetGridId(row.iddatadb)
|
||||
)
|
||||
return;
|
||||
if (!row.fixedFields) row.fixedFields = {};
|
||||
row.fixedFields[fixedKey] = value;
|
||||
row._dirty = true;
|
||||
@@ -1445,6 +1572,11 @@
|
||||
|
||||
if (col && (col.type === "detail" || col.type === "main_field")) {
|
||||
data.forEach((row) => {
|
||||
if (
|
||||
window.isTargetGridId &&
|
||||
!window.isTargetGridId(row.iddatadb)
|
||||
)
|
||||
return;
|
||||
if (!row.details) row.details = {};
|
||||
row.details[col.key] = value;
|
||||
|
||||
@@ -1626,9 +1758,18 @@
|
||||
const fieldId = this.dataset.fieldId;
|
||||
if (fieldId) $(this).select2(sceltaSelect2Config(fieldId));
|
||||
});
|
||||
$(this)
|
||||
.find(".searchable-fixed:not(.select2-hidden-accessible)")
|
||||
.each(function () {
|
||||
$(this).select2({
|
||||
placeholder: "Seleziona...",
|
||||
allowClear: true,
|
||||
width: "100%",
|
||||
...rankedLocalSelect2(),
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// ── Column resize ──────────────────────────────────────────────────────
|
||||
|
||||
function initColumnResizers() {
|
||||
@@ -1759,3 +1900,127 @@
|
||||
},
|
||||
};
|
||||
})();
|
||||
// ===================
|
||||
// NAVIGAZIONE GRIGLIA CON FRECCE TASTIERA
|
||||
// ===================
|
||||
(function () {
|
||||
// Naviga solo tra input di testo/numero/time e date-picker.
|
||||
// I Select2 (client, fornitore, SceltaMultipla) sono esclusi:
|
||||
// lì le frecce servono al dropdown.
|
||||
function isNavigable(el) {
|
||||
if (!el || !el.classList) return false;
|
||||
if (!el.classList.contains("cell-input")) return false;
|
||||
// Escludi i select (nativi o Select2)
|
||||
if (el.tagName === "SELECT") return false;
|
||||
if (el.classList.contains("select2-hidden-accessible")) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
// Tutte le celle navigabili della riga, ordinate per data-index
|
||||
function navCellsInRow($row) {
|
||||
return $row.find(".grid-cell[data-index]").filter(function () {
|
||||
const input = this.querySelector(".cell-input");
|
||||
return isNavigable(input);
|
||||
});
|
||||
}
|
||||
|
||||
function focusCellInput($cell) {
|
||||
if (!$cell || !$cell.length) return;
|
||||
const input = $cell.get(0).querySelector(".cell-input");
|
||||
if (!input) return;
|
||||
input.focus();
|
||||
if (input.type !== "date" && typeof input.select === "function") {
|
||||
try {
|
||||
input.select();
|
||||
} catch (e) {}
|
||||
}
|
||||
}
|
||||
|
||||
function atStart(el) {
|
||||
if (el.type === "date" || el.type === "number" || el.type === "time")
|
||||
return true;
|
||||
return el.selectionStart === 0 && el.selectionEnd === 0;
|
||||
}
|
||||
|
||||
function atEnd(el) {
|
||||
if (el.type === "date" || el.type === "number" || el.type === "time")
|
||||
return true;
|
||||
const len = (el.value || "").length;
|
||||
return el.selectionStart === len && el.selectionEnd === len;
|
||||
}
|
||||
|
||||
$(document).on("keydown", "#gridRowContainer .cell-input", function (e) {
|
||||
const el = this;
|
||||
if (!isNavigable(el)) return;
|
||||
|
||||
// Ignora se un dropdown Select2 è aperto
|
||||
if ($(".select2-container--open").length) return;
|
||||
|
||||
const key = e.key;
|
||||
if (
|
||||
key !== "ArrowUp" &&
|
||||
key !== "ArrowDown" &&
|
||||
key !== "ArrowLeft" &&
|
||||
key !== "ArrowRight"
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
const $cell = $(el).closest(".grid-cell");
|
||||
const $row = $cell.closest(".grid-row");
|
||||
if (!$cell.length || !$row.length) return;
|
||||
|
||||
const colIndex = $cell.attr("data-index");
|
||||
|
||||
// --- SU / GIÙ: stessa colonna (data-index), riga adiacente ---
|
||||
if (key === "ArrowUp" || key === "ArrowDown") {
|
||||
const $targetRow =
|
||||
key === "ArrowUp"
|
||||
? $row.prev(".grid-row")
|
||||
: $row.next(".grid-row");
|
||||
if (!$targetRow.length) return;
|
||||
|
||||
e.preventDefault();
|
||||
|
||||
// Cella stessa colonna nella riga di destinazione
|
||||
let $target = $targetRow.find(
|
||||
`.grid-cell[data-index="${colIndex}"]`,
|
||||
);
|
||||
|
||||
// Se quella colonna non è navigabile (es. è un select),
|
||||
// cerca la più vicina navigabile nella riga
|
||||
if (
|
||||
!$target.length ||
|
||||
!isNavigable($target.get(0).querySelector(".cell-input"))
|
||||
) {
|
||||
const $cells = navCellsInRow($targetRow);
|
||||
if (!$cells.length) return;
|
||||
$target = $cells.first();
|
||||
}
|
||||
|
||||
focusCellInput($target);
|
||||
return;
|
||||
}
|
||||
|
||||
// --- SINISTRA / DESTRA: cella navigabile precedente/successiva nella riga ---
|
||||
const $cells = navCellsInRow($row);
|
||||
const curPos = $cells.index($cell);
|
||||
if (curPos === -1) return;
|
||||
|
||||
if (key === "ArrowLeft") {
|
||||
if (!atStart(el)) return;
|
||||
if (curPos <= 0) return;
|
||||
e.preventDefault();
|
||||
focusCellInput($cells.eq(curPos - 1));
|
||||
return;
|
||||
}
|
||||
|
||||
if (key === "ArrowRight") {
|
||||
if (!atEnd(el)) return;
|
||||
if (curPos >= $cells.length - 1) return;
|
||||
e.preventDefault();
|
||||
focusCellInput($cells.eq(curPos + 1));
|
||||
return;
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
||||
@@ -787,6 +787,7 @@ $gridMeta = [
|
||||
padding: 10px 0;
|
||||
min-height: 0;
|
||||
flex-wrap: nowrap;
|
||||
min-width: fit-content;
|
||||
}
|
||||
|
||||
.grid-top .grid-cell {
|
||||
@@ -1328,6 +1329,117 @@ $gridMeta = [
|
||||
outline: 2px solid #dc3545 !important;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
/* ── Filtri / selezione righe ── */
|
||||
#filtersToggleBtn.active {
|
||||
background-color: #0dcaf0 !important;
|
||||
color: #fff !important;
|
||||
border-color: #0dcaf0 !important;
|
||||
}
|
||||
|
||||
/* checkbox dentro la cella Actions */
|
||||
.filter-cb-wrap {
|
||||
display: none;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-right: 6px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.grid-container.filters-on .filter-cb-wrap {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.filter-cb-wrap input {
|
||||
width: 18px !important;
|
||||
height: 18px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.grid-container.filters-on .button-cell {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.grid-row.row-selected {
|
||||
background-color: #cfe9ff !important;
|
||||
}
|
||||
|
||||
.grid-row.row-selected .button-cell,
|
||||
.grid-row.row-selected .grid-cell:nth-child(2),
|
||||
.grid-row.row-selected .grid-cell:nth-child(3) {
|
||||
background-color: #cfe9ff !important;
|
||||
}
|
||||
|
||||
.grid-filter-row {
|
||||
background: #eef6f9 !important;
|
||||
border-bottom: 2px solid #0dcaf0;
|
||||
}
|
||||
|
||||
.grid-filter-row .grid-cell {
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
.grid-filter-row .filter-actions-cell {
|
||||
background: #eef6f9 !important;
|
||||
}
|
||||
|
||||
.grid-container.filters-on .grid-row {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.grid-container.filters-on .grid-row input,
|
||||
.grid-container.filters-on .grid-row select,
|
||||
.grid-container.filters-on .grid-row textarea,
|
||||
.grid-container.filters-on .grid-row button,
|
||||
.grid-container.filters-on .grid-row a {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
/* Sticky su riga propagazione e filtri (fix scroll orizzontale) */
|
||||
.grid-top .grid-cell.save-all-cell {
|
||||
position: sticky !important;
|
||||
left: 0;
|
||||
z-index: 9;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.grid-top .grid-cell:nth-child(2) {
|
||||
position: sticky !important;
|
||||
left: 210px;
|
||||
z-index: 8;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
<?php if (isset($mainFieldMappings) && count($mainFieldMappings) >= 2): ?>.grid-top .grid-cell:nth-child(3) {
|
||||
position: sticky !important;
|
||||
left: 360px;
|
||||
z-index: 7;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
<?php endif; ?>.grid-filter-row .filter-actions-cell {
|
||||
position: sticky !important;
|
||||
left: 0;
|
||||
z-index: 9;
|
||||
background: #eef6f9 !important;
|
||||
}
|
||||
|
||||
.grid-filter-row .grid-cell:nth-child(2) {
|
||||
position: sticky !important;
|
||||
left: 210px;
|
||||
z-index: 8;
|
||||
background: #eef6f9 !important;
|
||||
}
|
||||
|
||||
<?php if (isset($mainFieldMappings) && count($mainFieldMappings) >= 2): ?>.grid-filter-row .grid-cell:nth-child(3) {
|
||||
position: sticky !important;
|
||||
left: 360px;
|
||||
z-index: 7;
|
||||
background: #eef6f9 !important;
|
||||
}
|
||||
|
||||
<?php endif; ?>
|
||||
</style>
|
||||
<title>Edit Imported Data - <?= htmlspecialchars($titlewebsite, ENT_QUOTES, 'UTF-8'); ?></title>
|
||||
</head>
|
||||
@@ -1456,6 +1568,7 @@ $gridMeta = [
|
||||
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
|
||||
<script src="tracking.js"></script>
|
||||
<script src="gridRenderer.js"></script>
|
||||
<script src="gridFilter.js"></script>
|
||||
<script src="saveAll.js"></script>
|
||||
<script src="exportLims_gridData.js"></script>
|
||||
<script src="modals_gridData.js"></script>
|
||||
@@ -1694,4 +1807,4 @@ $gridMeta = [
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
||||
@@ -0,0 +1,213 @@
|
||||
<?php
|
||||
|
||||
if (!function_exists('gdbFixedDefaultValue')) {
|
||||
/** Default di un fixed field (DATE 'today' → data odierna). */
|
||||
function gdbFixedDefaultValue(array $f): string
|
||||
{
|
||||
$v = $f['default_value'] ?? '';
|
||||
if (($f['data_type'] ?? '') === 'DATE' && $v === 'today') {
|
||||
return date('Y-m-d');
|
||||
}
|
||||
return (string)$v;
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('buildGridConfig')) {
|
||||
/**
|
||||
* Config del template necessaria per costruire le righe: fixed fields (ordinati
|
||||
* come in imported.php), main field mappings, alias map, default idclient.
|
||||
*
|
||||
* @return array{fixedFields:array, fixedAliasMap:array, mainFieldMappings:array, default_idclient:mixed}
|
||||
*/
|
||||
function buildGridConfig(PDO $pdo, int $templateId): array
|
||||
{
|
||||
// Mappa logica fixed_field_key → colonna reale su datadb (come imported.php)
|
||||
$fixedAliasMap = [
|
||||
'ClienteResponsabile' => 'cliente_responsabile_id',
|
||||
'ClienteFornitore' => 'cliente_fornitore_id',
|
||||
'ClienteAnalisi' => 'clienteAnalisi',
|
||||
'ClienteFatturazione' => 'ClienteFatturazione',
|
||||
'MoltiplicatorePrezzo' => 'moltiplicatore_prezzo_id',
|
||||
'AnagraficaCertestObject' => 'anagrafica_certest_object_id',
|
||||
'AnagraficaCertestService' => 'anagrafica_certest_service_id',
|
||||
'ConsegnaRichiesta' => 'consegna_richiesta',
|
||||
];
|
||||
|
||||
// Fixed fields visibili, ordinati come imported.php
|
||||
$fixedStmt = $pdo->prepare("
|
||||
SELECT id, fixed_field_key, is_manual, data_type, is_required, default_value, is_visible_import
|
||||
FROM template_fixed_mapping
|
||||
WHERE template_id = ? AND is_visible_import = 1
|
||||
ORDER BY id
|
||||
");
|
||||
$fixedStmt->execute([$templateId]);
|
||||
$fixedFieldsRaw = $fixedStmt->fetchAll(PDO::FETCH_ASSOC);
|
||||
|
||||
$desiredOrder = [
|
||||
'ClienteResponsabile', 'ClienteFornitore', 'ClienteAnalisi', 'ClienteFatturazione',
|
||||
'AnagraficaCertestObject', 'AnagraficaCertestService', 'MoltiplicatorePrezzo', 'ConsegnaRichiesta',
|
||||
];
|
||||
$excludeFromFixed = ['ClienteFornitore']; // reso come colonna a sé
|
||||
|
||||
$fixedFields = [];
|
||||
$tempMap = [];
|
||||
foreach ($fixedFieldsRaw as $f) {
|
||||
if (in_array($f['fixed_field_key'], $excludeFromFixed, true)) continue;
|
||||
$tempMap[$f['fixed_field_key']] = $f;
|
||||
}
|
||||
foreach ($desiredOrder as $key) {
|
||||
if (isset($tempMap[$key])) {
|
||||
$fixedFields[] = $tempMap[$key];
|
||||
unset($tempMap[$key]);
|
||||
}
|
||||
}
|
||||
foreach ($tempMap as $f) {
|
||||
$fixedFields[] = $f;
|
||||
}
|
||||
|
||||
// Main field mappings (max 2), come imported.php
|
||||
$mapStmt = $pdo->prepare("
|
||||
SELECT id, field_label, data_type, is_required, field_id, field_order,
|
||||
main_field, is_visible_import, manual_default
|
||||
FROM template_mapping
|
||||
WHERE template_id = ?
|
||||
ORDER BY field_order ASC, id ASC
|
||||
");
|
||||
$mapStmt->execute([$templateId]);
|
||||
$allMappings = $mapStmt->fetchAll(PDO::FETCH_ASSOC);
|
||||
|
||||
$mainFieldMappings = [];
|
||||
foreach ($allMappings as $mapping) {
|
||||
if ((string)$mapping['main_field'] === '1' && (int)$mapping['is_visible_import'] === 1) {
|
||||
$mainFieldMappings[] = $mapping;
|
||||
}
|
||||
if (count($mainFieldMappings) >= 2) break;
|
||||
}
|
||||
|
||||
// Default idclient dal template
|
||||
$tplStmt = $pdo->prepare("SELECT idclient FROM excel_templates WHERE id = ?");
|
||||
$tplStmt->execute([$templateId]);
|
||||
$default_idclient = $tplStmt->fetchColumn();
|
||||
$default_idclient = $default_idclient !== false ? $default_idclient : null;
|
||||
|
||||
return [
|
||||
'fixedFields' => $fixedFields,
|
||||
'fixedAliasMap' => $fixedAliasMap,
|
||||
'mainFieldMappings' => $mainFieldMappings,
|
||||
'default_idclient' => $default_idclient,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('buildGridRows')) {
|
||||
/**
|
||||
* Costruisce le righe gridData per la lista di iddatadb data, nell'ordine passato.
|
||||
*
|
||||
* @param int[] $iddatadbList
|
||||
* @param array $config output di buildGridConfig()
|
||||
* @return array righe nella stessa forma di imported.php $gridDataArray
|
||||
*/
|
||||
function buildGridRows(PDO $pdo, array $iddatadbList, array $config): array
|
||||
{
|
||||
$iddatadbList = array_values(array_filter(array_map('intval', $iddatadbList), fn($v) => $v > 0));
|
||||
if (empty($iddatadbList)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$fixedFields = $config['fixedFields'];
|
||||
$fixedAliasMap = $config['fixedAliasMap'];
|
||||
$mainFieldMappings = $config['mainFieldMappings'];
|
||||
$default_idclient = $config['default_idclient'];
|
||||
|
||||
$ph = implode(',', array_fill(0, count($iddatadbList), '?'));
|
||||
|
||||
// Righe datadb + user_name
|
||||
$stmt = $pdo->prepare("
|
||||
SELECT d.*, CONCAT(u.first_name, ' ', u.last_name) AS user_name
|
||||
FROM datadb d
|
||||
LEFT JOIN auth_users u ON d.user_id = u.id
|
||||
WHERE d.iddatadb IN ($ph)
|
||||
");
|
||||
$stmt->execute($iddatadbList);
|
||||
$byId = [];
|
||||
foreach ($stmt->fetchAll(PDO::FETCH_ASSOC) as $r) {
|
||||
$byId[(int)$r['iddatadb']] = $r;
|
||||
}
|
||||
|
||||
// Dettagli (import_data_details)
|
||||
$detStmt = $pdo->prepare("
|
||||
SELECT d.id AS datadb_id, d.mapping_id, d.field_value,
|
||||
m.field_id, m.field_label, m.data_type, m.is_required, m.manual_default
|
||||
FROM import_data_details d
|
||||
JOIN template_mapping m ON d.mapping_id = m.id
|
||||
WHERE d.id IN ($ph)
|
||||
");
|
||||
$detStmt->execute($iddatadbList);
|
||||
$detailsByRow = [];
|
||||
foreach ($detStmt->fetchAll(PDO::FETCH_ASSOC) as $d) {
|
||||
$detailsByRow[(int)$d['datadb_id']][] = $d;
|
||||
}
|
||||
|
||||
// Costruzione righe nell'ordine della lista passata
|
||||
$rows = [];
|
||||
foreach ($iddatadbList as $id) {
|
||||
$row = $byId[$id] ?? null;
|
||||
if ($row === null) continue;
|
||||
|
||||
$rowObj = [
|
||||
'iddatadb' => (int)$row['iddatadb'],
|
||||
'status' => $row['status'] ?? 'i',
|
||||
'idclient' => $row['idclient'] ?? $default_idclient,
|
||||
'cliente_fornitore_id' => $row['cliente_fornitore_id'] ?? null,
|
||||
'tested_component' => $row['tested_component'] ?? '',
|
||||
'commessaweb' => $row['commessaweb'] ?? null,
|
||||
'user_name' => $row['user_name'] ?? '',
|
||||
'importreferencecode' => $row['importreferencecode'] ?? '',
|
||||
'filename_import' => $row['filename_import'] ?? '',
|
||||
'importdate' => $row['importdate'] ?? '',
|
||||
];
|
||||
|
||||
// Fixed fields
|
||||
$rowObj['fixedFields'] = [];
|
||||
foreach ($fixedFields as $f) {
|
||||
$key = $f['fixed_field_key'];
|
||||
$dbCol = $fixedAliasMap[$key] ?? $key;
|
||||
$val = $row[$dbCol] ?? '';
|
||||
if ($val === '' || $val === null) {
|
||||
$val = gdbFixedDefaultValue($f);
|
||||
}
|
||||
$rowObj['fixedFields'][$key] = (string)$val;
|
||||
}
|
||||
|
||||
// Details
|
||||
$rowObj['details'] = [];
|
||||
$rowDetails = $detailsByRow[$id] ?? [];
|
||||
foreach ($rowDetails as $d) {
|
||||
$rowObj['details'][(string)$d['mapping_id']] = $d['field_value'] ?? '';
|
||||
}
|
||||
|
||||
// Main field values
|
||||
foreach ($mainFieldMappings as $mainMapping) {
|
||||
$found = null;
|
||||
foreach ($rowDetails as $d) {
|
||||
if ($d['mapping_id'] == $mainMapping['id']) {
|
||||
$found = $d;
|
||||
break;
|
||||
}
|
||||
}
|
||||
$rowObj['details'][(string)$mainMapping['id']] =
|
||||
($found['field_value'] ?? null) ?? ($mainMapping['manual_default'] ?? '');
|
||||
}
|
||||
|
||||
if (!empty($mainFieldMappings)) {
|
||||
$firstMain = $mainFieldMappings[0];
|
||||
$rowObj['mainFieldValue'] = $rowObj['details'][(string)$firstMain['id']] ?? '';
|
||||
}
|
||||
|
||||
$rowObj['_dirty'] = false;
|
||||
$rows[] = $rowObj;
|
||||
}
|
||||
|
||||
return $rows;
|
||||
}
|
||||
}
|
||||
@@ -103,6 +103,14 @@
|
||||
<div class="menu-title">Stats</div>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="warm_cache_run.php">
|
||||
<div class="parent-icon">
|
||||
<i class="bx bx-bar-chart-alt-2"></i>
|
||||
</div>
|
||||
<div class="menu-title">Warm Cache</div>
|
||||
</a>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
|
||||
<li class="menu-label">Others</li>
|
||||
|
||||
@@ -617,7 +617,11 @@ $apiSampleJson = $template['api_sample_json'] ?? '';
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<strong><?php echo htmlspecialchars($fm['fixed_field_key']); ?></strong>
|
||||
<strong><?php
|
||||
$fixedFieldLabels = ['ClienteAnalisi' => 'Buyer'];
|
||||
$fixedKey = $fm['fixed_field_key'];
|
||||
echo htmlspecialchars($fixedFieldLabels[$fixedKey] ?? $fixedKey);
|
||||
?></strong>
|
||||
</td>
|
||||
|
||||
<td><?php echo htmlspecialchars($fm['data_type']); ?></td>
|
||||
@@ -2192,6 +2196,10 @@ $apiSampleJson = $template['api_sample_json'] ?? '';
|
||||
const tbody = document.querySelector('#fixedFieldsTable tbody');
|
||||
if (!tbody) return;
|
||||
|
||||
const fixedFieldLabels = {
|
||||
'ClienteAnalisi': 'Buyer'
|
||||
};
|
||||
|
||||
const keysWithDropdown = [
|
||||
'ClienteResponsabile',
|
||||
'ClienteFornitore',
|
||||
@@ -2223,7 +2231,7 @@ $apiSampleJson = $template['api_sample_json'] ?? '';
|
||||
${parseInt(r.is_required) === 1 ? 'checked' : ''}>
|
||||
</td>
|
||||
|
||||
<td><strong>${escapeHtml(r.fixed_field_key)}</strong></td>
|
||||
<td><strong>${escapeHtml(fixedFieldLabels[r.fixed_field_key] || r.fixed_field_key)}</strong></td>
|
||||
|
||||
|
||||
<td>${escapeHtml(r.data_type || '')}</td>
|
||||
|
||||
@@ -29,6 +29,9 @@
|
||||
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; min-width: 0;">
|
||||
<h6 style="margin: 0; white-space: nowrap;">Elenco Parti</h6>
|
||||
<div style="display: flex; align-items: center; min-width: 0; gap: 8px;">
|
||||
<button type="button" id="savePartsBtn" class="btn btn-success btn-sm">
|
||||
<i class="fas fa-save"></i> Salva
|
||||
</button>
|
||||
<button type="button"
|
||||
class="btn btn-dark btn-sm open-analysis-modal-btn"
|
||||
id="openAnalysisModalBtn"
|
||||
@@ -45,6 +48,9 @@
|
||||
<button type="button" class="btn btn-primary btn-sm" id="clonePartsBtn" style="padding: 0.1rem 0.5rem; font-size: 0.8rem;">
|
||||
<i class="fas fa-clone"></i> Clona Parti
|
||||
</button>
|
||||
<button type="button" class="btn btn-warning btn-sm d-none" id="quotationeBtn" style="padding: 0.1rem 0.5rem; font-size: 0.8rem;">
|
||||
<i class="fas fa-file-invoice-dollar"></i> Collega Quotazione
|
||||
</button>
|
||||
<button type="button" class="btn btn-secondary btn-sm ms-2" id="toggleVoiceBtn" style="padding: 0.1rem 0.5rem; font-size: 0.8rem;">
|
||||
<i class="fas fa-microphone"></i> Voce
|
||||
</button>
|
||||
@@ -211,6 +217,12 @@
|
||||
Duplica anche le analisi collegate
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-check mt-2">
|
||||
<input class="form-check-input" type="checkbox" id="cloneOverwriteCheckbox" checked>
|
||||
<label class="form-check-label" for="cloneOverwriteCheckbox">
|
||||
<strong>Sovrascrivi parti esistenti</strong> (elimina le parti già presenti nei record di destinazione prima di inserire)
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary btn-sm" data-bs-dismiss="modal">Annulla</button>
|
||||
|
||||
@@ -171,6 +171,11 @@
|
||||
);
|
||||
if (idx >= 0) window.gridData.splice(idx, 1);
|
||||
|
||||
// Aggiorna la lista dei record visibili (navigazione parti + clone)
|
||||
window.visibleIddatadbList = window.gridData
|
||||
.map((r) => parseInt(r.iddatadb, 10))
|
||||
.filter(Boolean);
|
||||
|
||||
// Re-render
|
||||
const gr = window.gridRenderer;
|
||||
if (gr) gr.renderVisibleRows();
|
||||
@@ -233,6 +238,11 @@
|
||||
// Add to beginning of gridData
|
||||
window.gridData.unshift(newRow);
|
||||
|
||||
// Aggiorna la lista dei record visibili (navigazione parti + clone)
|
||||
window.visibleIddatadbList = window.gridData
|
||||
.map((r) => parseInt(r.iddatadb, 10))
|
||||
.filter(Boolean);
|
||||
|
||||
// Re-render
|
||||
const gr = window.gridRenderer;
|
||||
if (gr) gr.renderVisibleRows();
|
||||
|
||||
+348
-479
@@ -32,6 +32,16 @@ $(document).ready(function () {
|
||||
return id === "new" || id === "" || id === null ? null : id;
|
||||
}
|
||||
|
||||
// Legge ConsegnaRichiesta del record corrente dalla griglia (fixed field data)
|
||||
function getConsegnaRichiestaDefault() {
|
||||
const iddatadb = $("#partsModal").data("iddatadb");
|
||||
if (!iddatadb) return "";
|
||||
if (typeof getGridRecordById !== "function") return "";
|
||||
const record = getGridRecordById(iddatadb);
|
||||
if (!record || !record.fixedFields) return "";
|
||||
return record.fixedFields.ConsegnaRichiesta || "";
|
||||
}
|
||||
|
||||
function loadPartsExtraField(iddatadb, done) {
|
||||
partsExtraField = null;
|
||||
|
||||
@@ -245,7 +255,7 @@ $(document).ready(function () {
|
||||
$row.data("extra-value-id", valId);
|
||||
|
||||
$(this).closest("td").find(".part-extra-value-id").val(valId);
|
||||
saveRow($row);
|
||||
markUnsaved();
|
||||
});
|
||||
|
||||
$(document).on("click", ".extra-propagate-btn", function (e) {
|
||||
@@ -316,9 +326,9 @@ $(document).ready(function () {
|
||||
$row.data("extra-value-text", propagateValueText);
|
||||
}
|
||||
}
|
||||
|
||||
saveRow($row);
|
||||
});
|
||||
|
||||
markUnsaved();
|
||||
});
|
||||
|
||||
function applyExtraFieldColumn() {
|
||||
@@ -530,6 +540,7 @@ $(document).ready(function () {
|
||||
const finishLoading = function () {
|
||||
unsavedChanges = false;
|
||||
isLoadingPartsRecord = false;
|
||||
updateSaveBtnState();
|
||||
|
||||
if (callback) callback();
|
||||
};
|
||||
@@ -554,6 +565,14 @@ $(document).ready(function () {
|
||||
// ===================
|
||||
|
||||
function getVisiblePartsRecordList() {
|
||||
// Se i filtri sono attivi, usa la regola selezione/visibili di gridFilter.
|
||||
if (typeof window.getTargetGridIds === "function") {
|
||||
const target = window.getTargetGridIds();
|
||||
if (target && target.size > 0) {
|
||||
return [...target].map((v) => parseInt(v, 10)).filter(Boolean);
|
||||
}
|
||||
}
|
||||
|
||||
const listFromModal = $("#partsModal").data("visible-iddatadb-list");
|
||||
|
||||
if (Array.isArray(listFromModal) && listFromModal.length > 0) {
|
||||
@@ -809,7 +828,11 @@ $(document).ready(function () {
|
||||
}
|
||||
}
|
||||
|
||||
$("#partsModal").on("hide.bs.modal", function (e) {
|
||||
$(document).on("hide.bs.modal", "#partsModal", function (e) {
|
||||
console.log(
|
||||
"[partsModal] hide.bs.modal — unsavedChanges =",
|
||||
unsavedChanges,
|
||||
);
|
||||
if (
|
||||
unsavedChanges &&
|
||||
!confirm("Hai modifiche non salvate. Vuoi davvero uscire?")
|
||||
@@ -987,15 +1010,9 @@ $(document).ready(function () {
|
||||
.get();
|
||||
const maxPartNumber = partNumbers.length ? Math.max(...partNumbers) : 0;
|
||||
|
||||
// Crea la riga Mix
|
||||
// Crea la riga Mix (verrà salvata col pulsante Salva)
|
||||
addNewRow(maxPartNumber + 1, true);
|
||||
const $mixRow = $("#partsTableBody tr:last");
|
||||
|
||||
// Consenti SOLO ora la creazione (INSERT) della riga Mix
|
||||
$mixRow.data("allowCreateMix", true);
|
||||
|
||||
// esegue SUBITO l'INSERT così ottieni part-id
|
||||
saveRow($mixRow);
|
||||
markUnsaved();
|
||||
});
|
||||
|
||||
function extractPartId(response) {
|
||||
@@ -1183,7 +1200,7 @@ $(document).ready(function () {
|
||||
})
|
||||
.last();
|
||||
|
||||
// Se non esiste una riga Mix, ne creo una e la INSERISCO SUBITO (come fa il bottone in header)
|
||||
// Se non esiste una riga Mix, ne creo una nuova (salvata col pulsante Salva)
|
||||
if ($mixRow.length === 0) {
|
||||
const maxPartNumber = Math.max(
|
||||
...$("#partsTableBody tr")
|
||||
@@ -1198,12 +1215,8 @@ $(document).ready(function () {
|
||||
addNewRow(maxPartNumber + 1, true);
|
||||
$mixRow = $("#partsTableBody tr:last");
|
||||
$mixRow.find(".part-description").val(`Mix ${partDescription}`);
|
||||
|
||||
// Consenti la creazione (INSERT) della riga Mix e salvala subito
|
||||
$mixRow.data("allowCreateMix", true);
|
||||
|
||||
saveRow($mixRow); // -> INSERT
|
||||
return; // la descrizione include già l'elemento appena aggiunto
|
||||
markUnsaved();
|
||||
return;
|
||||
}
|
||||
|
||||
// Aggiorna la descrizione del Mix esistente
|
||||
@@ -1214,22 +1227,7 @@ $(document).ready(function () {
|
||||
newDesc = currentMix + " + " + partDescription;
|
||||
|
||||
$mixRow.find(".part-description").val(newDesc);
|
||||
|
||||
// Se il Mix è già in salvataggio (INSERT o UPDATE in corso), accodiamo un solo UPDATE
|
||||
if ($mixRow.data("saving") === true) {
|
||||
// evita più code accumulate
|
||||
if (!$mixRow.data("pendingUpdate")) {
|
||||
$mixRow.data("pendingUpdate", true);
|
||||
$mixRow.one("row:saved", function () {
|
||||
$mixRow.removeData("pendingUpdate");
|
||||
// ora che saving è false, salviamo l'ultima descrizione impostata
|
||||
saveRow($mixRow);
|
||||
});
|
||||
}
|
||||
} else {
|
||||
// libero: salva subito
|
||||
saveRow($mixRow);
|
||||
}
|
||||
markUnsaved();
|
||||
});
|
||||
|
||||
function addNewRow(nextPartNumber, isMix = false) {
|
||||
@@ -1263,6 +1261,13 @@ $(document).ready(function () {
|
||||
initializeSelect2($select, nextPartNumber, "", null, selectedMacro);
|
||||
initializeExtraFieldSelect2($newRow);
|
||||
|
||||
// Default: data di consegna richiesta dal record (solo se il campo è vuoto)
|
||||
const $dateInput = $newRow.find(".part-dateexpiry");
|
||||
if ($dateInput.length && !$dateInput.val()) {
|
||||
const consegna = getConsegnaRichiestaDefault();
|
||||
if (consegna) $dateInput.val(consegna);
|
||||
}
|
||||
|
||||
updateRowButtons();
|
||||
|
||||
if (!isLoadingPartsRecord) {
|
||||
@@ -1291,186 +1296,21 @@ $(document).ready(function () {
|
||||
$(document).on("click", ".save-note-btn", function () {
|
||||
const $noteModal = $("#noteModal");
|
||||
const $row = $noteModal.data("row");
|
||||
const partId = $noteModal.data("part-id");
|
||||
const note = $noteModal.find(".part-note").val().trim();
|
||||
const iddatadb = $("#partsModal").data("iddatadb");
|
||||
const idquotations = $("#partsModal").data("idquotations");
|
||||
const endpoint = idquotations
|
||||
? "save_parts_quotation.php"
|
||||
: "save_parts.php";
|
||||
const data = idquotations
|
||||
? { idquotations: idquotations }
|
||||
: { iddatadb: iddatadb };
|
||||
|
||||
// Raccogli tutti i dati della riga per evitare sovrascritture
|
||||
const partNumber = $row.find(".part-number").val();
|
||||
const partDescription = $row.find(".part-description").val().trim();
|
||||
const mix = getRowMix($row);
|
||||
const idmatrice = $row.find(".part-matrice").val() || null;
|
||||
const dateexpiry = $row.find(".part-dateexpiry").val() || null;
|
||||
|
||||
if (partId && partId !== "new") {
|
||||
const $saveStatus = $row.find(".save-status");
|
||||
const $saveLoading = $row.find(".save-loading");
|
||||
$saveLoading.show();
|
||||
$saveStatus.hide();
|
||||
|
||||
$.ajax({
|
||||
url: endpoint,
|
||||
method: "POST",
|
||||
data: JSON.stringify({
|
||||
...data,
|
||||
parts: [
|
||||
{
|
||||
id: partId,
|
||||
part_number: partNumber,
|
||||
part_description: partDescription,
|
||||
mix: mix,
|
||||
idmatrice: idmatrice,
|
||||
note: note || null,
|
||||
dateexpiry: dateexpiry,
|
||||
},
|
||||
],
|
||||
}),
|
||||
contentType: "application/json",
|
||||
success: function (response) {
|
||||
$saveLoading.hide();
|
||||
if (response.success) {
|
||||
$row.data("note", note);
|
||||
$row.find(".note-btn").toggleClass("has-note", !!note);
|
||||
$saveStatus.show();
|
||||
setTimeout(() => $saveStatus.hide(), 2000);
|
||||
bootstrap.Modal.getInstance(
|
||||
document.getElementById("noteModal"),
|
||||
).hide();
|
||||
} else {
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio della nota: ' +
|
||||
response.message +
|
||||
"</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(function () {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
}
|
||||
},
|
||||
error: function (xhr, status, error) {
|
||||
$saveLoading.hide();
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio della nota: ' +
|
||||
error +
|
||||
" (" +
|
||||
xhr.status +
|
||||
")</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(function () {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
},
|
||||
});
|
||||
} else {
|
||||
$row.data("note", note);
|
||||
$row.find(".note-btn").toggleClass("has-note", !!note);
|
||||
bootstrap.Modal.getInstance(
|
||||
document.getElementById("noteModal"),
|
||||
).hide();
|
||||
markUnsaved();
|
||||
}
|
||||
$row.data("note", note);
|
||||
$row.find(".note-btn").toggleClass("has-note", !!note);
|
||||
bootstrap.Modal.getInstance(
|
||||
document.getElementById("noteModal"),
|
||||
).hide();
|
||||
markUnsaved();
|
||||
});
|
||||
|
||||
// ===================
|
||||
// DATEEXPIRY HANDLING
|
||||
// ===================
|
||||
$(document).on("change", ".part-dateexpiry", function () {
|
||||
const $input = $(this);
|
||||
const $row = $input.closest("tr");
|
||||
const partId = getPartId($row);
|
||||
const dateexpiry = $input.val();
|
||||
const iddatadb = $("#partsModal").data("iddatadb");
|
||||
const idquotations = $("#partsModal").data("idquotations");
|
||||
const endpoint = idquotations
|
||||
? "save_parts_quotation.php"
|
||||
: "save_parts.php";
|
||||
const data = idquotations
|
||||
? { idquotations: idquotations }
|
||||
: { iddatadb: iddatadb };
|
||||
|
||||
// Raccogli tutti i dati della riga per evitare sovrascritture
|
||||
const partNumber = $row.find(".part-number").val();
|
||||
const partDescription = $row.find(".part-description").val().trim();
|
||||
const mix = getRowMix($row);
|
||||
const idmatrice = $row.find(".part-matrice").val() || null;
|
||||
const note = $row.data("note") || null;
|
||||
|
||||
if (partId && partId !== "new") {
|
||||
const $saveStatus = $row.find(".save-status");
|
||||
const $saveLoading = $row.find(".save-loading");
|
||||
$saveLoading.show();
|
||||
$saveStatus.hide();
|
||||
|
||||
$.ajax({
|
||||
url: endpoint,
|
||||
method: "POST",
|
||||
data: JSON.stringify({
|
||||
...data,
|
||||
parts: [
|
||||
{
|
||||
id: partId,
|
||||
part_number: partNumber,
|
||||
part_description: partDescription,
|
||||
mix: mix,
|
||||
idmatrice: idmatrice,
|
||||
note: note,
|
||||
dateexpiry: dateexpiry || null,
|
||||
},
|
||||
],
|
||||
}),
|
||||
contentType: "application/json",
|
||||
success: function (response) {
|
||||
$saveLoading.hide();
|
||||
if (response.success) {
|
||||
$saveStatus.show();
|
||||
setTimeout(() => $saveStatus.hide(), 2000);
|
||||
} else {
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio della data: ' +
|
||||
response.message +
|
||||
"</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(function () {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
}
|
||||
},
|
||||
error: function (xhr, status, error) {
|
||||
$saveLoading.hide();
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio della data: ' +
|
||||
error +
|
||||
" (" +
|
||||
xhr.status +
|
||||
")</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(function () {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
},
|
||||
});
|
||||
} else {
|
||||
markUnsaved();
|
||||
}
|
||||
markUnsaved();
|
||||
});
|
||||
|
||||
// ===================
|
||||
@@ -1688,7 +1528,7 @@ $(document).ready(function () {
|
||||
"blur",
|
||||
".part-description, .part-number, .part-extra-field",
|
||||
function () {
|
||||
saveRow($(this).closest("tr"));
|
||||
markUnsaved();
|
||||
},
|
||||
);
|
||||
|
||||
@@ -1758,6 +1598,13 @@ $(document).ready(function () {
|
||||
`#partsTableBody tr[data-part-id="${part.id}"]`,
|
||||
);
|
||||
setRowMix($row, part.mix === "Y" ? "Y" : "N");
|
||||
// Default consegna richiesta se la parte non ha già una data
|
||||
if (!(part.dateexpiry || "")) {
|
||||
const consegnaDef = getConsegnaRichiestaDefault();
|
||||
if (consegnaDef) {
|
||||
$row.find(".part-dateexpiry").val(consegnaDef);
|
||||
}
|
||||
}
|
||||
if (
|
||||
part.extra_value_id !== undefined &&
|
||||
part.extra_value_id !== null
|
||||
@@ -2033,11 +1880,17 @@ $(document).ready(function () {
|
||||
const item = (data.results || [])[0];
|
||||
if (item) {
|
||||
const option = new Option(item.text, item.id, true, true);
|
||||
if (!fromFilter) $select.append(option).trigger("change");
|
||||
if (!fromFilter)
|
||||
$select
|
||||
.append(option)
|
||||
.trigger("change", [{ skipHandler: true }]);
|
||||
else $select.append(option);
|
||||
partMatrice[partNumber] = item.id;
|
||||
} else {
|
||||
if (!fromFilter) $select.val(null).trigger("change");
|
||||
if (!fromFilter)
|
||||
$select
|
||||
.val(null)
|
||||
.trigger("change", [{ skipHandler: true }]);
|
||||
partMatrice[partNumber] = null;
|
||||
}
|
||||
});
|
||||
@@ -2050,71 +1903,10 @@ $(document).ready(function () {
|
||||
|
||||
const idmatrice = $(this).val();
|
||||
const $row = $(this).closest("tr");
|
||||
const partId = $row.data("part-id");
|
||||
const partNumber = $row.find(".part-number").val();
|
||||
const $saveStatus = $row.find(".save-status");
|
||||
const $saveLoading = $row.find(".save-loading");
|
||||
|
||||
partMatrice[partNumber] = idmatrice || null;
|
||||
|
||||
if (partId && partId !== "new") {
|
||||
$saveLoading.show();
|
||||
$saveStatus.hide();
|
||||
const iddatadb = $("#partsModal").data("iddatadb");
|
||||
const idquotations = $("#partsModal").data("idquotations");
|
||||
const endpoint = idquotations
|
||||
? "save_matrice_quotation.php"
|
||||
: "save_matrice.php";
|
||||
const data = idquotations
|
||||
? { idquotations: idquotations }
|
||||
: { iddatadb: iddatadb };
|
||||
|
||||
$.ajax({
|
||||
url: endpoint,
|
||||
method: "POST",
|
||||
data: JSON.stringify({
|
||||
...data,
|
||||
parts: [{ id: partId, idmatrice: idmatrice || null }],
|
||||
}),
|
||||
contentType: "application/json",
|
||||
success: function (response) {
|
||||
if (response.success) {
|
||||
$saveLoading.hide();
|
||||
$saveStatus.show();
|
||||
setTimeout(() => $saveStatus.hide(), 2000);
|
||||
} else {
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio della matrice: ' +
|
||||
response.message +
|
||||
"</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(function () {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
$saveLoading.hide();
|
||||
}
|
||||
},
|
||||
error: function (xhr, status, error) {
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio della matrice: ' +
|
||||
error +
|
||||
" (" +
|
||||
xhr.status +
|
||||
")</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(function () {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
$saveLoading.hide();
|
||||
},
|
||||
});
|
||||
}
|
||||
markUnsaved();
|
||||
});
|
||||
|
||||
// Messaggio se macro selezionata ma nessun risultato sarà gestito dal placeholder Select2
|
||||
@@ -2178,7 +1970,153 @@ $(document).ready(function () {
|
||||
}, 5000);
|
||||
}
|
||||
});
|
||||
function saveAllParts(done = null) {
|
||||
const $rows = $("#partsTableBody tr");
|
||||
const iddatadb = $("#partsModal").data("iddatadb");
|
||||
const idquotations = $("#partsModal").data("idquotations");
|
||||
const endpoint = idquotations
|
||||
? "save_parts_quotation.php"
|
||||
: "save_parts.php";
|
||||
const ctx = idquotations ? { idquotations } : { iddatadb };
|
||||
|
||||
if (!iddatadb && !idquotations) {
|
||||
if (done) done(false);
|
||||
return;
|
||||
}
|
||||
|
||||
// Stesso criterio del PHP: una riga nuova viene salvata solo se ha
|
||||
// descrizione, nota o data. Filtriamo qui per tenere l'allineamento
|
||||
// per indice tra righe inviate e results[] restituiti.
|
||||
const rowHasContent = ($row) => {
|
||||
const hasId = !!getPartId($row);
|
||||
const desc = $row.find(".part-description").val().trim();
|
||||
const note = $row.data("note") || "";
|
||||
const date = $row.find(".part-dateexpiry").val() || "";
|
||||
return hasId || desc || note || date;
|
||||
};
|
||||
|
||||
const $rowsToSave = $rows.filter(function () {
|
||||
return rowHasContent($(this));
|
||||
});
|
||||
|
||||
const partsToSave = $rowsToSave
|
||||
.map(function () {
|
||||
const $row = $(this);
|
||||
return {
|
||||
id: getPartId($row), // null se "new"/""
|
||||
part_number: $row.find(".part-number").val(),
|
||||
part_description: $row
|
||||
.find(".part-description")
|
||||
.val()
|
||||
.trim(),
|
||||
mix: getRowMix($row),
|
||||
idmatrice: $row.find(".part-matrice").val() || null,
|
||||
dateexpiry: $row.find(".part-dateexpiry").val() || null,
|
||||
note: $row.data("note") || null,
|
||||
|
||||
extra_field_id:
|
||||
$row.find(".part-extra-field-id").val() || null,
|
||||
extra_value_id:
|
||||
$row.find(".part-extra-value-id").val() || null,
|
||||
extra_value_text: $row.find(".part-extra-field").length
|
||||
? ($row.find(".part-extra-field").val() || "").trim()
|
||||
: null,
|
||||
};
|
||||
})
|
||||
.get();
|
||||
|
||||
if (partsToSave.length === 0) {
|
||||
unsavedChanges = false;
|
||||
if (done) done(true);
|
||||
return;
|
||||
}
|
||||
|
||||
const $btn = $("#savePartsBtn");
|
||||
const originalHtml = $btn.length ? $btn.html() : "";
|
||||
if ($btn.length) {
|
||||
$btn.prop("disabled", true).html(
|
||||
'<i class="fas fa-spinner fa-spin"></i> Salvataggio...',
|
||||
);
|
||||
}
|
||||
|
||||
$rowsToSave.find(".save-loading").show();
|
||||
$rowsToSave.find(".save-status").hide();
|
||||
|
||||
$.ajax({
|
||||
url: endpoint,
|
||||
method: "POST",
|
||||
data: JSON.stringify({ ...ctx, parts: partsToSave }),
|
||||
contentType: "application/json",
|
||||
success: function (response) {
|
||||
if ($btn.length)
|
||||
$btn.prop("disabled", false).html(originalHtml);
|
||||
$rowsToSave.find(".save-loading").hide();
|
||||
|
||||
if (response.success) {
|
||||
// results[] è nell'ordine delle righe inviate
|
||||
const results = response.results || [];
|
||||
$rowsToSave.each(function (i) {
|
||||
const r = results[i];
|
||||
const newId = r ? r.part_id || r.id : null;
|
||||
if (newId) setPartId($(this), newId);
|
||||
});
|
||||
|
||||
$rowsToSave.find(".save-status").show();
|
||||
setTimeout(
|
||||
() => $rowsToSave.find(".save-status").hide(),
|
||||
2000,
|
||||
);
|
||||
|
||||
unsavedChanges = false;
|
||||
updateSaveBtnState();
|
||||
|
||||
if (!$("#quotationeBtn").hasClass("d-none"))
|
||||
$("#quotationeBtn").addClass("d-none");
|
||||
|
||||
if (done) done(true);
|
||||
} else {
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio: ' +
|
||||
(response.message || "Errore sconosciuto") +
|
||||
"</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(() => {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
if (done) done(false);
|
||||
}
|
||||
},
|
||||
error: function (xhr, status, error) {
|
||||
if ($btn.length)
|
||||
$btn.prop("disabled", false).html(originalHtml);
|
||||
$rowsToSave.find(".save-loading").hide();
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio: ' +
|
||||
error +
|
||||
" (" +
|
||||
xhr.status +
|
||||
")</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(() => {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
if (done) done(false);
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
$(document).on("click", "#savePartsBtn", function (e) {
|
||||
e.preventDefault();
|
||||
saveAllParts();
|
||||
});
|
||||
|
||||
window.saveAllParts = saveAllParts;
|
||||
function renumberParts() {
|
||||
console.log(
|
||||
"Inizio rinumera parts, numero righe:",
|
||||
@@ -2318,16 +2256,37 @@ $(document).ready(function () {
|
||||
function markUnsaved() {
|
||||
if (isLoadingPartsRecord) return;
|
||||
|
||||
if (!unsavedChanges) {
|
||||
unsavedChanges = true;
|
||||
}
|
||||
unsavedChanges = true;
|
||||
updateSaveBtnState();
|
||||
}
|
||||
|
||||
// Aggiorna aspetto del tasto Salva in base a unsavedChanges
|
||||
function updateSaveBtnState() {
|
||||
const $btn = $("#savePartsBtn");
|
||||
if (!$btn.length) return;
|
||||
|
||||
if (unsavedChanges) {
|
||||
$btn.removeClass("btn-success").addClass("btn-danger");
|
||||
} else {
|
||||
$btn.removeClass("btn-danger").addClass("btn-success");
|
||||
}
|
||||
}
|
||||
// Catch-all: modifiche manuali negli input della tabella parti segnano "non salvato".
|
||||
// I <select> (matrici Select2) sono esclusi: le loro modifiche reali sono già
|
||||
// gestite in initializeSelect2, mentre l'inizializzazione async genererebbe falsi positivi.
|
||||
$(document).on(
|
||||
"input change",
|
||||
"#partsTableBody input, #partsTableBody select",
|
||||
markUnsaved,
|
||||
"input keyup",
|
||||
"#partsTableBody input:not(.part-matrice), #partsTableBody textarea",
|
||||
function () {
|
||||
markUnsaved();
|
||||
},
|
||||
);
|
||||
|
||||
$(window).on("beforeunload", function () {
|
||||
if (unsavedChanges && $("#partsModal").hasClass("show")) {
|
||||
return "Hai modifiche non salvate.";
|
||||
}
|
||||
});
|
||||
$(document).on(
|
||||
"click",
|
||||
".add-row-global, .add-mix-global, .add-mix-row, .remove-row, .propagate-matrice-btn, .propagate-all-btn, .note-btn",
|
||||
@@ -2338,8 +2297,11 @@ $(document).ready(function () {
|
||||
|
||||
const sourceIddatadb =
|
||||
parseInt($("#partsModal").data("iddatadb"), 10) || null;
|
||||
const visibleListRaw =
|
||||
$("#partsModal").data("visible-iddatadb-list") || [];
|
||||
// Target = selezione/visibili secondo gridFilter, con fallback alla lista del modal
|
||||
let visibleListRaw =
|
||||
typeof getVisiblePartsRecordList === "function"
|
||||
? getVisiblePartsRecordList()
|
||||
: $("#partsModal").data("visible-iddatadb-list") || [];
|
||||
|
||||
if (!sourceIddatadb) {
|
||||
const errorMsg = $(
|
||||
@@ -2381,6 +2343,7 @@ $(document).ready(function () {
|
||||
);
|
||||
$("#cloneNotesCheckbox").prop("checked", true);
|
||||
$("#cloneAnalysesCheckbox").prop("checked", false);
|
||||
$("#cloneOverwriteCheckbox").prop("checked", true);
|
||||
|
||||
const modalInstance = new bootstrap.Modal(
|
||||
document.getElementById("cloneConfirmModal"),
|
||||
@@ -2396,6 +2359,7 @@ $(document).ready(function () {
|
||||
const targetIds = $("#cloneConfirmModal").data("target-ids") || [];
|
||||
const cloneNotes = $("#cloneNotesCheckbox").is(":checked");
|
||||
const cloneAnalyses = $("#cloneAnalysesCheckbox").is(":checked");
|
||||
const cloneOverwrite = $("#cloneOverwriteCheckbox").is(":checked");
|
||||
|
||||
if (!sourceIddatadb || !targetIds.length) {
|
||||
return;
|
||||
@@ -2424,6 +2388,7 @@ $(document).ready(function () {
|
||||
target_iddatadb_list: targetIds,
|
||||
clone_notes: cloneNotes,
|
||||
clone_analyses: cloneAnalyses,
|
||||
overwrite: cloneOverwrite,
|
||||
}),
|
||||
success: function (response) {
|
||||
$btn.prop("disabled", false).html(originalHtml);
|
||||
@@ -2612,102 +2577,8 @@ $(document).ready(function () {
|
||||
|
||||
$(document).on("change", ".propagate-date-input", function () {
|
||||
const dateexpiry = $(this).val();
|
||||
const iddatadb = $("#partsModal").data("iddatadb");
|
||||
const idquotations = $("#partsModal").data("idquotations");
|
||||
const endpoint = idquotations
|
||||
? "save_parts_quotation.php"
|
||||
: "save_parts.php";
|
||||
const data = idquotations
|
||||
? { idquotations: idquotations }
|
||||
: { iddatadb: iddatadb };
|
||||
|
||||
const partsToSave = [];
|
||||
$("#partsTableBody tr").each(function () {
|
||||
const $row = $(this);
|
||||
const partId = $row.data("part-id");
|
||||
const partNumber = $row.find(".part-number").val();
|
||||
const partDescription = $row.find(".part-description").val().trim();
|
||||
const mix = $row.attr("data-is-mix") === "Y" ? "Y" : "N";
|
||||
const idmatrice = $row.find(".part-matrice").val() || null;
|
||||
const note = $row.data("note") || null;
|
||||
|
||||
partsToSave.push({
|
||||
id: partId && partId !== "new" ? partId : null,
|
||||
part_number: partNumber,
|
||||
part_description: partDescription,
|
||||
mix: mix,
|
||||
idmatrice: idmatrice,
|
||||
note: note,
|
||||
dateexpiry: dateexpiry || null,
|
||||
});
|
||||
|
||||
if (partId && partId !== "new") {
|
||||
$row.find(".save-loading").show();
|
||||
$row.find(".save-status").hide();
|
||||
}
|
||||
});
|
||||
|
||||
if (partsToSave.length > 0) {
|
||||
$.ajax({
|
||||
url: endpoint,
|
||||
method: "POST",
|
||||
data: JSON.stringify({
|
||||
...data,
|
||||
parts: partsToSave,
|
||||
}),
|
||||
contentType: "application/json",
|
||||
success: function (response) {
|
||||
$("#partsTableBody tr").each(function () {
|
||||
const $row = $(this);
|
||||
const partId = $row.data("part-id");
|
||||
if (partId && partId !== "new") {
|
||||
$row.find(".save-loading").hide();
|
||||
$row.find(".save-status").show();
|
||||
setTimeout(
|
||||
() => $row.find(".save-status").hide(),
|
||||
2000,
|
||||
);
|
||||
}
|
||||
$row.find(".part-dateexpiry").val(dateexpiry);
|
||||
});
|
||||
if (!response.success) {
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio della data comune: ' +
|
||||
response.message +
|
||||
"</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(function () {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
}
|
||||
},
|
||||
error: function (xhr, status, error) {
|
||||
$("#partsTableBody tr").each(function () {
|
||||
const $row = $(this);
|
||||
$row.find(".save-loading").hide();
|
||||
});
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio della data comune: ' +
|
||||
error +
|
||||
" (" +
|
||||
xhr.status +
|
||||
")</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(function () {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
},
|
||||
});
|
||||
} else {
|
||||
$("#partsTableBody tr").find(".part-dateexpiry").val(dateexpiry);
|
||||
markUnsaved();
|
||||
}
|
||||
$("#partsTableBody tr").find(".part-dateexpiry").val(dateexpiry);
|
||||
markUnsaved();
|
||||
});
|
||||
|
||||
$(document).on("click", ".propagate-note-btn", function () {
|
||||
@@ -2723,113 +2594,16 @@ $(document).on("click", ".propagate-note-btn", function () {
|
||||
$(document).on("click", ".save-common-note-btn", function () {
|
||||
const $commonNoteModal = $("#commonNoteModal");
|
||||
const note = $commonNoteModal.find(".part-note").val().trim();
|
||||
const iddatadb = $("#partsModal").data("iddatadb");
|
||||
const idquotations = $("#partsModal").data("idquotations");
|
||||
const endpoint = idquotations
|
||||
? "save_parts_quotation.php"
|
||||
: "save_parts.php";
|
||||
const data = idquotations
|
||||
? { idquotations: idquotations }
|
||||
: { iddatadb: iddatadb };
|
||||
|
||||
const partsToSave = [];
|
||||
$("#partsTableBody tr").each(function () {
|
||||
const $row = $(this);
|
||||
const partId = $row.data("part-id");
|
||||
const partNumber = $row.find(".part-number").val();
|
||||
const partDescription = $row.find(".part-description").val().trim();
|
||||
const mix = $row.attr("data-is-mix") === "Y" ? "Y" : "N";
|
||||
const idmatrice = $row.find(".part-matrice").val() || null;
|
||||
const dateexpiry = $row.find(".part-dateexpiry").val() || null;
|
||||
|
||||
partsToSave.push({
|
||||
id: partId && partId !== "new" ? partId : null,
|
||||
part_number: partNumber,
|
||||
part_description: partDescription,
|
||||
mix: mix,
|
||||
idmatrice: idmatrice,
|
||||
note: note || null,
|
||||
dateexpiry: dateexpiry,
|
||||
});
|
||||
|
||||
if (partId && partId !== "new") {
|
||||
$row.find(".save-loading").show();
|
||||
$row.find(".save-status").hide();
|
||||
}
|
||||
$row.data("note", note);
|
||||
$row.find(".note-btn").toggleClass("has-note", !!note);
|
||||
});
|
||||
|
||||
if (partsToSave.length > 0) {
|
||||
$.ajax({
|
||||
url: endpoint,
|
||||
method: "POST",
|
||||
data: JSON.stringify({
|
||||
...data,
|
||||
parts: partsToSave,
|
||||
}),
|
||||
contentType: "application/json",
|
||||
success: function (response) {
|
||||
$("#partsTableBody tr").each(function () {
|
||||
const $row = $(this);
|
||||
const partId = $row.data("part-id");
|
||||
if (partId && partId !== "new") {
|
||||
$row.find(".save-loading").hide();
|
||||
$row.find(".save-status").show();
|
||||
setTimeout(
|
||||
() => $row.find(".save-status").hide(),
|
||||
2000,
|
||||
);
|
||||
}
|
||||
$row.data("note", note);
|
||||
$row.find(".note-btn").toggleClass("has-note", !!note);
|
||||
});
|
||||
bootstrap.Modal.getInstance(
|
||||
document.getElementById("commonNoteModal"),
|
||||
).hide();
|
||||
if (!response.success) {
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio della nota comune: ' +
|
||||
response.message +
|
||||
"</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(function () {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
}
|
||||
},
|
||||
error: function (xhr, status, error) {
|
||||
$("#partsTableBody tr").each(function () {
|
||||
const $row = $(this);
|
||||
$row.find(".save-loading").hide();
|
||||
});
|
||||
const errorMsg = $(
|
||||
'<div class="alert alert-danger temp-alert" role="alert">Errore nel salvataggio della nota comune: ' +
|
||||
error +
|
||||
" (" +
|
||||
xhr.status +
|
||||
")</div>",
|
||||
);
|
||||
$("#partsModal .modal-body").prepend(errorMsg);
|
||||
setTimeout(function () {
|
||||
errorMsg.fadeOut(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 5000);
|
||||
},
|
||||
});
|
||||
} else {
|
||||
$("#partsTableBody tr").each(function () {
|
||||
const $row = $(this);
|
||||
$row.data("note", note);
|
||||
$row.find(".note-btn").toggleClass("has-note", !!note);
|
||||
});
|
||||
bootstrap.Modal.getInstance(
|
||||
document.getElementById("commonNoteModal"),
|
||||
).hide();
|
||||
markUnsaved();
|
||||
}
|
||||
bootstrap.Modal.getInstance(
|
||||
document.getElementById("commonNoteModal"),
|
||||
).hide();
|
||||
markUnsaved();
|
||||
});
|
||||
|
||||
$(document).on("click", "#showHideImageBtn", function () {
|
||||
@@ -2991,3 +2765,98 @@ $(document).on("click", "#showHideImageBtn", function () {
|
||||
window.initPartsResizableColumns = init;
|
||||
window.applyPartsColumnWidths = syncColgroupToHeaders;
|
||||
})();
|
||||
// ===================
|
||||
// NAVIGAZIONE TABELLA PARTI CON FRECCE TASTIERA
|
||||
// ===================
|
||||
(function () {
|
||||
// Selettore dei campi navigabili in ogni riga, in ordine di colonna.
|
||||
// I select Matrice (Select2) sono esclusi di proposito.
|
||||
const NAV_SELECTOR =
|
||||
".part-number, .part-description, .part-dateexpiry, .part-extra-field";
|
||||
|
||||
// Ritorna la lista ordinata dei campi navigabili della riga
|
||||
function navFields($row) {
|
||||
return $row.find(NAV_SELECTOR).filter(":visible");
|
||||
}
|
||||
|
||||
// Il cursore è all'inizio del testo dell'input?
|
||||
function atStart(el) {
|
||||
if (el.type === "date" || el.type === "number") return true;
|
||||
return el.selectionStart === 0 && el.selectionEnd === 0;
|
||||
}
|
||||
|
||||
// Il cursore è alla fine del testo dell'input?
|
||||
function atEnd(el) {
|
||||
if (el.type === "date" || el.type === "number") return true;
|
||||
const len = (el.value || "").length;
|
||||
return el.selectionStart === len && el.selectionEnd === len;
|
||||
}
|
||||
|
||||
function focusField($field) {
|
||||
if (!$field || !$field.length) return;
|
||||
const el = $field.get(0);
|
||||
el.focus();
|
||||
// Seleziona il testo per comodità (non sui date input)
|
||||
if (el.type !== "date" && typeof el.select === "function") {
|
||||
try {
|
||||
el.select();
|
||||
} catch (e) {}
|
||||
}
|
||||
}
|
||||
|
||||
$(document).on("keydown", "#partsTableBody " + NAV_SELECTOR, function (e) {
|
||||
// Ignora se un dropdown Select2 è aperto
|
||||
if ($(".select2-container--open").length) return;
|
||||
|
||||
const key = e.key;
|
||||
if (
|
||||
key !== "ArrowUp" &&
|
||||
key !== "ArrowDown" &&
|
||||
key !== "ArrowLeft" &&
|
||||
key !== "ArrowRight"
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
const el = this;
|
||||
const $cur = $(el);
|
||||
const $row = $cur.closest("tr");
|
||||
const fields = navFields($row);
|
||||
const colIndex = fields.index(el);
|
||||
if (colIndex === -1) return;
|
||||
|
||||
// --- SU / GIÙ: stessa colonna, riga adiacente ---
|
||||
if (key === "ArrowUp" || key === "ArrowDown") {
|
||||
const $targetRow =
|
||||
key === "ArrowUp" ? $row.prev("tr") : $row.next("tr");
|
||||
if (!$targetRow.length) return;
|
||||
|
||||
e.preventDefault();
|
||||
const targetFields = navFields($targetRow);
|
||||
// Stessa colonna se esiste, altrimenti l'ultima disponibile
|
||||
const $target = targetFields.eq(colIndex).length
|
||||
? targetFields.eq(colIndex)
|
||||
: targetFields.last();
|
||||
focusField($target);
|
||||
return;
|
||||
}
|
||||
|
||||
// --- SINISTRA: campo precedente, solo se cursore a inizio testo ---
|
||||
if (key === "ArrowLeft") {
|
||||
if (!atStart(el)) return; // lascia muovere il cursore nel testo
|
||||
if (colIndex <= 0) return;
|
||||
e.preventDefault();
|
||||
focusField(fields.eq(colIndex - 1));
|
||||
return;
|
||||
}
|
||||
|
||||
// --- DESTRA: campo successivo, solo se cursore a fine testo ---
|
||||
if (key === "ArrowRight") {
|
||||
if (!atEnd(el)) return;
|
||||
if (colIndex >= fields.length - 1) return;
|
||||
e.preventDefault();
|
||||
focusField(fields.eq(colIndex + 1));
|
||||
return;
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
||||
+77
-41
@@ -1,8 +1,8 @@
|
||||
/**
|
||||
* saveAll.js — Save All functionality using gridData
|
||||
*/
|
||||
(function() {
|
||||
'use strict';
|
||||
(function () {
|
||||
"use strict";
|
||||
|
||||
let saveAllRunning = false;
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
}
|
||||
|
||||
// ── Save single row ──────────────────────────────────────────────────
|
||||
$(document).on('click', '.save-btn', async function() {
|
||||
$(document).on("click", ".save-btn", async function () {
|
||||
const btn = this;
|
||||
const rowIndex = parseInt(btn.dataset.row);
|
||||
const row = window.gridData?.[rowIndex];
|
||||
@@ -23,29 +23,44 @@
|
||||
|
||||
try {
|
||||
const formData = window.buildSavePayload(rowIndex);
|
||||
const resp = await fetch('save_edited_row.php', { method: 'POST', body: formData });
|
||||
const resp = await fetch("save_edited_row.php", {
|
||||
method: "POST",
|
||||
body: formData,
|
||||
});
|
||||
const result = await resp.json();
|
||||
|
||||
if (result.success) {
|
||||
row._dirty = false;
|
||||
if (window.gridRenderer?.clearDirty) window.gridRenderer.clearDirty(rowIndex);
|
||||
if (window.gridRenderer?.clearDirty)
|
||||
window.gridRenderer.clearDirty(rowIndex);
|
||||
// Flash success on row without re-rendering (preserves Select2 state)
|
||||
const gridRow = document.querySelector(`.grid-row[data-id="${row.iddatadb}"]`);
|
||||
const gridRow = document.querySelector(
|
||||
`.grid-row[data-id="${row.iddatadb}"]`,
|
||||
);
|
||||
if (gridRow) {
|
||||
gridRow.classList.remove('row-dirty');
|
||||
gridRow.querySelectorAll('.grid-cell').forEach(cell => {
|
||||
cell.classList.remove('cell-changed');
|
||||
cell.classList.add('flash-success');
|
||||
gridRow.classList.remove("row-dirty");
|
||||
gridRow.querySelectorAll(".grid-cell").forEach((cell) => {
|
||||
cell.classList.remove("cell-changed");
|
||||
cell.classList.add("flash-success");
|
||||
});
|
||||
setTimeout(() => gridRow.querySelectorAll('.flash-success').forEach(c => c.classList.remove('flash-success')), 500);
|
||||
setTimeout(
|
||||
() =>
|
||||
gridRow
|
||||
.querySelectorAll(".flash-success")
|
||||
.forEach((c) =>
|
||||
c.classList.remove("flash-success"),
|
||||
),
|
||||
500,
|
||||
);
|
||||
}
|
||||
const toastEl = document.getElementById('saveSuccessToast');
|
||||
if (toastEl) bootstrap.Toast.getOrCreateInstance(toastEl).show();
|
||||
const toastEl = document.getElementById("saveSuccessToast");
|
||||
if (toastEl)
|
||||
bootstrap.Toast.getOrCreateInstance(toastEl).show();
|
||||
} else {
|
||||
alert('Errore: ' + result.message);
|
||||
alert("Errore: " + result.message);
|
||||
}
|
||||
} catch (e) {
|
||||
alert('Errore: ' + e.message);
|
||||
alert("Errore: " + e.message);
|
||||
} finally {
|
||||
btn.innerHTML = origHtml;
|
||||
btn.disabled = false;
|
||||
@@ -53,49 +68,68 @@
|
||||
});
|
||||
|
||||
// ── Save All ─────────────────────────────────────────────────────────
|
||||
$(document).on('click', '.save-all-btn', function(e) {
|
||||
$(document).on("click", ".save-all-btn", function (e) {
|
||||
e.preventDefault();
|
||||
if (isBusy()) return;
|
||||
const modalEl = document.getElementById('saveAllConfirmModal');
|
||||
const modalEl = document.getElementById("saveAllConfirmModal");
|
||||
if (!modalEl) return;
|
||||
new bootstrap.Modal(modalEl, { keyboard: false }).show();
|
||||
});
|
||||
|
||||
$(document).on('click', '#saveAllConfirmBtn', async function() {
|
||||
const confirmModal = bootstrap.Modal.getInstance(document.getElementById('saveAllConfirmModal'));
|
||||
$(document).on("click", "#saveAllConfirmBtn", async function () {
|
||||
const confirmModal = bootstrap.Modal.getInstance(
|
||||
document.getElementById("saveAllConfirmModal"),
|
||||
);
|
||||
if (confirmModal) confirmModal.hide();
|
||||
saveAllRunning = true;
|
||||
|
||||
const bar = document.getElementById('batchExportBar');
|
||||
const statusEl = document.getElementById('batchExportStatus');
|
||||
const cancelBtn = document.getElementById('exportBatchCancelBtn');
|
||||
if (bar) bar.style.display = '';
|
||||
if (cancelBtn) cancelBtn.style.display = 'none';
|
||||
if (statusEl) statusEl.textContent = 'Saving...';
|
||||
const bar = document.getElementById("batchExportBar");
|
||||
const statusEl = document.getElementById("batchExportStatus");
|
||||
const cancelBtn = document.getElementById("exportBatchCancelBtn");
|
||||
if (bar) bar.style.display = "";
|
||||
if (cancelBtn) cancelBtn.style.display = "none";
|
||||
if (statusEl) statusEl.textContent = "Saving...";
|
||||
|
||||
const data = window.gridData || [];
|
||||
const dirtyRows = data.map((r, i) => r._dirty ? i : -1).filter(i => i >= 0);
|
||||
const target =
|
||||
typeof window.getTargetGridIds === "function"
|
||||
? window.getTargetGridIds()
|
||||
: null;
|
||||
const dirtyRows = data
|
||||
.map((r, i) => (r._dirty ? i : -1))
|
||||
.filter((i) => i >= 0)
|
||||
.filter(
|
||||
(i) => !target || target.has(parseInt(data[i].iddatadb, 10)),
|
||||
);
|
||||
|
||||
if (dirtyRows.length === 0) {
|
||||
saveAllRunning = false;
|
||||
if (bar) bar.style.display = 'none';
|
||||
const msgEl = document.getElementById('saveAllResultMessage');
|
||||
if (msgEl) msgEl.textContent = 'No changes to save.';
|
||||
new bootstrap.Modal(document.getElementById('saveAllResultModal')).show();
|
||||
if (bar) bar.style.display = "none";
|
||||
const msgEl = document.getElementById("saveAllResultMessage");
|
||||
if (msgEl) msgEl.textContent = "No changes to save.";
|
||||
new bootstrap.Modal(
|
||||
document.getElementById("saveAllResultModal"),
|
||||
).show();
|
||||
return;
|
||||
}
|
||||
|
||||
let success = 0, fail = 0;
|
||||
let success = 0,
|
||||
fail = 0;
|
||||
|
||||
for (const idx of dirtyRows) {
|
||||
if (statusEl) statusEl.textContent = `Saving ${success + fail + 1} / ${dirtyRows.length}...`;
|
||||
if (statusEl)
|
||||
statusEl.textContent = `Saving ${success + fail + 1} / ${dirtyRows.length}...`;
|
||||
try {
|
||||
const formData = window.buildSavePayload(idx);
|
||||
const resp = await fetch('save_edited_row.php', { method: 'POST', body: formData });
|
||||
const resp = await fetch("save_edited_row.php", {
|
||||
method: "POST",
|
||||
body: formData,
|
||||
});
|
||||
const result = await resp.json();
|
||||
if (result.success) {
|
||||
data[idx]._dirty = false;
|
||||
if (window.gridRenderer?.clearDirty) window.gridRenderer.clearDirty(idx);
|
||||
if (window.gridRenderer?.clearDirty)
|
||||
window.gridRenderer.clearDirty(idx);
|
||||
success++;
|
||||
} else {
|
||||
fail++;
|
||||
@@ -106,22 +140,24 @@
|
||||
}
|
||||
|
||||
saveAllRunning = false;
|
||||
if (bar) bar.style.display = 'none';
|
||||
if (bar) bar.style.display = "none";
|
||||
|
||||
const gr = window.gridRenderer;
|
||||
if (gr) gr.renderVisibleRows();
|
||||
|
||||
const msg = `Saved: ${success}` + (fail > 0 ? `, Errors: ${fail}` : '');
|
||||
const msgEl = document.getElementById('saveAllResultMessage');
|
||||
const msg = `Saved: ${success}` + (fail > 0 ? `, Errors: ${fail}` : "");
|
||||
const msgEl = document.getElementById("saveAllResultMessage");
|
||||
if (msgEl) msgEl.textContent = msg;
|
||||
new bootstrap.Modal(document.getElementById('saveAllResultModal')).show();
|
||||
new bootstrap.Modal(
|
||||
document.getElementById("saveAllResultModal"),
|
||||
).show();
|
||||
});
|
||||
|
||||
// ── beforeunload ─────────────────────────────────────────────────────
|
||||
window.addEventListener('beforeunload', function(e) {
|
||||
if (window.gridData && window.gridData.some(r => r._dirty)) {
|
||||
window.addEventListener("beforeunload", function (e) {
|
||||
if (window.gridData && window.gridData.some((r) => r._dirty)) {
|
||||
e.preventDefault();
|
||||
e.returnValue = '';
|
||||
e.returnValue = "";
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@@ -54,15 +54,6 @@ try {
|
||||
:is_web_selectable,
|
||||
:is_accredited
|
||||
)
|
||||
ON DUPLICATE KEY UPDATE
|
||||
analysis_name = VALUES(analysis_name),
|
||||
analysis_method = VALUES(analysis_method),
|
||||
analysis_level = VALUES(analysis_level),
|
||||
is_web_selectable = VALUES(is_web_selectable),
|
||||
is_accredited = VALUES(is_accredited),
|
||||
iddatadb = VALUES(iddatadb),
|
||||
idmatrice = VALUES(idmatrice),
|
||||
updated_at = CURRENT_TIMESTAMP
|
||||
");
|
||||
|
||||
$stmt->execute([
|
||||
@@ -79,7 +70,8 @@ try {
|
||||
|
||||
echo json_encode([
|
||||
'success' => true,
|
||||
'message' => 'Association saved'
|
||||
'message' => 'Association saved',
|
||||
'id' => (int)$pdo->lastInsertId()
|
||||
]);
|
||||
} catch (Throwable $e) {
|
||||
http_response_code(500);
|
||||
|
||||
@@ -6,6 +6,11 @@
|
||||
|
||||
$startTime = microtime(true);
|
||||
$isCli = (php_sapi_name() === 'cli');
|
||||
$isStream = (!$isCli && isset($_GET['stream']));
|
||||
|
||||
// Analisi incluse? Default SÌ (il cron non passa il parametro → fa tutto).
|
||||
// Solo una richiesta HTTP con analisi=0 le salta.
|
||||
$includeAnalisi = !(!$isCli && isset($_GET['analisi']) && $_GET['analisi'] === '0');
|
||||
|
||||
if (!$isCli) {
|
||||
// When called via HTTP, require auth
|
||||
@@ -15,7 +20,17 @@ if (!$isCli) {
|
||||
echo json_encode(['error' => 'Unauthorized']);
|
||||
exit;
|
||||
}
|
||||
header('Content-Type: application/json');
|
||||
|
||||
if ($isStream) {
|
||||
// Streaming mode: send progress line-by-line (Server-Sent Events)
|
||||
set_time_limit(0);
|
||||
header('Content-Type: text/event-stream');
|
||||
header('Cache-Control: no-cache');
|
||||
header('X-Accel-Buffering: no'); // disable nginx buffering
|
||||
while (ob_get_level() > 0) ob_end_flush();
|
||||
} else {
|
||||
header('Content-Type: application/json');
|
||||
}
|
||||
}
|
||||
|
||||
require_once dirname(__DIR__, 2) . '/vendor/autoload.php';
|
||||
@@ -23,15 +38,38 @@ require_once __DIR__ . '/class/VisualLimsApiClient.class.php';
|
||||
require_once __DIR__ . '/class/db-functions.php';
|
||||
|
||||
$cacheDir = __DIR__ . '/cache';
|
||||
if (!is_dir($cacheDir)) mkdir($cacheDir, 0777, true);
|
||||
if (!is_dir($cacheDir)) mkdir($cacheDir, 0755, true);
|
||||
|
||||
$log = [];
|
||||
|
||||
// Prevent two runs at the same time (e.g. cron + manual click)
|
||||
$lockHandle = fopen($cacheDir . '/.warm.lock', 'w');
|
||||
if ($lockHandle === false || !flock($lockHandle, LOCK_EX | LOCK_NB)) {
|
||||
$busyMsg = 'Un aggiornamento è già in corso in questo momento. Riprova tra poco.';
|
||||
if ($isCli) {
|
||||
echo $busyMsg . PHP_EOL;
|
||||
} elseif ($isStream) {
|
||||
header('Content-Type: text/event-stream');
|
||||
echo "event: busy\ndata: " . $busyMsg . "\n\n";
|
||||
@flush();
|
||||
} else {
|
||||
echo json_encode(['success' => false, 'busy' => true, 'message' => $busyMsg]);
|
||||
}
|
||||
exit;
|
||||
}
|
||||
|
||||
function warmLog(string $msg, bool $isCli)
|
||||
{
|
||||
global $log;
|
||||
global $log, $isStream;
|
||||
$line = date('H:i:s') . " $msg";
|
||||
$log[] = $line;
|
||||
if ($isCli) echo $line . PHP_EOL;
|
||||
if ($isCli) {
|
||||
echo $line . PHP_EOL;
|
||||
} elseif (!empty($isStream)) {
|
||||
echo "data: " . str_replace("\n", ' ', $line) . "\n\n";
|
||||
@ob_flush();
|
||||
@flush();
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
@@ -115,30 +153,38 @@ try {
|
||||
|
||||
// 6. Analisi — only for matrici actually used by parts (warming all ~2500 matrici
|
||||
// would mean one API call each; the used set is a few dozen).
|
||||
$stmt = $pdo->query("SELECT DISTINCT idmatrice FROM identification_parts WHERE idmatrice IS NOT NULL AND idmatrice > 0 ORDER BY idmatrice ASC");
|
||||
$matriceIds = $stmt->fetchAll(PDO::FETCH_COLUMN);
|
||||
warmLog("[analisi] Fetching for " . count($matriceIds) . " matrici in use...", $isCli);
|
||||
if (!$includeAnalisi) {
|
||||
warmLog('[analisi] Saltate su richiesta.', $isCli);
|
||||
} else {
|
||||
$stmt = $pdo->query("SELECT DISTINCT idmatrice FROM identification_parts WHERE idmatrice IS NOT NULL AND idmatrice > 0 ORDER BY idmatrice ASC");
|
||||
$matriceIds = $stmt->fetchAll(PDO::FETCH_COLUMN);
|
||||
warmLog("[analisi] Fetching for " . count($matriceIds) . " matrici in use...", $isCli);
|
||||
|
||||
foreach ($matriceIds as $mid) {
|
||||
$mid = (int)$mid;
|
||||
// Same query as get_analisi_matrice_filter.php with web_only=1 (what the analysis modal requests)
|
||||
$filter = rawurlencode("Matrice/IdMatrice eq $mid and SelezionabileSuWeb eq true");
|
||||
try {
|
||||
$data = $api->get("Analisi?\$filter={$filter}");
|
||||
$values = $data['value'] ?? [];
|
||||
file_put_contents($cacheDir . '/analisi_matrice_' . $mid . '.json', json_encode(['value' => $values]));
|
||||
warmLog("[analisi] Matrice $mid: " . count($values) . " analisi", $isCli);
|
||||
} catch (Exception $e) {
|
||||
warmLog("[analisi] Matrice $mid: ERROR " . $e->getMessage(), $isCli);
|
||||
foreach ($matriceIds as $mid) {
|
||||
$mid = (int)$mid;
|
||||
// Same query as get_analisi_matrice_filter.php with web_only=1 (what the analysis modal requests)
|
||||
$filter = rawurlencode("Matrice/IdMatrice eq $mid and SelezionabileSuWeb eq true");
|
||||
try {
|
||||
$data = $api->get("Analisi?\$filter={$filter}");
|
||||
$values = $data['value'] ?? [];
|
||||
file_put_contents($cacheDir . '/analisi_matrice_' . $mid . '.json', json_encode(['value' => $values]));
|
||||
warmLog("[analisi] Matrice $mid: " . count($values) . " analisi", $isCli);
|
||||
} catch (Exception $e) {
|
||||
warmLog("[analisi] Matrice $mid: ERROR " . $e->getMessage(), $isCli);
|
||||
}
|
||||
}
|
||||
}
|
||||
} // fine if includeAnalisi
|
||||
|
||||
$elapsed = round(microtime(true) - $startTime, 1);
|
||||
warmLog("Done in {$elapsed}s", $isCli);
|
||||
warmLog("Aggiornamento completato in {$elapsed}s", $isCli);
|
||||
} catch (Exception $e) {
|
||||
warmLog("FATAL: " . $e->getMessage(), $isCli);
|
||||
$elapsed = round(microtime(true) - $startTime, 1);
|
||||
warmLog("ERRORE: " . $e->getMessage(), $isCli);
|
||||
}
|
||||
|
||||
if (!$isCli) {
|
||||
if ($isStream) {
|
||||
echo "event: done\ndata: " . json_encode(['elapsed' => $elapsed ?? 0]) . "\n\n";
|
||||
@flush();
|
||||
} elseif (!$isCli) {
|
||||
echo json_encode(['success' => true, 'log' => $log]);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,519 @@
|
||||
<?php
|
||||
include('include/headscript.php');
|
||||
|
||||
/*
|
||||
* NOTE PERMESSI:
|
||||
* Il login è già gestito da headscript.php (Auth::check + redirect).
|
||||
* Se vuoi limitare questa pagina a determinati ruoli, aggiungi qui il tuo
|
||||
* controllo, esattamente come nelle altre pagine. Esempio:
|
||||
*
|
||||
* if (!$user->hasRole('Admin') && !$user->hasRole('SuperUser')) {
|
||||
* header('Location: import_dashboard.php');
|
||||
* exit;
|
||||
* }
|
||||
*/
|
||||
?>
|
||||
<!doctype html>
|
||||
<html lang="it">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="assets/images/favicon-32x32.png" type="image/png" />
|
||||
<?php include('cssinclude.php'); ?>
|
||||
|
||||
<title>Aggiornamento dati - <?= htmlspecialchars($titlewebsite ?? 'SmartTRF', ENT_QUOTES, 'UTF-8'); ?></title>
|
||||
|
||||
<style>
|
||||
.warm-hero {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.warm-hero .warm-icon {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
border-radius: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 30px;
|
||||
color: #fff;
|
||||
background: linear-gradient(135deg, #0f172a, #1d4ed8);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.warm-progress-wrap {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.warm-progress-wrap.is-visible {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.progress.warm-progress {
|
||||
height: 22px;
|
||||
border-radius: 12px;
|
||||
background: #eef2f7;
|
||||
}
|
||||
|
||||
.progress.warm-progress .progress-bar {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.warm-steps {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 18px 0 0 0;
|
||||
}
|
||||
|
||||
.warm-steps li {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 10px 12px;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 6px;
|
||||
background: #f8fafc;
|
||||
border: 1px solid #eef2f7;
|
||||
transition: background .2s, border-color .2s;
|
||||
}
|
||||
|
||||
.warm-steps li .step-icon {
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 14px;
|
||||
flex-shrink: 0;
|
||||
background: #e5e7eb;
|
||||
color: #94a3b8;
|
||||
}
|
||||
|
||||
.warm-steps li.is-active {
|
||||
background: #eff6ff;
|
||||
border-color: #bfdbfe;
|
||||
}
|
||||
|
||||
.warm-steps li.is-active .step-icon {
|
||||
background: #2563eb;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.warm-steps li.is-done {
|
||||
background: #f0fdf4;
|
||||
border-color: #bbf7d0;
|
||||
}
|
||||
|
||||
.warm-steps li.is-done .step-icon {
|
||||
background: #16a34a;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.warm-steps li .step-label {
|
||||
font-weight: 600;
|
||||
color: #1f2937;
|
||||
}
|
||||
|
||||
.warm-steps li .step-detail {
|
||||
font-size: 12px;
|
||||
color: #64748b;
|
||||
margin-left: auto;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.warm-log {
|
||||
display: none;
|
||||
margin-top: 18px;
|
||||
}
|
||||
|
||||
.warm-log.is-visible {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.warm-log pre {
|
||||
max-height: 320px;
|
||||
overflow: auto;
|
||||
background: #0f172a;
|
||||
color: #cbd5e1;
|
||||
padding: 16px;
|
||||
border-radius: 12px;
|
||||
font-size: 12px;
|
||||
line-height: 1.6;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.warm-result {
|
||||
display: none;
|
||||
margin-top: 18px;
|
||||
}
|
||||
|
||||
.warm-result.is-visible {
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
<?php include('include/navbar.php'); ?>
|
||||
<?php include('include/topbar.php'); ?>
|
||||
|
||||
<div class="page-wrapper">
|
||||
<div class="page-content">
|
||||
|
||||
<div class="card radius-10">
|
||||
<div class="card-body p-4">
|
||||
|
||||
<div class="warm-hero">
|
||||
<div class="warm-icon"><i class="bx bx-refresh"></i></div>
|
||||
<div>
|
||||
<h5 class="mb-1">Aggiornamento dati dal gestionale</h5>
|
||||
<p class="mb-0 text-muted">
|
||||
Ricarica clienti, matrici, analisi e le altre liste dal software di laboratorio.
|
||||
Da usare quando sono state fatte modifiche sul gestionale e vuoi vederle subito
|
||||
senza aspettare l'aggiornamento automatico.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="my-4">
|
||||
|
||||
<div class="form-check form-switch mb-3" id="analisiSwitchWrap">
|
||||
<input class="form-check-input" type="checkbox" role="switch" id="includeAnalisi" checked>
|
||||
<label class="form-check-label" for="includeAnalisi">
|
||||
Aggiorna anche le <strong>analisi</strong>
|
||||
<span class="text-muted small">(più lento — togli la spunta se hai modificato solo clienti o altre liste)</span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<button type="button" class="btn btn-primary btn-lg px-4" id="btnStart">
|
||||
<i class="bx bx-play-circle me-1"></i> Avvia aggiornamento
|
||||
</button>
|
||||
<div class="small text-muted mt-2" id="idleHint">
|
||||
L'operazione può richiedere da qualche secondo a un paio di minuti.
|
||||
</div>
|
||||
|
||||
<!-- Progress -->
|
||||
<div class="warm-progress-wrap mt-4" id="progressWrap">
|
||||
<div class="d-flex justify-content-between align-items-center mb-2">
|
||||
<span class="fw-semibold" id="progressTitle">Aggiornamento in corso…</span>
|
||||
<span class="text-muted small" id="progressElapsed">0s</span>
|
||||
</div>
|
||||
|
||||
<div class="progress warm-progress">
|
||||
<div class="progress-bar progress-bar-striped progress-bar-animated bg-primary"
|
||||
id="progressBar" role="progressbar" style="width: 0%;">0%</div>
|
||||
</div>
|
||||
|
||||
<ul class="warm-steps" id="stepsList">
|
||||
<!-- steps injected by JS -->
|
||||
</ul>
|
||||
|
||||
<div class="mt-3">
|
||||
<a href="javascript:;" class="small text-decoration-none" id="toggleLog">
|
||||
<i class="bx bx-code-alt"></i> Mostra dettaglio tecnico
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="warm-log" id="logBox">
|
||||
<pre id="logPre"></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Result -->
|
||||
<div class="warm-result" id="resultBox">
|
||||
<div class="alert d-flex align-items-center" id="resultAlert" role="alert">
|
||||
<i class="bx me-2 fs-4" id="resultIcon"></i>
|
||||
<div id="resultText"></div>
|
||||
</div>
|
||||
<button type="button" class="btn btn-outline-primary" id="btnAgain">
|
||||
<i class="bx bx-refresh me-1"></i> Esegui di nuovo
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="overlay toggle-icon"></div>
|
||||
<a href="javaScript:;" class="back-to-top"><i class='bx bxs-up-arrow-alt'></i></a>
|
||||
<?php include('include/footer.php'); ?>
|
||||
</div>
|
||||
|
||||
<?php include('jsinclude.php'); ?>
|
||||
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
|
||||
/*
|
||||
* Se sposti warm_cache.php in un'altra cartella, cambia SOLO questa riga.
|
||||
*/
|
||||
const WARM_ENDPOINT = 'warm_cache.php';
|
||||
|
||||
const btnStart = document.getElementById('btnStart');
|
||||
const btnAgain = document.getElementById('btnAgain');
|
||||
const idleHint = document.getElementById('idleHint');
|
||||
const includeAnalisi = document.getElementById('includeAnalisi');
|
||||
const progressWrap = document.getElementById('progressWrap');
|
||||
const progressBar = document.getElementById('progressBar');
|
||||
const progressTitle = document.getElementById('progressTitle');
|
||||
const progressElapsed = document.getElementById('progressElapsed');
|
||||
const stepsList = document.getElementById('stepsList');
|
||||
const toggleLog = document.getElementById('toggleLog');
|
||||
const logBox = document.getElementById('logBox');
|
||||
const logPre = document.getElementById('logPre');
|
||||
const resultBox = document.getElementById('resultBox');
|
||||
const resultAlert = document.getElementById('resultAlert');
|
||||
const resultIcon = document.getElementById('resultIcon');
|
||||
const resultText = document.getElementById('resultText');
|
||||
|
||||
/*
|
||||
* I "passi" mostrati al cliente in modo leggibile.
|
||||
* key = frammento che compare nel log tecnico (dentro le parentesi quadre)
|
||||
* label = nome umano
|
||||
* Il progresso avanza man mano che questi tag compaiono nel log.
|
||||
*/
|
||||
const STEPS = [{
|
||||
key: 'clients',
|
||||
label: 'Clienti'
|
||||
},
|
||||
{
|
||||
key: 'MoltiplicatorePrezzo',
|
||||
label: 'Listini prezzi'
|
||||
},
|
||||
{
|
||||
key: 'AnagraficaCertest',
|
||||
label: 'Anagrafiche Certest'
|
||||
},
|
||||
{
|
||||
key: 'ClienteResponsabile',
|
||||
label: 'Responsabili cliente'
|
||||
},
|
||||
{
|
||||
key: 'CustomField',
|
||||
label: 'Campi personalizzati'
|
||||
},
|
||||
{
|
||||
key: 'matrici',
|
||||
label: 'Matrici'
|
||||
},
|
||||
{
|
||||
key: 'analisi',
|
||||
label: 'Analisi'
|
||||
}
|
||||
];
|
||||
|
||||
let stepEls = {};
|
||||
let currentStepIndex = -1;
|
||||
let timerId = null;
|
||||
let startedAt = 0;
|
||||
let activeSteps = []; // i passi effettivamente in gioco per questa esecuzione
|
||||
|
||||
function buildSteps() {
|
||||
stepsList.innerHTML = '';
|
||||
stepEls = {};
|
||||
// Se le analisi sono disattivate, escludo quel passo dalla lista.
|
||||
const withAnalisi = includeAnalisi.checked;
|
||||
activeSteps = STEPS.filter(function(s) {
|
||||
return withAnalisi || s.key !== 'analisi';
|
||||
});
|
||||
activeSteps.forEach(function(step, i) {
|
||||
const li = document.createElement('li');
|
||||
li.dataset.index = i;
|
||||
li.innerHTML =
|
||||
'<span class="step-icon"><i class="bx bx-time"></i></span>' +
|
||||
'<span class="step-label">' + step.label + '</span>' +
|
||||
'<span class="step-detail"></span>';
|
||||
stepsList.appendChild(li);
|
||||
stepEls[i] = li;
|
||||
});
|
||||
}
|
||||
|
||||
function markStep(index, state, detail) {
|
||||
const li = stepEls[index];
|
||||
if (!li) return;
|
||||
li.classList.remove('is-active', 'is-done');
|
||||
const icon = li.querySelector('.step-icon i');
|
||||
if (state === 'active') {
|
||||
li.classList.add('is-active');
|
||||
icon.className = 'bx bx-loader-alt bx-spin';
|
||||
} else if (state === 'done') {
|
||||
li.classList.add('is-done');
|
||||
icon.className = 'bx bx-check';
|
||||
}
|
||||
if (detail !== undefined) {
|
||||
li.querySelector('.step-detail').textContent = detail;
|
||||
}
|
||||
}
|
||||
|
||||
function advanceTo(index, detail) {
|
||||
if (index <= currentStepIndex) {
|
||||
// stesso passo, aggiorna solo il dettaglio (es. conteggio)
|
||||
if (detail !== undefined) markStep(index, 'active', detail);
|
||||
return;
|
||||
}
|
||||
// chiudi i passi precedenti
|
||||
for (let i = 0; i <= currentStepIndex; i++) markStep(i, 'done');
|
||||
currentStepIndex = index;
|
||||
markStep(index, 'active', detail);
|
||||
const pct = Math.round(((index) / activeSteps.length) * 100);
|
||||
setProgress(Math.max(pct, 3));
|
||||
}
|
||||
|
||||
function setProgress(pct) {
|
||||
pct = Math.max(0, Math.min(100, pct));
|
||||
progressBar.style.width = pct + '%';
|
||||
progressBar.textContent = pct + '%';
|
||||
}
|
||||
|
||||
function matchStep(line) {
|
||||
// cerca [clients], [matrici], [analisi] ecc. nella riga di log
|
||||
for (let i = 0; i < activeSteps.length; i++) {
|
||||
if (line.indexOf('[' + activeSteps[i].key) !== -1 ||
|
||||
line.indexOf(activeSteps[i].key + ']') !== -1) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
function extractDetail(line) {
|
||||
// prova a estrarre un conteggio tipo "Cached 128 clients" o "34 analisi"
|
||||
const m = line.match(/(\d+)\s+(clients|items|values|responsabili|analisi)/i);
|
||||
if (m) return m[1] + ' elementi';
|
||||
return undefined;
|
||||
}
|
||||
|
||||
function startTimer() {
|
||||
startedAt = Date.now();
|
||||
timerId = setInterval(function() {
|
||||
const s = Math.round((Date.now() - startedAt) / 1000);
|
||||
progressElapsed.textContent = s + 's';
|
||||
}, 1000);
|
||||
}
|
||||
|
||||
function stopTimer() {
|
||||
if (timerId) clearInterval(timerId);
|
||||
timerId = null;
|
||||
}
|
||||
|
||||
function resetUI() {
|
||||
buildSteps();
|
||||
currentStepIndex = -1;
|
||||
setProgress(0);
|
||||
logPre.textContent = '';
|
||||
progressTitle.textContent = 'Aggiornamento in corso…';
|
||||
progressElapsed.textContent = '0s';
|
||||
resultBox.classList.remove('is-visible');
|
||||
progressWrap.classList.add('is-visible');
|
||||
}
|
||||
|
||||
function showResult(type, message) {
|
||||
stopTimer();
|
||||
progressBar.classList.remove('progress-bar-animated', 'progress-bar-striped');
|
||||
|
||||
resultAlert.className = 'alert d-flex align-items-center';
|
||||
if (type === 'success') {
|
||||
resultAlert.classList.add('alert-success');
|
||||
resultIcon.className = 'bx bx-check-circle me-2 fs-4';
|
||||
progressBar.classList.add('bg-success');
|
||||
} else if (type === 'warning') {
|
||||
resultAlert.classList.add('alert-warning');
|
||||
resultIcon.className = 'bx bx-error me-2 fs-4';
|
||||
progressBar.classList.add('bg-warning');
|
||||
} else {
|
||||
resultAlert.classList.add('alert-danger');
|
||||
resultIcon.className = 'bx bx-x-circle me-2 fs-4';
|
||||
progressBar.classList.add('bg-danger');
|
||||
}
|
||||
resultText.textContent = message;
|
||||
resultBox.classList.add('is-visible');
|
||||
btnStart.disabled = false;
|
||||
includeAnalisi.disabled = false;
|
||||
}
|
||||
|
||||
function run() {
|
||||
btnStart.disabled = true;
|
||||
includeAnalisi.disabled = true;
|
||||
idleHint.style.display = 'none';
|
||||
resetUI();
|
||||
startTimer();
|
||||
|
||||
const analisiParam = includeAnalisi.checked ? '1' : '0';
|
||||
const es = new EventSource(WARM_ENDPOINT + '?stream=1&analisi=' + analisiParam);
|
||||
|
||||
es.onmessage = function(e) {
|
||||
const line = e.data;
|
||||
logPre.textContent += line + '\n';
|
||||
logPre.scrollTop = logPre.scrollHeight;
|
||||
|
||||
const idx = matchStep(line);
|
||||
if (idx !== -1) {
|
||||
advanceTo(idx, extractDetail(line));
|
||||
}
|
||||
};
|
||||
|
||||
es.addEventListener('busy', function(e) {
|
||||
es.close();
|
||||
showResult('warning', e.data ||
|
||||
'Un aggiornamento è già in corso. Attendi qualche istante e riprova.');
|
||||
});
|
||||
|
||||
es.addEventListener('done', function(e) {
|
||||
es.close();
|
||||
// completa tutti i passi
|
||||
for (let i = 0; i < activeSteps.length; i++) markStep(i, 'done');
|
||||
setProgress(100);
|
||||
let elapsed = '';
|
||||
try {
|
||||
elapsed = JSON.parse(e.data).elapsed;
|
||||
} catch (err) {}
|
||||
|
||||
// se nel log è comparsa la parola ERRORE, segnala come warning
|
||||
if (logPre.textContent.indexOf('ERRORE') !== -1) {
|
||||
showResult('warning',
|
||||
'Aggiornamento terminato, ma alcuni dati potrebbero non essere stati caricati. ' +
|
||||
'Controlla il dettaglio tecnico.');
|
||||
} else {
|
||||
progressTitle.textContent = 'Completato';
|
||||
showResult('success',
|
||||
'Dati aggiornati correttamente' +
|
||||
(elapsed ? ' in ' + elapsed + ' secondi.' : '.') +
|
||||
' Le nuove informazioni sono ora disponibili.');
|
||||
}
|
||||
});
|
||||
|
||||
es.onerror = function() {
|
||||
// EventSource tenta il reconnect da solo: lo blocchiamo.
|
||||
es.close();
|
||||
stopTimer();
|
||||
// Se avevamo già finito, il done è già scattato: non sovrascrivere.
|
||||
if (!resultBox.classList.contains('is-visible')) {
|
||||
showResult('error',
|
||||
'Connessione interrotta durante l\'aggiornamento. ' +
|
||||
'Verifica la rete e riprova.');
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
btnStart.addEventListener('click', run);
|
||||
btnAgain.addEventListener('click', run);
|
||||
|
||||
toggleLog.addEventListener('click', function() {
|
||||
logBox.classList.toggle('is-visible');
|
||||
toggleLog.innerHTML = logBox.classList.contains('is-visible') ?
|
||||
'<i class="bx bx-hide"></i> Nascondi dettaglio tecnico' :
|
||||
'<i class="bx bx-code-alt"></i> Mostra dettaglio tecnico';
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user