Fix minori
This commit is contained in:
parent
f66a9bd679
commit
68f7ad1eea
|
@ -63,8 +63,6 @@ switch ($op) {
|
||||||
|
|
||||||
redirect(base_path().'/index.php');
|
redirect(base_path().'/index.php');
|
||||||
exit();
|
exit();
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Auth::check() && isset($dbo) && $dbo->isConnected() && $dbo->isInstalled()) {
|
if (Auth::check() && isset($dbo) && $dbo->isConnected() && $dbo->isInstalled()) {
|
||||||
|
|
|
@ -109,7 +109,7 @@ switch (post('op')) {
|
||||||
$coefficiente = post('coefficiente');
|
$coefficiente = post('coefficiente');
|
||||||
|
|
||||||
$articolo->coefficiente = $coefficiente;
|
$articolo->coefficiente = $coefficiente;
|
||||||
$articolo->prezzo_acquisto = $articolo->prezzo_acquisto;
|
$articolo->prezzo_vendita = $articolo->prezzo_acquisto*$coefficiente;
|
||||||
$articolo->save();
|
$articolo->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,7 +154,6 @@ switch (post('op')) {
|
||||||
redirect(base_path().'/pdfgen.php?id_print='.$id_print.'&id_record='.Articolo::where('codice', '!=', '')->first()->id);
|
redirect(base_path().'/pdfgen.php?id_print='.$id_print.'&id_record='.Articolo::where('codice', '!=', '')->first()->id);
|
||||||
exit();
|
exit();
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'change-qta':
|
case 'change-qta':
|
||||||
$descrizione = post('descrizione');
|
$descrizione = post('descrizione');
|
||||||
|
@ -220,7 +219,6 @@ switch (post('op')) {
|
||||||
redirect(base_path().'/editor.php?id_module='.Modules::get('Preventivi')['id'].'&id_record='.$id_preventivo);
|
redirect(base_path().'/editor.php?id_module='.Modules::get('Preventivi')['id'].'&id_record='.$id_preventivo);
|
||||||
exit();
|
exit();
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'export-csv':
|
case 'export-csv':
|
||||||
$file = temp_file();
|
$file = temp_file();
|
||||||
|
|
|
@ -45,7 +45,6 @@ switch (filter('op')) {
|
||||||
redirect(base_path().'/editor.php?id_module='.$id_module.'&id_record='.($id_original ?: $id_record));
|
redirect(base_path().'/editor.php?id_module='.$id_module.'&id_record='.($id_original ?: $id_record));
|
||||||
exit();
|
exit();
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'add':
|
case 'add':
|
||||||
$nome = filter('nome');
|
$nome = filter('nome');
|
||||||
|
|
|
@ -277,9 +277,10 @@ switch (post('op')) {
|
||||||
|
|
||||||
$fatture = Fattura::vendita()
|
$fatture = Fattura::vendita()
|
||||||
->select('*', 'co_documenti.id AS id', 'co_documenti.data AS data')
|
->select('*', 'co_documenti.id AS id', 'co_documenti.data AS data')
|
||||||
->where('idanagrafica', $id_anagrafica)
|
->where('co_documenti.idanagrafica', $id_anagrafica)
|
||||||
->whereIn('idstatodocumento', [$stato1->id, $stato2->id])
|
->whereIn('idstatodocumento', [$stato1->id, $stato2->id])
|
||||||
->join('co_scadenziario', 'co_documenti.id', '=', 'co_scadenziario.iddocumento')
|
->join('co_scadenziario', 'co_documenti.id', '=', 'co_scadenziario.iddocumento')
|
||||||
|
->join('co_tipidocumento', 'co_tipidocumento.id','=','co_documenti.idtipodocumento')
|
||||||
->whereRaw('co_scadenziario.da_pagare > co_scadenziario.pagato')
|
->whereRaw('co_scadenziario.da_pagare > co_scadenziario.pagato')
|
||||||
->whereRaw('co_scadenziario.scadenza < NOW()')
|
->whereRaw('co_scadenziario.scadenza < NOW()')
|
||||||
->groupBy('co_scadenziario.iddocumento')
|
->groupBy('co_scadenziario.iddocumento')
|
||||||
|
@ -287,7 +288,7 @@ switch (post('op')) {
|
||||||
|
|
||||||
$results = [];
|
$results = [];
|
||||||
foreach ($fatture as $result) {
|
foreach ($fatture as $result) {
|
||||||
$results[] = Modules::link('Fatture di vendita', $result->id, $result->getReference());
|
$results[] = Modules::link('Fatture di vendita', $result->id, reference($result));
|
||||||
}
|
}
|
||||||
|
|
||||||
echo json_encode($results);
|
echo json_encode($results);
|
||||||
|
|
|
@ -274,7 +274,6 @@ switch (post('op')) {
|
||||||
redirect(base_path().'/pdfgen.php?id_print='.$id_print.'&tipo='.post('tipo'));
|
redirect(base_path().'/pdfgen.php?id_print='.$id_print.'&tipo='.post('tipo'));
|
||||||
exit();
|
exit();
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'send-mail':
|
case 'send-mail':
|
||||||
$template = Template::find(post('id_template'));
|
$template = Template::find(post('id_template'));
|
||||||
|
|
|
@ -31,7 +31,6 @@ switch (post('op')) {
|
||||||
header("location: ".$rootdir."/pdfgen.php?id_print=".$print['id']."&id_record=".$id_records[0]);
|
header("location: ".$rootdir."/pdfgen.php?id_print=".$print['id']."&id_record=".$id_records[0]);
|
||||||
exit;
|
exit;
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
|
@ -200,7 +200,6 @@ switch ($operazione) {
|
||||||
database()->commitTransaction();
|
database()->commitTransaction();
|
||||||
redirect(base_path().'/controller.php?id_module='.Modules::get('Fatture di vendita')['id'].'&id_record='.$fattura->id);
|
redirect(base_path().'/controller.php?id_module='.Modules::get('Fatture di vendita')['id'].'&id_record='.$fattura->id);
|
||||||
exit();
|
exit();
|
||||||
break;
|
|
||||||
|
|
||||||
case 'add_fattura_multipla':
|
case 'add_fattura_multipla':
|
||||||
$rate = post('rata');
|
$rate = post('rata');
|
||||||
|
@ -257,7 +256,6 @@ switch ($operazione) {
|
||||||
database()->commitTransaction();
|
database()->commitTransaction();
|
||||||
redirect(base_path().'/controller.php?id_module='.Modules::get('Fatture di vendita')['id']);
|
redirect(base_path().'/controller.php?id_module='.Modules::get('Fatture di vendita')['id']);
|
||||||
exit();
|
exit();
|
||||||
break;
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,7 @@ echo '
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<label for="m_'.$count.'">
|
<label for="m_'.$count.'">
|
||||||
<input type="checkbox" onchange="controlloProcedi();" class="unblockable check_periodo" id="m_'.$count.'" name="selezione_periodo['.$count.']" '.$checked.' />
|
<input type="checkbox" onchange="controlloProcedi();" class="unblockable check_periodo" id="m_'.$count.'" name="selezione_periodo['.$count.']" '.$checked.' />
|
||||||
'.ucfirst($data_corrente->formatLocalized('%B %Y')).'
|
'.ucfirst($data_corrente->isoFormat('MMMM YY')).'
|
||||||
</label>
|
</label>
|
||||||
<input type="hidden" name="periodo['.$count.']" value="'.$data.'">
|
<input type="hidden" name="periodo['.$count.']" value="'.$data.'">
|
||||||
</div>';
|
</div>';
|
||||||
|
|
|
@ -61,7 +61,6 @@ switch (post('op')) {
|
||||||
|
|
||||||
redirect(base_path().'/index.php');
|
redirect(base_path().'/index.php');
|
||||||
exit();
|
exit();
|
||||||
break;
|
|
||||||
|
|
||||||
case 'update':
|
case 'update':
|
||||||
$password = post('password');
|
$password = post('password');
|
||||||
|
@ -78,7 +77,7 @@ switch (post('op')) {
|
||||||
|
|
||||||
redirect(base_path().'/index.php');
|
redirect(base_path().'/index.php');
|
||||||
exit();
|
exit();
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$pageTitle = tr('Reimpostazione password');
|
$pageTitle = tr('Reimpostazione password');
|
||||||
|
|
Loading…
Reference in New Issue