|
| 1 | +<?php |
| 2 | +/* Copyright (C) 2021-2023 EVARISK <[email protected]> |
| 3 | + * |
| 4 | + * This program is free software; you can redistribute it and/or modify |
| 5 | + * it under the terms of the GNU General Public License as published by |
| 6 | + * the Free Software Foundation; either version 3 of the License, or |
| 7 | + * (at your option) any later version. |
| 8 | + * |
| 9 | + * This program is distributed in the hope that it will be useful, |
| 10 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | + * GNU General Public License for more details. |
| 13 | + * |
| 14 | + * You should have received a copy of the GNU General Public License |
| 15 | + * along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 16 | + */ |
| 17 | + |
| 18 | +/** |
| 19 | + * \file class/saturneform.class.php |
| 20 | + * \ingroup saturne |
| 21 | + * \brief Class file for manage SaturneForm |
| 22 | + */ |
| 23 | + |
| 24 | +// Load Dolibarr libraries |
| 25 | +require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php'; |
| 26 | +require_once DOL_DOCUMENT_ROOT . '/core/lib/functions.lib.php'; |
| 27 | + |
| 28 | +/** |
| 29 | + * Class for SaturneForm |
| 30 | + */ |
| 31 | +class SaturneForm |
| 32 | +{ |
| 33 | + /** |
| 34 | + * @var bool Browser layout is on phone |
| 35 | + */ |
| 36 | + public bool $OnPhone = false; |
| 37 | + |
| 38 | + /** |
| 39 | + * Constructor |
| 40 | + */ |
| 41 | + public function __construct() |
| 42 | + { |
| 43 | + global $conf; |
| 44 | + |
| 45 | + if ($conf->browser->layout == 'phone') { |
| 46 | + $this->OnPhone = true; |
| 47 | + } |
| 48 | + } |
| 49 | + |
| 50 | + /** |
| 51 | + * Show modify button |
| 52 | + * |
| 53 | + * @param SaturneObject $object Current object |
| 54 | + * @param array $moreParams More parameters |
| 55 | + */ |
| 56 | + public function showModifyButton(SaturneObject $object, array $moreParams = []) |
| 57 | + { |
| 58 | + global $langs; |
| 59 | + |
| 60 | + // Modify |
| 61 | + $displayButton = $this->OnPhone ? '<i class="fas fa-edit fa-2x"></i>' : '<i class="fas fa-edit"></i>' . ' ' . $langs->trans('Modify'); |
| 62 | + if (($object->status == $object::STATUS_DRAFT || $moreParams['check'])) { |
| 63 | + print '<a class="butAction" id="actionButtonEdit" href="' . $_SERVER['PHP_SELF'] . '?id=' . $object->id . $moreParams['url'] . '&action=edit' . '">' . $displayButton . '</a>'; |
| 64 | + } else { |
| 65 | + print '<span class="butActionRefused classfortooltip" title="' . dol_escape_htmltag($langs->trans('ObjectMustBeDraft', ucfirst($langs->transnoentities('The' . ucfirst($object->element))))) . '">' . $displayButton . '</span>'; |
| 66 | + } |
| 67 | + } |
| 68 | + |
| 69 | + /** |
| 70 | + * Show validate button |
| 71 | + * |
| 72 | + * @param SaturneObject $object Current object |
| 73 | + * @param array $moreParams More parameters |
| 74 | + */ |
| 75 | + public function showValidateButton(SaturneObject $object, array $moreParams = []) |
| 76 | + { |
| 77 | + global $langs; |
| 78 | + |
| 79 | + // Validate |
| 80 | + $displayButton = $this->OnPhone ? '<i class="fas fa-check fa-2x"></i>' : '<i class="fas fa-check"></i>' . ' ' . $langs->trans('Validate'); |
| 81 | + if (($object->status == $object::STATUS_DRAFT || $moreParams['check'])) { |
| 82 | + print '<span class="butAction" id="actionButtonValidate">' . $displayButton . '</span>'; |
| 83 | + } elseif ($object->status < $object::STATUS_DRAFT) { |
| 84 | + print '<span class="butActionRefused classfortooltip" title="' . dol_escape_htmltag($langs->trans('ObjectMustBeDraft', ucfirst($langs->transnoentities('The' . ucfirst($object->element))))) . '">' . $displayButton . '</span>'; |
| 85 | + } |
| 86 | + } |
| 87 | + |
| 88 | + /** |
| 89 | + * Show reopen button |
| 90 | + * |
| 91 | + * @param SaturneObject $object Current object |
| 92 | + */ |
| 93 | + public function showReOpenButton(SaturneObject $object) |
| 94 | + { |
| 95 | + global $langs; |
| 96 | + |
| 97 | + // ReOpen |
| 98 | + $displayButton = $this->OnPhone ? '<i class="fas fa-lock-open fa-2x"></i>' : '<i class="fas fa-lock-open"></i>' . ' ' . $langs->trans('ReOpenDoli'); |
| 99 | + if ($object->status == $object::STATUS_VALIDATED) { |
| 100 | + print '<span class="butAction" id="actionButtonInProgress">' . $displayButton . '</span>'; |
| 101 | + } elseif ($object->status > $object::STATUS_VALIDATED) { |
| 102 | + print '<span class="butActionRefused classfortooltip" title="' . dol_escape_htmltag($langs->trans('ObjectMustBeValidated', $langs->transnoentities('The' . ucfirst($object->element)))) . '">' . $displayButton . '</span>'; |
| 103 | + } |
| 104 | + } |
| 105 | + |
| 106 | + /** |
| 107 | + * Show sign button |
| 108 | + * |
| 109 | + * @param SaturneObject $object Current object |
| 110 | + * @param SaturneSignature $signatory Signatory object |
| 111 | + * @throws Exception |
| 112 | + */ |
| 113 | + public function showSignButton(SaturneObject $object, SaturneSignature $signatory) |
| 114 | + { |
| 115 | + global $langs; |
| 116 | + |
| 117 | + // Sign |
| 118 | + $displayButton = $this->OnPhone ? '<i class="fas fa-signature fa-2x"></i>' : '<i class="fas fa-signature"></i>' . ' ' . $langs->trans('Sign'); |
| 119 | + if ($object->status == $object::STATUS_VALIDATED && !$signatory->checkSignatoriesSignatures($object->id, $object->element)) { |
| 120 | + print '<a class="butAction" id="actionButtonSign" href="' . dol_buildpath('/custom/saturne/view/saturne_attendants.php?id=' . $object->id . '&module_name=DoliSIRH&object_type=' . $object->element . '&document_type=TimeSheetDocument&attendant_table_mode=simple', 3) . '">' . $displayButton . '</a>'; |
| 121 | + } else { |
| 122 | + print '<span class="butActionRefused classfortooltip" title="' . dol_escape_htmltag($langs->trans('ObjectMustBeValidatedToSign', $langs->transnoentities('The' . ucfirst($object->element)))) . '">' . $displayButton . '</span>'; |
| 123 | + } |
| 124 | + } |
| 125 | + |
| 126 | + /** |
| 127 | + * Show lock button |
| 128 | + * |
| 129 | + * @param SaturneObject $object Current object |
| 130 | + * @param SaturneSignature $signatory Signatory object |
| 131 | + * @throws Exception |
| 132 | + */ |
| 133 | + public function showlockButton(SaturneObject $object, SaturneSignature $signatory) |
| 134 | + { |
| 135 | + global $langs; |
| 136 | + |
| 137 | + // Lock |
| 138 | + $displayButton = $this->OnPhone ? '<i class="fas fa-lock fa-2x"></i>' : '<i class="fas fa-lock"></i>' . ' ' . $langs->trans('Lock'); |
| 139 | + if ($object->status == $object::STATUS_VALIDATED && $signatory->checkSignatoriesSignatures($object->id, $object->element)) { |
| 140 | + print '<span class="butAction" id="actionButtonLock">' . $displayButton . '</span>'; |
| 141 | + } else { |
| 142 | + print '<span class="butActionRefused classfortooltip" title="' . dol_escape_htmltag($langs->trans('AllSignatoriesMustHaveSigned', $langs->transnoentities('The' . ucfirst($object->element)))) . '">' . $displayButton . '</span>'; |
| 143 | + } |
| 144 | + } |
| 145 | + |
| 146 | + /** |
| 147 | + * Show send email button |
| 148 | + * |
| 149 | + * @param SaturneObject $object Current object |
| 150 | + * @param string $uploadDir Upload dir path |
| 151 | + */ |
| 152 | + public function showSendEmailButton(SaturneObject $object, string $uploadDir) |
| 153 | + { |
| 154 | + global $langs; |
| 155 | + |
| 156 | + // Send email |
| 157 | + $displayButton = $this->OnPhone ? '<i class="fas fa-envelope fa-2x"></i>' : '<i class="fas fa-envelope"></i>' . ' ' . $langs->trans('SendMail'); |
| 158 | + if ($object->status == $object::STATUS_LOCKED) { |
| 159 | + $fileParams = dol_most_recent_file($uploadDir . '/' . $object->element . 'document' . '/' . $object->ref); |
| 160 | + $file = $fileParams['fullname']; |
| 161 | + if (file_exists($file) && !strstr($fileParams['name'], 'specimen')) { |
| 162 | + $forceBuildDoc = 0; |
| 163 | + } else { |
| 164 | + $forceBuildDoc = 1; |
| 165 | + } |
| 166 | + print dolGetButtonAction($displayButton, '', 'default', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=presend&forcebuilddoc=' . $forceBuildDoc . '&mode=init#formmailbeforetitle'); |
| 167 | + } else { |
| 168 | + print '<span class="butActionRefused classfortooltip" title="' . dol_escape_htmltag($langs->trans('ObjectMustBeLockedToSendEmail', ucfirst($langs->transnoentities('The' . ucfirst($object->element))))) . '">' . $displayButton . '</span>'; |
| 169 | + } |
| 170 | + } |
| 171 | + |
| 172 | + /** |
| 173 | + * Show archive button |
| 174 | + * |
| 175 | + * @param SaturneObject $object Current object |
| 176 | + */ |
| 177 | + public function showArchiveButton(SaturneObject $object) |
| 178 | + { |
| 179 | + global $langs; |
| 180 | + |
| 181 | + // Archive |
| 182 | + $displayButton = $this->OnPhone ? '<i class="fas fa-archive fa-2x"></i>' : '<i class="fas fa-archive"></i>' . ' ' . $langs->trans('Archive'); |
| 183 | + if ($object->status == $object::STATUS_LOCKED) { |
| 184 | + print '<a class="butAction" href="' . $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=confirm_archive&token=' . newToken() . '">' . $displayButton . '</a>'; |
| 185 | + } else { |
| 186 | + print '<span class="butActionRefused classfortooltip" title="' . dol_escape_htmltag($langs->trans('ObjectMustBeLockedToArchive', ucfirst($langs->transnoentities('The' . ucfirst($object->element))))) . '">' . $displayButton . '</span>'; |
| 187 | + } |
| 188 | + } |
| 189 | + |
| 190 | + /** |
| 191 | + * Show delete button |
| 192 | + * |
| 193 | + * @param SaturneObject $object Current object |
| 194 | + * @param int $permissionToDelete Delete object permission |
| 195 | + */ |
| 196 | + public function showDeleteButton(SaturneObject $object, int $permissionToDelete) |
| 197 | + { |
| 198 | + global $langs; |
| 199 | + |
| 200 | + // Delete (need delete permission, or if draft, just need create/modify permission) |
| 201 | + $displayButton = $this->OnPhone ? '<i class="fas fa-trash fa-2x"></i>' : '<i class="fas fa-trash"></i>' . ' ' . $langs->trans('Delete'); |
| 202 | + print dolGetButtonAction($displayButton, '', 'delete', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=delete&token=' . newToken(), '', $permissionToDelete || ($object->status == $object::STATUS_DRAFT)); |
| 203 | + } |
| 204 | +} |
0 commit comments