2018-05-19 00:50:06 +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 />.
*/
2018-05-19 00:50:06 +02:00
2021-07-20 10:01:59 +02:00
use Models\Module ;
2018-05-19 00:50:06 +02:00
include_once __DIR__ . '/../../core.php' ;
2021-07-20 10:01:59 +02:00
// Informazioni sui movimenti interni
if ( ! empty ( $ddt -> id_ddt_trasporto_interno )) {
$id_module_collegamento = $ddt -> direzione == 'entrata' ? Module :: pool ( 'Ddt di acquisto' ) -> id : Module :: pool ( 'Ddt di vendita' ) -> id ;
echo '
< div class = " tip " data - toggle = " tooltip " title = " '.tr( " Questo ddt è impostato sull 'anagrafica Azienda, e pertanto rappresenta un trasporto interno di merce: il movimento tra sedi distinte è necessario completato tramite un DDT in direzione opposta").' . " >
< a class = " btn btn-info " href = " '.base_url().'/editor.php?id_module='. $id_module_collegamento .'&id_record='. $ddt->id_ddt_trasporto_interno .' " >
< i class = " fa fa-truck " ></ i > '.tr(' DDT di completamento trasporto ').'
</ a >
</ div > ' ;
} elseif ( $azienda -> id == $ddt -> anagrafica -> id ) {
echo '
2021-07-28 10:15:46 +02:00
< div class = " tip " data - toggle = " tooltip " title = " '.tr( " Questo ddt è impostato sull 'anagrafica Azienda, e pertanto rappresenta un trasferimento interno di merci tra sedi distinte dell' Azienda : per completare la movimentazione , è necessario generare un DDT in direzione opposta tramite questo pulsante " ).'. " >
2021-07-20 10:01:59 +02:00
< button class = " btn btn-warning '.( $ddt->isImportabile () ? '' : 'disabled').' " onclick = " completaTrasporto() " >
2021-07-28 10:15:46 +02:00
< i class = " fa fa-truck " ></ i > '.tr(' Completa trasferimento tra sedi ').'
2021-07-20 10:01:59 +02:00
</ button >
</ div >
< script >
function completaTrasporto () {
swal ({
title : " '.tr('Completare il trasporto?').' " ,
text : " '.tr('Sei sicuro di voler completare il trasporto interno tramite un DDT in direzione opposta?').' " ,
type : " warning " ,
showCancelButton : true ,
confirmButtonClass : " btn btn-lg btn-success " ,
confirmButtonText : " '.tr('Completa').' " ,
}) . then (
function () {
location . href = globals . rootdir + " /editor.php?id_module='. $id_module .'&id_record='. $id_record .'&op=completa_trasporto&backto=record-edit " ;
},
function () {}
);
}
</ script > ' ;
}
// Informazioni sull'importabilità del DDT
$stati = $database -> fetchArray ( 'SELECT descrizione FROM `dt_statiddt` WHERE `is_fatturabile` = 1' );
2021-03-29 10:07:45 +02:00
foreach ( $stati as $stato ) {
2021-03-26 09:42:43 +01:00
$stati_importabili [] = $stato [ 'descrizione' ];
}
2021-07-20 10:01:59 +02:00
$causali = $database -> fetchArray ( 'SELECT descrizione FROM `dt_causalet` WHERE `is_importabile` = 1' );
2021-03-29 10:07:45 +02:00
foreach ( $causali as $causale ) {
2021-03-26 09:42:43 +01:00
$causali_importabili [] = $causale [ 'descrizione' ];
}
2019-02-14 17:49:58 +01:00
echo '
2021-03-29 10:07:45 +02:00
< div class = " tip " data - toggle = " tooltip " title = " '.tr('Il ddt è fatturabile solo se si trova negli stati _STATE_LIST_ e la relativa causale è una delle seguenti: _CAUSALE_LIST_', [
2021-03-26 09:42:43 +01:00
'_STATE_LIST_' => implode ( ', ' , $stati_importabili ),
'_CAUSALE_LIST_' => implode ( ', ' , $causali_importabili ),
2020-07-20 17:26:50 +02:00
]) . ' " >
2021-02-18 18:48:44 +01:00
< button class = " btn btn-info '.( $ddt->isImportabile () ? '' : 'disabled').' " data - href = " '. $structure->fileurl ('crea_documento.php').'?id_module='. $id_module .'&id_record='. $id_record .'&documento=fattura " data - toggle = " modal " data - title = " '.tr('Crea ').( $ddt->reversed ? 'nota di credito' : ( $dir == 'entrata' ? 'fattura di vendita' : 'fattura di acquisto')).' " >< i class = " fa fa-magic " ></ i > '.tr(' Crea ').($ddt->reversed ? ' nota di credito ' : ($dir == ' entrata ' ? ' fattura di vendita ' : ' fattura di acquisto ')).'
2020-07-20 17:26:50 +02:00
</ button >
</ div > ' ;
2021-12-06 12:46:18 +01:00
// Duplica ddt
echo '
< button type = " button " class = " btn btn-primary " onclick = " if( confirm( \ ''.tr('Duplicare questo ddt?').' \ ') ) { $ ( \ '#copia-ddt \ ').submit(); } " >
< i class = " fa fa-copy " ></ i > '.tr(' Duplica ddt ').'
</ button > ' ;
echo '
< form action = " " method = " post " id = " copia-ddt " >
< input type = " hidden " name = " backto " value = " record-edit " >
< input type = " hidden " name = " op " value = " copy " >
</ form > ' ;