2017-08-04 16:28:16 +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 />.
*/
2017-08-04 16:28:16 +02:00
include_once __DIR__ . '/../../core.php' ;
2019-07-24 12:42:45 +02:00
$block_edit = $record [ 'is_completato' ];
2020-04-01 17:17:26 +02:00
// Mostro un avviso se ci sono più revisioni del preventivo
2020-04-01 17:28:21 +02:00
if ( count ( $preventivo -> revisioni ) > 1 ) {
2020-04-01 17:17:26 +02:00
echo '
< div class = " alert alert-info " >
2020-07-07 17:32:03 +02:00
< i class = " fa fa-info-circle " ></ i >
2020-04-14 08:49:48 +02:00
'.tr(' Questo preventivo presenta _N_ revisioni ' ,
2020-04-01 17:17:26 +02:00
[
2020-04-14 08:49:48 +02:00
'_N_' => count ( $preventivo -> revisioni ),
2020-04-01 17:17:26 +02:00
]) . '
</ div >
' ;
}
2018-02-23 16:04:50 +01:00
?> <form action="" method="post" id="edit-form">
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " backto " value = " record-edit " >
< input type = " hidden " name = " op " value = " update " >
2018-02-18 19:53:23 +01:00
< input type = " hidden " name = " id_record " value = " <?php echo $id_record ; ?> " >
2017-08-04 16:28:16 +02:00
<!-- DATI INTESTAZIONE -->
< div class = " panel panel-primary " >
< div class = " panel-heading " >
2019-07-24 12:42:45 +02:00
< h3 class = " panel-title " >< ? php echo tr ( 'Intestazione' ); ?> </h3>
2017-08-04 16:28:16 +02:00
</ div >
< div class = " panel-body " >
< div class = " row " >
2019-07-24 12:42:45 +02:00
< div class = " col-md-3 " >
2020-04-14 08:49:48 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Numero'); ?> " , " name " : " numero " , " required " : 1 , " class " : " text-center " , " value " : " $numero $ " , " icon-after " : " <?php echo (count( $preventivo->revisioni ) > 1) ? tr('rev.').' '. $preventivo->numero_revision : ''; ?> " ]}
2017-08-04 16:28:16 +02:00
</ div >
2019-07-24 12:42:45 +02:00
< div class = " col-md-3 " >
2021-09-07 18:34:34 +02:00
{[ " type " : " date " , " label " : " <?php echo tr('Data bozza'); ?> " , " name " : " data_bozza " , " required " : 1 , " value " : " $data_bozza $ " ]}
2019-07-24 12:42:45 +02:00
</ div >
< div class = " col-md-2 " >
{[ " type " : " date " , " label " : " <?php echo tr('Data accettazione'); ?> " , " name " : " data_accettazione " , " value " : " $data_accettazione $ " ]}
</ div >
< div class = " col-md-2 " >
2020-07-07 18:07:56 +02:00
{[ " type " : " date " , " label " : " <?php echo tr('Data conclusione'); ?> " , " name " : " data_conclusione " , " value " : " $data_conclusione $ " , " disabled " : " <?php echo $preventivo->isDataConclusioneAutomatica () ? '1 " , " help " : " '.tr('La Data di conclusione è calcolata in automatico in base al valore del campo Validità') : 0; ?> " ]}
2019-07-24 12:42:45 +02:00
</ div >
< div class = " col-md-2 " >
{[ " type " : " date " , " label " : " <?php echo tr('Data rifiuto'); ?> " , " name " : " data_rifiuto " , " value " : " $data_rifiuto $ " ]}
</ div >
2019-04-08 18:50:28 +02:00
</ div >
2019-11-29 18:21:31 +01:00
2020-07-31 14:25:50 +02:00
< ? php
echo '
2019-04-08 18:50:28 +02:00
< div class = " row " >
2019-07-24 12:42:45 +02:00
< div class = " col-md-3 " >
2020-07-31 14:25:50 +02:00
'.Modules::link(' Anagrafiche ', $record[' idanagrafica '], null, null, ' class = " pull-right " ').'
{[ " type " : " select " , " label " : " '.tr('Cliente').' " , " name " : " idanagrafica " , " required " : 1 , " value " : " $idanagrafica $ " , " ajax-source " : " clienti " ]}
2019-07-24 12:42:45 +02:00
</ div >
< div class = " col-md-3 " >
2020-07-31 14:25:50 +02:00
{[ " type " : " select " , " label " : " '.tr('Sede').' " , " name " : " idsede " , " value " : " $idsede $ " , " ajax-source " : " sedi " , " select-options " : { " idanagrafica " : '.$record[' idanagrafica '].' }, " placeholder " : " Sede legale " ]}
2019-07-24 12:42:45 +02:00
</ div >
2020-07-31 14:25:50 +02:00
< div class = " col-md-3 " > ' ;
2019-07-23 16:12:46 +02:00
if ( ! empty ( $record [ 'idreferente' ])) {
echo Plugins :: link ( 'Referenti' , $record [ 'idanagrafica' ], null , null , 'class="pull-right"' );
}
2020-07-31 16:13:24 +02:00
echo '
{[ " type " : " select " , " label " : " '.tr('Referente').' " , " name " : " idreferente " , " value " : " $idreferente $ " , " ajax-source " : " referenti " , " select-options " : { " idanagrafica " : '.$record[' idanagrafica '].' } ]}
2019-04-08 18:50:28 +02:00
</ div >
2019-11-29 18:21:31 +01:00
2020-07-31 16:13:24 +02:00
< div class = " col-md-3 " > ' ;
2018-07-18 15:20:10 +02:00
if ( $record [ 'idagente' ] != 0 ) {
echo Modules :: link ( 'Anagrafiche' , $record [ 'idagente' ], null , null , 'class="pull-right"' );
2018-02-04 17:26:25 +01:00
}
2020-07-31 16:13:24 +02:00
echo '
{[ " type " : " select " , " label " : " '.tr('Agente').' " , " name " : " idagente " , " values " : " query=SELECT an_anagrafiche.idanagrafica AS id, ragione_sociale AS descrizione FROM an_anagrafiche INNER JOIN (an_tipianagrafiche_anagrafiche INNER JOIN an_tipianagrafiche ON an_tipianagrafiche_anagrafiche.idtipoanagrafica=an_tipianagrafiche.idtipoanagrafica) ON an_anagrafiche.idanagrafica=an_tipianagrafiche_anagrafiche.idanagrafica WHERE descrizione= \ 'Agente \ ' AND deleted_at IS NULL ORDER BY ragione_sociale " , " value " : " $idagente $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
2020-07-31 16:13:24 +02:00
</ div > ' ;
?>
2017-08-04 16:28:16 +02:00
2019-07-24 12:42:45 +02:00
< div class = " row " >
< div class = " col-md-6 " >
{[ " type " : " text " , " label " : " <?php echo tr('Nome'); ?> " , " name " : " nome " , " required " : 1 , " value " : " $nome $ " ]}
</ div >
< div class = " col-md-3 " >
2020-11-06 10:46:42 +01:00
< ? php
if ( ! empty ( $record [ 'idpagamento' ])) {
2020-11-04 18:31:43 +01:00
echo Modules :: link ( 'Pagamenti' , $record [ 'idpagamento' ], null , null , 'class="pull-right"' );
2020-11-06 10:46:42 +01:00
}
2020-11-04 18:31:43 +01:00
?>
2019-07-24 12:42:45 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Pagamento'); ?> " , " name " : " idpagamento " , " values " : " query=SELECT id, descrizione FROM co_pagamenti GROUP BY descrizione ORDER BY descrizione " , " value " : " $idpagamento $ " ]}
</ div >
< div class = " col-md-3 " >
{[ " type " : " select " , " label " : " <?php echo tr('Stato'); ?> " , " name " : " idstato " , " required " : 1 , " values " : " query=SELECT id, descrizione FROM co_statipreventivi " , " value " : " $idstato $ " , " class " : " unblockable " ]}
</ div >
</ div >
2017-08-04 16:28:16 +02:00
< div class = " row " >
2019-04-08 18:50:28 +02:00
< div class = " col-md-3 " >
2020-07-07 18:07:56 +02:00
{[ " type " : " number " , " label " : " <?php echo tr('Validità offerta'); ?> " , " name " : " validita " , " decimals " : " 0 " , " value " : " $validita $ " , " icon-after " : " choice|period|<?php echo $record['tipo_validita'] ; ?> " , " help " : " <?php echo tr('Il campo Validità viene utilizzato in modo esclusivamente indicativo se impostato secondo l \ 'opzione manuale, mentre viene utilizzato per il calcolo della Data di conclusione del documento in caso alternativo'); ?> " ]}
2019-04-08 18:50:28 +02:00
</ div >
2019-11-29 18:21:31 +01:00
2017-08-04 16:28:16 +02:00
< div class = " col-md-3 " >
2019-04-08 18:50:28 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Tipo di attività'); ?> " , " name " : " idtipointervento " , " required " : 1 , " values " : " query=SELECT idtipointervento AS id, descrizione FROM in_tipiintervento ORDER BY descrizione " , " value " : " $idtipointervento $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
2019-04-08 18:50:28 +02:00
<!-- div class = " col-md-3 " >
{[ " type " : " select " , " label " : " <?php echo tr('Resa materiale'); ?> " , " name " : " idporto " , " values " : " query=SELECT id, descrizione FROM dt_porto ORDER BY descrizione " , " value " : " $idporto $ " ]}
</ div -->
2019-11-29 18:21:31 +01:00
2017-08-04 16:28:16 +02:00
< div class = " col-md-3 " >
2019-04-08 18:50:28 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Tempi di consegna'); ?> " , " name " : " tempi_consegna " , " value " : " $tempi_consegna $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
2019-11-29 18:21:31 +01:00
2021-04-06 15:10:55 +02:00
< div class = " col-md-3 " >
2022-01-15 17:30:49 +01:00
{[ " type " : " number " , " label " : " <?php echo 'Sconto in fattura'; ?> " , " name " : " sconto_finale " , " value " : " <?php echo $preventivo->sconto_finale_percentuale ?: $preventivo->sconto_finale ; ?> " , " icon-after " : " choice|untprc|<?php echo empty( $preventivo->sconto_finale ) ? 'PRC' : 'UNT'; ?> " , " help " : " <?php echo tr('Sconto in fattura, utilizzabile per applicare sconti sul netto a pagare del documento'); ?>. " ]}
2021-04-06 15:10:55 +02:00
</ div >
2017-08-04 16:28:16 +02:00
</ div >
< div class = " row " >
< div class = " col-md-12 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " textarea " , " label " : " <?php echo tr('Esclusioni'); ?> " , " name " : " esclusioni " , " class " : " autosize " , " value " : " $esclusioni $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
2021-01-29 17:12:56 +01:00
< div class = " row " >
< div class = " col-md-12 " >
{[ " type " : " textarea " , " label " : " <?php echo tr('Garanzia'); ?> " , " name " : " garanzia " , " class " : " autosize " , " value " : " $garanzia $ " ]}
</ div >
</ div >
2017-08-04 16:28:16 +02:00
< div class = " row " >
< div class = " col-md-12 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " textarea " , " label " : " <?php echo tr('Descrizione'); ?> " , " name " : " descrizione " , " class " : " autosize " , " value " : " $descrizione $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
2021-01-27 15:15:44 +01:00
< div class = " row " >
< div class = " col-md-12 " >
2021-10-05 14:16:24 +02:00
{[ " type " : " ckeditor " , " use_full_ckeditor " : 0 , " label " : " <?php echo tr('Condizioni generali di fornitura'); ?> " , " name " : " condizioni_fornitura " , " class " : " autosize " , " value " : " $condizioni_fornitura $ " ]}
2021-01-27 15:15:44 +01:00
</ div >
</ div >
2021-12-13 10:45:11 +01:00
< ? php
// Nascondo le note interne ai clienti
if ( $user -> gruppo != 'Clienti' ) {
echo '
< div class = " row " >
< div class = " col-md-12 " >
{[ " type " : " textarea " , " label " : " '.tr('Note interne').' " , " name " : " informazioniaggiuntive " , " class " : " autosize " , " value " : " $informazioniaggiuntive $ " , " extra " : " rows= \ '5 \ ' " ]}
</ div >
</ div > ' ;
}
?>
2018-02-20 10:55:00 +01:00
<!-- div class = " pull-right " >
2017-09-04 12:02:29 +02:00
< button type = " submit " class = " btn btn-success " >< i class = " fa fa-check " ></ i > < ? php echo tr ( 'Salva modifiche' ); ?> </button>
2018-02-20 10:55:00 +01:00
</ div -->
2017-08-04 16:28:16 +02:00
</ div >
</ div >
2019-11-29 18:21:31 +01:00
2019-10-14 19:13:11 +02:00
< ? php
2019-10-18 15:28:44 +02:00
if ( ! empty ( $record [ 'id_documento_fe' ]) || ! empty ( $record [ 'num_item' ]) || ! empty ( $record [ 'codice_cig' ]) || ! empty ( $record [ 'codice_cup' ])) {
2019-10-14 19:13:11 +02:00
$collapsed = 'in' ;
2019-10-18 15:28:44 +02:00
} else {
2019-10-14 19:13:11 +02:00
$collapsed = '' ;
}
?>
<!-- Fatturazione Elettronica PA -->
< div class = " panel-group " >
< div class = " panel panel-primary <?php echo ( $record['tipo_anagrafica'] == 'Ente pubblico' || $record['tipo_anagrafica'] == 'Azienda') ? 'show' : 'hide'; ?> " >
< div class = " panel-heading " >
< h4 class = " panel-title " >
< ? php echo tr ( 'Dati appalto' ); ?>
2019-11-29 18:21:31 +01:00
< div class = " box-tools pull-right " >
< a data - toggle = " collapse " href = " #dati_appalto " >< i class = " fa fa-plus " style = 'color:white;margin-top:2px;' ></ i ></ a >
2019-10-14 19:13:11 +02:00
</ div >
</ h4 >
</ div >
2019-10-18 15:28:44 +02:00
< div id = " dati_appalto " class = " panel-collapse collapse <?php echo $collapsed ; ?> " >
2019-10-14 19:13:11 +02:00
< div class = " panel-body " >
< div class = " row " >
< div class = " col-md-6 " >
{[ " type " : " text " , " label " : " <?php echo tr('Identificatore Documento'); ?> " , " name " : " id_documento_fe " , " required " : 0 , " help " : " <?php echo tr('<span>Obbligatorio per valorizzare CIG/CUP. È possible inserire: </span><ul><li>N. determina</li><li>RDO</li><li>Ordine MEPA</li></ul>'); ?> " , " value " : " $id_documento_fe $ " , " maxlength " : 20 ]}
</ div >
< div class = " col-md-6 " >
{[ " type " : " text " , " label " : " <?php echo tr('Numero Riga'); ?> " , " name " : " num_item " , " required " : 0 , " value " : " $num_item $ " , " maxlength " : 15 ]}
</ div >
</ div >
< div class = " row " >
< div class = " col-md-6 " >
{[ " type " : " text " , " label " : " <?php echo tr('Codice CIG'); ?> " , " name " : " codice_cig " , " required " : 0 , " value " : " $codice_cig $ " , " maxlength " : 15 ]}
</ div >
< div class = " col-md-6 " >
{[ " type " : " text " , " label " : " <?php echo tr('Codice CUP'); ?> " , " name " : " codice_cup " , " required " : 0 , " value " : " $codice_cup $ " , " maxlength " : 15 ]}
</ div >
</ div >
</ div >
2019-01-24 20:31:01 +01:00
</ div >
</ div >
</ div >
2017-08-04 16:28:16 +02:00
</ form >
2020-08-03 12:08:52 +02:00
< ? php
2017-08-04 16:28:16 +02:00
2020-08-03 12:08:52 +02:00
echo '
2017-08-04 16:28:16 +02:00
<!-- RIGHE -->
< div class = " panel panel-primary " >
< div class = " panel-heading " >
2020-08-03 12:08:52 +02:00
< h3 class = " panel-title " > '.tr(' Righe ').' </ h3 >
2017-08-04 16:28:16 +02:00
</ div >
2020-08-03 12:08:52 +02:00
< div class = " panel-body " > ' ;
2019-03-29 12:46:17 +01:00
2019-07-24 12:42:45 +02:00
if ( ! $block_edit ) {
2019-03-29 12:46:17 +01:00
echo '
2020-08-26 14:28:56 +02:00
< button type = " button " class = " btn btn-sm btn-primary tip " title = " '.tr('Aggiungi articolo').' " onclick = " gestioneArticolo(this) " >
2019-03-29 12:46:17 +01:00
< i class = " fa fa-plus " ></ i > '.tr(' Articolo ').'
2020-08-03 12:08:52 +02:00
</ button > ' ;
2018-01-18 19:03:06 +01:00
2020-07-20 14:40:11 +02:00
echo '
2020-08-26 14:28:56 +02:00
< button type = " button " class = " btn btn-sm btn-primary tip " title = " '.tr('Aggiungi articoli tramite barcode').' " onclick = " gestioneBarcode(this) " >
2020-07-20 14:40:11 +02:00
< i class = " fa fa-plus " ></ i > '.tr(' Barcode ').'
2020-08-03 12:08:52 +02:00
</ button > ' ;
2020-07-20 14:40:11 +02:00
2019-03-29 12:46:17 +01:00
echo '
2020-08-26 14:28:56 +02:00
< button type = " button " class = " btn btn-sm btn-primary tip " title = " '.tr('Aggiungi riga').' " onclick = " gestioneRiga(this) " >
2019-03-29 12:46:17 +01:00
< i class = " fa fa-plus " ></ i > '.tr(' Riga ').'
2020-08-03 12:08:52 +02:00
</ button > ' ;
2018-01-18 19:03:06 +01:00
2019-03-29 12:46:17 +01:00
echo '
2020-08-26 14:28:56 +02:00
< button type = " button " class = " btn btn-sm btn-primary tip " title = " '.tr('Aggiungi descrizione').' " onclick = " gestioneDescrizione(this) " >
2019-03-29 12:46:17 +01:00
< i class = " fa fa-plus " ></ i > '.tr(' Descrizione ').'
2020-08-03 12:08:52 +02:00
</ button > ' ;
2018-02-19 11:25:56 +01:00
2019-03-29 12:46:17 +01:00
echo '
2020-08-26 14:28:56 +02:00
< button type = " button " class = " btn btn-sm btn-primary tip " title = " '.tr('Aggiungi sconto/maggiorazione').' " onclick = " gestioneSconto(this) " >
2019-03-29 12:46:17 +01:00
< i class = " fa fa-plus " ></ i > '.tr(' Sconto / maggiorazione ').'
2020-08-03 12:08:52 +02:00
</ button > ' ;
2019-03-29 12:46:17 +01:00
}
2018-01-18 19:03:06 +01:00
2020-08-03 12:08:52 +02:00
echo '
2018-02-21 09:53:38 +01:00
2017-08-04 16:28:16 +02:00
< div class = " clearfix " ></ div >
< br >
< div class = " row " >
2020-09-14 10:49:23 +02:00
< div class = " col-md-12 " id = " righe " ></ div >
</ div >
2017-08-04 16:28:16 +02:00
</ div >
</ div >
2020-08-03 12:08:52 +02:00
{( " name " : " filelist_and_upload " , " id_module " : " $id_module $ " , " id_record " : " $id_record $ " )}
{( " name " : " log_email " , " id_module " : " $id_module $ " , " id_record " : " $id_record $ " )}
2018-11-09 11:34:27 +01:00
< script type = " text/javascript " >
2020-08-03 12:08:52 +02:00
function gestioneArticolo ( button ) {
gestioneRiga ( button , " is_articolo " );
}
function gestioneBarcode ( button ) {
gestioneRiga ( button , " is_barcode " );
}
function gestioneSconto ( button ) {
gestioneRiga ( button , " is_sconto " );
}
function gestioneDescrizione ( button ) {
gestioneRiga ( button , " is_descrizione " );
}
async function gestioneRiga ( button , options ) {
// Salvataggio via AJAX
2021-03-29 18:31:23 +02:00
await salvaForm ( " #edit-form " , {}, button );
// Lettura titolo e chiusura tooltip
let title = $ ( button ) . tooltipster ( " content " );
$ ( button ) . tooltipster ( " close " )
2020-08-03 12:08:52 +02:00
// Apertura modal
2021-03-29 18:31:23 +02:00
options = options ? options : " is_riga " ;
openModal ( title , " '. $structure->fileurl ('row-add.php').'?id_module='. $id_module .'&id_record='. $id_record .'& " + options );
2020-08-03 12:08:52 +02:00
}
2020-09-14 10:49:23 +02:00
/**
* Funzione dedicata al caricamento dinamico via AJAX delle righe del documento .
*/
function caricaRighe () {
let container = $ ( " #righe " );
localLoading ( container , true );
2020-09-14 11:06:35 +02:00
return $ . get ( " '. $structure->fileurl ('row-list.php').'?id_module='. $id_module .'&id_record='. $id_record .' " , function ( data ) {
container . html ( data );
2020-09-14 10:49:23 +02:00
localLoading ( container , false );
});
}
$ ( document ) . ready ( function () {
caricaRighe ();
});
2020-08-03 12:08:52 +02:00
$ ( document ) . ready ( function () {
$ ( " #idanagrafica " ) . change ( function () {
updateSelectOption ( " idanagrafica " , $ ( this ) . val ());
session_set ( " superselect,idanagrafica " , $ ( this ) . val (), 0 );
$ ( " #idsede " ) . selectReset ();
});
$ ( " #data_accettazione " ) . on ( " dp.change " , function () {
if ( $ ( this ) . val ()){
$ ( " #data_rifiuto " ) . attr ( " disabled " , true );
} else {
$ ( " #data_rifiuto " ) . attr ( " disabled " , false );
}
});
2019-11-29 18:21:31 +01:00
2020-08-03 12:08:52 +02:00
$ ( " #data_rifiuto " ) . on ( " dp.change " , function () {
if ( $ ( this ) . val ()){
$ ( " #data_accettazione " ) . attr ( " disabled " , true );
} else {
$ ( " #data_accettazione " ) . attr ( " disabled " , false );
}
2018-11-09 11:34:27 +01:00
});
2017-09-14 10:27:49 +02:00
2020-08-03 12:08:52 +02:00
$ ( " #data_accettazione " ) . trigger ( " dp.change " );
$ ( " #data_rifiuto " ) . trigger ( " dp.change " );
2018-12-07 10:47:44 +01:00
2020-08-03 12:08:52 +02:00
$ ( " #codice_cig, #codice_cup " ) . bind ( " keyup change " , function ( e ) {
2018-12-07 10:47:44 +01:00
2020-08-03 12:08:52 +02:00
if ( $ ( " #codice_cig " ) . val () == " " && $ ( " #codice_cup " ) . val () == " " ){
$ ( " #id_documento_fe " ) . prop ( " required " , false );
} else {
$ ( " #id_documento_fe " ) . prop ( " required " , true );
}
2018-12-07 10:47:44 +01:00
2020-08-03 12:08:52 +02:00
});
});
</ script > ' ;
2018-12-07 10:47:44 +01:00
2021-07-28 11:50:02 +02:00
// Fatture, ordini collegate a questo preventivo
$elementi = $dbo -> fetchArray ( 'SELECT `co_documenti`.`id`, `co_documenti`.`data`, `co_documenti`.`numero`, `co_documenti`.`numero_esterno`, `co_tipidocumento`.`descrizione` AS tipo_documento, IF(`co_tipidocumento`.`dir` = \'entrata\', \'Fatture di vendita\', \'Fatture di acquisto\') AS modulo FROM `co_documenti` JOIN `co_tipidocumento` ON `co_tipidocumento`.`id` = `co_documenti`.`idtipodocumento` WHERE `co_documenti`.`id` IN (SELECT `iddocumento` FROM `co_righe_documenti` WHERE `idpreventivo` = ' . prepare ( $id_record ) . ' )
2018-12-07 10:47:44 +01:00
UNION
2021-07-28 11:50:02 +02:00
SELECT `or_ordini` . `id` , `or_ordini` . `data` , `or_ordini` . `numero` , `or_ordini` . `numero_esterno` , \ 'Ordine cliente\', \'Ordini cliente\' FROM `or_ordini` JOIN `or_righe_ordini` ON `or_righe_ordini`.`idordine` = `or_ordini`.`id` WHERE `or_righe_ordini`.`idpreventivo` = ' . prepare ( $id_record ) . '
UNION
SELECT `in_interventi` . `id` , `in_interventi` . `data_richiesta` , `in_interventi` . `codice` , NULL , \ 'Attività\', \'Interventi\' FROM `in_interventi` JOIN `in_righe_interventi` ON `in_righe_interventi`.`idintervento` = `in_interventi`.`id` WHERE (`in_righe_interventi`.`original_document_id` = ' . prepare ( $preventivo -> id ) . ' AND `in_righe_interventi`.`original_document_type` = ' . prepare ( get_class ( $preventivo )) . ') OR `in_interventi`.`id_preventivo` = ' . prepare ( $id_record ) . '
2018-12-07 10:47:44 +01:00
ORDER BY `data` ' );
2018-09-05 10:05:23 +02:00
if ( ! empty ( $elementi )) {
2017-09-14 10:27:49 +02:00
echo '
2018-09-05 10:05:23 +02:00
< div class = " box box-warning collapsable collapsed-box " >
< div class = " box-header with-border " >
< h3 class = " box-title " >< i class = " fa fa-warning " ></ i > '.tr(' Documenti collegati : _NUM_ ' , [
2018-09-19 09:57:30 +02:00
'_NUM_' => count ( $elementi ),
2018-09-05 10:05:23 +02:00
]) . ' </ h3 >
< div class = " box-tools pull-right " >
< button type = " button " class = " btn btn-box-tool " data - widget = " collapse " >< i class = " fa fa-plus " ></ i ></ button >
</ div >
</ div >
< div class = " box-body " >
< ul > ' ;
2018-12-07 10:47:44 +01:00
foreach ( $elementi as $elemento ) {
2017-09-14 10:27:49 +02:00
$descrizione = tr ( '_DOC_ num. _NUM_ del _DATE_' , [
2018-12-07 10:47:44 +01:00
'_DOC_' => $elemento [ 'tipo_documento' ],
'_NUM_' => ! empty ( $elemento [ 'numero_esterno' ]) ? $elemento [ 'numero_esterno' ] : $elemento [ 'numero' ],
2021-01-04 18:54:23 +01:00
'_DATE_' => dateFormat ( $elemento [ 'data' ]),
2017-09-14 10:27:49 +02:00
]);
2018-12-23 14:01:59 +01:00
2017-09-14 10:27:49 +02:00
echo '
2021-07-28 11:50:02 +02:00
< li > '.Modules::link($elemento[' modulo '], $elemento[' id '], $descrizione).' </ li > ' ;
2017-09-14 10:27:49 +02:00
}
echo '
</ ul >
2018-09-05 10:05:23 +02:00
</ div >
</ div > ' ;
}
if ( ! empty ( $elementi )) {
echo '
< div class = " alert alert-error " >
'.tr(' Eliminando questo documento si potrebbero verificare problemi nelle altre sezioni del gestionale ').' .
</ div > ' ;
2017-09-14 10:27:49 +02:00
}
2017-11-16 14:27:43 +01:00
?>
< a class = " btn btn-danger ask " data - backto = " record-list " >
< i class = " fa fa-trash " ></ i > < ? php echo tr ( 'Elimina' ); ?>
2018-01-15 20:28:36 +01:00
</ a >