2020-02-17 18:43:49 +01:00
< ? php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager : il software gestionale open source per l ' assistenza tecnica e la fatturazione
2021-02-18 18:53:28 +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 />.
*/
2020-02-17 18:43:49 +01:00
2020-04-20 11:23:01 +02:00
use Plugins\PianificazioneFatturazione\Pianificazione ;
2020-02-17 18:43:49 +01:00
include_once __DIR__ . '/../../core.php' ;
2020-04-20 11:23:01 +02:00
$id_rata = get ( 'rata' );
$pianificazione = Pianificazione :: find ( $id_rata );
$contratto = $pianificazione -> contratto ;
2020-02-17 18:43:49 +01:00
2020-04-20 11:23:01 +02:00
$id_pianificazione = $pianificazione -> id ;
$numero_rata = $contratto -> pianificazioni -> search ( function ( $item ) use ( $id_pianificazione ) {
return $item -> id = $id_pianificazione ;
}) + 1 ;
2020-02-17 18:43:49 +01:00
$module_fattura = Modules :: get ( 'Fatture di vendita' );
2020-11-13 15:27:07 +01:00
$id_conto = setting ( 'Conto predefinito fatture di vendita' );
2021-02-18 18:48:44 +01:00
$data = date ( 'Y-m' , strtotime ( $pianificazione -> data_scadenza )) . '-' . date ( 'd' , strtotime ( $contratto -> data_accettazione ));
2020-11-13 15:27:07 +01:00
2020-02-17 18:43:49 +01:00
echo '
< form action = " " method = " post " >
< input type = " hidden " name = " op " value = " add_fattura " >
< input type = " hidden " name = " backto " value = " record-edit " >
2020-04-20 11:23:01 +02:00
< input type = " hidden " name = " rata " value = " '. $id_rata .' " >
2020-02-17 18:43:49 +01:00
< input type = " hidden " name = " id_module " value = " '. $id_module .' " >
< input type = " hidden " name = " id_plugin " value = " '. $id_plugin .' " >
< input type = " hidden " name = " id_record " value = " '. $id_record .' " > ' ;
// Data
echo '
< div class = " row " >
2020-11-13 15:27:07 +01:00
< div class = " col-md-6 " >
2021-02-18 09:57:35 +01:00
{[ " type " : " date " , " label " : " '.tr('Data').' " , " name " : " data " , " required " : 1 , " class " : " text-center " , " value " : " '. $pianificazione->data_scadenza .' " ]}
2020-02-17 18:43:49 +01:00
</ div > ' ;
// Tipo di documento
echo '
2020-11-13 15:27:07 +01:00
< div class = " col-md-6 " >
2020-02-17 18:43:49 +01:00
{[ " type " : " select " , " label " : " '.tr('Tipo di fattura').' " , " name " : " idtipodocumento " , " required " : 1 , " values " : " query=SELECT * FROM co_tipidocumento WHERE dir= \ 'entrata \ ' " ]}
2020-11-13 15:27:07 +01:00
</ div >
</ div > ' ;
2020-02-17 18:43:49 +01:00
// Sezionale
echo '
2020-11-13 15:27:07 +01:00
< div class = " row " >
< div class = " col-md-6 " >
2020-02-17 18:43:49 +01:00
{[ " type " : " select " , " label " : " '.tr('Sezionale').' " , " name " : " id_segment " , " required " : 1 , " values " : " query=SELECT id, name AS descrizione FROM zz_segments WHERE id_module='. $module_fattura['id'] .' ORDER BY name " , " value " : " '. $_SESSION['module_'.$module_fattura['id'] ]['id_segment'].' " ]}
2020-11-13 15:27:07 +01:00
</ div > ' ;
// Conto
echo '
< div class = " col-md-6 " >
{[ " type " : " select " , " label " : " '.tr('Conto').' " , " name " : " id_conto " , " required " : 1 , " value " : " '. $id_conto .' " , " ajax-source " : " conti-vendite " ]}
2020-02-17 18:43:49 +01:00
</ div >
</ div > ' ;
2021-04-20 18:26:22 +02:00
//Accoda a fatture non emesse
echo '
< div class = " row " >
< div class = " col-md-6 " >
{[ " type " : " checkbox " , " label " : " <small>'.tr('Aggiungere alle fatture di vendita non ancora emesse?').'</small> " , " placeholder " : " '.tr('Aggiungere alle fatture di vendita nello stato bozza?').' " , " name " : " accodare " ]}
</ div >
</ div > ' ;
2021-04-23 17:59:27 +02:00
//gestione replace
2021-04-26 09:16:16 +02:00
$descrizione = get_var ( 'Descrizione fattura pianificata' );
2021-04-23 17:59:27 +02:00
$modules = MODULES :: get ( 'Contratti' )[ 'id' ];
$variables = include Modules :: filepath ( $modules , 'variables.php' );
foreach ( $variables as $variable => $value ) {
2021-04-26 09:16:16 +02:00
$descrizione = str_replace ( '{' . $variable . '}' , $value , $descrizione );
2021-04-23 17:59:27 +02:00
}
2021-04-26 09:16:16 +02:00
$descrizione = str_replace ( '{rata}' , $numero_rata , $descrizione );
$descrizione = str_replace ( '{zona}' , $zona , $descrizione );
2020-02-17 18:43:49 +01:00
echo '
< div class = " row " >
< div class = " col-md-12 " >
2020-02-24 18:41:30 +01:00
{[ " type " : " textarea " , " label " : " '.tr('Note della fattura').' " , " name " : " note " , " value " : " '. $descrizione .' " ]}
2020-02-17 18:43:49 +01:00
</ div >
</ div > ' ;
2020-02-17 20:21:18 +01:00
// Righe
echo '
< div class = " box box-info " >
< div class = " box-header with-border " >
< h3 class = " box-title " >
'.tr(' Righe previste ').'
</ h3 >
</ div >
< div class = " box-body " >
< table class = " table table-bordered table-striped table-hover table-condensed " >
< thead >
< tr >
< th width = " 40% " > '.tr(' Descrizione ').' </ th >
< th class = " text-center " > '.tr(' Q . tà ').' </ th >
< th class = " text-center " > '.tr(' Prezzo unitario ').' </ th >
< th class = " text-center " > '.tr(' IVA ').' </ th >
< th class = " text-center " > '.tr(' Totale imponbile ').' </ th >
</ tr >
</ thead >
< tbody > ' ;
$righe = $pianificazione -> getRighe ();
foreach ( $righe as $riga ) {
echo '
< tr >
< td > '.$riga->descrizione.' </ td >
< td class = " text-center " > '.$riga->qta.' </ td >
< td class = " text-right " > '.moneyFormat($riga->prezzo_unitario).' </ td >
< td class = " text-right " >
'.moneyFormat($riga->iva).' < br >
< small class = " help-block " > '.$riga->aliquota->descrizione.' </ small >
</ td >
< td class = " text-right " > '.moneyFormat($riga->totale_imponibile).' </ td >
</ tr > ' ;
}
echo '
</ tbody >
</ table >
</ div >
</ div > ' ;
2020-02-17 18:43:49 +01:00
echo '
<!-- PULSANTI -->
< div class = " row " >
< div class = " col-md-12 text-right " >
< button type = " submit " class = " btn btn-primary pull-right " >
< i class = " fa fa-plus " ></ i > '.tr(' Aggiungi ').'
</ button >
</ div >
</ div >
</ form > ' ;
echo '
< script > $ ( document ) . ready ( init ) </ script > ' ;