2018-05-19 00:50:06 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
2019-02-14 17:49:58 +01:00
echo '
2020-07-31 14:57:23 +02:00
< div class = " btn-group " >
2020-02-13 12:44:32 +01:00
< button class = " btn btn-info dropdown-toggle '.(!in_array( $record['stato'] , ['Fatturato', 'Evaso', 'Bozza']) ? '' : '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 >
</ li >
2018-07-03 11:37:15 +02:00
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 >
2020-07-31 10:30:38 +02:00
</ li >
2020-02-14 12:23:50 +01: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=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 > ' ;