2018-05-19 00:50:06 +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 />.
*/
2018-05-19 00:50:06 +02:00
include_once __DIR__ . '/../../core.php' ;
2021-03-26 09:42:43 +01:00
$stati = $dbo -> fetchArray ( 'SELECT descrizione FROM `or_statiordine` WHERE `is_fatturabile` = 1' );
2021-03-29 10:07:45 +02:00
foreach ( $stati as $stato ) {
2021-03-26 09:42:43 +01:00
$stati_importabili [] = $stato [ 'descrizione' ];
}
2020-07-31 15:07:49 +02:00
2019-02-14 17:49:58 +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 dell ' ordine deve essere tra : _STATE_LIST_ " , [
2021-03-26 09:42:43 +01:00
'_STATE_LIST_' => implode ( ', ' , $stati_importabili ),
2020-07-31 15:07:49 +02:00
]) . ' " >
2021-03-26 09:42:43 +01:00
< button class = " btn btn-info dropdown-toggle '.(in_array( $record['stato'] , $stati_importabili ) ? '' : 'disabled').' " type = " button " data - toggle = " dropdown " aria - haspopup = " true " aria - expanded = " true " >
2020-07-31 14:57:23 +02:00
< i class = " fa fa-magic " ></ i > '.tr(' Crea ').'
2018-05-19 00:50:06 +02:00
< span class = " caret " ></ span >
</ button >
2020-07-31 10:30:38 +02:00
< ul class = " dropdown-menu dropdown-menu-right " >
< li >
< a data - href = " '. $structure->fileurl ('crea_documento.php').'?id_module='. $id_module .'&id_record='. $id_record .'&documento=intervento " data - toggle = " modal " data - title = " '.tr('Crea attività').' " >
2020-07-31 14:57:23 +02:00
< i class = " fa fa-wrench " ></ i > '.tr(' Attività ').'
2020-07-31 10:30:38 +02:00
</ a >
2021-01-13 16:53:32 +01:00
</ li > ' ;
2021-02-18 18:48:44 +01:00
if ( $dir == 'entrata' ) {
2021-01-13 16:53:32 +01:00
echo '
2020-02-14 12:23:50 +01:00
< li >
2020-07-31 10:30:38 +02:00
< a 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').' " >
2020-07-31 14:57:23 +02:00
< i class = " fa fa-file-o " ></ i > '.tr(' Ordine fornitore ').'
2020-02-14 12:23:50 +01:00
</ a >
2021-01-13 16:53:32 +01:00
</ li > ' ;
2021-02-18 18:48:44 +01:00
} else {
2021-01-13 16:53:32 +01:00
/* echo '
2019-02-14 17:49:58 +01:00
< li >
2021-01-13 16:53:32 +01:00
< a 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').' " >
< i class = " fa fa-file-o " ></ i > '.tr(' Ordine cliente ').'
</ a >
</ li > ' ; */
}
echo '
< li >
2020-07-31 10:30:38 +02:00
< a data - href = " '. $structure->fileurl ('crea_documento.php').'?id_module='. $id_module .'&id_record='. $id_record .'&documento=ddt " data - toggle = " modal " data - title = " '.tr('Crea ddt').' " >
2020-07-31 14:57:23 +02:00
< i class = " fa fa-truck " ></ i > '.tr(' Ddt ').'
2019-02-14 17:49:58 +01:00
</ a >
2020-07-31 10:30:38 +02:00
</ li >
2018-05-19 00:50:06 +02:00
2019-02-14 17:49:58 +01:00
< li >
2020-07-31 10:30:38 +02:00
< a 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-14 17:49:58 +01:00
</ a >
2020-07-31 10:30:38 +02:00
</ li >
2019-02-14 17:49:58 +01:00
</ ul >
</ div > ' ;