2018-02-22 11:07:52 +01:00
< ? php
include_once __DIR__ . '/../../core.php' ;
2018-06-26 14:30:26 +02:00
$rs_documento = $dbo -> fetchArray ( 'SELECT * FROM co_righe_documenti WHERE idcontratto=' . prepare ( $id_record ));
if ( sizeof ( $rs_documento ) > 0 ) {
echo '
< button type = " button " class = " btn btn-info " disabled >
< i class = " fa fa-magic " ></ i > '.tr(' Crea fattura ').' ...
2018-03-27 18:34:49 +02:00
</ button > ' ;
2018-06-26 14:30:26 +02:00
} else {
2018-03-27 18:34:49 +02:00
echo "
< button type = \ " button \" class= \" btn btn-info \" onclick= \" if( confirm('Creare una fattura per questo contratto?') ) { fattura_da_contratto();} \" >
< i class = \ " fa fa-magic \" ></i> " . tr ( 'Crea fattura' ) . ' ...
</ button > ' ;
}
2018-07-18 15:20:10 +02:00
if ( $record [ 'rinnovabile' ]) {
2018-09-03 16:49:43 +02:00
$rinnova = ! empty ( $record [ 'data_accettazione' ]) && ! empty ( $record [ 'data_conclusione' ]) && $record [ 'data_accettazione' ] != '0000-00-00' && $record [ 'data_conclusione' ] != '0000-00-00' ;
2018-08-31 11:39:38 +02:00
echo '
< div class = " tip " data - toggle = " tooltip " title = " '.tr('Il contratto è rinnovabile se sono definite le date di accettazione e conclusione').' " style = " display:inline; " >
2018-09-03 16:49:43 +02:00
< button type = " button " class = " btn btn-warning ask '.( $rinnova ? '' : 'disabled').' " data - backto = " record-edit " data - op = " renew " data - msg = " '.tr('Rinnovare questo contratto?').' " data - button = " Rinnova " data - class = " btn btn-lg btn-warning " '.($rinnova ? ' ' : ' disabled ').' >
2018-08-31 11:39:38 +02:00
< i class = " fa fa-refresh " ></ i > '.tr(' Rinnova ').' ...
</ button >
</ div > ' ;
2018-02-22 11:07:52 +01:00
}