2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
2018-12-29 11:42:53 +01:00
|
|
|
use Modules\Anagrafiche\Anagrafica;
|
2018-12-29 12:03:22 +01:00
|
|
|
use Modules\Articoli\Articolo as ArticoloOriginale;
|
2018-12-29 11:42:53 +01:00
|
|
|
use Modules\Fatture\Components\Articolo;
|
2018-12-25 11:32:19 +01:00
|
|
|
use Modules\Fatture\Components\Descrizione;
|
2018-12-29 12:03:22 +01:00
|
|
|
use Modules\Fatture\Components\Riga;
|
2019-04-04 17:30:58 +02:00
|
|
|
use Modules\Fatture\Components\Sconto;
|
2018-12-29 12:03:22 +01:00
|
|
|
use Modules\Fatture\Fattura;
|
2019-08-29 14:28:05 +02:00
|
|
|
use Modules\Fatture\Stato;
|
2018-12-29 12:03:22 +01:00
|
|
|
use Modules\Fatture\Tipo;
|
2019-08-29 14:28:05 +02:00
|
|
|
use Plugins\ExportFE\FatturaElettronica;
|
2018-08-09 10:14:26 +02:00
|
|
|
|
2017-09-22 15:19:59 +02:00
|
|
|
$module = Modules::get($id_module);
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
if ($module['name'] == 'Fatture di vendita') {
|
|
|
|
$dir = 'entrata';
|
|
|
|
} else {
|
|
|
|
$dir = 'uscita';
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (post('op')) {
|
|
|
|
case 'add':
|
|
|
|
$idanagrafica = post('idanagrafica');
|
2018-07-19 15:33:32 +02:00
|
|
|
$data = post('data');
|
2017-08-04 16:28:16 +02:00
|
|
|
$idtipodocumento = post('idtipodocumento');
|
2018-03-21 16:57:31 +01:00
|
|
|
$id_segment = post('id_segment');
|
2018-03-29 00:26:23 +02:00
|
|
|
|
2018-09-25 16:47:44 +02:00
|
|
|
$anagrafica = Anagrafica::find($idanagrafica);
|
|
|
|
$tipo = Tipo::find($idtipodocumento);
|
|
|
|
|
2019-01-02 14:15:16 +01:00
|
|
|
$fattura = Fattura::build($anagrafica, $tipo, $data, $id_segment);
|
2018-08-09 10:14:26 +02:00
|
|
|
$id_record = $fattura->id;
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-07-19 17:29:21 +02:00
|
|
|
flash()->info(tr('Aggiunta fattura numero _NUM_!', [
|
2018-08-09 10:14:26 +02:00
|
|
|
'_NUM_' => $fattura->numero,
|
2018-07-07 13:56:22 +02:00
|
|
|
]));
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'update':
|
2020-03-02 16:13:07 +01:00
|
|
|
$stato_precedente = $fattura->stato;
|
2019-08-29 14:28:05 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
$stato = Stato::find(post('idstatodocumento'));
|
|
|
|
$fattura->stato()->associate($stato);
|
2019-08-29 14:28:05 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
$tipo = Tipo::find(post('idtipodocumento'));
|
|
|
|
$fattura->tipo()->associate($tipo);
|
2019-08-29 14:28:05 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
$fattura->data = post('data');
|
2019-11-13 19:07:24 +01:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
if ($dir == 'entrata') {
|
|
|
|
$fattura->data_registrazione = post('data');
|
|
|
|
} else {
|
|
|
|
$fattura->data_registrazione = post('data_registrazione');
|
|
|
|
}
|
2019-05-17 05:56:10 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
$fattura->data_competenza = post('data_competenza');
|
|
|
|
|
|
|
|
$fattura->numero_esterno = post('numero_esterno');
|
|
|
|
$fattura->note = post('note');
|
|
|
|
$fattura->note_aggiuntive = post('note_aggiuntive');
|
|
|
|
|
|
|
|
$fattura->idanagrafica = post('idanagrafica');
|
|
|
|
$fattura->idagente = post('idagente');
|
|
|
|
$fattura->idpagamento = post('idpagamento');
|
|
|
|
$fattura->idbanca = post('idbanca');
|
|
|
|
$fattura->idcausalet = post('idcausalet');
|
|
|
|
$fattura->idspedizione = post('idspedizione');
|
|
|
|
$fattura->idporto = post('idporto');
|
|
|
|
$fattura->idaspettobeni = post('idaspettobeni');
|
|
|
|
$fattura->idvettore = post('idvettore');
|
|
|
|
$fattura->idsede_partenza = post('idsede_partenza');
|
|
|
|
$fattura->idsede_destinazione = post('idsede_destinazione');
|
|
|
|
$fattura->idconto = post('idconto');
|
|
|
|
$fattura->split_payment = post('split_payment') ?: 0;
|
|
|
|
$fattura->is_fattura_conto_terzi = post('is_fattura_conto_terzi') ?: 0;
|
|
|
|
$fattura->n_colli = post('n_colli');
|
|
|
|
$fattura->tipo_resa = post('tipo_resa');
|
|
|
|
|
|
|
|
$fattura->rivalsainps = 0;
|
|
|
|
$fattura->ritenutaacconto = 0;
|
|
|
|
$fattura->iva_rivalsainps = 0;
|
|
|
|
$fattura->id_ritenuta_contributi = post('id_ritenuta_contributi') ?: null;
|
|
|
|
|
|
|
|
$fattura->codice_stato_fe = post('codice_stato_fe') ?: null;
|
|
|
|
|
|
|
|
// Informazioni per le fatture di acquisto
|
|
|
|
if ($dir == 'uscita') {
|
|
|
|
$fattura->numero = post('numero');
|
2019-05-10 06:32:06 +02:00
|
|
|
$fattura->numero_esterno = post('numero_esterno');
|
2020-03-02 16:13:07 +01:00
|
|
|
$fattura->idrivalsainps = post('id_rivalsa_inps');
|
|
|
|
$fattura->idritenutaacconto = post('id_ritenuta_acconto');
|
|
|
|
}
|
2019-05-10 02:50:01 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
// Operazioni sul bollo
|
|
|
|
$fattura->addebita_bollo = post('addebita_bollo');
|
|
|
|
$bollo_automatico = post('bollo_automatico');
|
|
|
|
if (empty($bollo_automatico)) {
|
|
|
|
$fattura->bollo = post('bollo');
|
|
|
|
} else {
|
|
|
|
$fattura->bollo = null;
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
// Operazioni sulla dichiarazione d'intento
|
|
|
|
$dichiarazione_precedente = $fattura->dichiarazione;
|
|
|
|
$fattura->id_dichiarazione_intento = post('id_dichiarazione_intento') ?: null;
|
2019-09-13 11:29:45 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
$fattura->save();
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
if ($fattura->direzione == 'entrata' && $stato_precedente->descrizione == 'Bozza' && $stato['descrizione'] == 'Emessa') {
|
|
|
|
// Generazione automatica della Fattura Elettronica
|
|
|
|
$stato_fe = empty($fattura->codice_stato_fe) || in_array($fattura->codice_stato_fe, ['GEN', 'NS', 'EC02']);
|
|
|
|
$checks = FatturaElettronica::controllaFattura($fattura);
|
|
|
|
if ($stato_fe && empty($checks)) {
|
|
|
|
try {
|
|
|
|
$fattura_pa = new FatturaElettronica($id_record);
|
|
|
|
$file = $fattura_pa->save(DOCROOT.'/'.FatturaElettronica::getDirectory());
|
2019-08-29 14:28:05 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
flash()->info(tr('Fattura elettronica generata correttamente!'));
|
2019-08-29 14:28:05 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
if (!$fattura_pa->isValid()) {
|
|
|
|
$errors = $fattura_pa->getErrors();
|
2019-08-29 14:28:05 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
flash()->warning(tr('La fattura elettronica potrebbe avere delle irregolarità!').' '.tr('Controllare i seguenti campi: _LIST_', [
|
|
|
|
'_LIST_' => implode(', ', $errors),
|
|
|
|
]).'.');
|
2019-08-29 14:28:05 +02:00
|
|
|
}
|
2020-03-02 16:13:07 +01:00
|
|
|
} catch (UnexpectedValueException $e) {
|
|
|
|
}
|
|
|
|
} elseif (!empty($checks)) {
|
|
|
|
$message = tr('La fattura elettronica non è stata generata a causa di alcune informazioni mancanti').':';
|
2019-08-29 14:28:05 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
foreach ($checks as $check) {
|
|
|
|
$message .= '
|
2019-12-19 09:57:23 +01:00
|
|
|
<p><b>'.$check['name'].' '.$check['link'].'</b></p>
|
2019-12-13 16:32:53 +01:00
|
|
|
<ul>';
|
2019-08-29 14:28:05 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
foreach ($check['errors'] as $error) {
|
|
|
|
if (!empty($error)) {
|
|
|
|
$message .= '
|
|
|
|
<li>'.$error.'</li>';
|
2019-08-29 14:28:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
$message .= '
|
|
|
|
</ul>';
|
2019-08-29 14:28:05 +02:00
|
|
|
}
|
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
flash()->warning($message);
|
|
|
|
}
|
|
|
|
}
|
2019-06-04 20:45:40 +02:00
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
aggiorna_sedi_movimenti('documenti', $id_record);
|
|
|
|
|
|
|
|
// Controllo sulla presenza di fattura di acquisto con lo stesso numero secondario nello stesso periodo
|
|
|
|
$direzione = $fattura->direzione;
|
|
|
|
if ($direzione == 'uscita') {
|
|
|
|
$count = Fattura::where('numero_esterno', $fattura->numero_esterno)
|
|
|
|
->where('id', '!=', $id_record)
|
|
|
|
->where('idanagrafica', '=', $fattura->anagrafica->id)
|
|
|
|
->where('data', '>=', $_SESSION['period_start'])
|
|
|
|
->where('data', '<=', $_SESSION['period_end'])
|
|
|
|
->whereHas('tipo', function ($query) use ($direzione) {
|
|
|
|
$query->where('dir', '=', $direzione);
|
|
|
|
})->count();
|
|
|
|
if (!empty($count)) {
|
|
|
|
flash()->warning(tr('Esiste già una fattura con lo stesso numero secondario e la stessa anagrafica collegata!'));
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2020-03-02 16:13:07 +01:00
|
|
|
flash()->info(tr('Fattura modificata correttamente!'));
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
break;
|
|
|
|
|
2019-03-08 16:59:55 +01:00
|
|
|
// Ricalcolo scadenze
|
|
|
|
case 'ricalcola_scadenze':
|
|
|
|
$fattura->registraScadenze(false, true);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2019-03-15 12:16:20 +01:00
|
|
|
// Ricalcolo scadenze
|
|
|
|
case 'controlla_totali':
|
|
|
|
try {
|
|
|
|
$xml = \Util\XML::read($fattura->getXML());
|
|
|
|
|
|
|
|
$dati_generali = $xml['FatturaElettronicaBody']['DatiGenerali']['DatiGeneraliDocumento'];
|
2020-02-14 17:04:34 +01:00
|
|
|
$totale_documento = $fattura->isNota() ? -abs(floatval($dati_generali['ImportoTotaleDocumento'])) : abs(floatval($dati_generali['ImportoTotaleDocumento']));
|
2019-03-15 12:16:20 +01:00
|
|
|
} catch (Exception $e) {
|
|
|
|
$totale_documento = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
echo json_encode([
|
|
|
|
'stored' => $totale_documento,
|
|
|
|
'calculated' => $fattura->totale,
|
|
|
|
]);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
// eliminazione documento
|
|
|
|
case 'delete':
|
2019-07-23 15:39:00 +02:00
|
|
|
try {
|
|
|
|
$fattura->delete();
|
2017-09-05 17:31:58 +02:00
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
$dbo->query('DELETE FROM co_scadenziario WHERE iddocumento='.prepare($id_record));
|
|
|
|
$dbo->query('DELETE FROM co_movimenti WHERE iddocumento='.prepare($id_record));
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
// Azzeramento collegamento della rata contrattuale alla pianificazione
|
2020-02-17 18:43:49 +01:00
|
|
|
$dbo->query('UPDATE co_fatturazione_contratti SET iddocumento=0 WHERE iddocumento='.prepare($id_record));
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
flash()->info(tr('Fattura eliminata!'));
|
|
|
|
} catch (InvalidArgumentException $e) {
|
|
|
|
flash()->error(tr('Sono stati utilizzati alcuni serial number nel documento: impossibile procedere!'));
|
2017-09-05 17:31:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
// Duplicazione fattura
|
|
|
|
case 'copy':
|
2020-02-27 16:19:07 +01:00
|
|
|
$stato = Stato::where('descrizione', 'Bozza')->first();
|
2018-04-03 12:30:12 +02:00
|
|
|
|
2020-02-27 16:19:07 +01:00
|
|
|
$new = $fattura->replicate();
|
|
|
|
$new->numero = Fattura::getNextNumero($new->data, $new->direzione, $new->id_segment);
|
|
|
|
if ($new->direzione == 'entrata') {
|
|
|
|
$new->numero_esterno = Fattura::getNextNumeroSecondario($new->data, $new->direzione, $new->id_segment);
|
|
|
|
}
|
|
|
|
$new->stato()->associate($stato);
|
|
|
|
$new->save();
|
|
|
|
|
|
|
|
$id_record = $new->id;
|
|
|
|
|
|
|
|
$righe = $fattura->getRighe();
|
|
|
|
foreach ($righe as $riga) {
|
|
|
|
$new_riga = $riga->replicate();
|
|
|
|
$new_riga->setParent($new);
|
|
|
|
|
|
|
|
// Rimozione riferimenti (deorecati)
|
|
|
|
$new_riga->idpreventivo = 0;
|
|
|
|
$new_riga->idcontratto = 0;
|
|
|
|
$new_riga->idintervento = 0;
|
|
|
|
$new_riga->idddt = 0;
|
|
|
|
$new_riga->idordine = 0;
|
|
|
|
|
|
|
|
$new_riga->qta_evasa = 0;
|
|
|
|
$new_riga->original_type = null;
|
|
|
|
$new_riga->original_id = null;
|
|
|
|
$new_riga->save();
|
|
|
|
|
|
|
|
if ($new_riga->isArticolo()) {
|
|
|
|
$new_riga->movimenta($new_riga->qta);
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-27 16:19:07 +01:00
|
|
|
flash()->info(tr('Fattura duplicata correttamente!'));
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'reopen':
|
|
|
|
if (!empty($id_record)) {
|
2019-07-25 17:20:24 +02:00
|
|
|
$dbo->query("UPDATE co_documenti SET idstatodocumento=(SELECT id FROM co_statidocumento WHERE descrizione='Bozza') WHERE id=".prepare($id_record));
|
|
|
|
elimina_movimenti($id_record, 1);
|
2019-12-11 17:57:01 +01:00
|
|
|
elimina_scadenze($id_record);
|
2019-07-25 17:20:24 +02:00
|
|
|
ricalcola_costiagg_fattura($id_record);
|
|
|
|
flash()->info(tr('Fattura riaperta!'));
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2019-07-24 15:29:03 +02:00
|
|
|
case 'add_intervento':
|
2019-02-21 12:55:18 +01:00
|
|
|
$id_intervento = post('idintervento');
|
2019-07-24 15:29:03 +02:00
|
|
|
|
2019-02-21 12:55:18 +01:00
|
|
|
if (!empty($id_record) && $id_intervento !== null) {
|
|
|
|
$copia_descrizione = post('copia_descrizione');
|
|
|
|
$intervento = $dbo->fetchOne('SELECT descrizione FROM in_interventi WHERE id = '.prepare($id_intervento));
|
|
|
|
if (!empty($copia_descrizione) && !empty($intervento['descrizione'])) {
|
|
|
|
$riga = Descrizione::build($fattura);
|
|
|
|
$riga->descrizione = $intervento['descrizione'];
|
|
|
|
$riga->idintervento = $id_intervento;
|
|
|
|
$riga->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
aggiungi_intervento_in_fattura($id_intervento, $id_record, post('descrizione'), post('idiva'), post('idconto'), post('id_rivalsa_inps'), post('id_ritenuta_acconto'), post('calcolo_ritenuta_acconto'));
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
flash()->info(tr('Intervento _NUM_ aggiunto!', [
|
2017-12-14 16:51:31 +01:00
|
|
|
'_NUM_' => $idintervento,
|
2018-09-26 15:37:46 +02:00
|
|
|
]));
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2019-07-15 18:34:59 +02:00
|
|
|
case 'manage_documento_fe':
|
|
|
|
$data = Filter::getPOST();
|
|
|
|
|
|
|
|
$ignore = [
|
|
|
|
'id_plugin',
|
|
|
|
'id_module',
|
|
|
|
'id_record',
|
|
|
|
'backto',
|
|
|
|
'hash',
|
|
|
|
'op',
|
|
|
|
'idriga',
|
|
|
|
'dir',
|
|
|
|
];
|
|
|
|
foreach ($ignore as $name) {
|
|
|
|
unset($data[$name]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$fattura->dati_aggiuntivi_fe = $data;
|
|
|
|
$fattura->save();
|
|
|
|
|
|
|
|
flash()->info(tr('Dati FE aggiornati correttamente!'));
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'manage_riga_fe':
|
2019-07-16 10:01:16 +02:00
|
|
|
$id_riga = post('id_riga');
|
2019-07-15 18:34:59 +02:00
|
|
|
if ($id_riga != null) {
|
|
|
|
$riga = Articolo::find($id_riga) ?: Riga::find($id_riga);
|
|
|
|
$riga = $riga ?: Descrizione::find($id_riga);
|
|
|
|
$riga = $riga ?: Sconto::find($id_riga);
|
|
|
|
|
|
|
|
$data = Filter::getPOST();
|
|
|
|
|
|
|
|
$ignore = [
|
|
|
|
'id_plugin',
|
|
|
|
'id_module',
|
|
|
|
'id_record',
|
|
|
|
'backto',
|
|
|
|
'hash',
|
|
|
|
'op',
|
|
|
|
'idriga',
|
|
|
|
'dir',
|
|
|
|
];
|
|
|
|
foreach ($ignore as $name) {
|
|
|
|
unset($data[$name]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$riga->dati_aggiuntivi_fe = $data;
|
|
|
|
$riga->save();
|
|
|
|
|
|
|
|
flash()->info(tr('Dati FE aggiornati correttamente!'));
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2018-10-04 17:25:42 +02:00
|
|
|
case 'manage_articolo':
|
|
|
|
if (post('idriga') != null) {
|
|
|
|
$articolo = Articolo::find(post('idriga'));
|
|
|
|
} else {
|
|
|
|
$originale = ArticoloOriginale::find(post('idarticolo'));
|
2019-01-02 14:15:16 +01:00
|
|
|
$articolo = Articolo::build($fattura, $originale);
|
2018-10-04 17:25:42 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
$qta = post('qta');
|
|
|
|
if (!empty($record['is_reversed'])) {
|
|
|
|
$qta = -$qta;
|
|
|
|
}
|
2018-07-04 12:57:53 +02:00
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
$articolo->descrizione = post('descrizione');
|
2019-02-12 15:00:08 +01:00
|
|
|
$articolo->um = post('um') ?: null;
|
2018-09-25 16:47:44 +02:00
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
$articolo->id_iva = post('idiva');
|
|
|
|
$articolo->idconto = post('idconto');
|
2018-09-25 16:47:44 +02:00
|
|
|
|
2019-02-12 15:00:08 +01:00
|
|
|
$articolo->calcolo_ritenuta_acconto = post('calcolo_ritenuta_acconto') ?: null;
|
|
|
|
$articolo->id_ritenuta_acconto = post('id_ritenuta_acconto') ?: null;
|
2019-04-12 01:11:32 +02:00
|
|
|
$articolo->ritenuta_contributi = boolval(post('ritenuta_contributi'));
|
2019-02-12 15:00:08 +01:00
|
|
|
$articolo->id_rivalsa_inps = post('id_rivalsa_inps') ?: null;
|
2018-11-21 17:45:06 +01:00
|
|
|
|
2020-02-14 18:31:07 +01:00
|
|
|
$articolo->costo_unitario = post('costo_unitario') ?: 0;
|
2020-02-17 19:11:40 +01:00
|
|
|
$articolo->setPrezzoUnitario(post('prezzo_unitario'), post('idiva'));
|
2020-02-14 18:31:07 +01:00
|
|
|
$articolo->setSconto(post('sconto'), post('tipo_sconto'));
|
2018-09-25 18:04:39 +02:00
|
|
|
|
2018-10-04 17:25:42 +02:00
|
|
|
try {
|
|
|
|
$articolo->qta = $qta;
|
2018-10-04 17:41:31 +02:00
|
|
|
} catch (UnexpectedValueException $e) {
|
2018-10-04 17:25:42 +02:00
|
|
|
flash()->error(tr('Alcuni serial number sono già stati utilizzati!'));
|
|
|
|
}
|
2018-07-25 12:34:54 +02:00
|
|
|
|
2018-10-04 17:25:42 +02:00
|
|
|
$articolo->save();
|
2018-09-26 15:37:46 +02:00
|
|
|
|
2019-03-29 12:46:17 +01:00
|
|
|
if (post('idriga') != null) {
|
|
|
|
flash()->info(tr('Articolo modificato!'));
|
|
|
|
} else {
|
|
|
|
flash()->info(tr('Articolo aggiunto!'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ricalcolo inps, ritenuta e bollo
|
|
|
|
ricalcola_costiagg_fattura($id_record);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'manage_sconto':
|
|
|
|
if (post('idriga') != null) {
|
2019-04-04 17:12:32 +02:00
|
|
|
$sconto = Sconto::find(post('idriga'));
|
2019-03-29 12:46:17 +01:00
|
|
|
} else {
|
2019-04-04 17:12:32 +02:00
|
|
|
$sconto = Sconto::build($fattura);
|
2019-03-29 12:46:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$sconto->descrizione = post('descrizione');
|
|
|
|
|
|
|
|
$sconto->id_iva = post('idiva');
|
|
|
|
$sconto->idconto = post('idconto');
|
|
|
|
|
|
|
|
$sconto->calcolo_ritenuta_acconto = post('calcolo_ritenuta_acconto') ?: null;
|
|
|
|
$sconto->id_ritenuta_acconto = post('id_ritenuta_acconto') ?: null;
|
2019-04-12 01:11:32 +02:00
|
|
|
$sconto->ritenuta_contributi = boolval(post('ritenuta_contributi'));
|
2019-03-29 12:46:17 +01:00
|
|
|
$sconto->id_rivalsa_inps = post('id_rivalsa_inps') ?: null;
|
|
|
|
|
|
|
|
$sconto->sconto_unitario = post('sconto_unitario');
|
|
|
|
$sconto->tipo_sconto = 'UNT';
|
|
|
|
|
|
|
|
$sconto->save();
|
|
|
|
|
|
|
|
if (post('idriga') != null) {
|
|
|
|
flash()->info(tr('Sconto/maggiorazione modificato!'));
|
|
|
|
} else {
|
2019-07-11 17:20:58 +02:00
|
|
|
flash()->info(tr('Sconto/maggiorazione aggiunto!'));
|
2019-03-29 12:46:17 +01:00
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-10-04 17:25:42 +02:00
|
|
|
// Ricalcolo inps, ritenuta e bollo
|
|
|
|
ricalcola_costiagg_fattura($id_record);
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
break;
|
|
|
|
|
2018-10-04 17:25:42 +02:00
|
|
|
case 'manage_riga':
|
|
|
|
if (post('idriga') != null) {
|
|
|
|
$riga = Riga::find(post('idriga'));
|
|
|
|
} else {
|
2019-01-02 14:15:16 +01:00
|
|
|
$riga = Riga::build($fattura);
|
2018-10-04 17:25:42 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
$qta = post('qta');
|
|
|
|
if (!empty($record['is_reversed'])) {
|
|
|
|
$qta = -$qta;
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
$riga->descrizione = post('descrizione');
|
2019-02-12 15:00:08 +01:00
|
|
|
$riga->um = post('um') ?: null;
|
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
$riga->id_iva = post('idiva');
|
|
|
|
$riga->idconto = post('idconto');
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2019-02-14 18:33:25 +01:00
|
|
|
$riga->calcolo_ritenuta_acconto = post('calcolo_ritenuta_acconto') ?: null;
|
|
|
|
$riga->id_ritenuta_acconto = post('id_ritenuta_acconto') ?: null;
|
2019-04-12 01:11:32 +02:00
|
|
|
$riga->ritenuta_contributi = boolval(post('ritenuta_contributi'));
|
2019-02-14 18:33:25 +01:00
|
|
|
$riga->id_rivalsa_inps = post('id_rivalsa_inps') ?: null;
|
2018-11-21 17:45:06 +01:00
|
|
|
|
2020-02-14 18:31:07 +01:00
|
|
|
$riga->costo_unitario = post('costo_unitario') ?: 0;
|
2020-02-17 19:11:40 +01:00
|
|
|
$riga->setPrezzoUnitario(post('prezzo_unitario'), post('idiva'));
|
2020-02-14 18:31:07 +01:00
|
|
|
$riga->setSconto(post('sconto'), post('tipo_sconto'));
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-12-29 11:42:53 +01:00
|
|
|
$riga->qta = $qta;
|
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
$riga->save();
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-10-04 17:25:42 +02:00
|
|
|
if (post('idriga') != null) {
|
|
|
|
flash()->info(tr('Riga modificata!'));
|
|
|
|
} else {
|
|
|
|
flash()->info(tr('Riga aggiunta!'));
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
// Ricalcolo inps, ritenuta e bollo
|
|
|
|
ricalcola_costiagg_fattura($id_record);
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
break;
|
|
|
|
|
2018-10-04 17:25:42 +02:00
|
|
|
case 'manage_descrizione':
|
2018-10-05 10:49:46 +02:00
|
|
|
if (post('idriga') != null) {
|
|
|
|
$riga = Descrizione::find(post('idriga'));
|
|
|
|
} else {
|
2019-01-02 14:15:16 +01:00
|
|
|
$riga = Descrizione::build($fattura);
|
2018-10-05 10:49:46 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 15:37:46 +02:00
|
|
|
$riga->descrizione = post('descrizione');
|
2018-11-13 18:26:51 +01:00
|
|
|
|
2018-11-12 15:27:26 +01:00
|
|
|
$riga->save();
|
2018-11-13 18:26:51 +01:00
|
|
|
|
|
|
|
if (post('idriga') != null) {
|
2018-11-12 12:18:23 +01:00
|
|
|
flash()->info(tr('Riga descrittiva modificata!'));
|
|
|
|
} else {
|
|
|
|
flash()->info(tr('Riga descrittiva aggiunta!'));
|
|
|
|
}
|
2018-11-13 18:26:51 +01:00
|
|
|
|
2018-01-18 19:03:06 +01:00
|
|
|
break;
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// Scollegamento intervento da documento
|
|
|
|
case 'unlink_intervento':
|
2018-07-19 15:33:32 +02:00
|
|
|
if (!empty($id_record) && post('idriga') !== null) {
|
2019-07-24 15:29:03 +02:00
|
|
|
$id_riga = post('idriga');
|
2020-01-24 12:33:50 +01:00
|
|
|
$type = post('type');
|
|
|
|
$riga = $fattura->getRiga($type, $id_riga);
|
|
|
|
|
|
|
|
if (!empty($riga)) {
|
|
|
|
try {
|
2020-01-29 09:37:11 +01:00
|
|
|
$riga->delete();
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-01-24 12:33:50 +01:00
|
|
|
flash()->info(tr('Intervento _NUM_ rimosso!', [
|
|
|
|
'_NUM_' => $idintervento,
|
|
|
|
]));
|
|
|
|
} catch (InvalidArgumentException $e) {
|
|
|
|
flash()->error(tr('Errore durante l\'eliminazione della riga!'));
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Scollegamento riga generica da documento
|
2019-10-01 18:32:06 +02:00
|
|
|
case 'delete_riga':
|
2019-07-22 18:35:13 +02:00
|
|
|
$id_riga = post('idriga');
|
2020-01-17 17:31:07 +01:00
|
|
|
$type = post('type');
|
2020-01-22 14:55:22 +01:00
|
|
|
$riga = $fattura->getRiga($type, $id_riga);
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-01-17 17:31:07 +01:00
|
|
|
if (!empty($riga)) {
|
2019-07-23 15:39:00 +02:00
|
|
|
try {
|
|
|
|
$riga->delete();
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
// Ricalcolo inps, ritenuta e bollo
|
|
|
|
ricalcola_costiagg_fattura($id_record);
|
2018-07-04 12:57:53 +02:00
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
flash()->info(tr('Riga rimossa!'));
|
|
|
|
} catch (InvalidArgumentException $e) {
|
|
|
|
flash()->error(tr('Alcuni serial number sono già stati utilizzati!'));
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'add_serial':
|
2018-10-04 17:25:42 +02:00
|
|
|
$articolo = Articolo::find(post('idriga'));
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-07-19 15:33:32 +02:00
|
|
|
$serials = (array) post('serial');
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-10-04 17:25:42 +02:00
|
|
|
$articolo->serials = $serials;
|
|
|
|
$articolo->save();
|
2017-09-05 17:31:58 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'update_position':
|
2018-11-30 16:10:15 +01:00
|
|
|
$orders = explode(',', $_POST['order']);
|
2018-10-30 10:27:44 +01:00
|
|
|
$order = 0;
|
|
|
|
|
2018-11-09 11:34:27 +01:00
|
|
|
foreach ($orders as $idriga) {
|
2018-10-30 10:27:44 +01:00
|
|
|
$dbo->query('UPDATE `co_righe_documenti` SET `order`='.prepare($order).' WHERE id='.prepare($idriga));
|
2018-11-30 16:10:15 +01:00
|
|
|
++$order;
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2018-06-26 09:41:43 +02:00
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
// Aggiunta di un documento in fattura
|
|
|
|
case 'add_documento':
|
|
|
|
$id_documento = post('id_documento');
|
|
|
|
$type = post('type');
|
2018-06-25 11:44:06 +02:00
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
$movimenta = true;
|
2019-10-13 16:42:09 +02:00
|
|
|
$idsede = 0;
|
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
if ($type == 'ordine') {
|
|
|
|
$documento = \Modules\Ordini\Ordine::find($id_documento);
|
2019-10-13 16:42:09 +02:00
|
|
|
$idsede = $documento->idsede;
|
2019-07-23 15:39:00 +02:00
|
|
|
} elseif ($type == 'ddt') {
|
|
|
|
$documento = \Modules\DDT\DDT::find($id_documento);
|
2019-10-13 16:42:09 +02:00
|
|
|
$idsede = ($documento->direzione == 'entrata') ? $documento->idsede_destinazione : $documento->idsede_partenza;
|
2019-07-23 15:39:00 +02:00
|
|
|
$movimenta = false;
|
|
|
|
} elseif ($type == 'preventivo') {
|
|
|
|
$documento = \Modules\Preventivi\Preventivo::find($id_documento);
|
2019-10-13 16:42:09 +02:00
|
|
|
$idsede = $documento->idsede;
|
2019-07-23 15:39:00 +02:00
|
|
|
} elseif ($type == 'contratto') {
|
|
|
|
$documento = \Modules\Contratti\Contratto::find($id_documento);
|
2019-10-13 16:42:09 +02:00
|
|
|
$idsede = $documento->idsede;
|
2019-02-14 17:49:58 +01:00
|
|
|
}
|
2018-06-25 11:44:06 +02:00
|
|
|
|
2019-02-14 17:49:58 +01:00
|
|
|
// Creazione della fattura al volo
|
|
|
|
if (post('create_document') == 'on') {
|
2019-07-23 15:39:00 +02:00
|
|
|
$descrizione = ($dir == 'entrata') ? 'Fattura immediata di vendita' : 'Fattura immediata di acquisto';
|
2019-02-14 17:49:58 +01:00
|
|
|
$tipo = Tipo::where('descrizione', $descrizione)->first();
|
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
$fattura = Fattura::build($documento->anagrafica, $tipo, post('data'), post('id_segment'));
|
|
|
|
$fattura->idpagamento = $documento->idpagamento;
|
2019-10-13 16:42:09 +02:00
|
|
|
$fattura->idsede_destinazione = $idsede;
|
2019-07-23 15:39:00 +02:00
|
|
|
$fattura->id_ritenuta_contributi = post('id_ritenuta_contributi') ?: null;
|
2019-02-14 17:49:58 +01:00
|
|
|
$fattura->save();
|
|
|
|
|
|
|
|
$id_record = $fattura->id;
|
|
|
|
}
|
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
$calcolo_ritenuta_acconto = post('calcolo_ritenuta_acconto') ?: null;
|
|
|
|
$id_ritenuta_acconto = post('id_ritenuta_acconto') ?: null;
|
|
|
|
$ritenuta_contributi = boolval(post('ritenuta_contributi'));
|
|
|
|
$id_rivalsa_inps = post('id_rivalsa_inps') ?: null;
|
2019-02-26 21:20:05 +01:00
|
|
|
$id_conto = post('id_conto');
|
2019-02-15 09:25:56 +01:00
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
$righe = $documento->getRighe();
|
2019-02-14 17:49:58 +01:00
|
|
|
foreach ($righe as $riga) {
|
|
|
|
if (post('evadere')[$riga->id] == 'on') {
|
|
|
|
$qta = post('qta_da_evadere')[$riga->id];
|
|
|
|
|
|
|
|
$copia = $riga->copiaIn($fattura, $qta);
|
2019-02-26 20:55:00 +01:00
|
|
|
$copia->id_conto = $id_conto;
|
2019-02-14 17:49:58 +01:00
|
|
|
|
2019-02-15 09:25:56 +01:00
|
|
|
$copia->calcolo_ritenuta_acconto = $calcolo_ritenuta_acconto;
|
2019-02-26 20:55:00 +01:00
|
|
|
$copia->id_ritenuta_acconto = $id_ritenuta_acconto;
|
|
|
|
$copia->id_rivalsa_inps = $id_rivalsa_inps;
|
2019-07-23 15:39:00 +02:00
|
|
|
$copia->ritenuta_contributi = $ritenuta_contributi;
|
2019-02-15 09:25:56 +01:00
|
|
|
|
2019-02-14 17:49:58 +01:00
|
|
|
// Aggiornamento seriali dalla riga dell'ordine
|
|
|
|
if ($copia->isArticolo()) {
|
2019-07-23 15:39:00 +02:00
|
|
|
if ($movimenta) {
|
2020-02-24 19:03:47 +01:00
|
|
|
//$copia->movimenta($copia->qta);
|
2019-07-23 15:39:00 +02:00
|
|
|
}
|
|
|
|
|
2019-02-14 17:49:58 +01:00
|
|
|
$serials = is_array(post('serial')[$riga->id]) ? post('serial')[$riga->id] : [];
|
|
|
|
|
|
|
|
$copia->serials = $serials;
|
2018-06-25 11:44:06 +02:00
|
|
|
}
|
2019-02-26 21:20:05 +01:00
|
|
|
|
|
|
|
$copia->save();
|
2019-02-14 17:49:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ricalcola_costiagg_fattura($id_record);
|
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
$message = '';
|
|
|
|
if ($type == 'ordine') {
|
|
|
|
$message = tr('Ordine _NUM_ aggiunto!', [
|
|
|
|
'_NUM_' => $ordine->numero,
|
|
|
|
]);
|
|
|
|
} elseif ($type == 'ddt') {
|
|
|
|
$message = tr('DDT _NUM_ aggiunto!', [
|
|
|
|
'_NUM_' => $ordine->numero,
|
|
|
|
]);
|
|
|
|
} elseif ($type == 'preventivo') {
|
|
|
|
$message = tr('Preventivo _NUM_ aggiunto!', [
|
|
|
|
'_NUM_' => $ordine->numero,
|
|
|
|
]);
|
|
|
|
} elseif ($type == 'contratto') {
|
|
|
|
$message = tr('Contratto _NUM_ aggiunto!', [
|
|
|
|
'_NUM_' => $ordine->numero,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
flash()->info($message);
|
2018-06-25 11:44:06 +02:00
|
|
|
|
|
|
|
break;
|
2018-07-03 17:28:02 +02:00
|
|
|
|
2018-07-05 17:56:38 +02:00
|
|
|
// Nota di credito
|
|
|
|
case 'nota_credito':
|
2019-12-13 15:56:52 +01:00
|
|
|
$id_documento = post('id_documento');
|
|
|
|
$fattura = Fattura::find($id_documento);
|
|
|
|
|
2018-07-03 17:28:02 +02:00
|
|
|
$id_segment = post('id_segment');
|
2018-08-21 10:11:30 +02:00
|
|
|
$data = post('data');
|
2018-07-03 17:28:02 +02:00
|
|
|
|
2018-10-25 16:57:39 +02:00
|
|
|
$anagrafica = $fattura->anagrafica;
|
2018-09-28 17:29:59 +02:00
|
|
|
$tipo = Tipo::where('descrizione', 'Nota di credito')->where('dir', 'entrata')->first();
|
2018-07-03 17:28:02 +02:00
|
|
|
|
2019-01-02 14:15:16 +01:00
|
|
|
$nota = Fattura::build($anagrafica, $tipo, $data, $id_segment);
|
2018-09-28 17:29:59 +02:00
|
|
|
$nota->ref_documento = $fattura->id;
|
|
|
|
$nota->idconto = $fattura->idconto;
|
|
|
|
$nota->idpagamento = $fattura->idpagamento;
|
|
|
|
$nota->idbanca = $fattura->idbanca;
|
2019-05-29 19:17:57 +02:00
|
|
|
$nota->idsede_partenza = $fattura->idsede_partenza;
|
|
|
|
$nota->idsede_destinazione = $fattura->idsede_destinazione;
|
2018-09-28 17:29:59 +02:00
|
|
|
$nota->save();
|
2018-07-04 12:57:53 +02:00
|
|
|
|
2019-02-12 17:21:27 +01:00
|
|
|
$righe = $fattura->getRighe();
|
|
|
|
foreach ($righe as $riga) {
|
2020-02-07 17:35:26 +01:00
|
|
|
if (post('evadere')[$riga->id] == 'on' and !empty(post('qta_da_evadere')[$riga->id])) {
|
2019-02-12 17:21:27 +01:00
|
|
|
$qta = post('qta_da_evadere')[$riga->id];
|
2018-07-03 17:28:02 +02:00
|
|
|
|
2019-02-12 17:21:27 +01:00
|
|
|
$copia = $riga->copiaIn($nota, -$qta);
|
|
|
|
$copia->ref_riga_documento = $riga->id;
|
2018-07-03 17:28:02 +02:00
|
|
|
|
2019-02-12 17:21:27 +01:00
|
|
|
// Aggiornamento seriali dalla riga dell'ordine
|
|
|
|
if ($copia->isArticolo()) {
|
2020-02-24 19:03:47 +01:00
|
|
|
//$copia->movimenta($copia->qta);
|
2018-12-12 18:06:49 +01:00
|
|
|
|
2019-02-12 17:21:27 +01:00
|
|
|
$serials = is_array(post('serial')[$riga->id]) ? post('serial')[$riga->id] : [];
|
2018-07-03 17:28:02 +02:00
|
|
|
|
2019-02-12 17:21:27 +01:00
|
|
|
$copia->serials = $serials;
|
|
|
|
$riga->removeSerials($serials);
|
2018-07-03 17:28:02 +02:00
|
|
|
}
|
2019-02-26 21:20:05 +01:00
|
|
|
|
|
|
|
$copia->save();
|
2019-02-12 17:21:27 +01:00
|
|
|
}
|
|
|
|
}
|
2018-07-03 17:28:02 +02:00
|
|
|
|
2019-02-12 17:21:27 +01:00
|
|
|
$id_record = $nota->id;
|
2019-05-29 19:17:57 +02:00
|
|
|
aggiorna_sedi_movimenti('documenti', $id_record);
|
2019-02-12 17:21:27 +01:00
|
|
|
|
2018-09-28 09:30:46 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'transform':
|
|
|
|
$fattura->id_segment = post('id_segment');
|
2019-07-31 18:28:50 +02:00
|
|
|
$fattura->data = post('data');
|
2018-09-28 09:30:46 +02:00
|
|
|
$fattura->save();
|
|
|
|
|
2018-07-03 17:28:02 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-07-05 17:56:38 +02:00
|
|
|
// Nota di debito
|
2018-07-03 17:28:02 +02:00
|
|
|
if (get('op') == 'nota_addebito') {
|
2018-08-21 10:11:30 +02:00
|
|
|
$rs_segment = $dbo->fetchArray("SELECT * FROM zz_segments WHERE predefined_addebito='1'");
|
2018-09-28 17:29:59 +02:00
|
|
|
if (!empty($rs_segment)) {
|
2018-08-21 10:11:30 +02:00
|
|
|
$id_segment = $rs_segment[0]['id'];
|
2018-08-29 18:15:12 +02:00
|
|
|
} else {
|
|
|
|
$id_segment = $record['id_segment'];
|
2018-08-21 10:11:30 +02:00
|
|
|
}
|
2018-07-03 17:28:02 +02:00
|
|
|
|
2018-10-25 16:57:39 +02:00
|
|
|
$anagrafica = $fattura->anagrafica;
|
2018-09-28 17:29:59 +02:00
|
|
|
$tipo = Tipo::where('descrizione', 'Nota di debito')->where('dir', 'entrata')->first();
|
|
|
|
$data = $fattura->data;
|
|
|
|
|
2019-01-02 14:15:16 +01:00
|
|
|
$nota = Fattura::build($anagrafica, $tipo, $data, $id_segment);
|
2018-09-28 17:29:59 +02:00
|
|
|
$nota->ref_documento = $fattura->id;
|
|
|
|
$nota->idconto = $fattura->idconto;
|
|
|
|
$nota->idpagamento = $fattura->idpagamento;
|
|
|
|
$nota->idbanca = $fattura->idbanca;
|
2019-05-29 19:17:57 +02:00
|
|
|
$nota->idsede_partenza = $fattura->idsede_partenza;
|
|
|
|
$nota->idsede_destinazione = $fattura->idsede_destinazione;
|
2018-09-28 17:29:59 +02:00
|
|
|
$nota->save();
|
2018-07-03 17:28:02 +02:00
|
|
|
|
2018-09-28 17:29:59 +02:00
|
|
|
$id_record = $nota->id;
|
2019-05-29 19:17:57 +02:00
|
|
|
aggiorna_sedi_movimenti('documenti', $id_record);
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|