docs: pulizia commenti TODO
This commit is contained in:
parent
3e556576e5
commit
439d1971fc
1
core.php
1
core.php
|
@ -273,7 +273,6 @@ if (!API\Response::isAPIRequest()) {
|
||||||
|
|
||||||
// Inclusione dei file modutil.php
|
// Inclusione dei file modutil.php
|
||||||
// TODO: sostituire * con lista module dir {aggiornamenti,anagrafiche,articoli}
|
// TODO: sostituire * con lista module dir {aggiornamenti,anagrafiche,articoli}
|
||||||
// TODO: sostituire tutte le funzioni dei moduli con classi Eloquent relative
|
|
||||||
$files = glob(__DIR__.'/{modules,plugins}/*/modutil.php', GLOB_BRACE);
|
$files = glob(__DIR__.'/{modules,plugins}/*/modutil.php', GLOB_BRACE);
|
||||||
$custom_files = glob(__DIR__.'/{modules,plugins}/*/custom/modutil.php', GLOB_BRACE);
|
$custom_files = glob(__DIR__.'/{modules,plugins}/*/custom/modutil.php', GLOB_BRACE);
|
||||||
foreach ($custom_files as $key => $value) {
|
foreach ($custom_files as $key => $value) {
|
||||||
|
|
|
@ -22,5 +22,3 @@ include_once __DIR__.'/../../core.php';
|
||||||
if (!empty($id_record)) {
|
if (!empty($id_record)) {
|
||||||
$records = $dbo->fetchArray('SELECT * FROM `zz_fields` WHERE `id`='.prepare($id_record));
|
$records = $dbo->fetchArray('SELECT * FROM `zz_fields` WHERE `id`='.prepare($id_record));
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: prevedere un utilizzo pratico del campo options
|
|
||||||
|
|
|
@ -61,7 +61,6 @@ function anteprimaFirma() {
|
||||||
</script>';
|
</script>';
|
||||||
|
|
||||||
// Creazione altri documenti
|
// Creazione altri documenti
|
||||||
// TODO: trasformazione delle sessioni in righe relative
|
|
||||||
/*
|
/*
|
||||||
echo '
|
echo '
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
|
|
|
@ -71,7 +71,6 @@ if (Services::isEnabled()) {
|
||||||
$servizi_in_scadenza = Services::getServiziInScadenza($limite_scadenze);
|
$servizi_in_scadenza = Services::getServiziInScadenza($limite_scadenze);
|
||||||
$servizi_scaduti = Services::getServiziScaduti();
|
$servizi_scaduti = Services::getServiziScaduti();
|
||||||
if (!$servizi_in_scadenza->isEmpty() || !$servizi_scaduti->isEmpty()) {
|
if (!$servizi_in_scadenza->isEmpty() || !$servizi_scaduti->isEmpty()) {
|
||||||
// TODO: Il tasto deve preparare correttamente il carrello con servizi e le risorse in scadenza, considerando anche eventuali ampliamenti (es. spazio FE esaurito o in esaurimento)
|
|
||||||
echo ' </tbody>
|
echo ' </tbody>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -351,7 +351,6 @@ class FatturaOrdinaria extends FatturaElettronica
|
||||||
}
|
}
|
||||||
|
|
||||||
// Nel caso il prezzo sia negativo viene gestito attraverso l'inversione della quantità (come per le note di credito)
|
// Nel caso il prezzo sia negativo viene gestito attraverso l'inversione della quantità (come per le note di credito)
|
||||||
// TODO: per migliorare la visualizzazione, sarebbe da lasciare negativo il prezzo e invertire gli sconti.
|
|
||||||
if (!empty($articolo->um) && !empty($articolo->um_secondaria) && !empty((float) $articolo->fattore_um_secondaria) && $riga['UnitaMisura'] == $articolo->um_secondaria) {
|
if (!empty($articolo->um) && !empty($articolo->um_secondaria) && !empty((float) $articolo->fattore_um_secondaria) && $riga['UnitaMisura'] == $articolo->um_secondaria) {
|
||||||
$qta = (($riga['Quantita'] ?: 1) / ($articolo->fattore_um_secondaria ?: 1));
|
$qta = (($riga['Quantita'] ?: 1) / ($articolo->fattore_um_secondaria ?: 1));
|
||||||
$prezzo = $totale_righe_riepilogo > 0 ? $totale_righe_riepilogo / ($qta ?: 1) : -($totale_righe_riepilogo / ($qta ?: 1));
|
$prezzo = $totale_righe_riepilogo > 0 ? $totale_righe_riepilogo / ($qta ?: 1) : -($totale_righe_riepilogo / ($qta ?: 1));
|
||||||
|
|
|
@ -124,7 +124,6 @@ class FatturaSemplificata extends FatturaElettronica
|
||||||
$obj->idconto = $conto[$key];
|
$obj->idconto = $conto[$key];
|
||||||
|
|
||||||
// Nel caso il prezzo sia negativo viene gestito attraverso l'inversione della quantità (come per le note di credito)
|
// Nel caso il prezzo sia negativo viene gestito attraverso l'inversione della quantità (come per le note di credito)
|
||||||
// TODO: per migliorare la visualizzazione, sarebbe da lasciare negativo il prezzo e invertire gli sconti.
|
|
||||||
$prezzo = $prezzo < 0 ? -$prezzo : $prezzo;
|
$prezzo = $prezzo < 0 ? -$prezzo : $prezzo;
|
||||||
$qta = 1;
|
$qta = 1;
|
||||||
$qta = $riga['Importo'] < 0 ? -$qta : $qta;
|
$qta = $riga['Importo'] < 0 ? -$qta : $qta;
|
||||||
|
|
|
@ -123,28 +123,16 @@ class Pianificazione extends Document
|
||||||
return $this->contratto->descrizioni();
|
return $this->contratto->descrizioni();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getReferenceName()
|
public function getReferenceName() {}
|
||||||
{
|
|
||||||
// TODO: Implement getReferenceName() method.
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getReferenceNumber()
|
public function getReferenceNumber() {}
|
||||||
{
|
|
||||||
// TODO: Implement getReferenceNumber() method.
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getReferenceDate()
|
public function getReferenceDate() {}
|
||||||
{
|
|
||||||
// TODO: Implement getReferenceDate() method.
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getReferenceRagioneSociale()
|
public function getReferenceRagioneSociale()
|
||||||
{
|
{
|
||||||
return $this->anagrafica->ragione_sociale;
|
return $this->anagrafica->ragione_sociale;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getReference()
|
public function getReference() {}
|
||||||
{
|
|
||||||
// TODO: Implement getReference() method.
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -152,33 +152,20 @@ class Promemoria extends Document
|
||||||
return $this->hasMany(Components\Descrizione::class, 'id_promemoria');
|
return $this->hasMany(Components\Descrizione::class, 'id_promemoria');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getModuleAttribute()
|
public function getModuleAttribute() {}
|
||||||
{
|
|
||||||
// TODO: Implement getModuleAttribute() method.
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getReferenceName()
|
public function getReferenceName() {}
|
||||||
{
|
|
||||||
// TODO: Implement getReferenceName() method.
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getReferenceNumber()
|
public function getReferenceNumber()
|
||||||
{
|
{
|
||||||
// TODO: Implement getReferenceNumber() method.
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getReferenceDate()
|
public function getReferenceDate() {}
|
||||||
{
|
|
||||||
// TODO: Implement getReferenceDate() method.
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getReferenceRagioneSociale()
|
public function getReferenceRagioneSociale()
|
||||||
{
|
{
|
||||||
return $this->anagrafica->ragione_sociale;
|
return $this->anagrafica->ragione_sociale;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getReference()
|
public function getReference() {}
|
||||||
{
|
|
||||||
// TODO: Implement getReference() method.
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -145,8 +145,6 @@ class RigheInterventi extends AppResource
|
||||||
if ($data['is_articolo']) {
|
if ($data['is_articolo']) {
|
||||||
$originale = ArticoloOriginale::find($data['id_articolo']);
|
$originale = ArticoloOriginale::find($data['id_articolo']);
|
||||||
$riga = Articolo::build($intervento, $originale);
|
$riga = Articolo::build($intervento, $originale);
|
||||||
} elseif ($data['is_sconto']) {
|
|
||||||
// TODO: sconti
|
|
||||||
} else {
|
} else {
|
||||||
$riga = Riga::build($intervento);
|
$riga = Riga::build($intervento);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue