2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
2021-01-20 15:08:51 +01:00
|
|
|
* Copyright (C) DevCode s.r.l.
|
2020-09-07 15:04:06 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
echo '
|
2018-07-09 12:57:55 +02:00
|
|
|
<form action="" method="post" role="form">
|
|
|
|
<input type="hidden" name="id_parent" value="'.$id_parent.'">
|
2017-08-04 16:28:16 +02:00
|
|
|
<input type="hidden" name="backto" value="record-edit">
|
|
|
|
<input type="hidden" name="op" value="addsede">
|
|
|
|
|
2020-03-06 16:27:02 +01:00
|
|
|
<!-- Fix creazione da Anagrafica -->
|
|
|
|
<input type="hidden" name="id_record" value="">
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
<div class="row">
|
2019-11-20 10:16:15 +01:00
|
|
|
<div class="col-md-12">
|
2017-09-04 12:02:29 +02:00
|
|
|
{[ "type": "text", "label": "'.tr('Nome sede').'", "name": "nomesede", "required": 1 ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
2019-11-20 10:16:15 +01:00
|
|
|
</div>
|
2020-03-06 16:27:02 +01:00
|
|
|
|
2019-11-20 10:16:15 +01:00
|
|
|
<div class="row">
|
2018-12-07 12:50:42 +01:00
|
|
|
<div class="col-md-6">
|
2018-07-31 18:54:36 +02:00
|
|
|
{[ "type": "text", "label": "'.tr('Indirizzo').'", "name": "indirizzo", "required": 0 ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
2019-11-20 10:16:15 +01:00
|
|
|
|
|
|
|
<div class="col-md-6">
|
2021-08-23 18:03:08 +02:00
|
|
|
{[ "type": "text", "label": "'.($record['tipo_anagrafica'] == 'Ente pubblico' ? tr('Codice unico ufficio') : tr('Codice destinatario')).'", "name": "codice_destinatario", "required": 0, "class": "text-center text-uppercase alphanumeric-mask", "value": "$codice_destinatario$", "maxlength": '.($record['tipo_anagrafica'] == 'Ente pubblico' ? '6' : '7').', "help": "'.tr('<b>Attenzione</b>: per impostare il codice specificare prima \'Tipologia\' e \'Nazione\' dell\'anagrafica:<br><ul><li>Ente pubblico (B2G/PA) - Codice Univoco Ufficio (www.indicepa.gov.it), 6 caratteri</li><li>Azienda (B2B) - Codice Destinatario, 7 caratteri</li><li>Privato (B2C) - viene utilizzato il Codice Fiscale</li></ul>').'", "readonly": "'.intval($record['iso2'] ? $record['iso2'] != 'IT' : 0).'" ]}
|
2019-11-20 10:16:15 +01:00
|
|
|
</div>
|
2020-03-06 16:27:02 +01:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
2018-08-28 17:10:23 +02:00
|
|
|
<div class="col-md-6">
|
2018-07-31 18:54:36 +02:00
|
|
|
{[ "type": "text", "label": "'.tr('Città').'", "name": "citta", "required": 1 ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
|
2018-08-28 17:10:23 +02:00
|
|
|
<div class="col-md-2">
|
2017-09-04 12:02:29 +02:00
|
|
|
{[ "type": "text", "label": "'.tr('C.A.P.').'", "name": "cap" ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
|
2018-08-28 17:10:23 +02:00
|
|
|
<div class="col-md-2">
|
2020-04-30 16:21:53 +02:00
|
|
|
{[ "type": "text", "label": "'.tr('Provincia').'", "name": "provincia", "maxlength": 2, "class": "text-center provincia-mask text-uppercase", "extra": "onkeyup=\"this.value = this.value.toUpperCase();\"" ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
|
2018-08-28 17:10:23 +02:00
|
|
|
<div class="col-md-2">
|
2017-09-04 12:02:29 +02:00
|
|
|
{[ "type": "text", "label": "'.tr('Km').'", "name": "km" ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-12-19 22:06:09 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
2019-04-30 16:16:25 +02:00
|
|
|
{[ "type": "select", "label": "'.tr('Nazione').'", "name": "id_nazione", "ajax-source": "nazioni" ]}
|
2018-12-19 22:06:09 +01:00
|
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
2019-11-20 10:24:56 +01:00
|
|
|
{[ "type": "select", "label": "'.tr('Zona').'", "name": "idzona", "ajax-source": "zone", "placeholder": "'.tr('Nessuna zona').'", "icon-after": "add|'.Modules::get('Zone')['id'].'" ]}
|
2018-12-19 22:06:09 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
<div class="row">
|
2018-02-20 16:46:23 +01:00
|
|
|
<div class="col-md-4">
|
2017-09-04 12:02:29 +02:00
|
|
|
{[ "type": "text", "label": "'.tr('Cellulare').'", "name": "cellulare" ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
|
2018-02-20 16:46:23 +01:00
|
|
|
<div class="col-md-4">
|
2017-09-04 12:02:29 +02:00
|
|
|
{[ "type": "text", "label": "'.tr('Telefono').'", "name": "telefono" ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
|
2018-02-20 16:46:23 +01:00
|
|
|
<div class="col-md-4">
|
2017-09-04 12:02:29 +02:00
|
|
|
{[ "type": "text", "label": "'.tr('Indirizzo email').'", "name": "email" ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- PULSANTI -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12 text-right">
|
2017-09-04 12:02:29 +02:00
|
|
|
<button type="submit" class="btn btn-primary"><i class="fa fa-plus"></i> '.tr('Aggiungi').'</button>
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-05 11:22:32 +02:00
|
|
|
</form>';
|