| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- <?php
- /* Copyright (C) 2009-2022 Regis Houssin <regis.houssin@inodbox.com>
- *
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- */
- // Protection to avoid direct call of template
- if (empty($conf) || !is_object($conf)) {
- print "Error, template page can't be called as URL";
- exit;
- }
- ?>
- <!-- BEGIN PHP TEMPLATE -->
- <script type="text/javascript">
- $(document).ready(function () {
- $("#selectcountry_id").change(function() {
- document.form_entity.action.value="<?php echo $this->tpl['action']; ?>";
- document.form_entity.submit();
- });
- <?php if (!empty($conf->global->MULTICOMPANY_TEMPLATE_MANAGEMENT)) { ?>
- $("#template").change(function() {
- var template = $(this).val();
- if (template == '1') {
- $('#usetemplate').val(null).trigger('change');
- $("#usetemplate").prop('disabled', true);
- } else {
- $("#usetemplate").prop('disabled', false);
- }
- });
- $("#form_entity").on('change', '#template, #usetemplate', function() {
- var fieldvalue = $(this).val();
- if (fieldvalue > '0') {
- $("tr.template-field").show();
- } else {
- $("tr.template-field").hide();
- }
- });
- $("#form_entity").on('change', '#usetemplate', function() {
- var id = $(this).val();
- if (id > '0') {
- <?php
- // reset before change values
- foreach($this->sharingelements as $element => $params) {
- if (!empty($this->tpl['multiselect_from_' . $element])) { ?>
- var element = '<?php echo $element; ?>';
- $('#multiselect_shared_' + element + '_rightAll').click();
- <?php } } ?>
- $.post( "<?php echo dol_buildpath('/multicompany/core/ajax/functions.php',1); ?>", {
- 'action': 'getEntityOptions',
- 'id': id,
- 'token': '<?php echo currentToken(); ?>'
- },
- function (result) {
- if (result.status == "success") {
- $.each(result.options.sharings, function( element, entities ) {
- if (entities != null) {
- $.each(entities, function( key, entity ) {
- //console.log(element);
- //console.log(entity);
- $('#multiselect_shared_' + element + ' option[value=' + entity + ']').remove();
- $('#multiselect_shared_' + element + '_to').append( $("<option></option>").attr("value", entity).text(result.labels[entity]) );
- $('#multiselect_shared_' + element + '_to option').addClass( "multiselect-option" );
- $('#multiselect_shared_' + element + '_to').html( $('#multiselect_shared_' + element + '_to option').sort(function(x, y) {
- return $(x).val() < $(y).val() ? -1 : 1;
- }));
- });
- if (result.options.addtoallother) {
- $.each(result.options.addtoallother, function( element, value ) {
- $('#addtoallother_' + element).val(value).change();
- })
- }
- }
- });
- } else {
- $.jnotify("<?php echo $langs->transnoentities("ErrorGetEntitySharings"); ?>", "error", true);
- }
- }
- );
- } else {
- <?php
- foreach($this->sharingelements as $element => $params) {
- if (!empty($this->tpl['multiselect_from_' . $element])) {
- ?>
- var element = '<?php echo $element; ?>';
- $('#multiselect_shared_' + element + '_rightAll').click();
- <?php } } ?>
- }
- });
- <?php } ?>
- <?php
- if (!empty($conf->global->MULTICOMPANY_SHARINGS_ENABLED)) {
- foreach($this->sharingelements as $element => $params) {
- if ($params['type'] === 'element' && !empty($this->tpl['multiselect_from_' . $element])) {
- ?>
- $('#multiselect_shared_<?php echo $element; ?>').multiselect({
- keepRenderingSort: true,
- right: '#multiselect_to_<?php echo $element; ?>',
- rightAll: '#multiselect_shared_<?php echo $element; ?>_leftAll',
- rightSelected: '#multiselect_shared_<?php echo $element; ?>_leftSelected',
- leftSelected: '#multiselect_shared_<?php echo $element; ?>_rightSelected',
- leftAll: '#multiselect_shared_<?php echo $element; ?>_rightAll',
- search: {
- left: '<input type="text" name="q" class="form-control" placeholder="<?php echo $langs->trans("Search").'...'; ?>" />',
- right: '<input type="text" name="q" class="form-control" placeholder="<?php echo $langs->trans("Search").'...'; ?>" />',
- },
- fireSearch: function(value) {
- return value.length > 2;
- },
- <?php if ($element == 'thirdparty') { ?>
- afterMoveToLeft: function($left, $right, $options) {
- var sharingobjects = <?php echo json_encode($object->sharingelements); ?>;
- $.each(sharingobjects, function( element, param ) {
- if (! param.disable && param.type === 'object') {
- var elements = $('#multiselect_shared_' + element + '_to option');
- if (elements && elements.length) {
- $.each(elements, function( key, share) {
- $.each($options, function( index, entity ) {
- if (entity.value == share.value) {
- $('#multiselect_shared_' + element + '_to option[value=' + entity.value + ']').remove();
- $('#multiselect_shared_' + element).append($("<option></option>").attr("value", entity.value).text(entity.text));
- $('#multiselect_shared_' + element).html($('#multiselect_shared_' + element + ' option').sort(function(x, y) {
- return $(x).val() < $(y).val() ? -1 : 1;
- }));
- }
- });
- });
- }
- }
- });
- },
- afterMoveToRight: function($left, $right, $options) {
- $('#multiselect_shared_<?php echo $element; ?>_to').html($('#multiselect_shared_<?php echo $element; ?>_to option').sort(function(x, y) {
- return $(x).val() < $(y).val() ? -1 : 1;
- }));
- }
- <?php } ?>
- });
- <?php } } ?>
- <?php
- foreach($this->sharingelements as $element => $params) {
- if ($params['type'] !== 'element' && !empty($this->tpl['multiselect_from_' . $element])) {
- $mandatory = (!empty($params['mandatory']) ? $params['mandatory'] : '');
- ?>
- $('#multiselect_shared_<?php echo $element; ?>').multiselect({
- keepRenderingSort: true,
- right: '#multiselect_to_<?php echo $element; ?>',
- rightAll: '#multiselect_shared_<?php echo $element; ?>_leftAll',
- rightSelected: '#multiselect_shared_<?php echo $element; ?>_leftSelected',
- leftSelected: '#multiselect_shared_<?php echo $element; ?>_rightSelected',
- leftAll: '#multiselect_shared_<?php echo $element; ?>_rightAll',
- search: {
- left: '<input type="text" name="q" class="form-control" placeholder="<?php echo $langs->trans("Search").'...'; ?>" />',
- right: '<input type="text" name="q" class="form-control" placeholder="<?php echo $langs->trans("Search").'...'; ?>" />',
- },
- fireSearch: function(value) {
- return value.length > 2;
- },
- afterMoveToRight: function($left, $right, $options) {
- <?php if (!empty($mandatory)) { ?>
- var mandatory = '<?php echo $mandatory; ?>';
- var elements = $('#multiselect_shared_' + mandatory + ' option');
- if (elements && elements.length) {
- $.each(elements, function( key, share) {
- $.each($options, function( index, entity ) {
- if (entity.value == share.value) {
- $('#multiselect_shared_' + mandatory + ' option[value=' + entity.value + ']').remove();
- $('#multiselect_shared_' + mandatory + '_to').append($("<option></option>").attr("value", entity.value).text(entity.text));
- $('#multiselect_shared_' + mandatory + '_to').html($('#multiselect_shared_' + mandatory + '_to option').sort(function(x, y) {
- return $(x).val() < $(y).val() ? -1 : 1;
- }));
- }
- });
- });
- }
- <?php } else { ?>
- $('#multiselect_shared_<?php echo $element; ?>_to').html($('#multiselect_shared_<?php echo $element; ?>_to option').sort(function(x, y) {
- return $(x).val() < $(y).val() ? -1 : 1;
- }));
- <?php } ?>
- },
- afterMoveToLeft: function($left, $right, $options) {
- $('#multiselect_shared_<?php echo $element; ?>').html($('#multiselect_shared_<?php echo $element; ?> option').sort(function(x, y) {
- return $(x).val() < $(y).val() ? -1 : 1;
- }));
- }
- });
- <?php } } } ?>
- });
- </script>
- <form id="form_entity" name="form_entity" action="<?php echo $_SERVER["PHP_SELF"]; ?>" method="POST">
- <input type="hidden" name="token" value="<?php echo newToken(); ?>" />
- <?php if ($this->tpl['action'] === 'create') { ?>
- <input type="hidden" name="action" value="add" />
- <?php } else { ?>
- <input type="hidden" name="action" value="update" />
- <input type="hidden" name="id" value="<?php echo $this->tpl['id']; ?>" />
- <?php } ?>
- <table class="noborder">
- <tr class="liste_titre">
- <td width="35%"><span class="fa fa-edit"></span><span class="multiselect-title"><?php echo $langs->trans("CompanyInfo"); ?></span></td>
- <td><?php echo $langs->trans("Value"); ?></td>
- </tr>
- <tr class="oddeven">
- <td><span class="fieldrequired"><?php echo $langs->trans("Label"); ?></span></td>
- <td><input name="label" size="40" value="<?php echo $this->tpl['label']; ?>" /></td>
- </tr>
- <tr class="oddeven">
- <td><span class="fieldrequired"><?php echo $langs->trans("CompanyName"); ?></span></td>
- <td><input name="name" size="40" value="<?php echo $this->tpl['name']; ?>" /></td>
- </tr>
- <?php
- if (!empty($conf->global->MULTICOMPANY_TEMPLATE_MANAGEMENT)) {
- if ($this->tpl['action'] === 'create') { ?>
- <tr class="oddeven">
- <td><?php echo $langs->trans("TemplateOfCompany"); ?></td>
- <td><?php echo $this->tpl['template']; ?></td>
- </tr>
- <tr class="oddeven">
- <td><?php echo $langs->trans("SelectTemplateOfCompany"); ?></td>
- <td><?php echo $this->tpl['select_template']; ?></td>
- </tr>
- <?php } elseif (!empty($this->tpl['template']) && $this->tpl['template'] === 1) { ?>
- <tr class="oddeven">
- <td colspan="2" class="error"><?php echo $langs->trans("WarningThisIsATemplate"); ?></td>
- </tr>
- <?php } } ?>
- <tr class="oddeven">
- <td><?php echo $langs->trans("CompanyAddress"); ?></td>
- <td><textarea name="address" cols="80" rows="<?php echo ROWS_3; ?>"><?php echo $this->tpl['address']; ?></textarea></td>
- </tr>
- <tr class="oddeven">
- <td><?php echo $langs->trans("CompanyZip"); ?></td>
- <td><?php echo $this->tpl['select_zip']; ?></td>
- </tr>
- <tr class="oddeven">
- <td><?php echo $langs->trans("CompanyTown"); ?></td>
- <td><?php echo $this->tpl['select_town']; ?></td>
- </tr>
- <tr class="oddeven">
- <td><?php echo $langs->trans("Country"); ?></td>
- <td><?php echo $this->tpl['select_country'].$this->tpl['info_admin']; ?></td>
- </tr>
- <tr class="oddeven">
- <td><?php echo $langs->trans("State"); ?></td>
- <td><?php echo $this->tpl['select_state']; ?></td>
- </tr>
- <tr class="oddeven">
- <td><?php echo $langs->trans("CompanyCurrency"); ?></td>
- <td><?php echo $this->tpl['select_currency']; ?></td>
- </tr>
- <tr class="oddeven">
- <td><?php echo $langs->trans("DefaultLanguage"); ?></td>
- <td><?php echo $this->tpl['select_language']; ?></td>
- </tr>
- <tr class="oddeven">
- <td class="tdtop"><?php echo $langs->trans("Description"); ?></td>
- <td><textarea class="flat" name="description" cols="80" rows="<?php echo ROWS_3; ?>"><?php echo $this->tpl['description']; ?></textarea></td>
- </tr>
- <?php
- if (!empty($this->tpl['cloneaccountingaccount'])) {
- ?>
- <tr class="oddeven">
- <td class="tdtop"><?php echo $langs->trans("CloneAccountingAccountFromOtherEntity"); ?></td>
- <td><?php echo $this->tpl['cloneaccountingaccount']; ?></td>
- </tr>
- <?php
- }
- if (!empty($this->tpl['extrafields']->attribute_label)) {
- print $this->dao->showOptionals($this->tpl['extrafields'], 'edit');
- }
- if (!empty($conf->global->MULTICOMPANY_SHARINGS_ENABLED)) {
- foreach($this->sharingelements as $element => $params) {
- if ($params['type'] === 'element' && !empty($this->tpl['multiselect_from_' . $element])) {
- $uppername = strtoupper($element);
- $icon = (!empty($params['icon'])?$params['icon']:'edit');
- ?>
- <tr class="liste_titre">
- <td colspan="2"><span class="fa fa-<?php echo $icon; ?>"></span><span class="multiselect-title"><?php echo $langs->trans($uppername . "Sharing"); ?></span></td>
- </tr>
- <tr class="oddeven">
- <td class="tdtop"><?php echo $langs->trans($uppername . "SharingDescription"); ?></td>
- <td>
- <div class="row">
- <div class="col-sm-5">
- <div class="multiselect-selected-title"><span class="fa fa-globe"></span><span class="multiselect-selected-title-text"><?php echo $langs->trans("EntitiesSelected"); ?></span></div>
- <?php echo $this->tpl['multiselect_to_' . $element]; ?>
- </div>
- <div class="col-xs-2 multiselect-menu">
- <!-- <button type="button" id="multiselect_shared_<?php //echo $element; ?>_undo" class="btn btn-primary btn-block"><?php //echo $langs->trans("Undo"); ?></button> -->
- <button type="button" id="multiselect_shared_<?php echo $element; ?>_leftAll" class="btn btn-block multiselect-menu-btn-color"><i class="glyphicon glyphicon-backward"></i></button>
- <button type="button" id="multiselect_shared_<?php echo $element; ?>_leftSelected" class="btn btn-block multiselect-menu-btn-color"><i class="glyphicon glyphicon-chevron-left"></i></button>
- <button type="button" id="multiselect_shared_<?php echo $element; ?>_rightSelected" class="btn btn-block multiselect-menu-btn-color"><i class="glyphicon glyphicon-chevron-right"></i></button>
- <button type="button" id="multiselect_shared_<?php echo $element; ?>_rightAll" class="btn btn-block multiselect-menu-btn-color"><i class="glyphicon glyphicon-forward"></i></button>
- <!-- <button type="button" id="multiselect_shared_<?php //echo $element; ?>_redo" class="btn btn-warning btn-block"><?php //echo $langs->trans("Redo"); ?></button> -->
- </div>
- <div class="col-xs-5">
- <div class="multiselect-available-title"><span class="fa fa-globe"></span><span class="multiselect-available-title-text"><?php echo $langs->trans("EntitiesAvailable"); ?></span></div>
- <?php echo $this->tpl['multiselect_from_' . $element]; ?>
- </div>
- </div>
- </td>
- </tr>
- <?php if (!empty($conf->global->MULTICOMPANY_TEMPLATE_MANAGEMENT)) { ?>
- <tr class="oddeven template-field<?php echo (!empty($this->tpl['template']) && $this->tpl['template'] === 1 ? '' : ' hideobject') ?>">
- <td class="tdtop"><?php echo $langs->trans("AddNewEntityInAllOtherEntities"); ?></td>
- <td><?php echo $this->tpl['addtoallother_' . $element]; ?></td>
- </tr>
- <tr class="multiselect-separator template-field<?php echo (!empty($this->tpl['template']) && $this->tpl['template'] === 1 ? '' : ' hideobject') ?>"><td colspan="2"> </td></tr>
- <?php } ?>
- <?php } } ?>
- <?php
- foreach($this->sharingelements as $element => $params) {
- if ($params['type'] !== 'element' && !empty($this->tpl['multiselect_from_' . $element])) {
- $uppername = strtoupper($element);
- $icon = (!empty($params['icon'])?$params['icon']:'edit');
- ?>
- <tr class="liste_titre">
- <td colspan="2"><span class="fa fa-<?php echo $icon; ?>"></span><span class="multiselect-title"><?php echo $langs->trans($uppername . "Sharing"); ?></span></td>
- </tr>
- <tr class="oddeven">
- <td class="tdtop"><?php echo $langs->trans($uppername . "SharingDescription"); ?></td>
- <td>
- <div class="row">
- <div class="col-sm-5">
- <div class="multiselect-selected-title"><span class="fa fa-globe"></span><span class="multiselect-selected-title-text"><?php echo $langs->trans("EntitiesSelected"); ?></span></div>
- <?php echo $this->tpl['multiselect_to_' . $element]; ?>
- </div>
- <div class="col-xs-2 multiselect-menu">
- <!-- <button type="button" id="multiselect_shared_<?php //echo $element; ?>_undo" class="btn btn-primary btn-block"><?php //echo $langs->trans("Undo"); ?></button> -->
- <button type="button" id="multiselect_shared_<?php echo $element; ?>_leftAll" class="btn btn-block multiselect-menu-btn-color"><i class="glyphicon glyphicon-backward"></i></button>
- <button type="button" id="multiselect_shared_<?php echo $element; ?>_leftSelected" class="btn btn-block multiselect-menu-btn-color"><i class="glyphicon glyphicon-chevron-left"></i></button>
- <button type="button" id="multiselect_shared_<?php echo $element; ?>_rightSelected" class="btn btn-block multiselect-menu-btn-color"><i class="glyphicon glyphicon-chevron-right"></i></button>
- <button type="button" id="multiselect_shared_<?php echo $element; ?>_rightAll" class="btn btn-block multiselect-menu-btn-color"><i class="glyphicon glyphicon-forward"></i></button>
- <!-- <button type="button" id="multiselect_shared_<?php //echo $element; ?>_redo" class="btn btn-warning btn-block"><?php //echo $langs->trans("Redo"); ?></button> -->
- </div>
- <div class="col-xs-5">
- <div class="multiselect-available-title"><span class="fa fa-globe"></span><span class="multiselect-available-title-text"><?php echo $langs->trans("EntitiesAvailable"); ?></span></div>
- <?php echo $this->tpl['multiselect_from_' . $element]; ?>
- </div>
- </div>
- </td>
- </tr>
- <?php
- if ($params['type'] === 'objectnumber') {
- $constname = 'MULTICOMPANY_'.strtoupper($element).'_SHARING_ENABLED';
- if (!empty($conf->global->$constname)) {
- ?>
- <tr class="oddeven">
- <td class="tdtop"><?php echo $langs->trans("ReferringEntityForElementNumber"); ?></td>
- <td><?php echo $this->tpl['select_'.$element.'_entity']; ?></td>
- </tr>
- <tr class="multiselect-separator"><td colspan="2"> </td></tr>
- <?php } } ?>
- <?php if (!empty($conf->global->MULTICOMPANY_TEMPLATE_MANAGEMENT)) { ?>
- <tr class="oddeven template-field<?php echo (!empty($this->tpl['template']) && $this->tpl['template'] === 1 ? '' : ' hideobject') ?>">
- <td class="tdtop"><?php echo $langs->trans("AddNewEntityInAllOtherEntities"); ?></td>
- <td><?php echo $this->tpl['addtoallother_' . $element]; ?></td>
- </tr>
- <tr class="multiselect-separator template-field<?php echo (!empty($this->tpl['template']) && $this->tpl['template'] === 1 ? '' : ' hideobject') ?>"><td colspan="2"> </td></tr>
- <?php } ?>
- <?php } } } ?>
- </table>
- </div>
- <div class="tabsAction">
- <?php if ($this->tpl['action'] === 'create') { ?>
- <input type="submit" class="butAction linkobject" name="add" value="<?php echo $langs->trans('Add'); ?>" />
- <input type="submit" class="butAction linkobject" name="addandstay" value="<?php echo $langs->trans("AddAndStay"); ?>" />
- <?php } else { ?>
- <input type="submit" class="butAction linkobject" name="updateandstay" value="<?php echo $langs->trans('UpdateAndStay'); ?>" />
- <input type="submit" class="butAction linkobject" name="update" value="<?php echo $langs->trans('Update'); ?>" />
- <input type="submit" class="butAction linkobject" name="cancelandstay" value="<?php echo $langs->trans("CancelAndStay"); ?>" />
- <?php } ?>
- <input type="submit" class="butAction linkobject" name="cancel" value="<?php echo $langs->trans("Cancel"); ?>" />
- </div>
- </form>
- <!-- END PHP TEMPLATE -->
|