From ac64450de9e24e3181b0fc67707664991bcee0f8 Mon Sep 17 00:00:00 2001 From: Beppe Date: Mon, 20 May 2024 12:14:43 +0200 Subject: [PATCH] Fix creazione campi personalizzati in creazione documenti --- actions.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/actions.php b/actions.php index a750c422c..b210094b1 100755 --- a/actions.php +++ b/actions.php @@ -505,8 +505,11 @@ if ($structure->permission == 'rw') { } } + //Lista casi in cui creare i campi personalizzati + $list = ['add', 'add_documento', 'add_preventivo', 'add_ordine_fornitore']; + // Inserimento iniziale - if (post('op') == 'add') { + if (in_array(post('op'),$list)) { // Informazioni di log Filter::set('get', 'id_record', $id_record);