openstamanager/modules/viste/filters.php

164 lines
6.3 KiB
PHP
Raw Permalink Normal View History

2019-05-10 23:47:45 +02:00
<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright (C) DevCode s.r.l.
2020-09-07 15:04:06 +02:00
*
* 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/>.
*/
2019-05-10 23:47:45 +02:00
2024-03-22 15:52:24 +01:00
use Models\Clause;
2024-03-12 17:16:07 +01:00
2019-05-10 23:47:45 +02:00
echo '
<form action="" method="post" role="form">
<input type="hidden" name="backto" value="record-edit">
<input type="hidden" name="op" value="filters">
2019-05-10 23:47:45 +02:00
<div class="data">';
$num = 0;
2024-03-12 17:16:07 +01:00
$additionals = Clause::where('idmodule', $record['id'])->get();
2019-11-13 19:27:25 +01:00
2019-11-15 15:11:20 +01:00
if (!empty($additionals)) {
foreach ($additionals as $num => $additional) {
$editable = !($additional['default'] && $enable_readonly);
2019-11-13 19:27:25 +01:00
2019-11-15 15:11:20 +01:00
echo '
2024-05-16 18:02:50 +02:00
<div class="card collapsed-card card-'.($additional['enabled'] ? 'success' : 'danger').'">
<div class="card-header with-border">
<h3 class="card-title">'.
2019-11-23 08:23:34 +01:00
tr('Filtro: _NAME_', [
2024-03-22 15:52:24 +01:00
'_NAME_' => $additional['name'],
]).'
2019-11-23 08:23:34 +01:00
</h3>
2024-05-16 18:02:50 +02:00
<div class="card-tools pull-right">
2024-05-23 17:51:21 +02:00
<button type="button" class="btn btn-tool" data-widget="collapse">
2019-11-23 08:23:34 +01:00
<i class="fa fa-plus"></i>
</button>
</div>';
2019-11-15 15:11:20 +01:00
if ($editable) {
echo '
2019-05-10 23:47:45 +02:00
<a class="btn btn-danger ask pull-right" data-backto="record-edit" data-op="delete_filter" data-id="'.$additional['id'].'">
<i class="fa fa-trash"></i> '.tr('Elimina').'
</a>';
2019-11-15 15:11:20 +01:00
}
2019-05-10 23:47:45 +02:00
2019-11-15 15:11:20 +01:00
echo '
2019-05-10 23:47:45 +02:00
<a class="btn btn-warning ask pull-right" data-backto="record-edit" data-msg="'.($additional['enabled'] ? tr('Disabilitare questo elemento?') : tr('Abilitare questo elemento?')).'" data-op="change" data-id="'.$additional['id'].'" data-class="btn btn-lg btn-warning" data-button="'.($additional['enabled'] ? tr('Disabilita') : tr('Abilita')).'">
<i class="fa fa-eye-slash"></i> '.($additional['enabled'] ? tr('Disabilita') : tr('Abilita')).'
</a>';
2019-11-15 15:11:20 +01:00
echo '
2019-05-10 23:47:45 +02:00
</div>
2024-05-16 18:02:50 +02:00
<div id="additional-'.$additional['id'].'" class="card-body collapse">
2019-05-10 23:47:45 +02:00
<div class="row">
<div class="col-md-12">
{[ "type": "textarea", "label": "'.tr('Query').'", "name": "query['.$num.']", "value": "'.prepareToField($additional['clause']).'"';
2019-11-15 15:11:20 +01:00
if (!$editable) {
echo ', "readonly": '.intval(!$editable).'';
}
echo ' ]}
2019-05-10 23:47:45 +02:00
</div>
</div>
<div class="row">
<input type="hidden" value="'.$additional['id'].'" name="id['.$num.']">
<div class="col-md-6">
{[ "type": "text", "label": "'.tr('Name').'", "name": "name['.$num.']", "value": "'.$additional['name'].'" ]}
</div>
<div class="col-md-3">
2024-04-18 17:44:05 +02:00
{[ "type": "select", "label": "'.tr('Gruppo').'", "name": "gruppo['.$num.']", "values": "query=SELECT `zz_groups`.`id`, `title` AS descrizione FROM `zz_groups` LEFT JOIN `zz_groups_lang` ON (`zz_groups`.`id` = `zz_groups_lang`.`id_record` AND `zz_groups_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).') ORDER BY `zz_groups`.`id` ASC", "value": "'.$additional['idgruppo'].'", "readonly": '.intval(!$editable).' ]}
2019-05-10 23:47:45 +02:00
</div>
<div class="col-md-3">
2019-06-04 19:00:44 +02:00
{[ "type": "select", "label": "'.tr('Posizione').'", "name": "position['.$num.']", "values": "list=\"0\":\"'.tr('WHERE').'\",\"1\": \"'.tr('HAVING').'\"", "value": "'.$additional['position'].'", "readonly": '.intval(!$editable).' ]}
2019-05-10 23:47:45 +02:00
</div>
</div>
</div>
</div>';
2019-11-15 15:11:20 +01:00
}
} else {
2019-11-13 19:27:25 +01:00
echo '<br>
<div class="alert alert-info">
<i class="fa fa-info-circle"></i>
<b>'.tr('Informazione:').'</b> '.tr('Nessun filtro per questo modulo').'.
</div>';
}
2019-05-10 23:47:45 +02:00
echo '
</div>
<div class="row">
<div class="col-md-12 text-right">
<button type="button" class="btn btn-info" id="add_filter">
<i class="fa fa-plus"></i> '.tr('Aggiungi nuovo filtro').'
</button>
<button type="submit" class="btn btn-success">
<i class="fa fa-check"></i> '.tr('Salva').'
</button>
</div>
</div>
</form>';
echo '
<form class="hide" id="template_filter">
2024-05-16 18:02:50 +02:00
<div class="card">
<div class="card-header with-border">
<h3 class="card-title">'.tr('Nuovo filtro').'</h3>
2019-05-10 23:47:45 +02:00
</div>
2024-05-16 18:02:50 +02:00
<div class="card-body">
2019-05-10 23:47:45 +02:00
<div class="row">
<div class="col-md-12">
{[ "type": "textarea", "label": "'.tr('Query').'", "name": "query[-id-]" ]}
</div>
</div>
<div class="row">
<input type="hidden" value="" name="id[-id-]">
<div class="col-md-6">
{[ "type": "text", "label": "'.tr('Nome').'", "name": "name[-id-]" ]}
</div>
<div class="col-md-3">
2024-04-18 17:44:05 +02:00
{[ "type": "select", "label": "'.tr('Gruppo').'", "name": "gruppo[-id-]", "values": "query=SELECT `zz_groups`.`id`, `title` AS descrizione FROM `zz_groups` LEFT JOIN `zz_groups_lang` ON (`zz_groups`.`id` = `zz_groups_lang`.`id_record` AND `zz_groups_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).') ORDER BY `zz_groups`.`id` ASC" ]}
2019-05-10 23:47:45 +02:00
</div>
<div class="col-md-3">
{[ "type": "select", "label": "'.tr('Posizione').'", "name": "position[-id-]", "values": "list=\"0\":\"'.tr('WHERE').'\",\"1\": \"'.tr('HAVING').'\"" ]}
</div>
</div>
</div>
</div>
</form>';
echo '
<script>
var i = '.$num.';
$(document).on("click", "#add_filter", function() {
2019-07-26 17:40:52 +02:00
cleanup_inputs();
2019-05-10 23:47:45 +02:00
i++;
var text = replaceAll($("#template_filter").html(), "-id-", "" + i);
$(this).parent().parent().parent().find(".data").append(text);
2019-07-26 17:40:52 +02:00
restart_inputs();
2019-05-10 23:47:45 +02:00
});
</script>';