Fix indentazione
This commit is contained in:
parent
fbd2463ff4
commit
94f013848e
|
@ -115,10 +115,8 @@ switch ($resource) {
|
|||
if (empty($filter)) {
|
||||
$where[] = 'deleted_at IS NULL';
|
||||
|
||||
|
||||
if (setting('Permetti inserimento sessioni degli altri tecnici')){
|
||||
|
||||
}else{
|
||||
if (setting('Permetti inserimento sessioni degli altri tecnici')) {
|
||||
} else {
|
||||
//come tecnico posso aprire attività solo a mio nome
|
||||
$user = Auth::user();
|
||||
if ($user['gruppo'] == 'Tecnici' && !empty($user['idanagrafica'])) {
|
||||
|
|
|
@ -45,7 +45,6 @@ echo '
|
|||
</div>
|
||||
</div>';
|
||||
|
||||
|
||||
echo '
|
||||
<div class="row">';
|
||||
|
||||
|
@ -83,12 +82,11 @@ if ($show_costi) {
|
|||
<div class="col-md-4">
|
||||
{[ "type": "number", "label": "'.tr('Addebito diritto ch.').'", "name": "prezzo_dirittochiamata", "value": "'.$sessione['prezzo_dirittochiamata'].'" ]}
|
||||
</div>';
|
||||
}
|
||||
}
|
||||
|
||||
echo'
|
||||
</div>';
|
||||
|
||||
|
||||
echo '
|
||||
|
||||
<!-- PULSANTI -->
|
||||
|
|
|
@ -53,7 +53,7 @@ if (!empty($n)) {
|
|||
<td><a target="_blank" >'.Modules::link(Modules::get('Interventi')['id'], $r['id'], $r['codice']).'</a></td>
|
||||
<td>'.$r['ragione_sociale'].'</td>
|
||||
<td>'.Translator::dateToLocale($r['data_richiesta']).'</td>
|
||||
<td>'.((empty($r['data_scadenza'])) ? " - " : Translator::dateToLocale($r['data_scadenza'])).'</td>
|
||||
<td>'.((empty($r['data_scadenza'])) ? ' - ' : Translator::dateToLocale($r['data_scadenza'])).'</td>
|
||||
<td>'.$r['tipointervento'].'</td>
|
||||
<td>'.nl2br($r['richiesta']).'</td>
|
||||
';
|
||||
|
|
|
@ -5,26 +5,25 @@ include_once __DIR__.'/../../core.php';
|
|||
use Modules\Articoli\Articolo;
|
||||
|
||||
switch (post('op')) {
|
||||
|
||||
case 'add':
|
||||
$idsede_partenza = post('idsede_partenza');
|
||||
$idsede_destinazione = post('idsede_destinazione');
|
||||
$qta = ( post('direzione') == 'Carico manuale' ) ? post('qta') : -post('qta');
|
||||
$qta = (post('direzione') == 'Carico manuale') ? post('qta') : -post('qta');
|
||||
|
||||
if( post('direzione') == 'Carico manuale' ){
|
||||
if( $idsede_partenza == 0 && $idsede_destinazione != 0){
|
||||
if (post('direzione') == 'Carico manuale') {
|
||||
if ($idsede_partenza == 0 && $idsede_destinazione != 0) {
|
||||
$qta = -post('qta');
|
||||
} elseif( $idsede_partenza != 0 && $idsede_destinazione == 0){
|
||||
} elseif ($idsede_partenza != 0 && $idsede_destinazione == 0) {
|
||||
$qta = post('qta');
|
||||
$idsede_partenza = post('idsede_destinazione');
|
||||
$idsede_destinazione = post('idsede_partenza');
|
||||
}
|
||||
} else {
|
||||
if( $idsede_partenza != 0 && $idsede_destinazione == 0){
|
||||
if ($idsede_partenza != 0 && $idsede_destinazione == 0) {
|
||||
$qta = -post('qta');
|
||||
$idsede_partenza = post('idsede_destinazione');
|
||||
$idsede_destinazione = post('idsede_partenza');
|
||||
} elseif( $idsede_partenza == 0 && $idsede_destinazione != 0){
|
||||
} elseif ($idsede_partenza == 0 && $idsede_destinazione != 0) {
|
||||
$qta = post('qta');
|
||||
}
|
||||
}
|
||||
|
@ -34,5 +33,4 @@ switch (post('op')) {
|
|||
$dbo->query('UPDATE mg_movimenti SET idsede_azienda='.prepare($idsede_partenza).', idsede_controparte='.prepare($idsede_destinazione).' WHERE id='.prepare($idmovimento));
|
||||
|
||||
break;
|
||||
|
||||
}
|
||||
|
|
|
@ -19,25 +19,25 @@ $_SESSION['superselect']['idsede_destinazione'] = 0;
|
|||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
{["type":"select", "label":"<?php echo tr('Articolo');?>", "name":"idarticolo", "ajax-source":"articoli", "value":"", "required":1]}
|
||||
{["type":"select", "label":"<?php echo tr('Articolo'); ?>", "name":"idarticolo", "ajax-source":"articoli", "value":"", "required":1]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
{["type":"number", "label":"<?php echo tr('Quantità');?>", "name":"qta", "decimals":"2", "value":"1", "required":1]}
|
||||
{["type":"number", "label":"<?php echo tr('Quantità'); ?>", "name":"qta", "decimals":"2", "value":"1", "required":1]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
{["type":"date", "label":"<?php echo tr('Data');?>", "name":"data", "value":"-now-", "required":1]}
|
||||
{["type":"date", "label":"<?php echo tr('Data'); ?>", "name":"data", "value":"-now-", "required":1]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
{["type":"select", "label":"<?php echo tr('Causale');?>", "name":"direzione", "values":"list=\"Carico manuale\":\"Carico\", \"Scarico manuale\":\"Scarico\" ", "value":"Carico manuale", "required":1]}
|
||||
{["type":"select", "label":"<?php echo tr('Causale'); ?>", "name":"direzione", "values":"list=\"Carico manuale\":\"Carico\", \"Scarico manuale\":\"Scarico\" ", "value":"Carico manuale", "required":1]}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
{["type":"textarea", "label":"<?php echo tr('Descrizione movimento');?>", "name":"movimento", "required":1]}
|
||||
{["type":"textarea", "label":"<?php echo tr('Descrizione movimento'); ?>", "name":"movimento", "required":1]}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -78,7 +78,7 @@ switch (filter('op')) {
|
|||
foreach ($sedi as $id_sede) {
|
||||
$dbo->query('INSERT INTO `zz_user_sedi` (`id_user`,`idsede`) VALUES ('.prepare($id_utente).', '.prepare($id_sede).')');
|
||||
}
|
||||
}else{
|
||||
} else {
|
||||
flash()->error(tr('Utente già esistente!'));
|
||||
}
|
||||
|
||||
|
|
|
@ -127,7 +127,7 @@ switch (filter('op')) {
|
|||
|
||||
//Se non trovo corrispondenza aggiungo all'anagrafica la tipologia fornitore
|
||||
if (empty($rs_t)) {
|
||||
$dbo->query("INSERT INTO an_tipianagrafiche_anagrafiche (idtipoanagrafica, idanagrafica) VALUES ((SELECT an_tipianagrafiche.idtipoanagrafica FROM an_tipianagrafiche WHERE an_tipianagrafiche.descrizione='Fornitore'), ".prepare($anagrafica['idanagrafica']).")");
|
||||
$dbo->query("INSERT INTO an_tipianagrafiche_anagrafiche (idtipoanagrafica, idanagrafica) VALUES ((SELECT an_tipianagrafiche.idtipoanagrafica FROM an_tipianagrafiche WHERE an_tipianagrafiche.descrizione='Fornitore'), ".prepare($anagrafica['idanagrafica']).')');
|
||||
}
|
||||
|
||||
// Processo il file ricevuto
|
||||
|
|
Loading…
Reference in New Issue