Изменения документа Загрузить документ

Редактировал(а) HRlink 30.05.2025

От версии 72.1
отредактировано HRlink
на 29.08.2024
Изменить комментарий: К данной версии нет комментариев
К версии 75.1
отредактировано HRlink
на 30.05.2025
Изменить комментарий: К данной версии нет комментариев

Сводка

Подробности

Свойства страницы
Содержимое
... ... @@ -46,8 +46,12 @@
46 46  * Добавляйте в однотипные документы сразу [[несколько сотрудников>>https://wiki.myhrlink.ru/bin/view/Main/Кадровик/Документы/Добавить%20в%20документ%20нескольких%20сотрудников%20/]]
47 47  {{/success}}
48 48  
49 -== (% style="color:#4d4d4d; font-size:max(20px, min(24px, 12.888889px + 0.925926vw))" %)Предварительное условие загрузки документов(%%) ==
49 +----
50 50  
51 +== Процесс загрузки документа ==
52 +
53 +=== Предварительные условия ===
54 +
51 51  {{warning}}
52 52   {{displayIcon name="warning"/}} **Подготовьте документ, который соответствует следующим условиям:**
53 53  
... ... @@ -55,10 +55,6 @@
55 55  * Максимально допустимый размер файла: 300 мб
56 56  {{/warning}}
57 57  
58 -----
59 -
60 -== Процесс загрузки документа ==
61 -
62 62  === Загрузка подготовленного файла ===
63 63  
64 64  * Перейдите в **Документы** нажмите кнопку **Загрузить документ**[[image:1724916405603-128.png||data-xwiki-image-style-alignment="center"]]
... ... @@ -141,3 +141,145 @@
141 141  == Дальнейшие действия ==
142 142  
143 143  [[Добавьте к документу сотрудников>>https://wiki.myhrlink.ru/bin/view/Main/Кадровик/Документы/Добавить%20в%20документ%20нескольких%20сотрудников%20/]] или отправьте загруженные документы на [[подпись>>https://wiki.myhrlink.ru/bin/view/Main/Кадровик/Документы/Отправить%20документ%20на%20подпись%20/]]
144 +
145 +----
146 +
147 + {{velocity}}#set($likesKey = $doc.fullName)
148 +#set($likesDocRef = $services.model.resolveDocument("XWiki.LikesStorage"))
149 +#set($likesDoc = $xwiki.getDocument("XWiki.LikesStorage"))
150 +#set($likesObject = $likesDoc.getObject("XWiki.LikesStorageClass", "key", $likesKey))
151 +
152 +## Создание объекта, если ещё нет
153 +#if(!$likesObject)
154 + #set($likesDoc = $xwiki.getDocument("XWiki.LikesStorage"))
155 + #set($obj = $likesDoc.newObject("XWiki.LikesStorageClass"))
156 + $obj.set("key", $likesKey)
157 + $obj.set("value", 0)
158 + $xwiki.saveDocument($likesDoc)
159 + #set($likes = 0)
160 +#else
161 + #set($likes = $likesObject.get("value"))
162 +#end
163 +
164 +## Проверка, ставил ли пользователь лайк через cookie
165 +#set($liked = $request.getCookie("liked-$likesKey"))
166 +#set($userLiked = false)
167 +#if("$!liked" == "true")
168 + #set($userLiked = true)
169 +#end
170 +
171 +## HTML-блок
172 +{{html clean="false"}}
173 +<div id="like-container" style="margin-top:20px; display:flex; align-items:center; gap:10px;">
174 + <button id="like-button" style="cursor:pointer; font-size: 20px; background: none; border: none;" title="Нравится">
175 + <span id="heart" style="color:#e74c3c;">❤️</span>
176 + </button>
177 + <span id="like-count" style="font-size:18px;">$likes</span>
178 + <span style="font-size:14px; color: #555;">Нравится статья?</span>
179 +</div>
180 +<script>
181 + document.addEventListener('DOMContentLoaded', function () {
182 + const key = "$likesKey";
183 + const likeButton = document.getElementById('like-button');
184 + const likeCount = document.getElementById('like-count');
185 +
186 + function setCookie(name, value, days) {
187 + const d = new Date();
188 + d.setTime(d.getTime() + (days*24*60*60*1000));
189 + document.cookie = name + "=" + value + "; expires=" + d.toUTCString() + "; path=/";
190 + }
191 +
192 + function getCookie(name) {
193 + const value = `; ${document.cookie}`;
194 + const parts = value.split(`; ${name}=`);
195 + if (parts.length === 2) return parts.pop().split(';').shift();
196 + }
197 +
198 + if (getCookie("liked-" + key) === "true") {
199 + likeButton.disabled = true;
200 + likeButton.style.opacity = 0.6;
201 + }
202 +
203 + likeButton.addEventListener('click', function () {
204 + if (getCookie("liked-" + key) !== "true") {
205 + fetch(location.href, {
206 + method: 'POST',
207 + headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
208 + body: 'like=1&xredirect=' + encodeURIComponent(window.location.pathname)
209 + }).then(() => {
210 + let current = parseInt(likeCount.innerText);
211 + likeCount.innerText = current + 1;
212 + setCookie("liked-" + key, "true", 365);
213 + likeButton.disabled = true;
214 + likeButton.style.opacity = 0.6;
215 + });
216 + }
217 + });
218 + });
219 +</script>
220 +{{/html}}
221 +
222 +## Серверная часть для учёта лайка
223 +#if($request.getParameter("like") == "1")
224 + #set($likesDoc = $xwiki.getDocument("XWiki.LikesStorage"))
225 + #set($likesObject = $likesDoc.getObject("XWiki.LikesStorageClass", "key", $likesKey))
226 + #set($count = $likesObject.get("value"))
227 + $likesObject.set("value", $math.add($count, 1))
228 + $xwiki.saveDocument($likesDoc)
229 +#end{{/velocity}}
230 +
231 +
232 +$xwiki.saveDocument($likesDoc)
233 +
234 +
235 +{{html clean="false"}}
236 +<div id="like-container" style="margin-top:20px; display:flex; align-items:center; gap:10px;">
237 +<button id="like-button" style="cursor:pointer; font-size: 20px; background: none; border: none;" title="Нравится">
238 +<span id="heart" style="color:#e74c3c;">❤️</span>
239 +</button>
240 +<span id="like-count" style="font-size:18px;">0</span>
241 +<span style="font-size:14px; color: #555;">Нравится статья?</span>
242 +</div>
243 +<script>
244 +document.addEventListener('DOMContentLoaded', function () {
245 +const key = "Main.Кадровик.Документы.Загрузить документ .WebHome";
246 +const likeButton = document.getElementById('like-button');
247 +const likeCount = document.getElementById('like-count');
248 +
249 +function setCookie(name, value, days) {
250 +const d = new Date();
251 +d.setTime(d.getTime() + (days*24*60*60*1000));
252 +document.cookie = name + "=" + value + "; expires=" + d.toUTCString() + "; path=/";
253 +}
254 +
255 +function getCookie(name) {
256 +const value = `; ${document.cookie}`;
257 +const parts = value.split(`; ${name}=`);
258 +if (parts.length === 2) return parts.pop().split(';').shift();
259 +}
260 +
261 +if (getCookie("liked-" + key) === "true") {
262 +likeButton.disabled = true;
263 +likeButton.style.opacity = 0.6;
264 +}
265 +
266 +likeButton.addEventListener('click', function () {
267 +if (getCookie("liked-" + key) !== "true") {
268 +fetch(location.href, {
269 +method: 'POST',
270 +headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
271 +body: 'like=1&xredirect=' + encodeURIComponent(window.location.pathname)
272 +}).then(() => {
273 +let current = parseInt(likeCount.innerText);
274 +likeCount.innerText = current + 1;
275 +setCookie("liked-" + key, "true", 365);
276 +likeButton.disabled = true;
277 +likeButton.style.opacity = 0.6;
278 +});
279 +}
280 +});
281 +});
282 +</script>
283 +{{/html}}
284 +
285 +