From 8b7d98beec47deb5e88107ae6e68401a6049b8c0 Mon Sep 17 00:00:00 2001 From: Dauren777 Date: Wed, 10 Jun 2026 10:24:27 +0000 Subject: [PATCH] =?UTF-8?q?=D0=91=D0=B0=D0=BD=D0=BD=D0=B5=D1=80=20=D0=BE?= =?UTF-8?q?=D1=82=D1=81=D1=82=D0=B0=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F,=20email?= =?UTF-8?q?-=D0=BD=D0=B0=D0=BF=D0=BE=D0=BC=D0=B8=D0=BD=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5,=20=D0=B2=D1=81=D0=B5=204=20=D1=83=D0=BB=D1=83=D1=87?= =?UTF-8?q?=D1=88=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app.html b/app.html index 75d5e2d..e6db40a 100644 --- a/app.html +++ b/app.html @@ -45,7 +45,7 @@ td{padding:8px 12px;border-bottom:1px solid #F2F4F7}tr:hover td{background:#F2F4
🛡️ ПАБ Система
- +

📋 Бланк ПАБ

📝 Данные аудита

@@ -134,6 +134,9 @@ function showPanel(n){ } function doLogout(){sessionStorage.removeItem("pab_user");location.href="index.html"} +function checkSA(){if(!U||isA()){document.getElementById("sa").style.display="none";return}var q=getUserQuota(U);if(!q.p)return;var p=gp(q.p);var done=getA().filter(function(a){return a.createdBy===U.login&&new Date(a.date)>=p.s}).length;var need=Math.max(0,q.c-done);var sa=document.getElementById("sa"),at=document.getElementById("sat");if(need>0){at.innerHTML="⚠️ Отставание: "+p.l+" — "+done+" из "+q.c+". Осталось: "+need+".";sa.style.display="block";sa.style.background=need>=q.c?"#FFEBED":"#FFF3EF";sa.style.borderColor=need>=q.c?"#E63946":"#E76F51"}else{sa.style.display="none"}} +function sendScheduleReminder(){if(!U)return;var q=getUserQuota(U);var p=gp(q.p);var done=getA().filter(function(a){return a.createdBy===U.login&&new Date(a.date)>=p.s}).length;var need=Math.max(0,q.c-done);var to=U.email||"";if(!to||to.indexOf("@")<0){alert("Укажите email в профиле");return}location.href="mailto:"+encodeURIComponent(to)+"?subject="+encodeURIComponent("График ПАБ — "+p.l)+"&body="+encodeURIComponent("Уважаемый(ая) "+U.name+"!\n\nГрафик ПАБ: "+q.l+".\nПериод: "+p.l+".\nВыполнено: "+done+" из "+q.c+".\n"+(need>0?"Отставание: "+need+" ПАБ.":"График выполнен!")+"\n\nС уважением, Система ПАБ")} + function rMS(){ var c=document.getElementById("msc");if(!c)return; if(isA()){ @@ -248,7 +251,7 @@ function importData(){ }; input.click(); } -rHS();sbSync(); +rHS();sbSync();checkSA();