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="edit-form">
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " backto " value = " record-edit " >
< input type = " hidden " name = " op " value = " update " >
<!-- DATI -->
< div class = " panel panel-primary " >
< div class = " panel-heading " >
2018-02-18 19:53:23 +01:00
< h3 class = " panel-title " >< ? php echo tr ( 'Dati' ); ?> </h3>
2017-08-04 16:28:16 +02:00
</ div >
< div class = " panel-body " >
< div class = " row " >
2018-02-20 16:46:23 +01:00
< div class = " col-md-8 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('Nome'); ?> " , " name " : " nome " , " required " : 1 , " value " : " $nome $ " ]}
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 " : " <?php echo tr('Colore'); ?> " , " name " : " colore " , " class " : " colorpicker text-center " , " value " : " $colore $ " , " extra " : " maxlength='7' " , " icon-after " : " <div class='img-circle square'></div> " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
< div class = " row " >
2018-02-20 16:46:23 +01:00
< div class = " col-md-12 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " textarea " , " label " : " <?php echo tr('Nota'); ?> " , " name " : " nota " , " value " : " $nota $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
</ div >
</ div >
</ form >
< div class = " panel panel-primary " >
< div class = " panel-heading " >
2017-09-04 12:02:29 +02:00
< h3 class = " panel-title " >< ? php echo tr ( 'Sottocategorie' ); ?> </h3>
2017-08-04 16:28:16 +02:00
</ div >
< div class = " panel-body " >
< div class = " pull-left " >
2020-09-23 17:53:19 +02:00
< a class = " btn btn-primary " data - href = " <?php echo base_path(); ?>/add.php?id_module=<?php echo $id_module ; ?>&id_original=<?php echo $id_record ; ?> " data - toggle = " modal " data - title = " <?php echo tr('Aggiungi riga'); ?> " >< i class = " fa fa-plus " ></ i > < ? php echo tr ( 'Sottocategoria' ); ?> </a><br>
2017-08-04 16:28:16 +02:00
</ div >
< div class = " clearfix " ></ div >
< hr >
< div class = " row " >
< div class = " col-md-12 " >
< table class = " table table-striped table-hover table-condensed " >
< tr >
2017-09-04 12:02:29 +02:00
< th >< ? php echo tr ( 'Nome' ); ?> </th>
< th >< ? php echo tr ( 'Colore' ); ?> </th>
< th >< ? php echo tr ( 'Nota' ); ?> </th>
2018-03-22 17:20:33 +01:00
< th width = " 20% " >< ? php echo tr ( 'Opzioni' ); ?> </th>
2017-08-04 16:28:16 +02:00
</ tr >
2020-09-23 13:36:37 +02:00
< ? php include base_dir () . '/modules/' . Modules :: get ( $id_module )[ 'directory' ] . '/row-list.php' ; ?>
2017-08-04 16:28:16 +02:00
</ table >
</ div >
</ div >
</ div >
</ div >
< script >
2020-07-31 14:25:50 +02:00
$ ( document ) . ready ( function () {
$ ( '.colorpicker' ) . colorpicker () . on ( 'changeColor' , function () {
2017-08-04 16:28:16 +02:00
$ ( '#colore' ) . parent () . find ( '.square' ) . css ( 'background' , $ ( '#colore' ) . val () );
});
$ ( '#colore' ) . parent () . find ( '.square' ) . css ( 'background' , $ ( '#colore' ) . val () );
});
</ script >
2017-09-19 16:20:44 +02:00
< ? php
2020-03-18 22:24:18 +01:00
$elementi = $dbo -> fetchArray ( 'SELECT `mg_articoli`.`id`, `mg_articoli`.`codice`, `mg_articoli`.`barcode`, `mg_articoli`.`deleted_at` FROM `mg_articoli` WHERE `id_categoria`=' . prepare ( $id_record ) . ' OR `id_sottocategoria`=' . prepare ( $id_record ) . ' OR `id_sottocategoria` IN (SELECT id FROM `mg_categorie` WHERE `parent`=' . prepare ( $id_record ) . ')' );
2017-09-20 09:45:12 +02:00
2020-03-18 22:24:18 +01:00
if ( ! empty ( $elementi )) {
2017-09-19 16:20:44 +02:00
echo '
2020-03-18 22:24:18 +01:00
< div class = " box box-warning collapsable collapsed-box " >
< div class = " box-header with-border " >
< h3 class = " box-title " >< i class = " fa fa-warning " ></ i > '.tr(' Articoli collegati : _NUM_ ' , [
'_NUM_' => count ( $elementi ),
]) . ' </ 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 " >
< ul > ' ;
foreach ( $elementi as $elemento ) {
$descrizione = tr ( 'Articolo _CODICE_ _DELETED_AT_' , [
'_CODICE_' => ! empty ( $elemento [ 'codice' ]) ? $elemento [ 'codice' ] : $elemento [ 'barcode' ],
'_DELETED_AT_' => ( ! empty ( $elemento [ 'deleted_at' ]) ? tr ( 'Eliminato il:' ) . ' ' . Translator :: dateToLocale ( $elemento [ 'deleted_at' ]) : '' ),
2020-03-31 20:34:31 +02:00
]);
$modulo = 'Articoli' ;
$id = $elemento [ 'id' ];
2020-03-18 22:24:18 +01:00
2020-03-31 20:34:31 +02:00
echo '
2020-03-18 22:24:18 +01:00
< li > '.Modules::link($modulo, $id, $descrizione).' </ li > ' ;
2020-03-31 20:34:31 +02:00
}
2020-03-18 22:24:18 +01:00
2020-03-31 20:34:31 +02:00
echo '
2020-03-18 22:24:18 +01:00
</ ul >
</ div >
</ div > ' ;
2020-03-31 20:34:31 +02:00
} else {
2017-09-20 09:45:12 +02:00
echo '
< a class = " btn btn-danger ask " data - backto = " record-list " >
< i class = " fa fa-trash " ></ i > '.tr(' Elimina ').'
</ a > ' ;
2020-03-31 20:34:31 +02:00
}