fix: add ROOT_PATH prefix to missing SKUs CSV export URL for IIS proxy

The export CSV button used a hardcoded /api/validate/missing-skus-csv path,
bypassing the IIS /gomag reverse proxy prefix. Also add changelog comments
to PACK_COMENZI and PACK_FACTURARE for the duplicate CODMAT discrimination.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Claude Agent
2026-03-20 10:37:11 +00:00
parent 9a545617c2
commit 6c72be5f86

View File

@@ -241,7 +241,7 @@ function openMapModal(sku, productName) {
}
function exportMissingCsv() {
window.location.href = '/api/validate/missing-skus-csv';
window.location.href = (window.ROOT_PATH || '') + '/api/validate/missing-skus-csv';
}
</script>