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 " >
< div class = " col-md-6 " >
2020-04-27 10:24:03 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Codice'); ?> " , " name " : " codice " , " required " : 0 , " value " : " <?php echo htmlentities(filter('codice')) ?: ''; ?> " , " help " : " <?php echo tr('Se non specificato, il codice verrà calcolato automaticamente'); ?> " , " validation " : " codice " ]}
2017-08-04 16:28:16 +02:00
</ div >
2020-03-19 13:26:50 +01:00
< div class = " col-md-6 " >
2020-04-27 10:24:03 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Barcode'); ?> " , " name " : " barcode " , " required " : 0 , " value " : " <?php echo htmlentities(filter('barcode')) ?: ''; ?> " , " validation " : " barcode " ]}
2020-03-19 13:26:50 +01:00
</ div >
</ div >
< div class = " row " >
< div class = " col-md-12 " >
2021-04-13 17:30:42 +02:00
{[ " type " : " textarea " , " label " : " <?php echo tr('Descrizione'); ?> " , " name " : " descrizione " , " required " : 1 , " value " : " <?php echo htmlentities(filter('descrizione')) ?: ''; ?> " ]}
2017-08-04 16:28:16 +02:00
</ div >
< div class = " col-md-6 " >
2020-04-27 10:24:03 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Categoria'); ?> " , " name " : " categoria " , " required " : 0 , " ajax-source " : " categorie " , " icon-after " : " add|<?php echo Modules::get('Categorie articoli')['id']; ?> " ]}
2017-08-04 16:28:16 +02:00
</ div >
< div class = " col-md-6 " >
2020-04-27 10:24:03 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Sottocategoria'); ?> " , " name " : " subcategoria " , " id " : " subcategoria_add " , " ajax-source " : " sottocategorie " , " icon-after " : " add|<?php echo Modules::get('Categorie articoli')['id']; ?>||hide " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
2020-03-16 09:28:40 +01:00
< div class = " box box-info collapsed-box " >
< div class = " box-header with-border " >
< h3 class = " box-title " >< ? php echo tr ( 'Informazioni aggiuntive' ); ?> </h3>
< div class = " box-tools pull-right " >
< button type = " button " class = " btn btn-box-tool " data - widget = " collapse " >
< i class = " fa fa-plus " ></ i >
</ button >
</ div >
</ div >
< div class = " box-body " >
< div class = " row " >
2020-10-15 12:24:22 +02:00
< div class = " col-md-4 " >
2021-10-14 15:44:41 +02:00
{[ " type " : " number " , " label " : " <?php echo tr('Prezzo di acquisto'); ?> " , " name " : " prezzo_acquisto " , " icon-after " : " <?php echo currency(); ?> " , " value " : " <?php echo htmlentities(filter('prezzo_acquisto')) ?: 0; ?> " ]}
2020-03-16 09:28:40 +01:00
</ div >
2020-10-15 12:24:22 +02:00
< div class = " col-md-4 " >
{[ " type " : " number " , " label " : " <?php echo tr('Quantità iniziale'); ?> " , " name " : " qta " , " decimals " : " qta " ]}
</ div >
< div class = " col-md-4 " >
2020-08-11 08:10:06 +02:00
{[ " type " : " number " , " label " : " <?php echo tr('Soglia minima quantità'); ?> " , " name " : " threshold_qta " , " decimals " : " qta " , " min-value " : " undefined " ]}
2020-03-16 09:28:40 +01:00
</ div >
</ div >
< div class = " row " >
< div class = " col-md-6 " >
< ? php
if ( ! setting ( 'Utilizza prezzi di vendita comprensivi di IVA' )) {
echo '
2022-02-06 11:22:53 +01:00
< button type = " button " class = " btn btn-info btn-xs pull-right tip pull-right " title = " '.tr('Scorpora l \ 'IVA dal prezzo di vendita.').' " id = " scorpora_iva_add " >< i class = " fa fa-calculator " aria - hidden = " true " ></ i ></ button > ' ;
2020-03-16 09:28:40 +01:00
}
?>
{[ " type " : " number " , " label " : " <?php echo tr('Prezzo di vendita'); ?> " , " name " : " prezzo_vendita " , " icon-after " : " <?php echo currency(); ?> " , " help " : " <?php echo setting('Utilizza prezzi di vendita comprensivi di IVA') ? tr('Importo IVA inclusa') : ''; ?> " ]}
</ div >
< div class = " col-md-6 " >
{[ " type " : " select " , " label " : " <?php echo tr('Iva di vendita'); ?> " , " name " : " idiva_vendita " , " ajax-source " : " iva " , " valore_predefinito " : " Iva predefinita " , " help " : " <?php echo tr('Se non specificata, verrà utilizzata l \ 'iva di default delle impostazioni'); ?> " ]}
</ div >
</ div >
2021-09-28 14:39:26 +02:00
< div class = " row " >
< div class = " col-md-6 " >
{[ " type " : " select " , " label " : " <?php echo tr('Conto predefinito di acquisto'); ?> " , " name " : " idconto_acquisto " , " ajax-source " : " conti-acquisti " ]}
</ div >
< div class = " col-md-6 " >
{[ " type " : " select " , " label " : " <?php echo tr('Conto predefinito di vendita'); ?> " , " name " : " idconto_vendita " , " ajax-source " : " conti-vendite " ]}
</ div >
</ div >
2020-03-16 09:28:40 +01:00
</ 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 >
< script >
2017-09-04 17:08:26 +02:00
$ ( document ) . ready ( function () {
2018-02-23 16:04:50 +01:00
var sub = $ ( '#add-form' ) . find ( '#subcategoria_add' );
2021-02-23 11:34:37 +01:00
var original = sub . parent () . find ( " .input-group-addon button " ) . attr ( " onclick " );
2017-09-04 17:08:26 +02:00
2020-07-31 14:25:50 +02:00
$ ( '#add-form' ) . find ( '#categoria' ) . change ( function () {
2020-08-17 16:25:01 +02:00
updateSelectOption ( " id_categoria " , $ ( this ) . val ());
2017-09-04 17:08:26 +02:00
session_set ( 'superselect,id_categoria' , $ ( this ) . val (), 0 );
sub . selectReset ();
if ( $ ( this ) . val ()){
sub . parent () . find ( " .input-group-addon button " ) . removeClass ( " hide " );
2021-02-23 11:34:37 +01:00
sub . parent () . find ( " .input-group-addon button " ) . attr ( " onclick " , original . replace ( '&ajax=yes' , " &ajax=yes&id_original= " + $ ( this ) . val ()));
2017-09-04 17:08:26 +02:00
}
else {
sub . parent () . find ( " .input-group-addon button " ) . addClass ( " hide " );
}
});
2020-03-16 09:28:40 +01:00
2020-07-31 14:25:50 +02:00
$ ( " #scorpora_iva_add " ) . click ( function () {
2020-03-16 09:28:40 +01:00
scorpora_iva_add ();
});
2017-08-04 16:28:16 +02:00
});
2020-03-16 09:28:40 +01:00
function scorpora_iva_add () {
if ( $ ( " #add-form " ) . find ( " #idiva_vendita " ) . val () != '' ) {
var percentuale = parseFloat ( $ ( " #add-form " ) . find ( " #idiva_vendita " ) . selectData () . percentuale );
if ( ! percentuale ) return ;
var input = $ ( " #add-form " ) . find ( " #prezzo_vendita " );
var prezzo = input . val () . toEnglish ();
var scorporato = prezzo * 100 / ( 100 + percentuale );
input . val ( scorporato );
} else {
swal ( " <?php echo tr('Attenzione'); ?> " , " <?php echo tr('Seleziona Iva di vendita.'); ?> " , " warning " );
}
}
2017-08-04 16:28:16 +02:00
</ script >