2018-12-29 14:41:32 +01:00
|
|
|
<?php
|
2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
|
|
* Copyright (C) DevCode s.n.c.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2018-12-29 14:41:32 +01:00
|
|
|
|
|
|
|
namespace Modules\Ordini;
|
|
|
|
|
2019-07-22 18:35:13 +02:00
|
|
|
use Common\Components\Description;
|
2018-12-29 14:41:32 +01:00
|
|
|
use Common\Document;
|
|
|
|
use Modules\Anagrafiche\Anagrafica;
|
2019-07-22 18:35:13 +02:00
|
|
|
use Modules\DDT\DDT;
|
2018-12-29 14:41:32 +01:00
|
|
|
use Traits\RecordTrait;
|
2020-03-03 10:33:32 +01:00
|
|
|
use Traits\ReferenceTrait;
|
2018-12-29 14:41:32 +01:00
|
|
|
use Util\Generator;
|
|
|
|
|
|
|
|
class Ordine extends Document
|
|
|
|
{
|
2020-03-03 10:33:32 +01:00
|
|
|
use ReferenceTrait;
|
2018-12-29 14:41:32 +01:00
|
|
|
use RecordTrait;
|
|
|
|
|
|
|
|
protected $table = 'or_ordini';
|
|
|
|
|
2020-03-09 13:57:13 +01:00
|
|
|
protected $with = [
|
|
|
|
'tipo',
|
|
|
|
];
|
|
|
|
|
2018-12-29 14:41:32 +01:00
|
|
|
/**
|
|
|
|
* Crea un nuovo ordine.
|
|
|
|
*
|
2020-02-11 11:43:59 +01:00
|
|
|
* @param string $data
|
2018-12-29 14:41:32 +01:00
|
|
|
*
|
|
|
|
* @return self
|
|
|
|
*/
|
2019-01-02 14:15:16 +01:00
|
|
|
public static function build(Anagrafica $anagrafica, Tipo $tipo_documento, $data)
|
2018-12-29 14:41:32 +01:00
|
|
|
{
|
2019-01-02 14:15:16 +01:00
|
|
|
$model = parent::build();
|
2018-12-29 14:41:32 +01:00
|
|
|
|
|
|
|
$stato_documento = Stato::where('descrizione', 'Bozza')->first();
|
|
|
|
|
|
|
|
$id_anagrafica = $anagrafica->id;
|
|
|
|
$direzione = $tipo_documento->dir;
|
|
|
|
|
|
|
|
$database = database();
|
|
|
|
|
|
|
|
if ($direzione == 'entrata') {
|
|
|
|
$conto = 'vendite';
|
|
|
|
} else {
|
|
|
|
$conto = 'acquisti';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tipo di pagamento e banca predefinite dall'anagrafica
|
|
|
|
$id_pagamento = $database->fetchOne('SELECT id FROM co_pagamenti WHERE id = :id_pagamento', [
|
2019-01-01 11:39:20 +01:00
|
|
|
':id_pagamento' => $anagrafica['idpagamento_'.$conto],
|
2018-12-29 14:41:32 +01:00
|
|
|
])['id'];
|
|
|
|
|
|
|
|
// Se il ordine è un ordine cliente e non è stato associato un pagamento predefinito al cliente leggo il pagamento dalle impostazioni
|
|
|
|
if ($direzione == 'entrata' && empty($id_pagamento)) {
|
|
|
|
$id_pagamento = setting('Tipo di pagamento predefinito');
|
|
|
|
}
|
|
|
|
|
|
|
|
$model->anagrafica()->associate($anagrafica);
|
|
|
|
$model->tipo()->associate($tipo_documento);
|
|
|
|
$model->stato()->associate($stato_documento);
|
|
|
|
|
|
|
|
$model->save();
|
|
|
|
|
|
|
|
// Salvataggio delle informazioni
|
|
|
|
$model->data = $data;
|
|
|
|
|
|
|
|
if (!empty($id_pagamento)) {
|
|
|
|
$model->idpagamento = $id_pagamento;
|
|
|
|
}
|
|
|
|
|
|
|
|
$model->numero = static::getNextNumero($data, $direzione);
|
|
|
|
$model->numero_esterno = static::getNextNumeroSecondario($data, $direzione);
|
|
|
|
|
|
|
|
$model->save();
|
|
|
|
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restituisce il nome del modulo a cui l'oggetto è collegato.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getModuleAttribute()
|
|
|
|
{
|
2019-03-29 12:46:17 +01:00
|
|
|
return $this->direzione == 'entrata' ? 'Ordini cliente' : 'Ordini fornitore';
|
2018-12-29 14:41:32 +01:00
|
|
|
}
|
|
|
|
|
2019-03-29 12:46:17 +01:00
|
|
|
public function getDirezioneAttribute()
|
2018-12-29 14:41:32 +01:00
|
|
|
{
|
2019-03-29 12:46:17 +01:00
|
|
|
return $this->tipo->dir;
|
2018-12-29 14:41:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function anagrafica()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Anagrafica::class, 'idanagrafica');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tipo()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Tipo::class, 'idtipoordine');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function stato()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Stato::class, 'idstatoordine');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function articoli()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Components\Articolo::class, 'idordine');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function righe()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Components\Riga::class, 'idordine');
|
|
|
|
}
|
|
|
|
|
2019-04-04 17:12:32 +02:00
|
|
|
public function sconti()
|
2019-04-04 17:30:58 +02:00
|
|
|
{
|
|
|
|
return $this->hasMany(Components\Sconto::class, 'idordine');
|
|
|
|
}
|
2019-04-04 17:12:32 +02:00
|
|
|
|
2018-12-29 14:41:32 +01:00
|
|
|
public function descrizioni()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Components\Descrizione::class, 'idordine');
|
|
|
|
}
|
|
|
|
|
2019-07-22 18:35:13 +02:00
|
|
|
/**
|
|
|
|
* Effettua un controllo sui campi del documento.
|
2020-07-14 13:30:25 +02:00
|
|
|
* Viene richiamato dalle modifiche alle righe del documento.
|
2019-07-22 18:35:13 +02:00
|
|
|
*/
|
2019-09-13 10:07:54 +02:00
|
|
|
public function triggerEvasione(Description $trigger)
|
2019-07-22 18:35:13 +02:00
|
|
|
{
|
2019-09-13 10:07:54 +02:00
|
|
|
parent::triggerEvasione($trigger);
|
2019-07-22 18:35:13 +02:00
|
|
|
|
|
|
|
if (setting('Cambia automaticamente stato ordini fatturati')) {
|
|
|
|
$righe = $this->getRighe();
|
|
|
|
|
|
|
|
$qta_evasa = $righe->sum('qta_evasa');
|
|
|
|
$qta = $righe->sum('qta');
|
|
|
|
$parziale = $qta != $qta_evasa;
|
|
|
|
|
2019-07-23 15:39:00 +02:00
|
|
|
$stato_attuale = $this->stato;
|
|
|
|
|
2019-07-22 18:35:13 +02:00
|
|
|
// Impostazione del nuovo stato
|
|
|
|
if ($qta_evasa == 0) {
|
|
|
|
$descrizione = 'Bozza';
|
2019-07-23 15:39:00 +02:00
|
|
|
} elseif (!in_array($stato_attuale->descrizione, ['Parzialmente fatturato', 'Fatturato']) && $trigger->parent instanceof DDT) {
|
2019-07-22 18:35:13 +02:00
|
|
|
$descrizione = $parziale ? 'Parzialmente evaso' : 'Evaso';
|
|
|
|
} else {
|
|
|
|
$descrizione = $parziale ? 'Parzialmente fatturato' : 'Fatturato';
|
|
|
|
}
|
|
|
|
|
|
|
|
$stato = Stato::where('descrizione', $descrizione)->first();
|
|
|
|
$this->stato()->associate($stato);
|
|
|
|
$this->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-29 14:41:32 +01:00
|
|
|
// Metodi statici
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calcola il nuovo numero di ordine.
|
|
|
|
*
|
|
|
|
* @param string $data
|
|
|
|
* @param string $direzione
|
|
|
|
* @param int $id_segment
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function getNextNumero($data, $direzione)
|
|
|
|
{
|
2019-01-10 20:10:47 +01:00
|
|
|
$maschera = '#';
|
2018-12-29 14:41:32 +01:00
|
|
|
|
2019-01-10 20:10:47 +01:00
|
|
|
$ultimo = Generator::getPreviousFrom($maschera, 'or_ordini', 'numero', [
|
|
|
|
'YEAR(data) = '.prepare(date('Y', strtotime($data))),
|
|
|
|
'idtipoordine IN (SELECT id FROM or_tipiordine WHERE dir = '.prepare($direzione).')',
|
2018-12-29 14:41:32 +01:00
|
|
|
]);
|
2019-01-10 20:10:47 +01:00
|
|
|
$numero = Generator::generate($maschera, $ultimo);
|
2018-12-29 14:41:32 +01:00
|
|
|
|
2019-01-10 20:10:47 +01:00
|
|
|
return $numero;
|
2018-12-29 14:41:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calcola il nuovo numero secondario di ordine.
|
|
|
|
*
|
|
|
|
* @param string $data
|
|
|
|
* @param string $direzione
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function getNextNumeroSecondario($data, $direzione)
|
|
|
|
{
|
|
|
|
if ($direzione == 'uscita') {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$maschera = setting('Formato numero secondario ordine');
|
|
|
|
|
2019-01-10 20:10:47 +01:00
|
|
|
$ultimo = Generator::getPreviousFrom($maschera, 'or_ordini', 'numero_esterno', [
|
|
|
|
'YEAR(data) = '.prepare(date('Y', strtotime($data))),
|
|
|
|
'idtipoordine IN (SELECT id FROM or_tipiordine WHERE dir = '.prepare($direzione).')',
|
2018-12-29 14:41:32 +01:00
|
|
|
]);
|
2019-01-10 20:10:47 +01:00
|
|
|
$numero = Generator::generate($maschera, $ultimo, 1, Generator::dateToPattern($data));
|
2018-12-29 14:41:32 +01:00
|
|
|
|
2019-01-10 20:10:47 +01:00
|
|
|
return $numero;
|
2018-12-29 14:41:32 +01:00
|
|
|
}
|
2020-03-03 10:33:32 +01:00
|
|
|
|
|
|
|
// Opzioni di riferimento
|
|
|
|
|
|
|
|
public function getReferenceName()
|
|
|
|
{
|
|
|
|
return $this->tipo->descrizione;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getReferenceNumber()
|
|
|
|
{
|
|
|
|
return $this->numero_esterno ?: $this->numero;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getReferenceDate()
|
|
|
|
{
|
|
|
|
return $this->data;
|
|
|
|
}
|
2018-12-29 14:41:32 +01:00
|
|
|
}
|