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' ;
2024-03-05 16:01:45 +01:00
use Models\Module ;
2017-08-04 16:28:16 +02:00
2019-07-24 12:42:45 +02:00
$block_edit = $record [ 'is_completato' ];
2024-05-23 11:36:25 +02:00
$data_accettazione = $record [ 'data_accettazione' ] ? strtotime (( string ) $record [ 'data_accettazione' ]) : '' ;
$data_conclusione = $record [ 'data_conclusione' ] ? strtotime (( string ) $record [ 'data_conclusione' ]) : '' ;
2019-07-24 12:42:45 +02:00
2024-04-11 11:16:47 +02:00
if ( $data_conclusione < $data_accettazione && ! empty ( $data_accettazione ) && ! empty ( $data_conclusione )) {
2021-03-08 14:17:59 +01:00
echo '
2023-03-06 09:21:20 +01:00
< div class = " alert alert-warning " >< a class = " clickable " onclick = " $ ( \ '.alert \ ').hide(); " >< i class = " fa fa-times " ></ i ></ a > '.tr(' Attenzione ! La data di accettazione supera la data di conclusione del contratto . Verificare le informazioni inserite . ').' </ div > ' ;
2021-03-08 14:17:59 +01:00
}
2024-05-23 11:36:25 +02:00
echo '
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 " >
2024-05-22 15:11:57 +02:00
< input type = " hidden " name = " id_record " value = " '. $id_record .' " >
< div class = " row " >
< div class = " col-md-2 offset-md-10 " >
{[ " type " : " select " , " label " : " '.tr('Stato').' " , " name " : " idstato " , " required " : 1 , " values " : " query=SELECT `co_staticontratti`.`id`, `title` as `descrizione`, `colore` AS _bgcolor_ FROM `co_staticontratti` LEFT JOIN `co_staticontratti_lang` ON (`co_staticontratti`.`id` = `co_staticontratti_lang`.`id_record` AND `co_staticontratti_lang`.`id_lang` = '.prepare(Models \ Locale::getDefault()->id).') ORDER BY `title` " , " value " : " $idstato $ " , " class " : " unblockable " ]}
</ div >
</ div >
2017-08-04 16:28:16 +02:00
<!-- DATI INTESTAZIONE -->
2024-08-27 14:12:30 +02:00
< div class = " card card-primary collapsable " >
2024-05-22 15:11:57 +02:00
< div class = " card-header with-border " >
< h3 class = " card-title " > '.tr(' Dati cliente ').' </ h3 >
< div class = " card-tools pull-right " >
2024-05-23 17:51:21 +02:00
< button type = " button " class = " btn btn-tool " data - card - widget = " collapse " >
2024-08-27 14:12:30 +02:00
< i class = " fa fa-minus " ></ i >
2024-05-22 15:11:57 +02:00
</ button >
</ div >
</ div >
< div class = " card-body " >
< div class = " card-body " >
<!-- RIGA 1 -->
< div class = " row " >
< div class = " col-md-3 " >
'.Modules::link(' Anagrafiche ', $record[' idanagrafica '], null, null, ' class = " pull-right " ').'
{[ " type " : " select " , " label " : " '.tr('Cliente').' " , " name " : " idanagrafica " , " id " : " idanagrafica_c " , " required " : 1 , " value " : " $idanagrafica $ " , " ajax-source " : " clienti " ]}
</ div >
< div class = " col-md-3 " >
{[ " type " : " select " , " label " : " '.tr('Sede').' " , " name " : " idsede " , " value " : " $idsede $ " , " ajax-source " : " sedi " , " select-options " : { " idanagrafica " : '.$record[' idanagrafica '].' }, " placeholder " : " Sede legale " ]}
</ div >
< div class = " col-md-3 " >
'.Plugins::link(' Referenti ', $record[' idanagrafica '], null, null, ' class = " pull-right " ').'
{[ " type " : " select " , " label " : " '.tr('Referente').' " , " name " : " idreferente " , " value " : " $idreferente $ " , " ajax-source " : " referenti " , " select-options " : { " idanagrafica " : '.$record[' idanagrafica '].' , " idsede_destinazione " : '.$record[' idsede '].' } ]}
</ div >
< div class = " col-md-3 " > ' ;
if ( $record [ 'idagente' ] != 0 ) {
2024-05-23 11:36:25 +02:00
echo Modules :: link ( 'Anagrafiche' , $record [ 'idagente' ], null , null , 'class="pull-right"' );
2024-05-22 15:11:57 +02:00
}
?>
{[ " type " : " select " , " label " : " <?php echo tr('Agente'); ?> " , " name " : " idagente " , " ajax-source " : " agenti " , " select-options " : { " idanagrafica " : < ? php echo $record [ 'idanagrafica' ]; ?> }, "value": "$idagente$" ]}
</ div >
</ div >
</ div >
</ div >
</ div >
2024-05-16 18:02:50 +02:00
< div class = " card card-primary " >
2024-05-17 12:11:00 +02:00
< div class = " card-header " >
2024-05-16 18:02:50 +02:00
< h3 class = " card-title " >< ? php echo tr ( 'Intestazione' ); ?> </h3>
2017-08-04 16:28:16 +02:00
</ div >
2024-05-16 18:02:50 +02:00
< div class = " card-body " >
2017-08-04 16:28:16 +02:00
< div class = " row " >
2024-05-22 15:11:57 +02:00
< div class = " col-md-2 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Numero'); ?> " , " name " : " numero " , " required " : 1 , " class " : " text-center " , " value " : " $numero $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
2024-05-22 15:11:57 +02:00
< div class = " col-md-2 " >
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 >
2017-08-04 16:28:16 +02:00
2019-07-24 12:42:45 +02:00
< div class = " col-md-2 " >
2021-03-08 14:17:59 +01:00
{[ " type " : " date " , " label " : " <?php echo tr('Data accettazione'); ?> " , " name " : " data_accettazione " , " value " : " $data_accettazione $ " , " max-date " : " $data_conclusione $ " ]}
2019-07-24 12:42:45 +02:00
</ div >
2018-11-09 11:34:27 +01:00
2019-07-24 12:42:45 +02:00
< div class = " col-md-2 " >
2024-04-11 11:16:47 +02:00
{[ " type " : " date " , " label " : " <?php echo tr('Data conclusione'); ?> " , " name " : " data_conclusione " , " value " : " $data_conclusione $ " , " disabled " : " <?php echo $contratto ? ( $contratto->isDataConclusioneAutomatica () ? '1 " , " help " : " '.tr('La Data di conclusione è calcolata in automatico in base al valore del campo Validità contratto, se definita') : '0') : ''; ?> " ]}
2019-07-24 12:42:45 +02:00
</ div >
2018-11-09 11:34:27 +01:00
2019-07-24 12:42:45 +02:00
< div class = " col-md-2 " >
{[ " type " : " date " , " label " : " <?php echo tr('Data rifiuto'); ?> " , " name " : " data_rifiuto " , " value " : " $data_rifiuto $ " ]}
2020-07-31 16:13:24 +02:00
</ div >
2018-11-09 11:34:27 +01:00
2024-05-22 15:11:57 +02:00
< div class = " col-md-2 " >
{[ " type " : " number " , " label " : " <?php echo tr('Validità contratto'); ?> " , " name " : " validita " , " decimals " : " 0 " , " value " : " $validita $ " , " icon-after " : " choice|period|<?php echo $record['tipo_validita'] ; ?> " , " help " : " <?php echo tr('Il campo Validità contratto viene utilizzato per il calcolo della Data di conclusione del contratto'); ?> " ]}
2018-11-07 16:40:48 +01:00
</ div >
2024-05-22 15:11:57 +02:00
</ div >
2018-11-09 11:34:27 +01:00
2019-07-24 12:42:45 +02:00
< div class = " row " >
2024-05-22 15:11:57 +02:00
< div class = " col-md-3 " >
{[ " type " : " text " , " label " : " <?php echo tr('Nome contratto'); ?> " , " name " : " nome " , " required " : 1 , " value " : " $nome $ " ]}
2019-07-24 12:42:45 +02:00
</ div >
< div class = " col-md-3 " >
2024-04-18 17:44:05 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Pagamento'); ?> " , " name " : " idpagamento " , " values " : " query=SELECT `co_pagamenti`.`id`, `co_pagamenti_lang`.`title` AS `descrizione` FROM `co_pagamenti` LEFT JOIN `co_pagamenti_lang` ON (`co_pagamenti`.`id` = `co_pagamenti_lang`.`id_record` AND `co_pagamenti_lang`.`id_lang` = <?php echo prepare(Models \ Locale::getDefault()->id); ?>) GROUP BY `descrizione` ORDER BY `descrizione` " , " value " : " $idpagamento $ " ]}
2019-07-24 12:42:45 +02:00
</ div >
< div class = " col-md-3 " >
2024-06-11 16:58:27 +02:00
{[ " type " : " select " , " multiple " : " 1 " , " label " : " <?php echo tr('Impianti'); ?> " , " name " : " matricolaimpianto[] " , " values " : " query=SELECT idanagrafica, id AS id, IF(nome = '', matricola, CONCAT(matricola, ' - ', nome)) AS descrizione FROM my_impianti WHERE idanagrafica=' $idanagrafica $ ' ORDER BY descrizione " , " value " : " $idimpianti $ " , " icon-after " : " add|<?php echo Module::where('name', 'Impianti')->first()->id; ?>|<?php echo 'id_anagrafica='. $record['idanagrafica'] ; ?>||<?php echo (empty( $block_edit )) ? '' : 'disabled'; ?> " ]}
2017-08-04 16:28:16 +02:00
</ div >
2020-12-01 16:52:51 +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 $contratto->sconto_finale_percentuale ?: $contratto->sconto_finale ; ?> " , " icon-after " : " choice|untprc|<?php echo empty( $contratto->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-09-11 11:28:39 +02:00
</ div >
2017-08-04 16:28:16 +02:00
< div class = " row " >
2024-05-22 15:11:57 +02:00
< div class = " col-md-4 " >
{[ " type " : " textarea " , " label " : " <?php echo tr('Esclusioni'); ?> " , " name " : " esclusioni " , " class " : " autosize " , " value " : " $esclusioni $ " , " extra " : " rows='5' " ]}
2017-08-04 16:28:16 +02:00
</ div >
2024-05-22 15:11:57 +02:00
< div class = " col-md-4 " >
{[ " type " : " textarea " , " label " : " <?php echo tr('Descrizione'); ?> " , " name " : " descrizione " , " class " : " autosize " , " value " : " $descrizione $ " , " extra " : " rows='5' " ]}
2017-08-04 16:28:16 +02:00
</ div >
2024-05-22 15:11:57 +02:00
< ? php
// Nascondo le note interne ai clienti
if ( $user -> gruppo != 'Clienti' ) {
echo '
< div class = " col-md-4 " >
{[ " type " : " textarea " , " label " : " '.tr('Note interne').' " , " name " : " informazioniaggiuntive " , " class " : " autosize " , " value " : " $informazioniaggiuntive $ " , " extra " : " rows= \ '5 \ ' " ]}
</ div > ' ;
}
?>
2017-08-04 16:28:16 +02:00
</ div >
2021-12-13 10:45:11 +01:00
2021-12-21 10:58:20 +01:00
< div class = " row " >
< div class = " col-md-12 " >
2023-08-04 14:54:28 +02:00
< ? php echo input ([
2023-02-24 09:33:02 +01:00
'type' => 'ckeditor' ,
2024-07-02 15:13:14 +02:00
'use_full_ckeditor' => 0 ,
2023-02-24 09:33:02 +01:00
'label' => tr ( 'Condizioni generali di fornitura' ),
'name' => 'condizioni_fornitura' ,
'value' => $record [ 'condizioni_fornitura' ],
]);
2024-01-15 15:30:45 +01:00
?>
2021-12-21 10:58:20 +01:00
</ div >
</ div >
2017-08-04 16:28:16 +02:00
</ div >
</ div >
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 = '' ;
2022-07-03 15:14:36 +02:00
} else {
2024-05-16 18:02:50 +02:00
$collapsed = ' collapsed-card' ;
2019-10-14 19:13:11 +02:00
}
2024-01-15 15:30:45 +01:00
?>
2019-10-14 19:13:11 +02:00
<!-- Fatturazione Elettronica PA -->
2022-07-03 15:14:36 +02:00
2024-05-16 18:02:50 +02:00
< div class = " card card-primary collapsable <?php echo ( $record['tipo_anagrafica'] == 'Ente pubblico' || $record['tipo_anagrafica'] == 'Azienda') ? 'show' : 'hide'; ?> <?php echo $collapsed ; ?> " >
< div class = " card-header " >
< h4 class = " card-title " >
2022-07-03 15:14:36 +02:00
< ? php echo tr ( 'Dati appalto' ); ?> </h4>
2024-05-16 18:02:50 +02:00
< div class = " card-tools pull-right " >
2024-05-23 17:51:21 +02:00
< button type = " button " class = " btn btn-tool " data - card - widget = " collapse " >
2022-07-03 15:14:36 +02:00
< i class = " fa fa-plus " ></ i >
</ button >
</ div >
</ div >
2024-05-16 18:02:50 +02:00
< div class = " card-body " >
2022-07-03 15:14:36 +02:00
< 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 >
2019-10-14 19:13:11 +02:00
</ div >
2022-07-03 15:14:36 +02:00
< 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 ]}
2019-10-14 19:13:11 +02:00
</ div >
2018-11-09 12:45:22 +01:00
</ div >
</ div >
</ div >
2022-07-03 15:14:36 +02:00
2018-11-09 12:45:22 +01:00
2017-08-04 16:28:16 +02:00
<!-- COSTI -->
2024-05-16 18:02:50 +02:00
< div class = " card card-primary " >
2024-05-17 12:11:00 +02:00
< div class = " card-header " >
2024-05-16 18:02:50 +02:00
< h3 class = " card-title " >< ? php echo tr ( 'Costi unitari' ); ?> </h3>
2017-08-04 16:28:16 +02:00
</ div >
2024-05-16 18:02:50 +02:00
< div class = " card-body " >
2017-08-04 16:28:16 +02:00
< div class = " row " >
< div class = " col-md-12 col-lg-12 " >
< ? php
$idtipiintervento = [ '-1' ];
2019-07-08 12:24:59 +02:00
// Loop fra i tipi di attività e i relativi costi del tipo intervento
2024-04-18 17:44:05 +02:00
$rs = $dbo -> fetchArray ( 'SELECT `co_contratti_tipiintervento`.*, `in_tipiintervento_lang`.`title` FROM `co_contratti_tipiintervento` INNER JOIN `in_tipiintervento` ON `in_tipiintervento`.`id` = `co_contratti_tipiintervento`.`idtipointervento` LEFT JOIN `in_tipiintervento_lang` ON `in_tipiintervento_lang`.`id_record` = `in_tipiintervento`.`id` AND `in_tipiintervento_lang`.`id_lang` = ' . prepare ( Models\Locale :: getDefault () -> id ) . ' WHERE `idcontratto`=' . prepare ( $id_record ) . ' AND (`co_contratti_tipiintervento`.`costo_ore` != `in_tipiintervento`.`costo_orario` OR `co_contratti_tipiintervento`.`costo_km` != `in_tipiintervento`.`costo_km` OR `co_contratti_tipiintervento`.`costo_dirittochiamata` != `in_tipiintervento`.`costo_diritto_chiamata`) ORDER BY `in_tipiintervento_lang`.`title`' );
2017-08-04 16:28:16 +02:00
2019-07-08 12:24:59 +02:00
if ( ! empty ( $rs )) {
2017-08-04 16:28:16 +02:00
echo '
< table class = " table table-striped table-condensed table-bordered " >
< tr >
2017-09-04 12:02:29 +02:00
< th width = " 300 " > '.tr(' Tipo attività ').' </ th >
2017-08-04 16:28:16 +02:00
2019-06-14 15:39:40 +02:00
< th > '.tr(' Addebito orario ').' < span class = " tip " title = " '.tr('Addebito al cliente').' " >< i class = " fa fa-question-circle-o " ></ i ></ span ></ th >
< th > '.tr(' Addebito km ').' < span class = " tip " title = " '.tr('Addebito al cliente').' " >< i class = " fa fa-question-circle-o " ></ i ></ span ></ th >
< th > '.tr(' Addebito diritto ch . ').' < span class = " tip " title = " '.tr('Addebito al cliente').' " >< i class = " fa fa-question-circle-o " ></ i ></ span ></ th >
2020-02-17 13:18:25 +01:00
2019-06-14 15:39:40 +02:00
< th width = " 40 " ></ th >
2017-08-04 16:28:16 +02:00
</ tr > ' ;
for ( $i = 0 ; $i < sizeof ( $rs ); ++ $i ) {
echo '
< tr >
< td > '.$rs[$i][' descrizione '].' </ td >
< td >
{[ " type " : " number " , " name " : " costo_ore['. $rs[$i] ['idtipointervento'].'] " , " value " : " '. $rs[$i] ['costo_ore'].' " ]}
</ td >
< td >
{[ " type " : " number " , " name " : " costo_km['. $rs[$i] ['idtipointervento'].'] " , " value " : " '. $rs[$i] ['costo_km'].' " ]}
</ td >
< td >
{[ " type " : " number " , " name " : " costo_dirittochiamata['. $rs[$i] ['idtipointervento'].'] " , " value " : " '. $rs[$i] ['costo_dirittochiamata'].' " ]}
</ td >
2019-06-14 15:39:40 +02:00
< td >
2024-05-16 18:02:50 +02:00
< button type = " button " class = " btn btn-warning " data - card - widget = " tooltip " title = " Importa valori da tariffe standard " onclick = " if( confirm( \ 'Importare i valori dalle tariffe standard? \ ') ) { $ .post( \ ''.base_path().'/modules/contratti/actions.php \ ', { op: \ 'import \ ', idcontratto: \ ''. $id_record .' \ ', idtipointervento: \ ''. $rs[$i] ['idtipointervento'].' \ ' }, function(data) { location.href= \ ''.base_path().'/editor.php?id_module='. $id_module .'&id_record='. $id_record .' \ '; } ); } " >
2019-07-08 12:24:59 +02:00
< i class = " fa fa-download " ></ i >
</ button >
2019-06-14 15:39:40 +02:00
</ td >
2017-08-04 16:28:16 +02:00
</ tr > ' ;
$idtipiintervento [] = prepare ( $rs [ $i ][ 'idtipointervento' ]);
}
echo '
</ table > ' ;
}
echo '
2019-07-08 12:24:59 +02:00
< button type = " button " onclick = " $ (this).next().toggleClass( \ 'hide \ '); " class = " btn btn-info btn-sm " >< i class = " fa fa-th-list " ></ i > '.tr(' Mostra tipi di attività non modificati ').' </ button >
2017-08-04 16:28:16 +02:00
< div class = " hide " > ' ;
2024-01-15 15:30:45 +01:00
// Loop fra i tipi di attività e i relativi costi del tipo intervento (quelli a 0)
2024-04-18 17:44:05 +02:00
$rs = $dbo -> fetchArray ( 'SELECT * FROM `co_contratti_tipiintervento` INNER JOIN `in_tipiintervento` ON `in_tipiintervento`.`id` = `co_contratti_tipiintervento`.`idtipointervento` LEFT JOIN `in_tipiintervento_lang` ON (`in_tipiintervento`.`id`=`in_tipiintervento_lang`.`id_record` AND `in_tipiintervento_lang`.`id_lang` = ' . prepare ( Models\Locale :: getDefault () -> id ) . ') WHERE `co_contratti_tipiintervento`.`idtipointervento` NOT IN(' . implode ( ',' , $idtipiintervento ) . ') AND `idcontratto`=' . prepare ( $id_record ) . ' ORDER BY `title`' );
2017-08-04 16:28:16 +02:00
2019-07-08 12:24:59 +02:00
if ( ! empty ( $rs )) {
2017-08-04 16:28:16 +02:00
echo '
2018-11-13 14:51:19 +01:00
< div class = " clearfix " >& nbsp ; </ div >
< table class = " table table-striped table-condensed table-bordered " >
2017-08-04 16:28:16 +02:00
< tr >
2017-09-04 12:02:29 +02:00
< th width = " 300 " > '.tr(' Tipo attività ').' </ th >
2017-08-04 16:28:16 +02:00
2019-06-13 18:05:19 +02:00
< th > '.tr(' Addebito orario ').' < span class = " tip " title = " '.tr('Addebito al cliente').' " >< i class = " fa fa-question-circle-o " ></ i ></ span ></ th >
< th > '.tr(' Addebito km ').' < span class = " tip " title = " '.tr('Addebito al cliente').' " >< i class = " fa fa-question-circle-o " ></ i ></ span ></ th >
< th > '.tr(' Addebito diritto ch . ').' < span class = " tip " title = " '.tr('Addebito al cliente').' " >< i class = " fa fa-question-circle-o " ></ i ></ span ></ th >
2017-08-04 16:28:16 +02:00
2019-06-14 15:39:40 +02:00
< th width = " 40 " ></ th >
2017-08-04 16:28:16 +02:00
</ tr > ' ;
for ( $i = 0 ; $i < sizeof ( $rs ); ++ $i ) {
echo '
< tr >
< td > '.$rs[$i][' descrizione '].' </ td >
< td >
2022-03-31 16:50:23 +02:00
{[ " type " : " number " , " name " : " costo_ore['. $rs[$i] ['idtipointervento'].'] " , " value " : " '. $rs[$i] ['costo_orario'].' " , " icon-after " : " <i class= \ 'fa fa-euro \ '></i> " ]}
2017-08-04 16:28:16 +02:00
</ td >
< td >
2022-03-31 16:50:23 +02:00
{[ " type " : " number " , " name " : " costo_km['. $rs[$i] ['idtipointervento'].'] " , " value " : " '. $rs[$i] ['costo_km'].' " , " icon-after " : " <i class= \ 'fa fa-euro \ '></i> " ]}
2017-08-04 16:28:16 +02:00
</ td >
< td >
2022-03-31 16:50:23 +02:00
{[ " type " : " number " , " name " : " costo_dirittochiamata['. $rs[$i] ['idtipointervento'].'] " , " value " : " '. $rs[$i] ['costo_diritto_chiamata'].' " , " icon-after " : " <i class= \ 'fa fa-euro \ '></i> " ]}
2017-08-04 16:28:16 +02:00
</ td >
2019-06-14 15:39:40 +02:00
< td >
2024-05-16 18:02:50 +02:00
< button type = " button " class = " btn btn-warning " data - card - widget = " tooltip " title = " Importa valori da tariffe standard " onclick = " if( confirm( \ 'Importare i valori dalle tariffe standard? \ ') ) { $ .post( \ ''.base_path().'/modules/contratti/actions.php \ ', { op: \ 'import \ ', idcontratto: \ ''. $id_record .' \ ', idtipointervento: \ ''. $rs[$i] ['idtipointervento'].' \ ' }, function(data) { location.href= \ ''.base_path().'/editor.php?id_module='. $id_module .'&id_record='. $id_record .' \ '; } ); } " >
2019-06-14 15:39:40 +02:00
< i class = " fa fa-download " ></ i >
</ button >
</ td >
2017-08-04 16:28:16 +02:00
</ tr > ' ;
}
echo '
</ table > ' ;
}
2024-01-15 15:30:45 +01:00
echo '
2020-08-03 12:08:52 +02:00
2017-08-04 16:28:16 +02:00
</ div >
</ div >
</ div >
</ div >
</ div >
</ form >
<!-- RIGHE -->
2024-05-16 18:02:50 +02:00
< div class = " card card-primary " >
2024-05-17 12:11:00 +02:00
< div class = " card-header " >
2024-05-16 18:02:50 +02:00
< h3 class = " card-title " > '.tr(' Righe ').' </ h3 >
2017-08-04 16:28:16 +02:00
</ div >
2024-05-16 18:02:50 +02:00
< div class = " card-body " > ' ;
2020-08-03 12:08:52 +02:00
2019-07-24 12:42:45 +02:00
if ( ! $block_edit ) {
2023-02-17 10:59:50 +01:00
// Form di inserimento riga documento
2019-03-29 12:46:17 +01:00
echo '
2023-02-17 10:59:50 +01:00
< form id = " link_form " action = " " method = " post " >
< input type = " hidden " name = " op " value = " add_articolo " >
< input type = " hidden " name = " backto " value = " record-edit " >
2019-03-29 12:46:17 +01:00
2023-02-17 10:59:50 +01:00
< div class = " row " >
2023-05-24 17:15:29 +02:00
< div class = " col-md-3 " >
2023-02-17 10:59:50 +01:00
{[ " type " : " text " , " label " : " '.tr('Aggiungi un articolo tramite barcode').' " , " name " : " barcode " , " extra " : " autocomplete= \" off \" " , " icon-before " : " <i class= \" fa fa-barcode \" ></i> " , " required " : 0 ]}
</ div >
2018-02-19 10:52:42 +01:00
2023-02-17 10:59:50 +01:00
< div class = " col-md-4 " >
2024-06-11 16:58:27 +02:00
{[ " type " : " select " , " label " : " '.tr('Articolo').' " , " name " : " id_articolo " , " value " : " " , " ajax-source " : " articoli " , " select-options " : { " permetti_movimento_a_zero " : 1 }, " icon-after " : " add|'.Module::where('name', 'Articoli')->first()->id.' " ]}
2023-02-17 10:59:50 +01:00
</ div >
2018-02-19 10:52:42 +01:00
2023-05-24 17:15:29 +02:00
< div class = " col-md-3 " style = " margin-top: 25px " >
2023-02-17 10:59:50 +01:00
< button title = " '.tr('Aggiungi articolo alla vendita').' " class = " btn btn-primary tip " type = " button " onclick = " salvaArticolo() " >
< i class = " fa fa-plus " ></ i > '.tr(' Aggiungi ').'
</ button >
< a class = " btn btn-primary " onclick = " gestioneRiga(this) " data - title = " '.tr('Aggiungi riga').' " >
< i class = " fa fa-plus " ></ i > '.tr(' Riga ').'
</ a >
2024-05-16 18:02:50 +02:00
< div class = " btn-group tip " data - card - widget = " tooltip " >
2024-05-22 17:16:50 +02:00
< button type = " button " class = " btn btn-primary dropdown-toggle " data - toggle = " dropdown " aria - haspopup = " true " aria - expanded = " true " >
2023-02-17 10:59:50 +01:00
< i class = " fa fa-list " ></ i > '.tr(' Altro ').'
< span class = " caret " ></ span >
</ button >
< ul class = " dropdown-menu dropdown-menu-right " >
2024-05-22 12:00:54 +02:00
< a class = " dropdown-item " style = " cursor:pointer " onclick = " gestioneDescrizione(this) " data - title = " '.tr('Aggiungi descrizione').' " >
< i class = " fa fa-plus " ></ i > '.tr(' Descrizione ').'
</ a >
< a class = " dropdown-item " style = " cursor:pointer " onclick = " gestioneSconto(this) " data - title = " '.tr('Aggiungi sconto/maggiorazione').' " >
< i class = " fa fa-plus " ></ i > '.tr(' Sconto / maggiorazione ').'
</ a >
2023-02-17 10:59:50 +01:00
</ ul >
</ div >
</ div >
2023-05-24 17:15:29 +02:00
< div class = " col-md-2 " >
{[ " type " : " select " , " label " : " '.tr('Ordinamento').' " , " name " : " ordinamento " , " class " : " no-search " , " value " : " '.( $_SESSION['module_'.$id_module] ['order_row_desc'] ? 'desc' : 'manuale').' " , " values " : " list= \" desc \" : \" '.tr('Ultima riga inserita').' \" , \" manuale \" : \" '.tr('Manuale').' \" " ]}
</ div >
2023-02-17 10:59:50 +01:00
</ div >
</ form > ' ;
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
< 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 >
2018-11-13 14:51:19 +01:00
{( " name " : " filelist_and_upload " , " id_module " : " $id_module $ " , " id_record " : " $id_record $ " )}
{( " name " : " log_email " , " id_module " : " $id_module $ " , " id_record " : " $id_record $ " )}
2017-09-04 11:53:30 +02:00
< script type = " text/javascript " >
2020-08-03 12:08:52 +02:00
function gestioneSconto ( button ) {
2024-04-12 10:54:05 +02:00
gestioneRiga ( button , " is_sconto=1 " );
2020-08-03 12:08:52 +02:00
}
function gestioneDescrizione ( button ) {
2024-04-12 10:54:05 +02:00
gestioneRiga ( button , " is_descrizione=1 " );
2020-08-03 12:08:52 +02:00
}
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
2023-02-17 10:59:50 +01:00
let title = $ ( button ) . attr ( " data-title " );
2020-08-03 12:08:52 +02:00
// Apertura modal
2024-04-12 10:54:05 +02:00
options = options ? options : " is_riga=1 " ;
2021-03-29 18:31:23 +02:00
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 .
*/
2023-02-17 10:59:50 +01:00
function caricaRighe ( id_riga ) {
2020-09-14 10:49:23 +02:00
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 );
2023-02-17 10:59:50 +01:00
if ( id_riga != null ) {
$ ( " tr[data-id= " + id_riga + " ] " ) . effect ( " highlight " , 1000 );
}
2020-09-14 10:49:23 +02:00
});
}
$ ( document ) . ready ( function () {
2023-02-17 10:59:50 +01:00
caricaRighe ( null );
2020-08-03 12:08:52 +02:00
$ ( " #data_accettazione " ) . on ( " dp.change " , function () {
if ( $ ( this ) . val ()){
$ ( " #data_rifiuto " ) . attr ( " disabled " , true );
} else {
$ ( " #data_rifiuto " ) . attr ( " disabled " , false );
}
2017-09-04 11:53:30 +02:00
});
2018-05-11 14:48:46 +02: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-04-13 17:55:20 +02:00
2020-08-03 12:08:52 +02:00
$ ( " #data_accettazione " ) . trigger ( " dp.change " );
$ ( " #data_rifiuto " ) . trigger ( " dp.change " );
2023-02-17 10:59:50 +01:00
$ ( " #id_articolo " ) . on ( " change " , function ( e ) {
if ( $ ( this ) . val ()) {
var data = $ ( this ) . selectData ();
if ( data . barcode ) {
$ ( " #barcode " ) . val ( data . barcode );
} else {
$ ( " #barcode " ) . val ( " " );
}
}
e . preventDefault ();
setTimeout ( function (){
$ ( " #barcode " ) . focus ();
}, 100 );
});
$ ( " #barcode " ) . focus ();
caricaRighe ( null );
2020-08-03 12:08:52 +02:00
});
2020-02-17 13:18:25 +01:00
2020-08-03 12:08:52 +02:00
$ ( " #idanagrafica_c " ) . change ( function () {
updateSelectOption ( " idanagrafica " , $ ( this ) . val ());
session_set ( " superselect,idanagrafica " , $ ( this ) . val (), 0 );
2020-02-17 13:18:25 +01:00
2020-08-03 12:08:52 +02:00
$ ( " #idsede " ) . selectReset ();
2022-01-14 17:25:18 +01:00
$ ( " #matricolaimpianto " ) . selectReset ();
2022-07-07 17:28:18 +02:00
$ ( " #idpagamento " ) . selectReset ();
let data = $ ( this ) . selectData ();
if ( data ) {
// Impostazione del tipo di pagamento da anagrafica
if ( data . id_pagamento ) {
input ( " idpagamento " ) . getElement ()
. selectSetNew ( data . id_pagamento , data . desc_pagamento );
}
}
2020-08-03 12:08:52 +02:00
});
2020-02-17 13:18:25 +01:00
2020-08-03 12:08:52 +02:00
$ ( " #codice_cig, #codice_cup " ) . bind ( " keyup change " , function ( e ) {
if ( $ ( " #codice_cig " ) . val () == " " && $ ( " #codice_cup " ) . val () == " " ){
$ ( " #id_documento_fe " ) . prop ( " required " , false );
} else {
$ ( " #id_documento_fe " ) . prop ( " required " , true );
}
});
2023-02-17 10:59:50 +01:00
2023-03-30 16:36:24 +02:00
async function salvaArticolo () {
// Salvataggio via AJAX
await salvaForm ( " #edit-form " );
2023-02-17 10:59:50 +01:00
$ ( " #link_form " ) . ajaxSubmit ({
url : globals . rootdir + " /actions.php " ,
data : {
id_module : globals . id_module ,
id_record : globals . id_record ,
ajax : true ,
},
type : " post " ,
beforeSubmit : function ( arr , $form , options ) {
return $form . parsley () . validate ();
},
success : function ( response ){
renderMessages ();
if ( response . length > 0 ){
response = JSON . parse ( response );
swal ({
type : " error " ,
title : " '.tr('Errore').' " ,
text : response . error ,
});
}
$ ( " #barcode " ) . val ( " " );
$ ( " #id_articolo " ) . selectReset ();
2023-04-06 13:11:38 +02:00
content_was_modified = false ;
2023-02-17 10:59:50 +01:00
caricaRighe ( null );
}
});
}
2023-02-27 12:09:59 +01:00
$ ( " #link_form " ) . bind ( " keypress " , function ( e ) {
2023-02-17 10:59:50 +01:00
if ( e . keyCode == 13 ) {
e . preventDefault ();
salvaArticolo ();
return false ;
}
});
2020-08-03 12:08:52 +02:00
</ script > ' ;
2017-09-04 11:53:30 +02:00
2018-09-05 10:05:23 +02:00
// Collegamenti diretti
2019-11-14 18:37:42 +01:00
// Fatture o interventi collegati a questo contratto
2024-04-02 12:32:38 +02:00
$elementi = $dbo -> fetchArray ( '
SELECT
`co_documenti` . `id` ,
`co_documenti` . `data` ,
`co_documenti` . `numero` ,
`co_documenti` . `numero_esterno` ,
2024-04-18 17:44:05 +02:00
`co_tipidocumento_lang` . `title` AS tipo_documento ,
2024-04-02 12:32:38 +02:00
IF ( `co_tipidocumento` . `dir` = \ ' entrata\ ' , \ ' Fatture di vendita\ ' , \ ' Fatture di acquisto\ ' ) AS modulo
FROM `co_documenti`
INNER JOIN `co_righe_documenti` ON `co_righe_documenti` . `iddocumento` = `co_documenti` . `id`
INNER JOIN `co_tipidocumento` ON `co_tipidocumento` . `id` = `co_documenti` . `idtipodocumento`
LEFT JOIN `co_tipidocumento_lang` ON ( `co_tipidocumento_lang` . `id_record` = `co_tipidocumento` . `id` AND `co_tipidocumento_lang` . `id_lang` = '.prepare(Models\Locale::getDefault()->id).' )
WHERE `co_righe_documenti` . `idcontratto` = '.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`
2024-05-23 11:36:25 +02:00
WHERE ( `in_righe_interventi` . `original_document_id` = '.prepare($contratto->id).' '.($contratto ? ' AND `in_righe_interventi` . `original_document_type` = '.prepare($contratto::class) : ' ').' )
2024-04-02 12:32:38 +02:00
OR `in_interventi` . `id_contratto` = '.prepare($id_record).'
ORDER BY `data` ' );
2019-11-14 18:37:42 +01:00
2018-09-05 10:05:23 +02:00
if ( ! empty ( $elementi )) {
2017-09-14 10:27:49 +02:00
echo '
2024-05-16 18:02:50 +02:00
< div class = " card card-warning collapsable collapsed-card " >
< div class = " card-header with-border " >
< h3 class = " card-title " >< i class = " fa fa-warning " ></ i > '.tr(' Documenti collegati : _NUM_ ' , [
2024-03-22 15:52:24 +01:00
'_NUM_' => count ( $elementi ),
]) . ' </ h3 >
2024-05-16 18:02:50 +02:00
< div class = " card-tools pull-right " >
2024-05-23 17:51:21 +02:00
< button type = " button " class = " btn btn-tool " data - card - widget = " collapse " >< i class = " fa fa-plus " ></ i ></ button >
2018-09-05 10:05:23 +02:00
</ div >
</ div >
2024-05-16 18:02:50 +02:00
< div class = " card-body " >
2018-09-05 10:05:23 +02:00
< ul > ' ;
2019-11-15 15:11:20 +01:00
2019-11-14 18:37:42 +01:00
// Elenco attività o contratti collegati
2021-07-28 11:50:02 +02:00
foreach ( $elementi as $elemento ) {
$descrizione = tr ( '_DOC_ num. _NUM_ del _DATE_' , [
'_DOC_' => $elemento [ 'tipo_documento' ],
'_NUM_' => ! empty ( $elemento [ 'numero_esterno' ]) ? $elemento [ 'numero_esterno' ] : $elemento [ 'numero' ],
'_DATE_' => Translator :: dateToLocale ( $elemento [ 'data' ]),
]);
2019-11-14 18:37:42 +01:00
2021-07-28 11:50:02 +02:00
echo '
2024-06-25 09:40:41 +02:00
< li > '.Modules::link($elemento[' modulo '] == ' Interventi ' ? ' Attività ' : $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 > ' ;
2019-11-15 15:11:20 +01:00
} else {
?>
2017-11-16 14:27:43 +01:00
< a class = " btn btn-danger ask " data - backto = " record-list " >
2023-09-28 16:08:45 +02:00
< i id = " elimina " class = " fa fa-trash " ></ i > < ? php echo tr ( 'Elimina' ); ?>
2018-01-15 20:28:36 +01:00
</ a >
2019-11-14 18:37:42 +01:00
< ? php
2019-11-15 15:11:20 +01:00
}
2020-04-01 16:42:32 +02:00
2020-12-01 16:52:51 +01:00
echo '
< script type = " text/javascript " >
$ ( document ) . ready ( function () {
2021-03-08 14:17:59 +01:00
$ ( " #data_conclusione " ) . on ( " dp.change " , function ( e ) {
let data_accettazione = $ ( " #data_accettazione " );
data_accettazione . data ( " DateTimePicker " ) . maxDate ( e . date );
if ( data_accettazione . data ( " DateTimePicker " ) . date () > e . date ){
data_accettazione . data ( " DateTimePicker " ) . date ( e . date );
}
});
2023-01-13 09:35:27 +01:00
$ ( " #idsede " ) . change ( function (){
updateSelectOption ( " idsede_destinazione " , $ ( this ) . val ());
$ ( " #idreferente " ) . selectReset ();
});
2020-04-01 16:42:32 +02:00
});
2023-05-24 17:15:29 +02:00
input ( " ordinamento " ) . on ( " change " , function (){
if ( input ( this ) . get () == " desc " ) {
session_set ( " module_'. $id_module .',order_row_desc " , 1 , " " ) . then ( function () {
caricaRighe ( null );
});
} else {
session_set ( " module_'. $id_module .',order_row_desc " ) . then ( function () {
caricaRighe ( null );
});
}
});
2020-12-01 16:52:51 +01:00
</ script > ' ;