From 45ed5250a73aa5fa0ece9358f247767ba405ad0d Mon Sep 17 00:00:00 2001 From: Thomas Zilio Date: Thu, 22 Feb 2018 11:07:52 +0100 Subject: [PATCH] =?UTF-8?q?Completamento=20della=20compatibilit=C3=A0=20co?= =?UTF-8?q?n=20i=20pulsanti?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aggiunto il supporto ai pulsati specifici per modulo (introdotti in Interventi e Fatture). --- editor.php | 69 +++++++++++++++++++--------- modules/anagrafiche/edit.php | 15 ++---- modules/articoli/edit.php | 7 +-- modules/automezzi/edit.php | 5 -- modules/beni/edit.php | 5 -- modules/categorie/edit.php | 5 -- modules/causali/edit.php | 5 -- modules/contratti/buttons.php | 10 ++++ modules/contratti/edit.php | 17 ------- modules/ddt/edit.php | 5 -- modules/emails/edit.php | 5 -- modules/fatture/buttons.php | 14 ++++++ modules/fatture/edit.php | 16 ------- modules/gestione_componenti/edit.php | 5 -- modules/impostazioni/edit.php | 9 ++-- modules/interventi/buttons.php | 33 +++++++++++++ modules/interventi/edit.php | 59 +++++------------------- modules/iva/edit.php | 5 -- modules/listini/edit.php | 5 -- modules/misure/edit.php | 5 -- modules/my_impianti/edit.php | 5 -- modules/porti/edit.php | 5 -- modules/preventivi/edit.php | 9 ---- modules/primanota/edit.php | 7 --- modules/ritenute/edit.php | 5 -- modules/sezionali/edit.php | 34 +++++++------- modules/smtp/edit.php | 5 -- modules/stati_intervento/edit.php | 6 --- modules/tecnici_tariffe/edit.php | 7 --- modules/tipi_anagrafiche/edit.php | 39 ++++++++-------- modules/tipi_intervento/edit.php | 6 --- modules/viste/edit.php | 5 -- modules/voci_servizio/edit.php | 5 -- modules/zone/edit.php | 6 --- 34 files changed, 161 insertions(+), 282 deletions(-) create mode 100644 modules/contratti/buttons.php create mode 100644 modules/fatture/buttons.php create mode 100644 modules/interventi/buttons.php diff --git a/editor.php b/editor.php index 2bfe9a7b3..c686113bd 100755 --- a/editor.php +++ b/editor.php @@ -87,7 +87,7 @@ if (empty($records)) {
'; - // Pulsanti + // Pulsanti di default echo '
@@ -107,7 +107,7 @@ if (empty($records)) { '; + last.after($("#custom_fields_bottom-edit").html()); + }); + '; foreach ($plugins as $plugin) { echo ' diff --git a/modules/anagrafiche/edit.php b/modules/anagrafiche/edit.php index 17d76320e..57a78df29 100644 --- a/modules/anagrafiche/edit.php +++ b/modules/anagrafiche/edit.php @@ -35,11 +35,6 @@ if (!$cliente) {
-
- -
-
-
{[ "type": "text", "label": "", "name": "ragione_sociale", "required": 1, "value": "$ragione_sociale$" ]} @@ -300,7 +295,7 @@ if ($fornitore) {
{[ "type": "text", "label": "", "name": "marche", "value": "$marche$" ]}
- +
{[ "type": "number", "label": "", "name": "dipendenti", "decimals": 0, "value": "$dipendenti$" ]}
@@ -315,11 +310,11 @@ if ($fornitore) {
{[ "type": "select", "multiple": "1", "label": "", "name": "idtipoanagrafica[]", "values": "query=SELECT idtipoanagrafica AS id, descrizione FROM an_tipianagrafiche WHERE idtipoanagrafica NOT IN (SELECT DISTINCT(x.idtipoanagrafica) FROM an_tipianagrafiche_anagrafiche x INNER JOIN an_tipianagrafiche t ON x.idtipoanagrafica = t.idtipoanagrafica INNER JOIN an_anagrafiche ON an_anagrafiche.idanagrafica = x.idanagrafica WHERE t.descrizione = 'Azienda' AND deleted = 0) ORDER BY descrizione", "value": "$idtipianagrafica$" ]} '.tr('Questa anagrafica appartiene alla tipologia "Azienda"').'.

'; - } - ?> + } + ?>
diff --git a/modules/articoli/edit.php b/modules/articoli/edit.php index e01874b68..bcea0cb63 100644 --- a/modules/articoli/edit.php +++ b/modules/articoli/edit.php @@ -15,11 +15,6 @@ $_SESSION['superselect']['id_categoria'] = $records[0]['id_categoria'];
-
- -
-
-
{[ "type": "number", "label": "", "name": "gg_garanzia", "decimals": 0, "value": "$gg_garanzia$", "icon-after": "GG" ]}
- +
{[ "type": "checkbox", "label": "", "name": "servizio", "value": "$servizio$", "help": "", "placeholder": "" ]}
diff --git a/modules/automezzi/edit.php b/modules/automezzi/edit.php index 7d88e83bd..9c920f730 100644 --- a/modules/automezzi/edit.php +++ b/modules/automezzi/edit.php @@ -14,11 +14,6 @@ include_once __DIR__.'/../../core.php';
-
- -
-
-
{[ "type": "text", "label": "", "name": "nome", "required": 1, "value": "$nome$" ]} diff --git a/modules/beni/edit.php b/modules/beni/edit.php index 0a5e3b1d7..39a3c9d23 100644 --- a/modules/beni/edit.php +++ b/modules/beni/edit.php @@ -6,11 +6,6 @@ include_once __DIR__.'/../../core.php'; -
- -
-

-
diff --git a/modules/categorie/edit.php b/modules/categorie/edit.php index 12eac0f71..34db75f3c 100644 --- a/modules/categorie/edit.php +++ b/modules/categorie/edit.php @@ -6,11 +6,6 @@ include_once __DIR__.'/../../core.php'; -
- -
-

-
diff --git a/modules/causali/edit.php b/modules/causali/edit.php index f12f4cd17..9151667f6 100644 --- a/modules/causali/edit.php +++ b/modules/causali/edit.php @@ -5,11 +5,6 @@ include_once __DIR__.'/../../core.php'; -
- -
-

-
diff --git a/modules/contratti/buttons.php b/modules/contratti/buttons.php new file mode 100644 index 000000000..31e15d593 --- /dev/null +++ b/modules/contratti/buttons.php @@ -0,0 +1,10 @@ + + ".tr('Rinnova').'... +'; +} diff --git a/modules/contratti/edit.php b/modules/contratti/edit.php index 312090958..042618a11 100644 --- a/modules/contratti/edit.php +++ b/modules/contratti/edit.php @@ -19,23 +19,6 @@ $_SESSION['superselect']['idanagrafica'] = $records[0]['idanagrafica'];
-
- - ".tr('Rinnova').'... - '; - } - ?> - - {( "name": "button", "type": "print", "id_module": "", "id_record": "" )} - - -

-
-

-
{[ "type": "text", "label": "", "name": "numero", "required": 1, "class": "text-center", "value": "$numero$" ]} diff --git a/modules/ddt/edit.php b/modules/ddt/edit.php index da620f028..f747416e8 100644 --- a/modules/ddt/edit.php +++ b/modules/ddt/edit.php @@ -23,11 +23,6 @@ if ($module['name'] == 'Ddt di vendita') {
-
- -
-
-
-
- -
-

-
{[ "type": "text", "label": "", "name": "name", "value": "$name$", "required": 1 ]} diff --git a/modules/fatture/buttons.php b/modules/fatture/buttons.php new file mode 100644 index 000000000..7d49b886a --- /dev/null +++ b/modules/fatture/buttons.php @@ -0,0 +1,14 @@ + + + + + +'; diff --git a/modules/fatture/edit.php b/modules/fatture/edit.php index 7174fda8b..5223f3370 100644 --- a/modules/fatture/edit.php +++ b/modules/fatture/edit.php @@ -10,11 +10,6 @@ $_SESSION['superselect']['idanagrafica'] = $records[0]['idanagrafica']; $_SESSION['superselect']['ddt'] = $dir; ?> -
- - -
-
@@ -55,17 +50,6 @@ $_SESSION['superselect']['ddt'] = $dir; } ?> - -
- - - - - -
- -
-
-
- -
-
-
{[ "type": "text", "label": "", "name": "nomefile", "required": 1, "value": "$nomefile$", "readonly": 1 ]} diff --git a/modules/impostazioni/edit.php b/modules/impostazioni/edit.php index ecebd6888..24d9abd0f 100644 --- a/modules/impostazioni/edit.php +++ b/modules/impostazioni/edit.php @@ -13,12 +13,8 @@ echo '

'.tr('Valori della sezione').'

-
-
- -
-

- '; +
'; + foreach ($records as $record) { // Scelta fra più valori echo ' @@ -63,6 +59,7 @@ foreach ($records as $record) { echo '
'; } + echo '

diff --git a/modules/interventi/buttons.php b/modules/interventi/buttons.php new file mode 100644 index 000000000..cb60f1f9d --- /dev/null +++ b/modules/interventi/buttons.php @@ -0,0 +1,33 @@ + '.tr('Firmato il _DATE_ alle _TIME_ da _PERSON_', [ + '_DATE_' => Translator::dateToLocale($records[0]['firma_data']), + '_TIME_' => Translator::timeToLocale($records[0]['firma_data']), + '_PERSON_' => ''.$records[0]['firma_nome'].'', + ]).''; +} + +echo ' + + +'.$info_firma.' + +'; diff --git a/modules/interventi/edit.php b/modules/interventi/edit.php index a337c25a1..1bf4f8911 100644 --- a/modules/interventi/edit.php +++ b/modules/interventi/edit.php @@ -5,27 +5,6 @@ include_once __DIR__.'/../../core.php'; unset($_SESSION['superselect']['idanagrafica']); $_SESSION['superselect']['idanagrafica'] = $records[0]['idanagrafica']; -//Disabilito il tasto di firma per gli interventi completati -if ($records[0]['flg_completato']) { - $disabled = 'disabled'; - $readonly = 'readonly'; -} else { - $disabled = ''; - $readonly = ''; -} - -if (empty($records[0]['firma_file'])) { - $frase = tr('Anteprima e firma'); - $info_firma = ''; -} else { - $frase = tr('Nuova anteprima e firma'); - $info_firma = ' '.tr('Firmato il _DATE_ alle _TIME_ da _PERSON_', [ - '_DATE_' => Translator::dateToLocale($records[0]['firma_data']), - '_TIME_' => Translator::timeToLocale($records[0]['firma_data']), - '_PERSON_' => ''.$records[0]['firma_nome'].'', - ]).''; -} - ?> @@ -38,42 +17,28 @@ if (empty($records[0]['firma_file'])) {
- - -
- - - {( "name": "button", "type": "print", "id_module": "", "id_record": "" )} - - {( "name": "button", "type": "email", "id_module": "", "id_record": "" )} - - -
 
-
-
-
- {[ "type": "select", "label": "", "name": "idanagrafica", "required": 1, "values": "query=SELECT an_anagrafiche.idanagrafica AS id, ragione_sociale AS descrizione FROM an_anagrafiche INNER JOIN (an_tipianagrafiche_anagrafiche INNER JOIN an_tipianagrafiche ON an_tipianagrafiche_anagrafiche.idtipoanagrafica=an_tipianagrafiche.idtipoanagrafica) ON an_anagrafiche.idanagrafica=an_tipianagrafiche_anagrafiche.idanagrafica WHERE descrizione='Cliente' AND deleted=0 ORDER BY ragione_sociale", "value": "$idanagrafica$", "ajax-source": "clienti", "extra": "" ]} + {[ "type": "select", "label": "", "name": "idanagrafica", "required": 1, "values": "query=SELECT an_anagrafiche.idanagrafica AS id, ragione_sociale AS descrizione FROM an_anagrafiche INNER JOIN (an_tipianagrafiche_anagrafiche INNER JOIN an_tipianagrafiche ON an_tipianagrafiche_anagrafiche.idtipoanagrafica=an_tipianagrafiche.idtipoanagrafica) ON an_anagrafiche.idanagrafica=an_tipianagrafiche_anagrafiche.idanagrafica WHERE descrizione='Cliente' AND deleted=0 ORDER BY ragione_sociale", "value": "$idanagrafica$", "ajax-source": "clienti", "extra": "" ]}
- {[ "type": "select", "label": "", "name": "idsede", "values": "query=SELECT 0 AS id, 'Sede legale' AS descrizione UNION SELECT id, CONCAT_WS( ' - ', nomesede, citta ) AS descrizione FROM an_sedi WHERE idanagrafica='$idanagrafica$'", "value": "$idsede$", "ajax-source": "sedi", "extra": "" ]} + {[ "type": "select", "label": "", "name": "idsede", "values": "query=SELECT 0 AS id, 'Sede legale' AS descrizione UNION SELECT id, CONCAT_WS( ' - ', nomesede, citta ) AS descrizione FROM an_sedi WHERE idanagrafica='$idanagrafica$'", "value": "$idsede$", "ajax-source": "sedi", "extra": "" ]}
- {[ "type": "select", "label": "", "name": "idclientefinale", "value": "$idclientefinale$", "ajax-source": "clienti", "extra": "" ]} + {[ "type": "select", "label": "", "name": "idclientefinale", "value": "$idclientefinale$", "ajax-source": "clienti", "extra": "" ]}
- {[ "type": "select", "label": "", "name": "idreferente", "value": "$idreferente$", "ajax-source": "referenti", "extra": "" ]} + {[ "type": "select", "label": "", "name": "idreferente", "value": "$idreferente$", "ajax-source": "referenti", "extra": "" ]}
@@ -89,7 +54,7 @@ if (empty($records[0]['firma_file'])) { } ?> - {[ "type": "select", "label": "", "name": "idpreventivo", "value": "$idpreventivo$", "ajax-source": "preventivi", "extra": "" ]} + {[ "type": "select", "label": "", "name": "idpreventivo", "value": "$idpreventivo$", "ajax-source": "preventivi", "extra": "" ]}
@@ -109,7 +74,7 @@ if (empty($records[0]['firma_file'])) { } ?> - {[ "type": "select", "label": "", "name": "idcontratto", "value": "", "ajax-source": "contratti", "extra": "" ]} + {[ "type": "select", "label": "", "name": "idcontratto", "value": "", "ajax-source": "contratti", "extra": "" ]}
@@ -134,11 +99,11 @@ if (empty($records[0]['firma_file'])) {
- {[ "type": "span", "label": "", "name": "codice", "value": "$codice$", "extra": "" ]} + {[ "type": "span", "label": "", "name": "codice", "value": "$codice$", "extra": "" ]}
- {[ "type": "date", "label": "", "name": "data_richiesta", "required": 1, "value": "$data_richiesta$", "extra": "" ]} + {[ "type": "date", "label": "", "name": "data_richiesta", "required": 1, "value": "$data_richiesta$", "extra": "" ]}
@@ -153,7 +118,7 @@ if (empty($records[0]['firma_file'])) {
- {[ "type": "select", "label": "", "name": "idtipointervento", "required": 1, "values": "query=SELECT idtipointervento AS id, descrizione FROM in_tipiintervento", "value": "$idtipointervento$", "extra": "" ]} + {[ "type": "select", "label": "", "name": "idtipointervento", "required": 1, "values": "query=SELECT idtipointervento AS id, descrizione FROM in_tipiintervento", "value": "$idtipointervento$", "extra": "" ]}
@@ -161,7 +126,7 @@ if (empty($records[0]['firma_file'])) {
- {[ "type": "select", "label": "", "name": "idautomezzo", "values": "query=SELECT id, CONCAT_WS( ')', CONCAT_WS( ' (', CONCAT_WS( ', ', nome, descrizione), targa ), '' ) AS descrizione FROM dt_automezzi", "help": "", "value": "$idautomezzo$", "extra": "" ]} + {[ "type": "select", "label": "", "name": "idautomezzo", "values": "query=SELECT id, CONCAT_WS( ')', CONCAT_WS( ' (', CONCAT_WS( ', ', nome, descrizione), targa ), '' ) AS descrizione FROM dt_automezzi", "help": "", "value": "$idautomezzo$", "extra": "" ]}
@@ -169,11 +134,11 @@ if (empty($records[0]['firma_file'])) {
- {[ "type": "textarea", "label": "", "name": "richiesta", "required": 1, "class": "autosize", "value": "$richiesta$", "extra": "rows='5' " ]} + {[ "type": "textarea", "label": "", "name": "richiesta", "required": 1, "class": "autosize", "value": "$richiesta$", "extra": "rows='5' " ]}
- {[ "type": "textarea", "label": "", "name": "descrizione", "class": "autosize", "value": "$descrizione$", "extra": "rows='10' " ]} + {[ "type": "textarea", "label": "", "name": "descrizione", "class": "autosize", "value": "$descrizione$", "extra": "rows='10' " ]}
diff --git a/modules/iva/edit.php b/modules/iva/edit.php index a39c283f4..378685db6 100644 --- a/modules/iva/edit.php +++ b/modules/iva/edit.php @@ -6,11 +6,6 @@ include_once __DIR__.'/../../core.php'; -
- -
-

-
diff --git a/modules/listini/edit.php b/modules/listini/edit.php index bef184883..581ea187d 100644 --- a/modules/listini/edit.php +++ b/modules/listini/edit.php @@ -13,11 +13,6 @@ include_once __DIR__.'/../../core.php';
-
- -
-
-
{[ "type": "text", "label": "", "name": "nome", "required": 1, "value": "$nome$" ]} diff --git a/modules/misure/edit.php b/modules/misure/edit.php index 4b4090a94..35a24800c 100644 --- a/modules/misure/edit.php +++ b/modules/misure/edit.php @@ -6,11 +6,6 @@ include_once __DIR__.'/../../core.php'; -
- -
-

-
diff --git a/modules/my_impianti/edit.php b/modules/my_impianti/edit.php index 61baf3e6c..c9ca87e17 100644 --- a/modules/my_impianti/edit.php +++ b/modules/my_impianti/edit.php @@ -14,11 +14,6 @@ include_once __DIR__.'/../../core.php';
-
- -
-
-
-
- -
-

-
diff --git a/modules/preventivi/edit.php b/modules/preventivi/edit.php index 8aa670566..65869f985 100644 --- a/modules/preventivi/edit.php +++ b/modules/preventivi/edit.php @@ -16,15 +16,6 @@ $_SESSION['superselect']['idanagrafica'] = $records[0]['idanagrafica'];
-
- - {( "name": "button", "type": "print", "id_module": "", "id_record": "" )} - - -

-
-
-
{[ "type": "text", "label": "", "name": "numero", "required": 1, "class": "text-center", "value": "$numero$" ]} diff --git a/modules/primanota/edit.php b/modules/primanota/edit.php index d94d12332..7ffc797cd 100644 --- a/modules/primanota/edit.php +++ b/modules/primanota/edit.php @@ -21,13 +21,6 @@ include_once __DIR__.'/../../core.php'; } ?> -
- -
-
-
- -
{[ "type": "date", "label": "", "name": "data", "required": 1, "value": "$data$" ]} diff --git a/modules/ritenute/edit.php b/modules/ritenute/edit.php index 519615570..92594cda0 100644 --- a/modules/ritenute/edit.php +++ b/modules/ritenute/edit.php @@ -6,11 +6,6 @@ include_once __DIR__.'/../../core.php'; -
- -
-

-
diff --git a/modules/sezionali/edit.php b/modules/sezionali/edit.php index 89b74a385..51092468d 100644 --- a/modules/sezionali/edit.php +++ b/modules/sezionali/edit.php @@ -6,34 +6,28 @@
-

Sezionale

+

-
- -
-
- -
- {[ "type": "text", "label": "Nome", "name": "nome", "required": 1, "class": "", "value": "$nome$", "extra": "" ]} + {[ "type": "text", "label": "", "name": "nome", "required": 1, "class": "", "value": "$nome$", "extra": "" ]}
- {[ "type": "text", "label": "Maschera", "name": "maschera", "required": 1, "class": "", "value": "$maschera$", "extra": "" ]} + {[ "type": "text", "label": "", "name": "maschera", "required": 1, "class": "", "value": "$maschera$", "extra": "" ]}
- {[ "type": "select", "label": "Documenti", "name": "dir", "required": 1, "class": "", "values": "list=\"entrata\": \"Documenti di vendita\", \"uscita\": \"Documenti di acquisto\"", "value": "$dir$", "extra": "" ]} + {[ "type": "select", "label": "", "name": "dir", "required": 1, "class": "", "values": "list=\"entrata\": \"Documenti di vendita\", \"uscita\": \"Documenti di acquisto\"", "value": "$dir$", "extra": "" ]}
- {[ "type": "select", "label": "Magazzino", "name": "idautomezzo", "required": 0, "class": "", "values": "query=SELECT id, nome AS descrizione FROM dt_automezzi", "value": "$idautomezzo$", "extra": "" ]} + {[ "type": "select", "label": "", "name": "idautomezzo", "required": 0, "class": "", "values": "query=SELECT id, nome AS descrizione FROM dt_automezzi", "value": "$idautomezzo$", "extra": "" ]}
- {[ "type": "textarea", "label": "Note", "name": "note", "required": 0, "class": "", "value": "$note$", "extra": "" ]} + {[ "type": "textarea", "label": "", "name": "note", "required": 0, "class": "", "value": "$note$", "extra": "" ]}
@@ -41,14 +35,20 @@
-

- Istruzioni per il campo Maschera:
+

tr('Maschera'), + ]); ?>

- #### Questi caratteri vengono sostituiti con il numero progressivo della fattura, vengono aggiunti zeri non significativi per raggiungere il numero desiderato di caratteri;

+

#### .

- YYYY Questi caratteri vengono sosituiti con l'anno corrente a 4 cifre, è possibile specificare l'anno a 2 cifre con YY;

+

YYYY 'YY', + ]); ?>.

- È possibile aggiungere altri caratteri fissi, come lettere, trattini, eccetera, prima e/o dopo e/o tra le maschere #### e YYYY.
+

'####', + '_YYYY_' => 'YYYY', + ]); ?>.

diff --git a/modules/smtp/edit.php b/modules/smtp/edit.php index c34221805..d182c704b 100644 --- a/modules/smtp/edit.php +++ b/modules/smtp/edit.php @@ -14,11 +14,6 @@ include_once __DIR__.'/../../core.php';
-
- -
-

-
{[ "type": "text", "label": "", "name": "name", "value": "$name$", "required": 1 ]} diff --git a/modules/stati_intervento/edit.php b/modules/stati_intervento/edit.php index 22f3d90f4..071a1ed7f 100644 --- a/modules/stati_intervento/edit.php +++ b/modules/stati_intervento/edit.php @@ -7,12 +7,6 @@ include_once __DIR__.'/../../core.php'; - -
- -
-
-
{[ "type": "span", "label": "", "name": "idstatointervento", "value": "$idstatointervento$" ]} diff --git a/modules/tecnici_tariffe/edit.php b/modules/tecnici_tariffe/edit.php index b373aff24..276b32b11 100644 --- a/modules/tecnici_tariffe/edit.php +++ b/modules/tecnici_tariffe/edit.php @@ -7,13 +7,6 @@ echo ' -
- -
- -
-
- '; $rst = $dbo->fetchArray("SELECT an_anagrafiche.idanagrafica, ragione_sociale FROM (an_anagrafiche INNER JOIN (an_tipianagrafiche_anagrafiche INNER JOIN an_tipianagrafiche ON an_tipianagrafiche_anagrafiche.idtipoanagrafica=an_tipianagrafiche.idtipoanagrafica) ON an_anagrafiche.idanagrafica=an_tipianagrafiche_anagrafiche.idanagrafica) WHERE an_tipianagrafiche.descrizione='Tecnico' ORDER BY ragione_sociale"); diff --git a/modules/tipi_anagrafiche/edit.php b/modules/tipi_anagrafiche/edit.php index 772435662..79bd6ed52 100644 --- a/modules/tipi_anagrafiche/edit.php +++ b/modules/tipi_anagrafiche/edit.php @@ -11,7 +11,19 @@ if ($records[0]['default']) { $warning_text = ''; } -echo $warning_text; +// Se il tipo di anagrafica è uno di quelli di default, non lo lascio modificare +if (!empty($records[0]['default'])) { + // Disabilito il pulsante di salvataggio + echo ' + + + '.$warning_text; +} + ?> @@ -19,18 +31,6 @@ echo $warning_text; - -
- -
-
- -
@@ -41,12 +41,11 @@ if (!$records[0]['default']) { - - - - + '.tr('Elimina').' +'; } diff --git a/modules/tipi_intervento/edit.php b/modules/tipi_intervento/edit.php index ed0edec9d..05a21ee2b 100644 --- a/modules/tipi_intervento/edit.php +++ b/modules/tipi_intervento/edit.php @@ -7,12 +7,6 @@ include_once __DIR__.'/../../core.php'; - -
- -
-
-
{[ "type": "span", "label": "", "name": "idtipointervento", "value": "$idtipointervento$" ]} diff --git a/modules/viste/edit.php b/modules/viste/edit.php index e605a789c..d36e9e448 100644 --- a/modules/viste/edit.php +++ b/modules/viste/edit.php @@ -10,11 +10,6 @@ echo ' - -
diff --git a/modules/voci_servizio/edit.php b/modules/voci_servizio/edit.php index e87cf3680..3a0fc05c0 100644 --- a/modules/voci_servizio/edit.php +++ b/modules/voci_servizio/edit.php @@ -7,11 +7,6 @@ include_once __DIR__.'/../../core.php'; -
- -
-
-
{[ "type": "text", "label": "", "name": "categoria", "required": 1, "value": "$categoria$" ]} diff --git a/modules/zone/edit.php b/modules/zone/edit.php index 50227a3a2..bb9b2cf12 100644 --- a/modules/zone/edit.php +++ b/modules/zone/edit.php @@ -8,12 +8,6 @@ include_once __DIR__.'/../../core.php'; - -
- -
-
-
{[ "type": "text", "label": "", "name": "nome", "required": 1, "value": "$nome$" ]}