2018-06-11 22:33:36 +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-07-15 10:58:36 +02: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 />.
*/
2018-06-11 22:33:36 +02:00
include_once __DIR__ . '/../../core.php' ;
2021-07-07 07:57:10 +02:00
echo '
2020-07-31 08:56:41 +02:00
< button type = " button " class = " btn btn-primary " onclick = " if( confirm( \ 'Duplicare questo preventivo? \ ') ) { $ ( \ '#copia-preventivo \ ').submit(); } " >
< i class = " fa fa-copy " ></ i > '.tr(' Duplica preventivo ').'
</ button > ' ;
2018-12-23 14:01:59 +01:00
2020-07-09 18:50:10 +02:00
$stati_abilitati = $dbo -> fetchOne ( 'SELECT GROUP_CONCAT(`descrizione` SEPARATOR ", ") AS stati_abilitati FROM `co_statipreventivi` WHERE `is_revisionabile` = 1 ' )[ 'stati_abilitati' ];
2019-11-12 16:58:45 +01:00
// Crea revisione
2020-04-01 15:38:51 +02:00
echo '
2020-07-20 17:26:50 +02:00
< div class = " tip " data - toggle = " tooltip " title = " '.tr('Per creare una nuova revisione lo stato del preventivo deve essere tra: _STATE_LIST_', [
'_STATE_LIST_' => $stati_abilitati ,
]) . ' " >
2021-04-26 13:24:35 +02:00
< button type = " button " class = " btn btn-warning '.( $record['is_revisionabile'] ? '' : 'disabled').' " onclick = " openModal( \ ''.tr('Crea revisione').' \ ', \ ''. $module->fileurl ('crea_revisione.php').'?id_module='. $id_module .'&id_record='. $id_record .' \ ') " >
< i class = " fa fa-edit " ></ i > '.tr(' Crea nuova revisione ... ').'
2020-07-20 17:26:50 +02:00
</ button >
</ div > ' ;
2018-12-07 10:47:44 +01:00
2019-11-12 16:58:45 +01:00
$rs_documento = $dbo -> fetchArray ( 'SELECT * FROM co_righe_preventivi WHERE idpreventivo=' . prepare ( $id_record ));
$disabled = ( $record [ 'is_fatturabile' ] || $record [ 'is_completato' ]) && ! empty ( $rs_documento );
$stati_abilitati = $dbo -> fetchOne ( 'SELECT GROUP_CONCAT(`descrizione` SEPARATOR ", ") AS stati_abilitati FROM `co_statipreventivi` WHERE `is_fatturabile` = 1 OR `is_completato` = 1 ' )[ 'stati_abilitati' ];
2019-02-12 15:00:08 +01:00
// Creazione altri documenti
2019-01-24 20:31:01 +01:00
echo '
2020-07-31 15:07:49 +02:00
< div class = " btn-group tip " data - toggle = " tooltip " title = " '.tr('Per creare un documento deve essere inserita almeno una riga e lo stato del preventivo deve essere tra: _STATE_LIST_', [
2020-07-20 17:26:50 +02:00
'_STATE_LIST_' => $stati_abilitati ,
]) . ' " >
< button class = " btn btn-info dropdown-toggle '.( $disabled ? '' : 'disabled').' " type = " button " data - toggle = " dropdown " aria - haspopup = " true " aria - expanded = " true " >
2019-02-14 17:49:58 +01:00
< i class = " fa fa-magic " ></ i >& nbsp ; '.tr(' Crea ').' ...
< span class = " caret " ></ span >
</ button >
< ul class = " dropdown-menu dropdown-menu-right " >
2020-07-31 08:56:41 +02:00
< li >
< a class = " '.( $disabled ? '' : 'disabled').' " data - href = " '. $structure->fileurl ('crea_documento.php').'?id_module='. $id_module .'&id_record='. $id_record .'&documento=contratto " data - toggle = " modal " data - title = " '.tr('Crea contratto').' " >
2020-07-31 14:57:23 +02:00
< i class = " fa fa-file-o " ></ i > '.tr(' Contratto ').'
2020-07-02 15:27:18 +02:00
</ a >
</ li >
2019-01-24 20:31:01 +01:00
< li >
2021-05-11 11:50:44 +02:00
< a class = " '.( $disabled ? '' : 'disabled').' " data - href = " '. $structure->fileurl ('crea_documento.php').'?id_module='. $id_module .'&id_record='. $id_record .'&documento=ordine_cliente " data - toggle = " modal " data - title = " '.tr('Crea ordine cliente').' " >
2020-07-31 14:57:23 +02:00
< i class = " fa fa-file-o " ></ i > '.tr(' Ordine cliente ').'
2019-02-14 17:49:58 +01:00
</ a >
2021-05-11 11:50:44 +02:00
</ li >
2021-07-15 10:58:36 +02:00
2021-05-11 11:50:44 +02:00
< li >
< a class = " '.( $disabled ? '' : 'disabled').' " data - href = " '. $structure->fileurl ('crea_documento.php').'?id_module='. $id_module .'&id_record='. $id_record .'&documento=ordine_fornitore " data - toggle = " modal " data - title = " '.tr('Crea ordine fornitore').' " >
< i class = " fa fa-file-o " ></ i > '.tr(' Ordine fornitore ').'
</ a >
</ li >
2020-07-02 15:27:18 +02:00
2020-07-31 08:56:41 +02:00
< li >
< a class = " '.( $disabled ? '' : 'disabled').' " data - href = " '. $structure->fileurl ('crea_documento.php').'?id_module='. $id_module .'&id_record='. $id_record .'&documento=ddt " data - toggle = " modal " data - title = " '.tr('Crea ordine cliente').' " >
2020-07-31 14:57:23 +02:00
< i class = " fa fa-truck " ></ i > '.tr(' DDT in uscita ').'
2020-07-31 08:56:41 +02:00
</ a >
</ li >
2019-02-12 15:00:08 +01:00
< li >
2019-02-14 17:49:58 +01:00
< a class = " '.( $disabled ? '' : 'disabled').' " data - href = " '. $structure->fileurl ('crea_documento.php').'?id_module='. $id_module .'&id_record='. $id_record .'&documento=fattura " data - toggle = " modal " data - title = " '.tr('Crea fattura').' " >
2020-07-31 14:57:23 +02:00
< i class = " fa fa-file " ></ i > '.tr(' Fattura ').'
2019-02-12 15:00:08 +01:00
</ a >
</ li >
2019-01-24 20:31:01 +01:00
</ ul >
</ div > ' ;
2019-02-12 15:00:08 +01:00
// Duplica preventivo
2018-12-07 10:47:44 +01:00
echo '
2019-02-12 15:00:08 +01:00
< form action = " " method = " post " id = " copia-preventivo " >
2018-12-07 10:47:44 +01:00
< input type = " hidden " name = " backto " value = " record-edit " >
< input type = " hidden " name = " op " value = " copy " >
</ form > ' ;