Update actions.php

This commit is contained in:
Luca 2023-11-28 13:52:30 +01:00
parent 02930cfe8a
commit f715c8a77b
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ $ops = ['update', 'add_intervento', 'manage_documento_fe', 'manage_riga_fe', 'ma
if ($dir == 'entrata' && ($stato_fe['codice_stato_fe'] == 'WAIT' || $stato_fe['codice_stato_fe'] == 'RC' || $stato_fe['codice_stato_fe'] == 'MC' || $stato_fe['codice_stato_fe'] == 'QUEUE' || $stato_fe['codice_stato_fe'] == 'DT' || $stato_fe['codice_stato_fe'] == 'EC01' || $stato_fe['codice_stato_fe'] == 'NE') && setting('OSMCloud Services API Token') != '' && in_array($op, $ops)) {
//Permetto sempre la modifica delle note aggiuntive
if ($op == 'update'){
//Permetto sempre la modifica delle note aggiuntive e/o della data di competenza della fattura di vendita
if ($op == 'update' && ($fattura->note_aggiuntive != post('note_aggiuntive') || $fattura->data_competenza != post('data_competenza'))){
if ($fattura->note_aggiuntive != post('note_aggiuntive')){
$fattura->note_aggiuntive = post('note_aggiuntive');
$fattura->save();