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' ;
2020-08-17 16:25:01 +02:00
$id_anagrafica = filter ( 'id_anagrafica' );
2018-05-14 14:31:18 +02:00
2018-02-23 16:04:50 +01:00
?> <form action="" method="post" id="add-form">
2019-05-17 09:58:59 +02:00
< input type = " hidden " name = " op " value = " add " >
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " backto " value = " record-edit " >
< div class = " row " >
< div class = " col-md-4 " >
2022-08-30 15:08:43 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Matricola'); ?> " , " name " : " matricola " , " required " : 1 , " class " : " text-center alphanumeric-mask " , " maxlength " : 25 , " validation " : " matricola " ]}
2017-08-04 16:28:16 +02:00
</ div >
< div class = " col-md-8 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Nome'); ?> " , " name " : " nome " , " required " : 1 ]}
2017-08-04 16:28:16 +02:00
</ div >
2023-10-27 15:09:49 +02:00
</ div >
2017-08-04 16:28:16 +02:00
2023-10-27 15:09:49 +02:00
< div class = " row " >
< div class = " col-md-6 " >
2023-08-04 14:54:28 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Cliente'); ?> " , " name " : " idanagrafica " , " id " : " idanagrafica_impianto " , " required " : 1 , " value " : " <?php echo $id_anagrafica ; ?> " , " ajax-source " : " clienti " , " icon-after " : " add|<?php echo Modules::get('Anagrafiche')['id']; ?>|tipoanagrafica=Cliente&readonly_tipo=1||<?php echo !empty( $id_anagrafica ) ? 'disabled' : ''; ?> " , " readonly " : " <?php echo !empty( $id_anagrafica ) ? 1 : 0; ?> " ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-08-11 15:37:38 +02:00
2023-10-27 15:09:49 +02:00
< div class = " col-md-6 " >
2020-08-27 09:15:30 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Sede'); ?> " , " name " : " idsede " , " value " : " $idsede $ " , " ajax-source " : " sedi " , " select-options " : < ? php echo json_encode ([ 'idanagrafica' => $id_anagrafica ]); ?> , "placeholder": "Sede legale" ]}
2018-08-01 18:39:24 +02:00
</ div >
2023-10-27 15:09:49 +02:00
</ div >
2017-08-04 16:28:16 +02:00
2023-10-27 15:09:49 +02:00
< div class = " row " >
< div class = " col-md-6 " >
2023-01-31 10:58:05 +01:00
{[ " type " : " select " , " label " : " <?php echo tr('Tecnico predefinito'); ?> " , " name " : " idtecnico " , " ajax-source " : " tecnici " , " icon-after " : " add|<?php echo Modules::get('Anagrafiche')['id']; ?>|tipoanagrafica=Tecnico&readonly_tipo=1 " ]}
2017-08-04 16:28:16 +02:00
</ div >
2023-10-27 15:09:49 +02:00
< div class = " col-md-6 " >
2023-10-30 13:14:40 +01:00
{[ " type " : " select " , " label " : " <?php echo tr('Categoria'); ?> " , " name " : " id_categoria " , " required " : 0 , " value " : " $id_categoria $ " , " values " : " query=SELECT id, nome AS descrizione FROM my_impianti_categorie " , " icon-after " : " add|<?php echo Modules::get('Categorie impianti')['id']; ?> " ]}
2023-10-27 15:09:49 +02:00
</ div >
2017-08-04 16:28:16 +02:00
</ 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 > < ? php echo tr ( 'Aggiungi' ); ?> </button>
2017-08-04 16:28:16 +02:00
</ div >
</ div >
</ form >
2018-08-01 18:39:24 +02:00
< script type = " text/javascript " >
2020-07-31 14:25:50 +02:00
$ ( document ) . ready ( function () {
2020-10-20 12:03:09 +02:00
input ( 'idanagrafica' ) . change ( function () {
2020-07-31 14:25:50 +02:00
updateSelectOption ( " idanagrafica " , $ ( this ) . val ());
2018-08-01 18:39:24 +02:00
session_set ( 'superselect,idanagrafica' , $ ( this ) . val (), 0 );
2020-10-20 12:03:09 +02:00
let value = ! input ( 'idanagrafica' ) . get ();
2018-08-11 15:37:38 +02:00
2020-10-20 12:03:09 +02:00
input ( 'idsede' ) . setDisabled ( value )
2020-10-20 12:03:42 +02:00
. getElement () . selectReset ();
2018-08-01 18:39:24 +02:00
});
});
2018-08-11 15:37:38 +02:00
</ script >