62 lines
1.7 KiB
PHP
Executable File
62 lines
1.7 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Update\v2_4_10\Components;
|
|
|
|
use Modules\Articoli\Articolo as Original;
|
|
use Update\v2_4_10\Article;
|
|
use Update\v2_4_10\Fattura;
|
|
|
|
class Articolo extends Article
|
|
{
|
|
use RelationTrait;
|
|
|
|
protected $table = 'co_righe_documenti';
|
|
protected $serialRowID = 'documento';
|
|
|
|
/**
|
|
* Crea un nuovo articolo collegato ad una fattura.
|
|
*
|
|
* @return self
|
|
*/
|
|
public static function build(Fattura $fattura, Original $articolo)
|
|
{
|
|
$model = parent::build($fattura, $articolo);
|
|
|
|
return $model;
|
|
}
|
|
|
|
public function movimenta($qta)
|
|
{
|
|
// Se il documento è generato da un ddt o intervento allora **non** movimento il magazzino
|
|
if (!empty($this->idddt) || !empty($this->idintervento)) {
|
|
return;
|
|
}
|
|
|
|
$fattura = $this->fattura;
|
|
$tipo = $fattura->tipo;
|
|
|
|
$numero = $fattura->numero_esterno ?: $fattura->numero;
|
|
$data = $fattura->data;
|
|
|
|
$carico = ($tipo->dir == 'entrata') ? tr('Ripristino articolo da _TYPE_ _NUM_') : tr('Carico magazzino da _TYPE_ numero _NUM_');
|
|
$scarico = ($tipo->dir == 'entrata') ? tr('Scarico magazzino per _TYPE_ numero _NUM_') : tr('Rimozione articolo da _TYPE_ _NUM_');
|
|
|
|
$qta = ($tipo->dir == 'uscita') ? -$qta : $qta;
|
|
$movimento = ($qta < 0) ? $carico : $scarico;
|
|
|
|
$movimento = replace($movimento, [
|
|
'_TYPE_' => $tipo->descrizione,
|
|
'_NUM_' => $numero,
|
|
]);
|
|
|
|
$this->articolo->movimenta(-$qta, $movimento, $data, false, [
|
|
'iddocumento' => $fattura->id,
|
|
]);
|
|
}
|
|
|
|
public function getDirection()
|
|
{
|
|
return $this->fattura->tipo->dir;
|
|
}
|
|
}
|