Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
1f6d00211d
|
@ -191,8 +191,11 @@ function calcola_sconto($data)
|
|||
/**
|
||||
* Restistuisce le informazioni sull'eventuale riferimento ai documenti.
|
||||
*
|
||||
* @param array $data
|
||||
* @param string $dir
|
||||
* @param $info
|
||||
* @param $dir
|
||||
* @param array $ignore
|
||||
*
|
||||
* @throws Exception
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
|
|
|
@ -201,6 +201,11 @@ class Fattura extends Document
|
|||
return $this->belongsTo(Stato::class, 'idstatodocumento');
|
||||
}
|
||||
|
||||
public function statoFE()
|
||||
{
|
||||
return $this->belongsTo(StatoFE::class, 'codice_stato_fe');
|
||||
}
|
||||
|
||||
public function articoli()
|
||||
{
|
||||
return $this->hasMany(Components\Articolo::class, 'iddocumento');
|
||||
|
|
|
@ -28,7 +28,7 @@ include_once __DIR__.'/../../core.php';
|
|||
|
||||
|
||||
<div class="col-md-3">
|
||||
{[ "type": "text", "label": "Data", "name": "data", "required": 1, "class": "datepicker text-center", "value": "<?php echo date('d/m/Y', strtotime($record['data'])); ?>", "extra": "" ]}
|
||||
{[ "type": "text", "label": "Data", "name": "data", "required": 1, "class": "datepicker text-center", "value": "<?php $record['data']; ?>", "extra": "" ]}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -31,7 +31,6 @@ switch (filter('op')) {
|
|||
if ($result) {
|
||||
database()->update('co_documenti', [
|
||||
'codice_stato_fe' => 'WAIT',
|
||||
'descrizione_stato_fe' => 'Fattura in elaborazione...',
|
||||
'data_stato_fe' => date('Y-m-d H:i:s'),
|
||||
], ['id' => $id_record]);
|
||||
}
|
||||
|
|
|
@ -152,7 +152,7 @@ echo '
|
|||
</a>';
|
||||
|
||||
// Scelgo quando posso inviarla
|
||||
$send = Interaction::isEnabled() && $generated && in_array( $record['codice_stato_fe'], array('GEN', 'ERVAL') );
|
||||
$send = Interaction::isEnabled() && $generated && in_array($record['codice_stato_fe'], ['GEN', 'ERVAL']);
|
||||
|
||||
echo '
|
||||
|
||||
|
@ -163,31 +163,25 @@ echo '
|
|||
</button><br><br>';
|
||||
|
||||
// Messaggio esito invio
|
||||
|
||||
if ($send){
|
||||
if ($record['codice_stato_fe'] == '') {
|
||||
|
||||
} elseif ($record['codice_stato_fe'] == 'GEN') {
|
||||
echo '
|
||||
<div class="alert alert-warning">'.tr('La fattura è stata generata ed è pronta per l\'invio.').'</div>
|
||||
if ($record['codice_stato_fe'] == 'GEN') {
|
||||
echo '
|
||||
<div class="alert alert-warning">'.tr("La fattura è stata generata ed è pronta per l'invio").'.</div>
|
||||
';
|
||||
} else {
|
||||
$stato_fe = database()->fetchOne('SELECT codice, descrizione, icon FROM fe_stati_documento WHERE codice='.prepare($record['codice_stato_fe']));
|
||||
|
||||
if (in_array($stato_fe['codice'], array('EC01', 'RC'))) {
|
||||
$class = 'success';
|
||||
} elseif (in_array($stato_fe['codice'], array('ERVAL', 'GEN', 'MC', 'WAIT'))) {
|
||||
$class = 'warning';
|
||||
} else {
|
||||
$class = 'danger';
|
||||
}
|
||||
|
||||
echo '
|
||||
<div class="alert text-left alert-'.$class.'"><big><i class="'.$stato_fe['icon'].'" style="color:#fff;"></i> <b>'.$record['codice_stato_fe'].'</b> - '.$record['descrizione_stato_fe'].'</big> <div class="pull-right"><i class="fa fa-clock-o"></i> '.date('d/m/Y H:i', strtotime($record['data_stato_fe'])).'</small></div>
|
||||
';
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$stato_fe = database()->fetchOne('SELECT codice, descrizione, icon FROM fe_stati_documento WHERE codice='.prepare($record['codice_stato_fe']));
|
||||
|
||||
if (in_array($stato_fe['codice'], ['EC01', 'RC'])) {
|
||||
$class = 'success';
|
||||
} elseif (in_array($stato_fe['codice'], ['ERVAL', 'GEN', 'MC', 'WAIT'])) {
|
||||
$class = 'warning';
|
||||
} else {
|
||||
$class = 'danger';
|
||||
}
|
||||
|
||||
echo '
|
||||
<div class="alert text-left alert-'.$class.'"><big><i class="'.$stato_fe['icon'].'" style="color:#fff;"></i> <b>'.$stato_fe['codice'].'</b> - '.$stato_fe['descrizione'].'</big> <div class="pull-right"><i class="fa fa-clock-o"></i> '.Translator::timestampToLocale($record['data_stato_fe']).'</small></div>
|
||||
';
|
||||
}
|
||||
|
||||
echo '
|
||||
<script>
|
||||
|
|
|
@ -274,6 +274,7 @@ class FatturaElettronica
|
|||
database()->update('co_documenti', [
|
||||
'progressivo_invio' => $this->getDocumento()['progressivo_invio'],
|
||||
'codice_stato_fe' => 'GEN',
|
||||
'data_stato_fe' => date('Y-m-d H:i:s'),
|
||||
], ['id' => $this->getDocumento()['id']]);
|
||||
|
||||
return ($result === false) ? null : $filename;
|
||||
|
@ -286,12 +287,12 @@ class FatturaElettronica
|
|||
*/
|
||||
public function getFilename($new = false)
|
||||
{
|
||||
|
||||
if (!empty(setting('Terzo intermediario')))
|
||||
$anagrafica = Anagrafica::find(setting('Terzo intermediario'));
|
||||
else
|
||||
$anagrafica = static::getAzienda();
|
||||
|
||||
if (!empty(setting('Terzo intermediario'))) {
|
||||
$anagrafica = Anagrafica::find(setting('Terzo intermediario'));
|
||||
} else {
|
||||
$anagrafica = static::getAzienda();
|
||||
}
|
||||
|
||||
$prefix = 'IT'.(!empty($anagrafica['codice_fiscale']) ? $anagrafica['codice_fiscale'] : $anagrafica['piva']);
|
||||
|
||||
if (empty($this->documento['progressivo_invio']) || !empty($new)) {
|
||||
|
@ -359,14 +360,15 @@ class FatturaElettronica
|
|||
* @return array
|
||||
*/
|
||||
protected static function getDatiTrasmissione($fattura)
|
||||
{
|
||||
// Se in impostazioni ho definito un terzo intermediario (es. Aruba, Teamsystem)
|
||||
if (!empty(setting('Terzo intermediario')))
|
||||
$anagrafica = Anagrafica::find(setting('Terzo intermediario'));
|
||||
else
|
||||
$anagrafica = static::getAzienda();
|
||||
|
||||
$documento = $fattura->getDocumento();
|
||||
{
|
||||
// Se in impostazioni ho definito un terzo intermediario (es. Aruba, Teamsystem)
|
||||
if (!empty(setting('Terzo intermediario'))) {
|
||||
$anagrafica = Anagrafica::find(setting('Terzo intermediario'));
|
||||
} else {
|
||||
$anagrafica = static::getAzienda();
|
||||
}
|
||||
|
||||
$documento = $fattura->getDocumento();
|
||||
$cliente = $fattura->getCliente();
|
||||
|
||||
$sede = database()->fetchOne('SELECT `codice_destinatario` FROM `an_sedi` WHERE `id` = '.prepare($documento['idsede']));
|
||||
|
@ -389,7 +391,7 @@ class FatturaElettronica
|
|||
'IdCodice' => (!empty($anagrafica['codice_fiscale'])) ? $anagrafica['codice_fiscale'] : str_replace($anagrafica->nazione->iso2, '', $anagrafica['piva']),
|
||||
]
|
||||
];
|
||||
|
||||
|
||||
$result[] = [
|
||||
'ProgressivoInvio' => $documento['progressivo_invio'],
|
||||
'FormatoTrasmissione' => ($cliente['tipo'] == 'Ente pubblico') ? 'FPA12' : 'FPR12',
|
||||
|
@ -425,11 +427,11 @@ class FatturaElettronica
|
|||
|
||||
// Partita IVA (obbligatoria se presente)
|
||||
if (!empty($anagrafica['piva'])) {
|
||||
|
||||
|
||||
if (!empty($anagrafica->nazione->iso2)) {
|
||||
$result['IdFiscaleIVA']['IdPaese'] = $anagrafica->nazione->iso2;
|
||||
}
|
||||
|
||||
|
||||
$result['IdFiscaleIVA']['IdCodice'] = str_replace($anagrafica->nazione->iso2, '', $anagrafica['piva']);
|
||||
}
|
||||
|
||||
|
@ -498,15 +500,14 @@ class FatturaElettronica
|
|||
*/
|
||||
protected static function getCedentePrestatore($fattura)
|
||||
{
|
||||
$documento = $fattura->getDocumento();
|
||||
|
||||
$documento = $fattura->getDocumento();
|
||||
|
||||
//Fattura per conto terzi, il cliente diventa il cedente al posto della mia Azienda (fornitore)
|
||||
if ($documento['is_fattura_conto_terzi']){
|
||||
$azienda = $fattura->getCliente();
|
||||
}else{
|
||||
$azienda = static::getAzienda();
|
||||
}
|
||||
//Fattura per conto terzi, il cliente diventa il cedente al posto della mia Azienda (fornitore)
|
||||
if ($documento['is_fattura_conto_terzi']) {
|
||||
$azienda = $fattura->getCliente();
|
||||
} else {
|
||||
$azienda = static::getAzienda();
|
||||
}
|
||||
|
||||
$result = [
|
||||
'DatiAnagrafici' => static::getDatiAnagrafici($azienda, true),
|
||||
|
@ -557,17 +558,16 @@ class FatturaElettronica
|
|||
* @return array
|
||||
*/
|
||||
protected static function getCessionarioCommittente($fattura)
|
||||
{
|
||||
|
||||
$documento = $fattura->getDocumento();
|
||||
|
||||
//Fattura per conto terzi, la mia Azienda (fornitore) diventa il cessionario al posto del cliente
|
||||
if ($documento['is_fattura_conto_terzi']){
|
||||
$cliente = static::getAzienda();
|
||||
}else{
|
||||
$cliente = $fattura->getCliente();
|
||||
}
|
||||
|
||||
{
|
||||
$documento = $fattura->getDocumento();
|
||||
|
||||
//Fattura per conto terzi, la mia Azienda (fornitore) diventa il cessionario al posto del cliente
|
||||
if ($documento['is_fattura_conto_terzi']) {
|
||||
$cliente = static::getAzienda();
|
||||
} else {
|
||||
$cliente = $fattura->getCliente();
|
||||
}
|
||||
|
||||
$result = [
|
||||
'DatiAnagrafici' => static::getDatiAnagrafici($cliente),
|
||||
'Sede' => static::getSede($cliente),
|
||||
|
@ -610,19 +610,18 @@ class FatturaElettronica
|
|||
// TODO: 'Causale' => $documento['causale'],
|
||||
];
|
||||
|
||||
|
||||
$righe = $fattura->getRighe();
|
||||
|
||||
// Ritenuta d'Acconto
|
||||
|
||||
// Ritenuta d'Acconto
|
||||
$id_ritenuta = null;
|
||||
$totale_ritenutaacconto = 0;
|
||||
|
||||
// Rivalsa
|
||||
$id_rivalsainps = null;
|
||||
$totale_ritenutaacconto = 0;
|
||||
|
||||
// Rivalsa
|
||||
$id_rivalsainps = null;
|
||||
$totale_rivalsainps = 0;
|
||||
|
||||
|
||||
foreach ($righe as $riga) {
|
||||
if (!empty($riga['idritenutaacconto']) and empty($riga['is_descrizione']) ) {
|
||||
if (!empty($riga['idritenutaacconto']) and empty($riga['is_descrizione'])) {
|
||||
$id_ritenuta = $riga['idritenutaacconto'];
|
||||
$totale_ritenutaacconto += $riga['ritenutaacconto'];
|
||||
}
|
||||
|
@ -894,13 +893,13 @@ class FatturaElettronica
|
|||
$riga['qta'] = abs($riga['qta']);
|
||||
$riga['sconto'] = abs($riga['sconto']);
|
||||
|
||||
//Fix per righe di tipo descrizione, copio idiva dalla prima riga del documento che non è di tipo descrizione, riportando di conseguenza eventuali % e/o nature
|
||||
// Fix per righe di tipo descrizione, copio idiva dalla prima riga del documento che non è di tipo descrizione, riportando di conseguenza eventuali % e/o nature
|
||||
if (!empty($riga['is_descrizione'])) {
|
||||
$riga['idiva'] = $database->fetchOne('SELECT `idiva` FROM `co_righe_documenti` WHERE `is_descrizione` = 0 AND `iddocumento` = '.prepare($documento['id']))['idiva'];
|
||||
}
|
||||
|
||||
//Fix per qta, deve sempre essere impostata almeno a 1
|
||||
$riga['qta'] = (!empty($riga['qta'])) ? $riga['qta'] : 1;
|
||||
// Fix per qta, deve sempre essere impostata almeno a 1
|
||||
$riga['qta'] = !empty($riga['qta']) ? $riga['qta'] : 1;
|
||||
|
||||
$prezzo_unitario = $riga['subtotale'] / $riga['qta'];
|
||||
$prezzo_totale = $riga['subtotale'] - $riga['sconto'];
|
||||
|
@ -929,42 +928,16 @@ class FatturaElettronica
|
|||
$dettaglio['CodiceArticolo'] = $codice_articolo;
|
||||
}
|
||||
|
||||
//Non ammesso ’
|
||||
//$descrizione = html_entity_decode($riga['descrizione'], ENT_HTML5, 'UTF-8');
|
||||
// Non ammesso ’
|
||||
// $descrizione = html_entity_decode($riga['descrizione'], ENT_HTML5, 'UTF-8');
|
||||
$descrizione = str_replace('>', ' ', $riga['descrizione']);
|
||||
$descrizione = str_replace('…', '...', $descrizione);
|
||||
|
||||
$dettaglio['Descrizione'] = str_replace('’', ' ', $descrizione);
|
||||
|
||||
//Aggiungo il riferimento della riga alla descrizione
|
||||
$rif = '';
|
||||
if (!empty($riga['idordine'])) {
|
||||
$data = $database->fetchArray("SELECT IF(numero_esterno != '', numero_esterno, numero) AS numero, data FROM or_ordini WHERE id=".prepare($riga['idordine']));
|
||||
$rif = 'ordine';
|
||||
}
|
||||
// DDT
|
||||
elseif (!empty($riga['idddt'])) {
|
||||
$data = $database->fetchArray("SELECT IF(numero_esterno != '', numero_esterno, numero) AS numero, data FROM dt_ddt WHERE id=".prepare($riga['idddt']));
|
||||
$rif = 'ddt';
|
||||
}
|
||||
// Preventivo
|
||||
elseif (!empty($riga['idpreventivo'])) {
|
||||
$data = $database->fetchArray('SELECT numero, data_bozza AS data FROM co_preventivi WHERE id='.prepare($riga['idpreventivo']));
|
||||
$rif = 'preventivo';
|
||||
}
|
||||
// Contratto
|
||||
elseif (!empty($riga['idcontratto'])) {
|
||||
$data = $database->fetchArray('SELECT numero, data_bozza AS data FROM co_contratti WHERE id='.prepare($riga['idcontratto']));
|
||||
$rif = 'contratto';
|
||||
}
|
||||
// Intervento
|
||||
elseif (!empty($riga['idintervento'])) {
|
||||
$data = $database->fetchArray('SELECT codice AS numero, IFNULL( (SELECT MIN(orario_inizio) FROM in_interventi_tecnici WHERE in_interventi_tecnici.idintervento=in_interventi.id), data_richiesta) AS data FROM in_interventi WHERE id='.prepare($riga['idintervento']));
|
||||
$rif = 'intervento';
|
||||
}
|
||||
|
||||
if(!empty($rif)){
|
||||
$dettaglio['Descrizione'] .= "\nRif. ".$rif." n.".$data[0]['numero']." del ".date('d/m/Y', strtotime($data[0]['data']));
|
||||
$ref = doc_references($riga, 'entrata', ['iddocumento']);
|
||||
if (!empty($ref)) {
|
||||
$dettaglio['Descrizione'] .= "\n".$ref['description'];
|
||||
}
|
||||
|
||||
$dettaglio['Quantita'] = $riga['qta'];
|
||||
|
@ -1017,11 +990,10 @@ class FatturaElettronica
|
|||
}
|
||||
|
||||
// AltriDatiGestionali (2.2.1.16) - Ritenuta ENASARCO
|
||||
//https://forum.italia.it/uploads/default/original/2X/d/d35d721c3a3a601d2300378724a270154e23af52.jpeg
|
||||
// https://forum.italia.it/uploads/default/original/2X/d/d35d721c3a3a601d2300378724a270154e23af52.jpeg
|
||||
if (!empty($documento['id_ritenuta_contributi'])) {
|
||||
|
||||
$percentuale = database()->fetchOne('SELECT percentuale FROM co_ritenuta_contributi WHERE id = '.prepare($documento['id_ritenuta_contributi']))['percentuale'];
|
||||
|
||||
$percentuale = database()->fetchOne('SELECT percentuale FROM co_ritenuta_contributi WHERE id = '.prepare($documento['id_ritenuta_contributi']))['percentuale'];
|
||||
|
||||
$ritenutaenasarco = [
|
||||
'TipoDato' => 'CASSA-PREV',
|
||||
'RiferimentoTesto' => 'ENASARCO - TC07 ('.Translator::numberToLocale($percentuale).'%)',
|
||||
|
|
|
@ -44,10 +44,9 @@ class Ricevuta
|
|||
$data = $this->xml['DataOraRicezione'];
|
||||
|
||||
$this->fattura->codice_stato_fe = $codice;
|
||||
$this->fattura->descrizione_stato_fe = $descrizione;
|
||||
$this->fattura->data_stato_fe = date('Y-m-d H:i:s', strtotime($data));
|
||||
$this->fattura->save();
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -51,9 +51,7 @@ UPDATE `fe_stati_documento` SET `descrizione`='In elaborazione' WHERE `codice`='
|
|||
|
||||
-- Inserito stato errore interno OSM
|
||||
INSERT INTO `fe_stati_documento`( `codice`, `descrizione`, `icon` ) VALUES( 'ERVAL', 'Errore di validazione', 'fa fa-edit text-danger' );
|
||||
|
||||
ALTER TABLE `co_documenti` ADD `descrizione_stato_fe` TEXT NOT NULL AFTER `codice_stato_fe`;
|
||||
ALTER TABLE `co_documenti` ADD `data_stato_fe` TIMESTAMP NOT NULL AFTER `descrizione_stato_fe`;
|
||||
ALTER TABLE `co_documenti` ADD `data_stato_fe` TIMESTAMP;
|
||||
|
||||
-- Rimozione iva eliminata
|
||||
UPDATE `zz_settings` SET `tipo`='query=SELECT id, descrizione FROM `co_iva` WHERE deleted_at IS NULL ORDER BY descrizione ASC' WHERE `nome`='Iva predefinita';
|
||||
|
|
Loading…
Reference in New Issue