2018-02-22 11:07:52 +01:00
< ? php
include_once __DIR__ . '/../../core.php' ;
echo '
< form action = " " class = " text-right " method = " post " id = " form-copy " >
< input type = " hidden " name = " backto " value = " record-edit " >
< input type = " hidden " name = " op " value = " copy " >
</ form >
< button type = " button " class = " btn btn-primary " onclick = " if( confirm( \ 'Duplicare questa fattura? \ ') ) { $ ( \ '#form-copy \ ').submit(); } " >
< i class = " fa fa-copy " ></ i > '.tr(' Duplica fattura ').'
</ button > ' ;
2018-07-03 17:28:02 +02:00
2018-07-18 15:20:10 +02:00
if ( $dir == 'entrata' && empty ( $record [ 'ref_documento' ]) && $record [ 'stato' ] == 'Emessa' ) {
2018-07-03 17:28:02 +02:00
echo '
< div class = " btn-group " >
2018-07-04 17:56:51 +02:00
< button type = " button " class = " btn btn-primary unblockable dropdown-toggle " data - toggle = " dropdown " aria - haspopup = " true " aria - expanded = " false " >
2018-07-03 17:28:02 +02:00
< i class = " fa fa-magic " ></ i > '.tr(' Crea ').' < span class = " caret " ></ span >
< span class = " sr-only " > Toggle Dropdown </ span >
</ button >
< ul class = " dropdown-menu dropdown-menu-right " >
< li >< a href = " '. $rootdir .'/editor.php?id_module='. $id_module .'&id_record='. $id_record .'&op=nota_addebito&backto=record-edit " >
2018-07-05 17:56:38 +02:00
'.tr(' Nota di debito ').'
2018-07-03 17:28:02 +02:00
</ a ></ li >
2018-07-05 17:56:38 +02:00
< li >< a data - href = " '. $rootdir .'/modules/fatture/crea_documento.php?id_module='. $id_module .'&id_record='. $id_record .'&iddocumento='. $id_record .' " data - title = " Aggiungi nota di credito " data - target = " #bs-popup " >
'.tr(' Nota di credito ').'
2018-07-03 17:28:02 +02:00
</ a ></ li >
</ ul >
</ div > ' ;
}