| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501 |
- <?php
- /* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file settlements/settlementsindex.php
- * \ingroup settlements
- * \brief Home page of settlements top menu
- */
- // Load Dolibarr environment
- $res = 0;
- // Try main.inc.php into web root known defined into CONTEXT_DOCUMENT_ROOT (not always defined)
- if (!$res && !empty($_SERVER["CONTEXT_DOCUMENT_ROOT"])) {
- $res = @include $_SERVER["CONTEXT_DOCUMENT_ROOT"] . "/main.inc.php";
- }
- // Try main.inc.php into web root detected using web root calculated from SCRIPT_FILENAME
- $tmp = empty($_SERVER['SCRIPT_FILENAME']) ? '' : $_SERVER['SCRIPT_FILENAME'];
- $tmp2 = realpath(__FILE__);
- $i = strlen($tmp) - 1;
- $j = strlen($tmp2) - 1;
- while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
- $i--;
- $j--;
- }
- if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)) . "/main.inc.php")) {
- $res = @include substr($tmp, 0, ($i + 1)) . "/main.inc.php";
- }
- if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))) . "/main.inc.php")) {
- $res = @include dirname(substr($tmp, 0, ($i + 1))) . "/main.inc.php";
- }
- // Try main.inc.php using relative path
- if (!$res && file_exists("../main.inc.php")) {
- $res = @include "../main.inc.php";
- }
- if (!$res && file_exists("../../main.inc.php")) {
- $res = @include "../../main.inc.php";
- }
- if (!$res && file_exists("../../../main.inc.php")) {
- $res = @include "../../../main.inc.php";
- }
- if (!$res) {
- die("Include of main fails");
- }
- use Luracast\Restler\RestException;
- require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php';
- require_once DOL_DOCUMENT_ROOT . '/user/class/usergroup.class.php';
- require_once DOL_DOCUMENT_ROOT . '/custom/settlements/class/groupusers.class.php';
- require_once DOL_DOCUMENT_ROOT . '/custom/settlements/class/usernaplo.class.php';
- require_once DOL_DOCUMENT_ROOT . '/custom/settlements/class/clearallusernaplo.class.php';
- require_once DOL_DOCUMENT_ROOT . '/custom/settlements/class/helper.class.php';
- //print_r($_REQUEST);
- // Load translation files required by the page
- $langs->loadLangs(array("settlements@settlements"));
- $massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
- $massactionadd = GETPOST('massactionadd', 'alpha'); // The bulk action (combo box choice into lists)
- $action = GETPOST('action', 'aZ09');
- $cancel = GETPOST('cancel', 'int');
- $id = GETPOST('id', 'int');
- $idmenu = GETPOST('idmenu', 'int');
- $toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
- $toselectnewuser = GETPOST('toselectnewuser', 'array'); // Array of ids of elements selected into a list
- $search_title = GETPOST('search_title', 'alpha');
- $confirmbutton = GETPOST('confirmbutton', 'int');
- $userclearall = GETPOST('userclearall', 'int');
- $deleteall = GETPOST('deleteall', 'int');
- // Security check
- // if (! $user->rights->settlements->myobject->read) {
- // accessforbidden();
- // }
- if ($deleteall) {
- unset($_SESSION['usersArray']);
- }
- $socid = GETPOST('socid', 'int');
- if (isset($user->socid) && $user->socid > 0) {
- $action = '';
- $socid = $user->socid;
- }
- $max = 5;
- $now = dol_now();
- $form = new Form($db);
- $formfile = new FormFile($db);
- $userNaplo = new UserNaplo($db);
- $clearAllUserNaplo = new ClearAllUserNaplo($db);
- $groupUsers = new GroupUsers($db);
- $helper = new Helper($db);
- $entities = $helper->getAllEntities();
- $entitiesArray = [];
- $selectedEntities = '';
- $entitiesArrayIsEmpty = true;
- foreach ($entities as $key => $value) {
- $val = GETPOST('entity_' . $key, 'int');
- $entitiesArray[$key] = $val;
- if ($val != '') {
- $entitiesArrayIsEmpty = false;
- }
- }
- $selectedEntities = $helper->getEntities($entitiesArrayIsEmpty, $entities, $entitiesArray);
- $groups = $helper->getHotelGroupsFromGroupClass($db, $selectedEntities);
- if (empty($id) || $id == 0) {
- foreach ($groups as $key => $val) {
- $keys[] = $key;
- }
- unset($_SESSION['usersArray']);
- $id = $keys[0];
- }
- if ($massaction == 'delete') {
- $groupusers = new GroupUsers($db);
- foreach ($toselect as $userId) {
- $moredata = explode('_', $userId);
- $groupusers->deleteLine($user, $moredata[0]);
- $data = $helper->createDataArray($id, $massaction, $moredata[1]);
- $userNaplo->createUserNaplo($user, $data);
- dol_syslog("A {$userId} szamu felhasznalo torlesre kerult.", LOG_DEBUG | LOG_INFO | LOG_WARNING | LOG_ERR);
- }
- setEventMessage($langs->trans("usersdeleted"), 'errors');
- unset($_SESSION['usersArray']);
- }
- if ($massactionadd == 'add') {
- $usersOfGroups = $helper->getUsersById($db, $id);
- $usersOfGroupsFromNaploToday = $helper->getUsersOfGroupsFromNaploToday($db, $id);
- $confirmed = !empty($usersOfGroupsFromNaploToday) && !empty($usersOfGroups);
- $db->begin();
- $error = 0;
- $userObj = new User($db);
- $groupObj = new Group($db);
- $groupResult = $groupObj->fetch($id);
- $groupEntity = $groupObj->fk_entity;
-
- foreach ($_SESSION['usersArray'] as $newuser) {
- //print $newuser . '<br>';
- $createResult = $groupUsers->createGroupUsers($id, $newuser);
- if ($createResult < 0) {
- $error++;
- }
- $data = $helper->createDataArray($id, $massactionadd, $newuser);
- $naploResult = $userNaplo->createUserNaplo($user, $data);
- if ($naploResult < 0) {
- $error++;
- }
- $userUpdateResult = $helper->updateUserEntityInUser($newuser, $groupEntity);
- if ($userUpdateResult < 0) {
- $error++;
- }
- }
- if ($error) {
- $db->rollback();
- unset($_SESSION['usersArray']);
- setEventMessage($langs->trans("PackageUserFailed", 'error'));
- } else {
- $db->commit();
- unset($_SESSION['usersArray']);
- $helper->returnWindowLocation($_SERVER["PHP_SELF"], $id, $idmenu);
- //setEventMessage($langs->trans("useradded"));
- }
- unset($_SESSION['usersArray']);
- }
- /* if ($confirmbutton) {
- $db->begin();
- $error = 0;
- $groupusers = new GroupUsers($db);
- $groupObj = new Group($db);
- $groupResult = $groupObj->fetch($id);
- $groupEntity = $groupObj->fk_entity;
- foreach ($toselect as $selected) {
- $moredata = explode('_', $selected);
- $deleteResult = $groupusers->deleteLine($user, $moredata[0]);
- if ($deleteResult < 0) {
- $error++;
- }
- $createResult = $groupUsers->createGroupUsers($confirmbutton, $moredata[1]);
- if ($createResult < 0) {
- $error++;
- }
- $dataAdd = $helper->createDataArray($confirmbutton, 'add', $moredata[1]);
- $naploResult = $userNaplo->createUserNaplo($user, $dataAdd);
- if ($naploResult < 0) {
- $error++;
- }
- $userUpdateResult = $helper->updateUserEntityInUser($moredata[1], $groupEntity);
- if ($userUpdateResult < 0) {
- $error++;
- }
- }
- if ($error) {
- $db->rollback();
- unset($toselect);
- setEventMessage($langs->trans("PackageUserFailed", 'error'));
- } else {
- $confirmbutton = null;
- $db->commit();
- $helper->returnWindowLocation($_SERVER["PHP_SELF"], $id, $idmenu);
- //setEventMessage($langs->trans("usersconfirmed"));
- }
- } */
- $allUsers = $helper->getAllUsers($db);
- $usersOfGroups = $helper->getUsersById($db, $id);
- $confirmButtonDisplay = empty($helper->getUsersOfGroupsFromNaploToday($db, $id)) && !empty($usersOfGroups) ? "display:block;" : "display:none;";
- $permissiontoclearall = $user->hasRight('settlements', 'settlementsgroup', 'clearall');
- $title = '';
- $help_url = '';
- $morejs = '';
- $morecss = '';
- llxHeader('', $title, $help_url, '', 0, 0, $morejs, $morecss, '', 'classforhorizontalscrolloftabs');
- include DOL_DOCUMENT_ROOT . '/custom/settlements/core/actions_addupdatedelete.inc.php';
- $url = $_SERVER["PHP_SELF"] . '?idmenu=' . $idmenu . '&mainmenu=settlements&leftmenu=&id=' . $id;
- /* if ($massaction!=0 || $massactionadd != 0) {
- $url .= "&id={$id}";
- } */
- print '<form method="POST" id="searchFormList" action="' . $url . '" onkeyup="submitFormAjaxUser()">' . "\n";
- print '<input type="hidden" name="token" value="' . newToken() . '">';
- print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
- print '<input type="hidden" name="action" value="list">';
- /*print '<input type="hidden" name="sortfield" value="' . $sortfield . '">';
- print '<input type="hidden" name="sortorder" value="' . $sortorder . '">';
- print '<input type="hidden" name="page" value="' . $page . '">';
- print '<input type="hidden" name="contextpage" value="' . $contextpage . '">';*/
- print load_fiche_titre($langs->trans("HotelGroups"), '', 'settlements.png@settlements');
- include DOL_DOCUMENT_ROOT . '/custom/settlements/core/tpl/usercheckboxes.tpl.php';
- /* if ($permissiontoclearall) {
- if ($helper->userGroupsAreEmpty()) {
- print '<div style="text-align: center; color:red; margin-bottom: 30px;">' . $langs->trans('EmptyUsersGroup') . '</div>';
- } else {
- include DOL_DOCUMENT_ROOT . '/custom/settlements/core/tpl/userclearall.tpl.php';
- }
- } */
- print '<div style="width:100%; padding-bottom: 50px;">';
- $columnWidth = 100 / count($entities);
- foreach ($entities as $key => $value) {
- if (!$entitiesArrayIsEmpty) {
- $checked = $entitiesArray[$key] == $key ? 'checked' : '';
- } else {
- $checked = 'checked';
- }
- print '<div class="entitiesChk" style="float:left; width:' . $columnWidth . '%; text-align:center;"><input type="checkbox" id="entity_' . $key . '" name="entity_' . $key . '" value="' . $key . '" ' . $checked . '><label for="' . $key . '">' . $value . '</label></div>';
- }
- print '</div>';
- print '<div style="clear:both;></div>';
- //---------------------------------------------
- # 1
- //---------------------------------------------
- print '<div class=""><div class="" style="width:33%;float:left;">';
- print '<table style="width:100%;">';
- print '<tr style="width: 100%; height: 40px; text-align: center; background-color: lightgrey;"><td colspan="2">' . $langs->trans("groupname") . '</td></tr>';
- foreach ($groups as $key => $val) {
- $coloredLine = $id == $key ? ' background-color: #b0c4de;' : '';
- print '<tr style="height:30px;' . $coloredLine . ' cursor:pointer;" class="submitFormLink" data-value="' . $key . '"><td><span class="fa fa-group pictofixedwidth"></span> ' . $val . '</td>
- </tr>';
- }
- print '</table>';
- //---------------------------------------------
- # 2
- //---------------------------------------------
- print '</div><div class="" style="width:33%;float:left;">';
- print '<table style="width:100%;">';
- print '<tr style="width: 100%; height: 40px; text-align: center; background-color: lightgrey;"><td colspan="2">' . $langs->trans("usersofgroup") . '</td></tr>';
- print '<tr style="width: 100%; height: 40px; text-align: center; background-color: rgb(163,0,51); color:white;"><td colspan="2">' . $groups[$id] . '</td></tr>';
- //print '<tr style="width=100%; height:40px;"><td colspan="2" class="center"><button class="btn" name="confirmbutton" value="' . $id . '" onclick="groupconfirm()" style="width:100%; height:40px; cursor:pointer; background-color: #98FB98; ' . $confirmButtonDisplay . '">' . $langs->trans("confirm") . '</button></td></tr>';
- if (!empty($usersOfGroups)) {
- print '<tr><td class="right" style="color:gray;">' . $langs->trans("selectall") . '</td><td class="nowrap center"><input id="cb912" class="flat checkforallselect" type="checkbox"></td></tr>';
- foreach ($usersOfGroups as $user) {
- print '<tr style="height:30px;">
- <td><span class="fa fa-user pictofixedwidth"></span> ' . $user['lastname'] . ' ' . $user['firstname'] . ' (' . $user['login'] . ')</td>
- <td class="nowrap center"><input id="cb911" class="flat checkforselect" type="checkbox" name="toselect[]" value="' . $user['rowid'] . '_' . $user['fk_user'] . '"></td>
- </tr>';
- }
- } else {
- print '<tr style="height: 60px; text-align: center; color:red;"><td>' . $langs->trans('nouser') . '</td></tr>';
- }
- print '</table>';
- //---------------------------------------------
- # 3
- //---------------------------------------------
- print '</div><div class="" style="width:33%;float:left;">';
- print '<table style="width:100%;">';
- print '<tr style="width: 100%; height: 40px; text-align: center; background-color: lightgrey;"><td colspan="3">' . $langs->trans("freeusers") . '</td></tr>';
- print '<tr><td class="liste_titre"><input id="name_search" style="width:100%; height:30px;" type="text" class="" name="search_title" value="' . $search_title . '" placeholder="' . $langs->trans("search") . '" ></td>
- <td id="delete_search" class="center"><div style="cursor: pointer;"><a href="' . $_SERVER["PHP_SELF"] . '?idmenu=' . $idmenu . '&mainmenu=settlements&leftmenu=&id=' . $id . '&deleteall=1"><span class="fa fa-trash"></span></a></div>
- </td></tr>';
- if (is_array($allUsers['freeUsers'])) {
- print '<td colspan="3"><div id="searchedUsersDiv">
- <table style="width:100%;">';
- foreach ($allUsers['freeUsers'] as $freeUser) {
- $nickname = isset($freeUser['nickname']) ? '<b>' . $freeUser['nickname'] . '</b> - ' : '';
- print '<tr style="height:30px;">
- <td><span class="fa fa-user pictofixedwidth"></span>' . $nickname . $freeUser['lastname'] . ' ' . $freeUser['firstname'] . ' (' . $freeUser['login'] . ')</td>
- <td class="nowrap center"><input id="cb912" class="flat checkforselectadd" type="checkbox" onclick="submitFormAddUser(event)" name="toselectnewuser[]" value="' . $freeUser['rowid'] . '"></td>
- </tr>';
- }
- } else {
- print '<tr style="height: 60px; text-align: center; color:red;"><td>' . $langs->trans('pleaseConfirm') . '</td></tr>';
- }
- print '</table><table style="width:100%; color: red;">';
- if (is_array($allUsers['addedUsers'])) {
- foreach ($allUsers['addedUsers'] as $addedUser) {
- $nickname = isset($addedUser['nickname']) ? '<b>' . $addedUser['nickname'] . '</b> - ' : '';
- print '<tr style="height:30px;">
- <td rowspan="2"><span class="fa fa-user pictofixedwidth"></span></td>
- <td>' . $nickname . $addedUser['lastname'] . ' ' . $addedUser['firstname'] . ' (' . $addedUser['login'] . ')</td>';
- print '<tr>
- <td class="nowrap">' . $addedUser['groupref'] . '</td>
- </tr>';
- }
- }
- print '</table>';
- print '</div></td>';
- print '</div></div>';
- print '</form>' . "\n";
- // End of page
- llxFooter();
- $db->close();
- ?>
- <script>
- $(document).ready(function () {
- // Az űrlap elküldése, ha a checkbox változik
- $('.entitiesChk').change(function () {
- $('#searchFormList').submit();
- });
- var elements = document.getElementsByClassName('submitFormLink');
- for (var i = 0; i < elements.length; i++) {
- elements[i].addEventListener('click', function (event) {
- event.preventDefault();
- var form = document.getElementById('searchFormList');
- var actionValue = form.getAttribute('action');
- var clickedElementValue = this.getAttribute('data-value');
- lastIndex = actionValue.lastIndexOf('&');
- var trimmedQueryString = actionValue.substring(0, lastIndex);
- form.action = trimmedQueryString + '&id=' + clickedElementValue;
- document.getElementById('searchFormList').submit();
- });
- }
- });
- function groupconfirm() {
- $('.checkforselect').prop('checked', true);
- }
- $('.massactionaddconfirmed').click(function () {
- $("#name_search").val('');
- groupconfirm();
- })
- $('.massactionconfirmed').click(function () {
- $("#name_search").val('');
- $("#deletechk").val(1);
- })
- $('.checkforallselect').click(function () {
- if ($(this).is(':checked')) {
- $('.checkforselect').prop('checked', true);
- $('#divDelete').css('display', 'inline-block');
- $('#massaction').css('display', 'inline-block');
- $('.massactionselect ').css('display', '');
- $('.massactionconfirmed ').css('display', '');
- } else {
- $('#divDelete').css('display', 'none');
- $('.checkforselect').prop('checked', false);
- $('#massaction').css('display', 'none');
- $('.massactionselect ').css('display', 'none');
- $('.massactionconfirmed ').css('display', 'none');
- }
- })
- $('.checkforselect').click(function () {
- if ($(this).is(':checked')) {
- $('#divDelete').css('display', 'inline-block');
- $('#massaction').css('display', 'inline-block');
- $('.massactionselect ').css('display', '');
- $('.massactionconfirmed ').css('display', '');
- } else {
- $('#massaction').css('display', 'none');
- $('#divDelete').css('display', 'none');
- $('.massactionselect ').css('display', 'none');
- $('.massactionconfirmed ').css('display', 'none');
- }
- })
- $('.checkforselectadd').click(function () {
- if ($(this).is(':checked')) {
- $('#divAdd').css('display', 'inline-block');
- $('#massactionadd').css('display', 'inline-block');
- $('.massactionaddselect ').css('display', '');
- $('.massactionaddconfirmed ').css('display', '');
- } else {
- $('#divAdd').css('display', 'none');
- $('#massactionadd').css('display', 'none');
- $('.massactionaddselect ').css('display', 'none');
- $('.massactionaddconfirmed ').css('display', 'none');
- }
- })
- function deleteFunction() {
- $("#name_search").val('');
- document.getElementById("searchFormList").submit();
- }
- function submitFormAjaxUser() {
- var input = document.getElementById("name_search");
- var checkboxes = document.querySelectorAll('.checkforselectadd:checked');
- var values = Array.from(checkboxes).map(function (checkbox) {
- return checkbox.value;
- });
- var xhr = new XMLHttpRequest();
- xhr.open("GET", "ajaxUser.php?search_title=" + input.value + "&toselectnewuser=" + values, true);
- xhr.onreadystatechange = function () {
- if (xhr.readyState === 4 && xhr.status === 200) {
- $("#searchedUsersDiv").html(xhr.responseText);
- }
- };
- xhr.send();
- }
- function submitFormAddUser(event) {
- var checkbox = event.target;
- if (checkbox.checked) {
- var input = document.getElementById("name_search");
- var checkboxes = document.querySelectorAll('.checkforselectadd:checked');
- var values = Array.from(checkboxes).map(function (checkbox1) {
- return checkbox1.value;
- });
- var xhr = new XMLHttpRequest();
- xhr.open("GET", "ajaxUser.php?search_title=" + input.value + "&toselectnewuser=" + values, true);
- xhr.onreadystatechange = function () {
- if (xhr.readyState === 4 && xhr.status === 200) {
- $("#searchedUsersDiv").html(xhr.responseText);
- }
- };
- xhr.send();
- } else {
- var input = document.getElementById("name_search");
- var checkboxes = document.querySelectorAll('.checkforselectadd:checked');
- var values = Array.from(checkboxes).map(function (checkbox1) {
- return checkbox1.value;
- });
- var xhr = new XMLHttpRequest();
- xhr.open("GET", "ajaxUser.php?search_title=" + input.value + "&reduction=" + values, true);
- xhr.onreadystatechange = function () {
- if (xhr.readyState === 4 && xhr.status === 200) {
- $("#searchedUsersDiv").html(xhr.responseText);
- }
- };
- xhr.send();
- }
- }
- var input = document.getElementById("name_search");
- input.focus();
- input.setSelectionRange(input.value.length, input.value.length);
- </script>
|