mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-18 12:30:35 +01:00
159 lines
3.7 KiB
PHP
Executable File
159 lines
3.7 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
* Copyright (C) DevCode s.r.l.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace Plugins\PianificazioneFatturazione;
|
|
|
|
use Common\Document;
|
|
use Modules\Contratti\Contratto;
|
|
use Modules\Fatture\Fattura;
|
|
|
|
class Pianificazione extends Document
|
|
{
|
|
protected $table = 'co_fatturazione_contratti';
|
|
|
|
/**
|
|
* The attributes that should be mutated to dates.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $dates = [
|
|
'data_scadenza',
|
|
];
|
|
|
|
/**
|
|
* Crea un nuovo promemoria.
|
|
*
|
|
* @param string $data_richiesta
|
|
*
|
|
* @return self
|
|
*/
|
|
public static function build(Contratto $contratto, $data_scadenza)
|
|
{
|
|
$model = new static();
|
|
|
|
$model->contratto()->associate($contratto);
|
|
|
|
$model->data_scadenza = $data_scadenza;
|
|
|
|
// Salvataggio delle informazioni
|
|
$model->save();
|
|
|
|
return $model;
|
|
}
|
|
|
|
public function getPluginAttribute()
|
|
{
|
|
return 'Pianificazione fatturazione';
|
|
}
|
|
|
|
public function getDirezioneAttribute()
|
|
{
|
|
return 'entrata';
|
|
}
|
|
|
|
public function anagrafica()
|
|
{
|
|
return $this->contratto->anagrafica();
|
|
}
|
|
|
|
public function contratto()
|
|
{
|
|
return $this->belongsTo(Contratto::class, 'idcontratto');
|
|
}
|
|
|
|
public function fattura()
|
|
{
|
|
return $this->belongsTo(Fattura::class, 'iddocumento');
|
|
}
|
|
|
|
public function getNumeroPianificazione()
|
|
{
|
|
$pianificazioni = $this->contratto->pianificazioni;
|
|
|
|
$p = $this;
|
|
|
|
return $pianificazioni->search(function ($item) use ($p) {
|
|
return $item->id == $p->id;
|
|
}) + 1;
|
|
}
|
|
|
|
public function getRighe()
|
|
{
|
|
$righe = $this->contratto->getRighe();
|
|
$pianificazioni = $this->contratto->pianificazioni;
|
|
$numero_righe = $righe->count() / $pianificazioni->count();
|
|
|
|
$p = $this;
|
|
$index = $pianificazioni->search(function ($item) use ($p) {
|
|
return $item->id == $p->id;
|
|
});
|
|
|
|
$skip = $pianificazioni->count();
|
|
|
|
return $righe->filter(function ($value, $key) use ($skip, $index) {
|
|
return $key % $skip == $index;
|
|
});
|
|
}
|
|
|
|
public function articoli()
|
|
{
|
|
return $this->contratto->articoli();
|
|
}
|
|
|
|
public function righe()
|
|
{
|
|
return $this->contratto->righe();
|
|
}
|
|
|
|
public function sconti()
|
|
{
|
|
return $this->contratto->sconti();
|
|
}
|
|
|
|
public function descrizioni()
|
|
{
|
|
return $this->contratto->descrizioni();
|
|
}
|
|
|
|
public function getReferenceName()
|
|
{
|
|
// TODO: Implement getReferenceName() method.
|
|
}
|
|
|
|
public function getReferenceNumber()
|
|
{
|
|
// TODO: Implement getReferenceNumber() method.
|
|
}
|
|
|
|
public function getReferenceDate()
|
|
{
|
|
// TODO: Implement getReferenceDate() method.
|
|
}
|
|
|
|
public function getReferenceRagioneSociale()
|
|
{
|
|
return $this->anagrafica->ragione_sociale;
|
|
}
|
|
|
|
public function getReference()
|
|
{
|
|
// TODO: Implement getReference() method.
|
|
}
|
|
}
|