openstamanager/modules/impianti/buttons.php

41 lines
1.8 KiB
PHP
Raw Normal View History

2019-05-03 16:31:58 +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-03 16:31:58 +02:00
include_once __DIR__.'/../../core.php';
2021-02-18 18:48:44 +01:00
echo '
2023-10-27 15:09:49 +02:00
<button type="button" class="btn btn-primary" onclick="if( confirm(\'Duplicare questo impianto?\') ){ $(\'#copia-impianto\').submit(); }"> <i class="fa fa-copy"></i> '.tr('Duplica impianto').'</button>
<button type="button" class="btn btn-primary" onclick="if( confirm(\'Confermando, tutte le checklist della categoria verranno importate in questo impianto. Continuare?\') ){ $(\'#check-impianto\').submit(); }"> <i class="fa fa-refresh"></i> '.tr('Importa checklist categoria').'</button>';
2019-05-03 16:31:58 +02:00
// Duplica impianto
echo '
<form action="" method="post" id="copia-impianto">
<input type="hidden" name="backto" value="record-edit">
<input type="hidden" name="op" value="copy">
2019-05-04 03:29:43 +02:00
</form>';
2023-10-27 15:09:49 +02:00
// Importa checklist categoria
echo '
<form action="" method="post" id="check-impianto">
<input type="hidden" name="backto" value="record-edit">
<input type="hidden" name="op" value="sync_checklist">
<input type="hidden" name="id_categoria" value="'.$record['id_categoria'].'">
</form>';