Fix minori
This commit is contained in:
parent
f66a9bd679
commit
68f7ad1eea
|
@ -62,9 +62,7 @@ switch ($op) {
|
|||
Auth::logout();
|
||||
|
||||
redirect(base_path().'/index.php');
|
||||
exit();
|
||||
|
||||
break;
|
||||
exit();
|
||||
}
|
||||
|
||||
if (Auth::check() && isset($dbo) && $dbo->isConnected() && $dbo->isInstalled()) {
|
||||
|
|
|
@ -109,7 +109,7 @@ switch (post('op')) {
|
|||
$coefficiente = post('coefficiente');
|
||||
|
||||
$articolo->coefficiente = $coefficiente;
|
||||
$articolo->prezzo_acquisto = $articolo->prezzo_acquisto;
|
||||
$articolo->prezzo_vendita = $articolo->prezzo_acquisto*$coefficiente;
|
||||
$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);
|
||||
exit();
|
||||
|
||||
break;
|
||||
|
||||
case 'change-qta':
|
||||
$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);
|
||||
exit();
|
||||
|
||||
break;
|
||||
|
||||
case 'export-csv':
|
||||
$file = temp_file();
|
||||
|
|
|
@ -44,8 +44,7 @@ switch (filter('op')) {
|
|||
$database->commitTransaction();
|
||||
redirect(base_path().'/editor.php?id_module='.$id_module.'&id_record='.($id_original ?: $id_record));
|
||||
exit();
|
||||
|
||||
break;
|
||||
|
||||
|
||||
case 'add':
|
||||
$nome = filter('nome');
|
||||
|
|
|
@ -277,9 +277,10 @@ switch (post('op')) {
|
|||
|
||||
$fatture = Fattura::vendita()
|
||||
->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])
|
||||
->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.scadenza < NOW()')
|
||||
->groupBy('co_scadenziario.iddocumento')
|
||||
|
@ -287,7 +288,7 @@ switch (post('op')) {
|
|||
|
||||
$results = [];
|
||||
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);
|
||||
|
|
|
@ -274,7 +274,6 @@ switch (post('op')) {
|
|||
redirect(base_path().'/pdfgen.php?id_print='.$id_print.'&tipo='.post('tipo'));
|
||||
exit();
|
||||
|
||||
break;
|
||||
|
||||
case 'send-mail':
|
||||
$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]);
|
||||
exit;
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
return [
|
||||
|
|
|
@ -200,7 +200,6 @@ switch ($operazione) {
|
|||
database()->commitTransaction();
|
||||
redirect(base_path().'/controller.php?id_module='.Modules::get('Fatture di vendita')['id'].'&id_record='.$fattura->id);
|
||||
exit();
|
||||
break;
|
||||
|
||||
case 'add_fattura_multipla':
|
||||
$rate = post('rata');
|
||||
|
@ -257,7 +256,6 @@ switch ($operazione) {
|
|||
database()->commitTransaction();
|
||||
redirect(base_path().'/controller.php?id_module='.Modules::get('Fatture di vendita')['id']);
|
||||
exit();
|
||||
break;
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -68,7 +68,7 @@ echo '
|
|||
<div class="col-md-3">
|
||||
<label for="m_'.$count.'">
|
||||
<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>
|
||||
<input type="hidden" name="periodo['.$count.']" value="'.$data.'">
|
||||
</div>';
|
||||
|
|
Loading…
Reference in New Issue