27 lines
422 B
PHP
27 lines
422 B
PHP
|
<?php
|
||
|
|
||
|
namespace Update\v2_4_10;
|
||
|
|
||
|
use Common\Components\Row;
|
||
|
|
||
|
class Riga extends Row
|
||
|
{
|
||
|
use RelationTrait;
|
||
|
|
||
|
protected $table = 'co_righe_documenti';
|
||
|
|
||
|
/**
|
||
|
* Crea una nuova riga collegata ad una fattura.
|
||
|
*
|
||
|
* @param Fattura $fattura
|
||
|
*
|
||
|
* @return self
|
||
|
*/
|
||
|
public static function build(Fattura $fattura)
|
||
|
{
|
||
|
$model = parent::build($fattura);
|
||
|
|
||
|
return $model;
|
||
|
}
|
||
|
}
|