From 10c48171985d0b62eff4cd2dd5c66e20c797926c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Thu, 18 Jun 2026 19:38:34 +0400 Subject: [PATCH] =?UTF-8?q?v1.0.23:=20=D0=B4=D0=B5=D1=82=D0=B0=D0=BB=D1=8C?= =?UTF-8?q?=D0=BD=D1=8B=D0=B5=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B8=20?= =?UTF-8?q?=D0=B7=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=BA=D0=B8=20+=20actions?= =?UTF-8?q?=20=D0=BF=D0=BE=D1=81=D0=BB=D0=B5=20upload?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.cfm | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/index.cfm b/index.cfm index 99e017b..a381ad9 100644 --- a/index.cfm +++ b/index.cfm @@ -64,7 +64,7 @@
Nubes - Сверка договоров v1.0.22 — Lucee + Сверка договоров v1.0.23 — Lucee
@@ -232,6 +232,10 @@ uploadBtn.addEventListener('click', function() { if (i >= fileQueue.length) { uploadTimer.style.display = 'none'; uploadBtn.disabled = false; + if (contractId) { + document.getElementById('actionsCard').style.display = 'block'; + document.getElementById('chatCard').style.display = 'block'; + } return; } var f = fileQueue[i]; @@ -273,13 +277,15 @@ uploadBtn.addEventListener('click', function() { }; xhr.onerror = function() { f.status = 'error'; - log('❌ ' + f.name + ': сеть'); + var detail = 'сеть (status=' + xhr.status + ')'; + if (xhr.responseText) detail += ' resp=' + xhr.responseText.substring(0,200); + log('❌ ' + f.name + ': ' + detail); renderTable(); uploadNext(i + 1); }; xhr.ontimeout = function() { f.status = 'error'; - log('❌ ' + f.name + ': таймаут'); + log('❌ ' + f.name + ': таймаут 120с'); renderTable(); uploadNext(i + 1); };