From 27a43725cddf30c59dd48c45859efe39350e626f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Fri, 19 Jun 2026 10:58:20 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20COLUMNS=20uppercase=20=E2=86=92=20DOCUME?= =?UTF-8?q?NT=5FID/ID/TYPE=20(v1.0.62)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.cfm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.cfm b/index.cfm index 4940c5e..8a6e088 100644 --- a/index.cfm +++ b/index.cfm @@ -61,7 +61,7 @@
Nubes - Сверка договоров — LLM v1.0.61 — Lucee + Сверка договоров — LLM v1.0.62 — Lucee
@@ -335,10 +335,10 @@ async function refreshSupps() { data.COLUMNS.forEach(function(c, ci) { supp[c] = r[ci]; }); console.log('refreshSupps: supp=', supp); for (var i = 0; i < fileQueue.length; i++) { - console.log(' cmp: doc_id=' + fileQueue[i].doc_id + ' vs document_id=' + supp.document_id + ' match=' + (fileQueue[i].doc_id === supp.document_id)); - if (fileQueue[i].doc_id === supp.document_id) { - fileQueue[i].supp_id = supp.id; - fileQueue[i].supp_type = supp.type; + console.log(' cmp: doc_id=' + fileQueue[i].doc_id + ' vs DOCUMENT_ID=' + supp.DOCUMENT_ID + ' match=' + (fileQueue[i].doc_id === supp.DOCUMENT_ID)); + if (fileQueue[i].doc_id === supp.DOCUMENT_ID) { + fileQueue[i].supp_id = supp.ID; + fileQueue[i].supp_type = supp.TYPE; } } });