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' ;
2018-02-23 16:04:50 +01:00
?> <form action="" method="post" id="add-form">
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " op " value = " add " >
< input type = " hidden " name = " backto " value = " record-edit " >
< div class = " row " >
2021-11-02 09:42:40 +01:00
< div class = " col-md-2 " >
2019-07-08 16:45:00 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Codice'); ?> " , " name " : " codice " , " maxlength " : 10 , " class " : " alphanumeric-mask " , " required " : 1 ]}
2017-08-04 16:28:16 +02:00
</ div >
2021-11-02 09:42:40 +01:00
< div class = " col-md-5 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Descrizione'); ?> " , " name " : " descrizione " , " required " : 1 ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-07-03 12:28:38 +02:00
2021-11-02 09:42:40 +01:00
< div class = " col-md-3 " >
{[ " type " : " checkbox " , " label " : " <?php echo tr('Calcola km'); ?> " , " id " : " km " , " name " : " calcola_km " , " help " : " <?php echo tr('Flag per effettuare o meno il calcolo dei km percorsi tra sede azienda e sede cliente'); ?>. " , " value " : " 1 " ]}
</ div >
2018-05-21 11:14:37 +02:00
< div class = " col-md-2 " >
2021-02-22 10:08:36 +01:00
{[ " type " : " number " , " label " : " <small><?php echo tr('Tempo standard'); ?></small> " , " name " : " tempo_standard " , " help " : " <?php echo tr('Valore compreso tra 0,25 - 24 ore. <br><small>Esempi: <em><ul><li>60 minuti = 1 ora</li><li>30 minuti = 0,5 ore</li><li>15 minuti = 0,25 ore</li></ul></em></small>'); ?> " , " min-value " : " 0 " , " max-value " : " 24 " , " class " : " text-center " , " value " : " $tempo_standard $ " , " icon-after " : " ore " ]}
2018-05-21 11:14:37 +02:00
</ div >
2017-08-04 16:28:16 +02:00
</ div >
2019-07-08 16:45:00 +02:00
< div class = " panel panel-primary " >
< div class = " panel-heading " >
< h3 class = " panel-title " >< ? php echo tr ( 'Addebiti unitari al cliente' ); ?> </h3>
</ div >
< div class = " panel-body " >
< div class = " row " >
< div class = " col-md-4 " >
{[ " type " : " number " , " label " : " <?php echo tr('Addebito orario'); ?> " , " name " : " costo_orario " , " required " : 1 , " value " : " $costo_orario $ " , " icon-after " : " <i class='fa fa-euro'></i> " ]}
</ div >
< div class = " col-md-4 " >
{[ " type " : " number " , " label " : " <?php echo tr('Addebito km'); ?> " , " name " : " costo_km " , " required " : 1 , " value " : " $costo_km $ " , " icon-after " : " <i class='fa fa-euro'></i> " ]}
</ div >
< div class = " col-md-4 " >
{[ " type " : " number " , " label " : " <?php echo tr('Addebito diritto ch.'); ?> " , " name " : " costo_diritto_chiamata " , " required " : 1 , " value " : " $costo_diritto_chiamata $ " , " icon-after " : " <i class='fa fa-euro'></i> " ]}
</ div >
</ div >
</ div >
</ div >
< div class = " panel panel-primary " >
< div class = " panel-heading " >
< h3 class = " panel-title " >< ? php echo tr ( 'Costi unitari del tecnico' ); ?> </h3>
</ div >
< div class = " panel-body " >
< div class = " row " >
< div class = " col-md-4 " >
{[ " type " : " number " , " label " : " <?php echo tr('Costo orario'); ?> " , " name " : " costo_orario_tecnico " , " required " : 1 , " value " : " $costo_orario_tecnico $ " , " icon-after " : " <i class='fa fa-euro'></i> " ]}
</ div >
< div class = " col-md-4 " >
{[ " type " : " number " , " label " : " <?php echo tr('Costo km'); ?> " , " name " : " costo_km_tecnico " , " required_tecnico " : 1 , " value " : " $costo_km_tecnico $ " , " icon-after " : " <i class='fa fa-euro'></i> " ]}
</ div >
< div class = " col-md-4 " >
{[ " type " : " number " , " label " : " <?php echo tr('Costo diritto ch.'); ?> " , " name " : " costo_diritto_chiamata_tecnico " , " required " : 1 , " value " : " $costo_diritto_chiamata_tecnico $ " , " icon-after " : " <i class='fa fa-euro'></i> " ]}
</ div >
</ div >
</ div >
</ div >
2017-08-04 16:28:16 +02:00
<!-- 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 >