Stile del codice
This commit is contained in:
parent
eee9e08913
commit
7f333d1358
|
@ -58,7 +58,6 @@ class Anagrafiche extends Resource implements RetrieveInterface, CreateInterface
|
|||
'an_anagrafiche.deleted_at'
|
||||
)->orderBy('an_anagrafiche.ragione_sociale');
|
||||
|
||||
$filters = [];
|
||||
if ($request['resource'] != 'anagrafiche') {
|
||||
$type = 'Cliente';
|
||||
|
||||
|
|
|
@ -21,11 +21,11 @@ namespace Modules\Articoli\Import;
|
|||
|
||||
use Carbon\Carbon;
|
||||
use Importer\CSVImporter;
|
||||
use Modules\Anagrafiche\Anagrafica;
|
||||
use Modules\Anagrafiche\Sede;
|
||||
use Modules\Articoli\Articolo;
|
||||
use Modules\Articoli\Categoria;
|
||||
use Modules\Iva\Aliquota;
|
||||
use Modules\Anagrafiche\Anagrafica;
|
||||
|
||||
/**
|
||||
* Struttura per la gestione delle operazioni di importazione (da CSV) degli Articoli.
|
||||
|
|
|
@ -28,7 +28,6 @@ function renderChecklist($check, $level = 0)
|
|||
|
||||
<span class="text">'.$check->content.'</span>';
|
||||
|
||||
|
||||
if (empty($check->user) || $check->user->id == $user->id) {
|
||||
$result .= '
|
||||
<div class="tools">
|
||||
|
@ -46,7 +45,7 @@ function renderChecklist($check, $level = 0)
|
|||
|
||||
$result .= '
|
||||
<span class="badge pull-right" style="margin-right:5px">'.(!empty($check->checked_at) ? tr('Verificato da _NAME_ il _DATE_', [
|
||||
'_NAME_' => $check->checkUser->username,
|
||||
'_NAME_' => $check->checkUser->username,
|
||||
'_DATE_' => timestampFormat($check->checked_at),
|
||||
]) : '').'</span>';
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
*/
|
||||
|
||||
use Modules\Anagrafiche\Anagrafica;
|
||||
use Modules\Iva\Aliquota;
|
||||
use Modules\Fatture\Gestori\Bollo;
|
||||
use Modules\Iva\Aliquota;
|
||||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
|
@ -358,7 +358,7 @@ elseif ($record['stato'] == 'Bozza') {
|
|||
}
|
||||
echo '
|
||||
</div>';
|
||||
if($dir == 'entrata'){
|
||||
if ($dir == 'entrata') {
|
||||
echo '
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
|
@ -888,12 +888,12 @@ function cambiaStato() {
|
|||
}
|
||||
}
|
||||
}';
|
||||
if($dir=='entrata'){
|
||||
if ($dir == 'entrata') {
|
||||
echo '
|
||||
function bolloAutomatico() {
|
||||
let bollo_automatico = input("bollo_automatico");
|
||||
let addebita_bollo = input("addebita_bollo");
|
||||
let has_bollo ='.($bollo->getBollo()>0 ? "true" : "false").';
|
||||
let has_bollo ='.($bollo->getBollo() > 0 ? 'true' : 'false').';
|
||||
if(bollo_automatico.get()==0){
|
||||
$(".bollo").show();
|
||||
input("bollo").enable();
|
||||
|
@ -902,7 +902,7 @@ if($dir=='entrata'){
|
|||
} else {
|
||||
$(".bollo").show();
|
||||
input("bollo").disable();
|
||||
$("#bollo").val('.setting("Importo marca da bollo").');
|
||||
$("#bollo").val('.setting('Importo marca da bollo').');
|
||||
}
|
||||
}
|
||||
$(document).ready(function() {
|
||||
|
|
|
@ -77,9 +77,9 @@ switch (filter('op')) {
|
|||
$dettaglio_predefinito->sconto_percentuale = $sconto;
|
||||
$dettaglio_predefinito->setPrezzoUnitario($prezzo_unitario);
|
||||
$dettaglio_predefinito->save();
|
||||
if($articolo->id_fornitore==$anagrafica->idanagrafica && $direzione=='uscita'){
|
||||
$prezzo_unitario = $prezzo_unitario-($prezzo_unitario*$sconto/100);
|
||||
$articolo->prezzo_acquisto=$prezzo_unitario;
|
||||
if ($articolo->id_fornitore == $anagrafica->idanagrafica && $direzione == 'uscita') {
|
||||
$prezzo_unitario = $prezzo_unitario - ($prezzo_unitario * $sconto / 100);
|
||||
$articolo->prezzo_acquisto = $prezzo_unitario;
|
||||
$articolo->save();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,9 +34,9 @@ $direzione = get('direzione') == 'uscita' ? 'uscita' : 'entrata';
|
|||
$articolo = Articolo::find($id_articolo);
|
||||
$anagrafica = Anagrafica::find($id_anagrafica);
|
||||
|
||||
if($direzione=='entrata'){
|
||||
if ($direzione == 'entrata') {
|
||||
$prezzo_predefinito = $prezzi_ivati ? $articolo->prezzo_vendita_ivato : $articolo->prezzo_vendita;
|
||||
} else{
|
||||
} else {
|
||||
$prezzo_predefinito = $articolo->prezzo_acquisto;
|
||||
}
|
||||
// Individuazione dei prezzi registrati
|
||||
|
@ -45,23 +45,23 @@ $dettagli = DettaglioPrezzo::dettagli($id_articolo, $id_anagrafica, $direzione)
|
|||
|
||||
$dettaglio_predefinito = DettaglioPrezzo::dettaglioPredefinito($id_articolo, $id_anagrafica, $direzione)
|
||||
->first();
|
||||
if($articolo->id_fornitore==$anagrafica->idanagrafica){
|
||||
$color='success';
|
||||
$icon='check';
|
||||
$text= tr('Sì');
|
||||
if ($articolo->id_fornitore == $anagrafica->idanagrafica) {
|
||||
$color = 'success';
|
||||
$icon = 'check';
|
||||
$text = tr('Sì');
|
||||
} else {
|
||||
$color='danger';
|
||||
$icon='times';
|
||||
$text= tr('No');
|
||||
$color = 'danger';
|
||||
$icon = 'times';
|
||||
$text = tr('No');
|
||||
}
|
||||
echo '
|
||||
<table class="table table-striped table-condensed table-bordered">
|
||||
<tr>
|
||||
<th class="text-center col-md-4">'.($direzione=='entrata' ? tr('Cliente') : tr('Fornitore')).'</th>
|
||||
<th class="text-center col-md-4">'.($direzione == 'entrata' ? tr('Cliente') : tr('Fornitore')).'</th>
|
||||
<th class="text-center col-md-4">'.tr('Prezzo predefinito').'</th>';
|
||||
if($direzione=='uscita'){
|
||||
if ($direzione == 'uscita') {
|
||||
echo '<th class="text-center col-md-4">'.tr('Fornitore predefinito').'</th>';
|
||||
} else{
|
||||
} else {
|
||||
echo '<th class="text-center col-md-4"></th>';
|
||||
}
|
||||
echo '
|
||||
|
@ -69,9 +69,9 @@ echo '
|
|||
<tr>
|
||||
<td class="text-center">'.$anagrafica->ragione_sociale.'</td>
|
||||
<td class="text-center">'.moneyFormat($prezzo_predefinito).'</td>';
|
||||
if($direzione=='uscita'){
|
||||
if ($direzione == 'uscita') {
|
||||
echo '<td class="text-center"><i class="fa fa-'.$icon.' text-'.$color.'"></i> '.$text.'</td>';
|
||||
} else{
|
||||
} else {
|
||||
echo '<td></td>';
|
||||
}
|
||||
echo '
|
||||
|
@ -89,7 +89,7 @@ echo '
|
|||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
{[ "type": "checkbox", "label": "'.tr("Imposta prezzo per questa anagrafica").'", "name": "modifica_prezzi", "value": "'.intval(!empty($dettaglio_predefinito)).'" ]}
|
||||
{[ "type": "checkbox", "label": "'.tr('Imposta prezzo per questa anagrafica').'", "name": "modifica_prezzi", "value": "'.intval(!empty($dettaglio_predefinito)).'" ]}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue