<?php
namespace App\Entity;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* Articulos
*
* @ORM\Table(name="articulos", options={"readOnly": true})
* @ORM\Entity
*/
class Articulos
{
/**
* @var int
*
* @ORM\Id
* @ORM\Column(name="CODARTICULO", type="integer", nullable=false)
*/
private $codarticulo;
/**
* @var string|null
*
* @ORM\Column(name="DESCRIPCION", type="string", length=45, nullable=true, options={"default"="NULL"})
*/
private $descripcion = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="DESCRIPADIC", type="string", length=25, nullable=true, options={"default"="NULL"})
*/
private $descripadic = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="TIPOIMPUESTO", type="integer", nullable=true, options={"default"="NULL"})
*/
private $tipoimpuesto = NULL;
/**
* @var int|null
*
* @ORM\Column(name="DPTO", type="integer", nullable=true, options={"default"="NULL"})
*/
private $dpto = NULL;
/**
* @var int|null
*
* @ORM\Column(name="SECCION", type="integer", nullable=true, options={"default"="NULL"})
*/
private $seccion = NULL;
/**
* @var int|null
*
* @ORM\Column(name="FAMILIA", type="smallint", nullable=true, options={"default"="NULL"})
*/
private $familia = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="SUBFAMILIA", type="smallint", nullable=true, options={"default"="NULL"})
*/
private $subfamilia = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="LINEA", type="smallint", nullable=true, options={"default"="NULL"})
*/
private $linea = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="TEMPORADA", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $temporada = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="GENERARETIQ", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
*/
private $generaretiq = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FOTO", type="blob", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $foto = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="MARCA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $marca = NULL;
/**
* @var string|null
*
* @ORM\Column(name="CODTALLA", type="string", length=10, nullable=true, options={"default"="NULL"})
*/
private $codtalla = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="NORMA", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $norma = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="TACON", type="string", length=10, nullable=true, options={"default"="NULL"})
*/
private $tacon = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="COMPOSICION", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $composicion = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ARTICULOVIRTUAL", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
*/
private $articulovirtual = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="TIENETC", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
*/
private $tienetc = 'NULL';
/**
* @var float|null
*
* @ORM\Column(name="UNID1C", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $unid1c = NULL;
/**
* @var float|null
*
* @ORM\Column(name="UNID2C", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $unid2c = NULL;
/**
* @var float|null
*
* @ORM\Column(name="UNID3C", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $unid3c = NULL;
/**
* @var float|null
*
* @ORM\Column(name="UNID4C", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $unid4c = NULL;
/**
* @var float|null
*
* @ORM\Column(name="UNID1V", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $unid1v = NULL;
/**
* @var float|null
*
* @ORM\Column(name="UNID2V", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $unid2v = NULL;
/**
* @var float|null
*
* @ORM\Column(name="UNID3V", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $unid3v = NULL;
/**
* @var float|null
*
* @ORM\Column(name="UNID4V", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $unid4v = NULL;
/**
* @var string|null
*
* @ORM\Column(name="ESKIT", type="string", length=2, nullable=true, options={"default"="NULL"})
*/
private $eskit = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="USARNUMSERIE", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
*/
private $usarnumserie = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="GENNUMSERIE", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
*/
private $gennumserie = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="TIPO", type="integer", nullable=true, options={"default"="NULL"})
*/
private $tipo = NULL;
/**
* @var \DateTime|null
*
* @ORM\Column(name="FECHAMODIFICADO", type="date", nullable=true, options={"default"="NULL"})
*/
private $fechamodificado = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="REFPROVEEDOR", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $refproveedor = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDAVENTA", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidaventa = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDACOMPRA", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidacompra = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="UNIDADMEDIDA", type="string", length=10, nullable=true, options={"default"="NULL"})
*/
private $unidadmedida = 'NULL';
/**
* @var float|null
*
* @ORM\Column(name="UDSELABORACION", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $udselaboracion = NULL;
/**
* @var float|null
*
* @ORM\Column(name="MEDIDAREFERENCIA", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $medidareferencia = NULL;
/**
* @var string|null
*
* @ORM\Column(name="PORPESO", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $porpeso = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="USASTOCKS", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $usastocks = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="IMPUESTOCOMPRA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $impuestocompra = NULL;
/**
* @var string|null
*
* @ORM\Column(name="DESCATALOGADO", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $descatalogado = 'NULL';
/**
* @var float|null
*
* @ORM\Column(name="UDSTRASPASO", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $udstraspaso = NULL;
/**
* @var string|null
*
* @ORM\Column(name="TIPOARTICULO", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $tipoarticulo = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="GARANTIACOMPRA", type="string", length=20, nullable=true, options={"default"="NULL"})
*/
private $garantiacompra = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="GARANTIAVENTA", type="string", length=20, nullable=true, options={"default"="NULL"})
*/
private $garantiaventa = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="COLORFONDO", type="integer", nullable=true, options={"default"="NULL"})
*/
private $colorfondo = NULL;
/**
* @var int|null
*
* @ORM\Column(name="COLORTEXTO", type="integer", nullable=true, options={"default"="NULL"})
*/
private $colortexto = NULL;
/**
* @var string|null
*
* @ORM\Column(name="TIPOSAT", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
*/
private $tiposat = 'NULL';
/**
* @var \DateTime|null
*
* @ORM\Column(name="FACTPORHORA", type="date", nullable=true, options={"default"="NULL"})
*/
private $factporhora = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="CONSUMADIC", type="integer", nullable=true, options={"default"="NULL"})
*/
private $consumadic = NULL;
/**
* @var float|null
*
* @ORM\Column(name="MARGEN", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $margen = NULL;
/**
* @var float|null
*
* @ORM\Column(name="CARGO1", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $cargo1 = NULL;
/**
* @var float|null
*
* @ORM\Column(name="CARGO2", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $cargo2 = NULL;
/**
* @var int|null
*
* @ORM\Column(name="NUMCONSUMICIONES", type="integer", nullable=true, options={"default"="NULL"})
*/
private $numconsumiciones = NULL;
/**
* @var int|null
*
* @ORM\Column(name="CODCENTRAL", type="integer", nullable=true, options={"default"="NULL"})
*/
private $codcentral = NULL;
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDACOSTEVENTAS", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidacosteventas = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="CODDISENY", type="integer", nullable=true, options={"default"="NULL"})
*/
private $coddiseny = NULL;
/**
* @var int|null
*
* @ORM\Column(name="CODIGOADUANA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $codigoaduana = NULL;
/**
* @var string|null
*
* @ORM\Column(name="MEDIDA2", type="string", length=10, nullable=true, options={"default"="NULL"})
*/
private $medida2 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="VISIBLEWEB", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
*/
private $visibleweb = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="DIASCADUCIDAD", type="integer", nullable=true, options={"default"="NULL"})
*/
private $diascaducidad = NULL;
/**
* @var float|null
*
* @ORM\Column(name="PORCRETENCION", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $porcretencion = NULL;
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDACONSUMO", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidaconsumo = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDAVENTADMN", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidaventadmn = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDACOMPRADMN", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidacompradmn = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDACOSTEVENTASDMN", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidacosteventasdmn = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="DESCARGADO", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $descargado = 'NULL';
/**
* @var float|null
*
* @ORM\Column(name="PRECIOMINIMO", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $preciominimo = NULL;
/**
* @var float|null
*
* @ORM\Column(name="PRECIOMAXIMO", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $preciomaximo = NULL;
/**
* @var string|null
*
* @ORM\Column(name="PRECIOLIBRE", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $preciolibre = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="HIOPOS_IMPRIMIRCOCINA", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $hioposImprimircocina = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="HIOPOS_EBT", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $hioposEbt = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="HIOPOS_TAKEAWAY", type="integer", nullable=true, options={"default"="NULL"})
*/
private $hioposTakeaway = NULL;
/**
* @var string|null
*
* @ORM\Column(name="AVISOVENTA", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $avisoventa = 'NULL';
/**
* @var binary|null
*
* @ORM\Column(name="FOTOSHA", type="binary", nullable=true, options={"default"="NULL"})
*/
private $fotosha = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FORZARUDSENTERASVENTA", type="string", length=4, nullable=true, options={"default"="NULL"})
*/
private $forzarudsenterasventa = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="DURACION", type="integer", nullable=true, options={"default"="NULL"})
*/
private $duracion = NULL;
/**
* @var int|null
*
* @ORM\Column(name="IDTALONARIO", type="integer", nullable=true, options={"default"="NULL"})
*/
private $idtalonario = NULL;
/**
* @var bool|null
*
* @ORM\Column(name="HIOPOS_IMPRIMIRCOCINA2", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $hioposImprimircocina2 = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="HIOPOS_IMPRIMIRCOCINA3", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $hioposImprimircocina3 = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="HIOPOS_ISMODIFICADOR", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $hioposIsmodificador = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="NODTOAPLICABLE", type="string", length=4, nullable=true, options={"default"="NULL"})
*/
private $nodtoaplicable = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDADEVOLCOMPRA", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidadevolcompra = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDADEVOLVENTA", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidadevolventa = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDADEVOLCOSTEVENTA", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidadevolcosteventa = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDADEVOLCOMPRADMN", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidadevolcompradmn = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDADEVOLVENTADMN", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidadevolventadmn = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDADEVOLCOSTEVENTASDM", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidadevolcosteventasdm = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="REGIMRET_IVA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $regimretIva = NULL;
/**
* @var int|null
*
* @ORM\Column(name="REGIMRET_BASEIMPONIBLE", type="integer", nullable=true, options={"default"="NULL"})
*/
private $regimretBaseimponible = NULL;
/**
* @var string|null
*
* @ORM\Column(name="SOLICITARCOMENTARIO", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $solicitarcomentario = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="DIRCONTAB", type="string", length=8, nullable=true, options={"default"="NULL"})
*/
private $dircontab = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="SUBEMPRESA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $subempresa = NULL;
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDAVENTAEXONERADA", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidaventaexonerada = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDADEVOLVENTAEXONERADA", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidadevolventaexonerada = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDAFALTANTESINVENTARIO", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidafaltantesinventario = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDASOBRANTESINVENTARIO", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidasobrantesinventario = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDAORDENESFAB", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidaordenesfab = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FIJARPV_CADADIA", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $fijarpvCadadia = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FIJARPV_ALCAMBIARPRECIO", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $fijarpvAlcambiarprecio = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="FORMADEPESO", type="integer", nullable=true, options={"default"="NULL"})
*/
private $formadepeso = NULL;
/**
* @var string|null
*
* @ORM\Column(name="CONTRAPARTIDACONSUMOS", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $contrapartidaconsumos = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="USARFID", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $usarfid = 'NULL';
/**
* @var binary|null
*
* @ORM\Column(name="VERSION", type="binary", nullable=true, options={"default"="NULL"})
*/
private $version = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="TIPOPRODSAFT", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $tipoprodsaft = 'NULL';
public function getCodarticulo(): ?int
{
return $this->codarticulo;
}
public function setCodarticulo(int $codarticulo): self
{
$this->codarticulo = $codarticulo;
return $this;
}
public function getDescripcion(): ?string
{
return $this->descripcion;
}
public function setDescripcion(?string $descripcion): self
{
$this->descripcion = $descripcion;
return $this;
}
public function getDescripadic(): ?string
{
return $this->descripadic;
}
public function setDescripadic(?string $descripadic): self
{
$this->descripadic = $descripadic;
return $this;
}
public function getTipoimpuesto(): ?int
{
return $this->tipoimpuesto;
}
public function setTipoimpuesto(?int $tipoimpuesto): self
{
$this->tipoimpuesto = $tipoimpuesto;
return $this;
}
public function getDpto(): ?int
{
return $this->dpto;
}
public function setDpto(?int $dpto): self
{
$this->dpto = $dpto;
return $this;
}
public function getSeccion(): ?int
{
return $this->seccion;
}
public function setSeccion(?int $seccion): self
{
$this->seccion = $seccion;
return $this;
}
public function getFamilia(): ?int
{
return $this->familia;
}
public function setFamilia(?int $familia): self
{
$this->familia = $familia;
return $this;
}
public function getSubfamilia(): ?int
{
return $this->subfamilia;
}
public function setSubfamilia(?int $subfamilia): self
{
$this->subfamilia = $subfamilia;
return $this;
}
public function getLinea(): ?int
{
return $this->linea;
}
public function setLinea(?int $linea): self
{
$this->linea = $linea;
return $this;
}
public function getTemporada(): ?string
{
return $this->temporada;
}
public function setTemporada(?string $temporada): self
{
$this->temporada = $temporada;
return $this;
}
public function getGeneraretiq(): ?string
{
return $this->generaretiq;
}
public function setGeneraretiq(?string $generaretiq): self
{
$this->generaretiq = $generaretiq;
return $this;
}
public function getFoto()
{
return $this->foto;
}
public function setFoto($foto): self
{
$this->foto = $foto;
return $this;
}
public function getMarca(): ?int
{
return $this->marca;
}
public function setMarca(?int $marca): self
{
$this->marca = $marca;
return $this;
}
public function getCodtalla(): ?string
{
return $this->codtalla;
}
public function setCodtalla(?string $codtalla): self
{
$this->codtalla = $codtalla;
return $this;
}
public function getNorma(): ?string
{
return $this->norma;
}
public function setNorma(?string $norma): self
{
$this->norma = $norma;
return $this;
}
public function getTacon(): ?string
{
return $this->tacon;
}
public function setTacon(?string $tacon): self
{
$this->tacon = $tacon;
return $this;
}
public function getComposicion(): ?string
{
return $this->composicion;
}
public function setComposicion(?string $composicion): self
{
$this->composicion = $composicion;
return $this;
}
public function getArticulovirtual(): ?string
{
return $this->articulovirtual;
}
public function setArticulovirtual(?string $articulovirtual): self
{
$this->articulovirtual = $articulovirtual;
return $this;
}
public function getTienetc(): ?string
{
return $this->tienetc;
}
public function setTienetc(?string $tienetc): self
{
$this->tienetc = $tienetc;
return $this;
}
public function getUnid1c(): ?float
{
return $this->unid1c;
}
public function setUnid1c(?float $unid1c): self
{
$this->unid1c = $unid1c;
return $this;
}
public function getUnid2c(): ?float
{
return $this->unid2c;
}
public function setUnid2c(?float $unid2c): self
{
$this->unid2c = $unid2c;
return $this;
}
public function getUnid3c(): ?float
{
return $this->unid3c;
}
public function setUnid3c(?float $unid3c): self
{
$this->unid3c = $unid3c;
return $this;
}
public function getUnid4c(): ?float
{
return $this->unid4c;
}
public function setUnid4c(?float $unid4c): self
{
$this->unid4c = $unid4c;
return $this;
}
public function getUnid1v(): ?float
{
return $this->unid1v;
}
public function setUnid1v(?float $unid1v): self
{
$this->unid1v = $unid1v;
return $this;
}
public function getUnid2v(): ?float
{
return $this->unid2v;
}
public function setUnid2v(?float $unid2v): self
{
$this->unid2v = $unid2v;
return $this;
}
public function getUnid3v(): ?float
{
return $this->unid3v;
}
public function setUnid3v(?float $unid3v): self
{
$this->unid3v = $unid3v;
return $this;
}
public function getUnid4v(): ?float
{
return $this->unid4v;
}
public function setUnid4v(?float $unid4v): self
{
$this->unid4v = $unid4v;
return $this;
}
public function getEskit(): ?string
{
return $this->eskit;
}
public function setEskit(?string $eskit): self
{
$this->eskit = $eskit;
return $this;
}
public function getUsarnumserie(): ?string
{
return $this->usarnumserie;
}
public function setUsarnumserie(?string $usarnumserie): self
{
$this->usarnumserie = $usarnumserie;
return $this;
}
public function getGennumserie(): ?string
{
return $this->gennumserie;
}
public function setGennumserie(?string $gennumserie): self
{
$this->gennumserie = $gennumserie;
return $this;
}
public function getTipo(): ?int
{
return $this->tipo;
}
public function setTipo(?int $tipo): self
{
$this->tipo = $tipo;
return $this;
}
public function getFechamodificado(): ?\DateTimeInterface
{
return $this->fechamodificado;
}
public function setFechamodificado(?\DateTimeInterface $fechamodificado): self
{
$this->fechamodificado = $fechamodificado;
return $this;
}
public function getRefproveedor(): ?string
{
return $this->refproveedor;
}
public function setRefproveedor(?string $refproveedor): self
{
$this->refproveedor = $refproveedor;
return $this;
}
public function getContrapartidaventa(): ?string
{
return $this->contrapartidaventa;
}
public function setContrapartidaventa(?string $contrapartidaventa): self
{
$this->contrapartidaventa = $contrapartidaventa;
return $this;
}
public function getContrapartidacompra(): ?string
{
return $this->contrapartidacompra;
}
public function setContrapartidacompra(?string $contrapartidacompra): self
{
$this->contrapartidacompra = $contrapartidacompra;
return $this;
}
public function getUnidadmedida(): ?string
{
return $this->unidadmedida;
}
public function setUnidadmedida(?string $unidadmedida): self
{
$this->unidadmedida = $unidadmedida;
return $this;
}
public function getUdselaboracion(): ?float
{
return $this->udselaboracion;
}
public function setUdselaboracion(?float $udselaboracion): self
{
$this->udselaboracion = $udselaboracion;
return $this;
}
public function getMedidareferencia(): ?float
{
return $this->medidareferencia;
}
public function setMedidareferencia(?float $medidareferencia): self
{
$this->medidareferencia = $medidareferencia;
return $this;
}
public function getPorpeso(): ?string
{
return $this->porpeso;
}
public function setPorpeso(?string $porpeso): self
{
$this->porpeso = $porpeso;
return $this;
}
public function getUsastocks(): ?string
{
return $this->usastocks;
}
public function setUsastocks(?string $usastocks): self
{
$this->usastocks = $usastocks;
return $this;
}
public function getImpuestocompra(): ?int
{
return $this->impuestocompra;
}
public function setImpuestocompra(?int $impuestocompra): self
{
$this->impuestocompra = $impuestocompra;
return $this;
}
public function getDescatalogado(): ?string
{
return $this->descatalogado;
}
public function setDescatalogado(?string $descatalogado): self
{
$this->descatalogado = $descatalogado;
return $this;
}
public function getUdstraspaso(): ?float
{
return $this->udstraspaso;
}
public function setUdstraspaso(?float $udstraspaso): self
{
$this->udstraspaso = $udstraspaso;
return $this;
}
public function getTipoarticulo(): ?string
{
return $this->tipoarticulo;
}
public function setTipoarticulo(?string $tipoarticulo): self
{
$this->tipoarticulo = $tipoarticulo;
return $this;
}
public function getGarantiacompra(): ?string
{
return $this->garantiacompra;
}
public function setGarantiacompra(?string $garantiacompra): self
{
$this->garantiacompra = $garantiacompra;
return $this;
}
public function getGarantiaventa(): ?string
{
return $this->garantiaventa;
}
public function setGarantiaventa(?string $garantiaventa): self
{
$this->garantiaventa = $garantiaventa;
return $this;
}
public function getColorfondo(): ?int
{
return $this->colorfondo;
}
public function setColorfondo(?int $colorfondo): self
{
$this->colorfondo = $colorfondo;
return $this;
}
public function getColortexto(): ?int
{
return $this->colortexto;
}
public function setColortexto(?int $colortexto): self
{
$this->colortexto = $colortexto;
return $this;
}
public function getTiposat(): ?string
{
return $this->tiposat;
}
public function setTiposat(?string $tiposat): self
{
$this->tiposat = $tiposat;
return $this;
}
public function getFactporhora(): ?\DateTimeInterface
{
return $this->factporhora;
}
public function setFactporhora(?\DateTimeInterface $factporhora): self
{
$this->factporhora = $factporhora;
return $this;
}
public function getConsumadic(): ?int
{
return $this->consumadic;
}
public function setConsumadic(?int $consumadic): self
{
$this->consumadic = $consumadic;
return $this;
}
public function getMargen(): ?float
{
return $this->margen;
}
public function setMargen(?float $margen): self
{
$this->margen = $margen;
return $this;
}
public function getCargo1(): ?float
{
return $this->cargo1;
}
public function setCargo1(?float $cargo1): self
{
$this->cargo1 = $cargo1;
return $this;
}
public function getCargo2(): ?float
{
return $this->cargo2;
}
public function setCargo2(?float $cargo2): self
{
$this->cargo2 = $cargo2;
return $this;
}
public function getNumconsumiciones(): ?int
{
return $this->numconsumiciones;
}
public function setNumconsumiciones(?int $numconsumiciones): self
{
$this->numconsumiciones = $numconsumiciones;
return $this;
}
public function getCodcentral(): ?int
{
return $this->codcentral;
}
public function setCodcentral(?int $codcentral): self
{
$this->codcentral = $codcentral;
return $this;
}
public function getContrapartidacosteventas(): ?string
{
return $this->contrapartidacosteventas;
}
public function setContrapartidacosteventas(?string $contrapartidacosteventas): self
{
$this->contrapartidacosteventas = $contrapartidacosteventas;
return $this;
}
public function getCoddiseny(): ?int
{
return $this->coddiseny;
}
public function setCoddiseny(?int $coddiseny): self
{
$this->coddiseny = $coddiseny;
return $this;
}
public function getCodigoaduana(): ?int
{
return $this->codigoaduana;
}
public function setCodigoaduana(?int $codigoaduana): self
{
$this->codigoaduana = $codigoaduana;
return $this;
}
public function getMedida2(): ?string
{
return $this->medida2;
}
public function setMedida2(?string $medida2): self
{
$this->medida2 = $medida2;
return $this;
}
public function getVisibleweb(): ?string
{
return $this->visibleweb;
}
public function setVisibleweb(?string $visibleweb): self
{
$this->visibleweb = $visibleweb;
return $this;
}
public function getDiascaducidad(): ?int
{
return $this->diascaducidad;
}
public function setDiascaducidad(?int $diascaducidad): self
{
$this->diascaducidad = $diascaducidad;
return $this;
}
public function getPorcretencion(): ?float
{
return $this->porcretencion;
}
public function setPorcretencion(?float $porcretencion): self
{
$this->porcretencion = $porcretencion;
return $this;
}
public function getContrapartidaconsumo(): ?string
{
return $this->contrapartidaconsumo;
}
public function setContrapartidaconsumo(?string $contrapartidaconsumo): self
{
$this->contrapartidaconsumo = $contrapartidaconsumo;
return $this;
}
public function getContrapartidaventadmn(): ?string
{
return $this->contrapartidaventadmn;
}
public function setContrapartidaventadmn(?string $contrapartidaventadmn): self
{
$this->contrapartidaventadmn = $contrapartidaventadmn;
return $this;
}
public function getContrapartidacompradmn(): ?string
{
return $this->contrapartidacompradmn;
}
public function setContrapartidacompradmn(?string $contrapartidacompradmn): self
{
$this->contrapartidacompradmn = $contrapartidacompradmn;
return $this;
}
public function getContrapartidacosteventasdmn(): ?string
{
return $this->contrapartidacosteventasdmn;
}
public function setContrapartidacosteventasdmn(?string $contrapartidacosteventasdmn): self
{
$this->contrapartidacosteventasdmn = $contrapartidacosteventasdmn;
return $this;
}
public function getDescargado(): ?bool
{
return $this->descargado;
}
public function setDescargado(?bool $descargado): self
{
$this->descargado = $descargado;
return $this;
}
public function getPreciominimo(): ?float
{
return $this->preciominimo;
}
public function setPreciominimo(?float $preciominimo): self
{
$this->preciominimo = $preciominimo;
return $this;
}
public function getPreciomaximo(): ?float
{
return $this->preciomaximo;
}
public function setPreciomaximo(?float $preciomaximo): self
{
$this->preciomaximo = $preciomaximo;
return $this;
}
public function getPreciolibre(): ?string
{
return $this->preciolibre;
}
public function setPreciolibre(?string $preciolibre): self
{
$this->preciolibre = $preciolibre;
return $this;
}
public function getHioposImprimircocina(): ?bool
{
return $this->hioposImprimircocina;
}
public function setHioposImprimircocina(?bool $hioposImprimircocina): self
{
$this->hioposImprimircocina = $hioposImprimircocina;
return $this;
}
public function getHioposEbt(): ?bool
{
return $this->hioposEbt;
}
public function setHioposEbt(?bool $hioposEbt): self
{
$this->hioposEbt = $hioposEbt;
return $this;
}
public function getHioposTakeaway(): ?int
{
return $this->hioposTakeaway;
}
public function setHioposTakeaway(?int $hioposTakeaway): self
{
$this->hioposTakeaway = $hioposTakeaway;
return $this;
}
public function getAvisoventa(): ?string
{
return $this->avisoventa;
}
public function setAvisoventa(?string $avisoventa): self
{
$this->avisoventa = $avisoventa;
return $this;
}
public function getFotosha()
{
return $this->fotosha;
}
public function setFotosha($fotosha): self
{
$this->fotosha = $fotosha;
return $this;
}
public function getForzarudsenterasventa(): ?string
{
return $this->forzarudsenterasventa;
}
public function setForzarudsenterasventa(?string $forzarudsenterasventa): self
{
$this->forzarudsenterasventa = $forzarudsenterasventa;
return $this;
}
public function getDuracion(): ?int
{
return $this->duracion;
}
public function setDuracion(?int $duracion): self
{
$this->duracion = $duracion;
return $this;
}
public function getIdtalonario(): ?int
{
return $this->idtalonario;
}
public function setIdtalonario(?int $idtalonario): self
{
$this->idtalonario = $idtalonario;
return $this;
}
public function getHioposImprimircocina2(): ?bool
{
return $this->hioposImprimircocina2;
}
public function setHioposImprimircocina2(?bool $hioposImprimircocina2): self
{
$this->hioposImprimircocina2 = $hioposImprimircocina2;
return $this;
}
public function getHioposImprimircocina3(): ?bool
{
return $this->hioposImprimircocina3;
}
public function setHioposImprimircocina3(?bool $hioposImprimircocina3): self
{
$this->hioposImprimircocina3 = $hioposImprimircocina3;
return $this;
}
public function getHioposIsmodificador(): ?bool
{
return $this->hioposIsmodificador;
}
public function setHioposIsmodificador(?bool $hioposIsmodificador): self
{
$this->hioposIsmodificador = $hioposIsmodificador;
return $this;
}
public function getNodtoaplicable(): ?string
{
return $this->nodtoaplicable;
}
public function setNodtoaplicable(?string $nodtoaplicable): self
{
$this->nodtoaplicable = $nodtoaplicable;
return $this;
}
public function getContrapartidadevolcompra(): ?string
{
return $this->contrapartidadevolcompra;
}
public function setContrapartidadevolcompra(?string $contrapartidadevolcompra): self
{
$this->contrapartidadevolcompra = $contrapartidadevolcompra;
return $this;
}
public function getContrapartidadevolventa(): ?string
{
return $this->contrapartidadevolventa;
}
public function setContrapartidadevolventa(?string $contrapartidadevolventa): self
{
$this->contrapartidadevolventa = $contrapartidadevolventa;
return $this;
}
public function getContrapartidadevolcosteventa(): ?string
{
return $this->contrapartidadevolcosteventa;
}
public function setContrapartidadevolcosteventa(?string $contrapartidadevolcosteventa): self
{
$this->contrapartidadevolcosteventa = $contrapartidadevolcosteventa;
return $this;
}
public function getContrapartidadevolcompradmn(): ?string
{
return $this->contrapartidadevolcompradmn;
}
public function setContrapartidadevolcompradmn(?string $contrapartidadevolcompradmn): self
{
$this->contrapartidadevolcompradmn = $contrapartidadevolcompradmn;
return $this;
}
public function getContrapartidadevolventadmn(): ?string
{
return $this->contrapartidadevolventadmn;
}
public function setContrapartidadevolventadmn(?string $contrapartidadevolventadmn): self
{
$this->contrapartidadevolventadmn = $contrapartidadevolventadmn;
return $this;
}
public function getContrapartidadevolcosteventasdm(): ?string
{
return $this->contrapartidadevolcosteventasdm;
}
public function setContrapartidadevolcosteventasdm(?string $contrapartidadevolcosteventasdm): self
{
$this->contrapartidadevolcosteventasdm = $contrapartidadevolcosteventasdm;
return $this;
}
public function getRegimretIva(): ?int
{
return $this->regimretIva;
}
public function setRegimretIva(?int $regimretIva): self
{
$this->regimretIva = $regimretIva;
return $this;
}
public function getRegimretBaseimponible(): ?int
{
return $this->regimretBaseimponible;
}
public function setRegimretBaseimponible(?int $regimretBaseimponible): self
{
$this->regimretBaseimponible = $regimretBaseimponible;
return $this;
}
public function getSolicitarcomentario(): ?string
{
return $this->solicitarcomentario;
}
public function setSolicitarcomentario(?string $solicitarcomentario): self
{
$this->solicitarcomentario = $solicitarcomentario;
return $this;
}
public function getDircontab(): ?string
{
return $this->dircontab;
}
public function setDircontab(?string $dircontab): self
{
$this->dircontab = $dircontab;
return $this;
}
public function getSubempresa(): ?int
{
return $this->subempresa;
}
public function setSubempresa(?int $subempresa): self
{
$this->subempresa = $subempresa;
return $this;
}
public function getContrapartidaventaexonerada(): ?string
{
return $this->contrapartidaventaexonerada;
}
public function setContrapartidaventaexonerada(?string $contrapartidaventaexonerada): self
{
$this->contrapartidaventaexonerada = $contrapartidaventaexonerada;
return $this;
}
public function getContrapartidadevolventaexonerada(): ?string
{
return $this->contrapartidadevolventaexonerada;
}
public function setContrapartidadevolventaexonerada(?string $contrapartidadevolventaexonerada): self
{
$this->contrapartidadevolventaexonerada = $contrapartidadevolventaexonerada;
return $this;
}
public function getContrapartidafaltantesinventario(): ?string
{
return $this->contrapartidafaltantesinventario;
}
public function setContrapartidafaltantesinventario(?string $contrapartidafaltantesinventario): self
{
$this->contrapartidafaltantesinventario = $contrapartidafaltantesinventario;
return $this;
}
public function getContrapartidasobrantesinventario(): ?string
{
return $this->contrapartidasobrantesinventario;
}
public function setContrapartidasobrantesinventario(?string $contrapartidasobrantesinventario): self
{
$this->contrapartidasobrantesinventario = $contrapartidasobrantesinventario;
return $this;
}
public function getContrapartidaordenesfab(): ?string
{
return $this->contrapartidaordenesfab;
}
public function setContrapartidaordenesfab(?string $contrapartidaordenesfab): self
{
$this->contrapartidaordenesfab = $contrapartidaordenesfab;
return $this;
}
public function getFijarpvCadadia(): ?string
{
return $this->fijarpvCadadia;
}
public function setFijarpvCadadia(?string $fijarpvCadadia): self
{
$this->fijarpvCadadia = $fijarpvCadadia;
return $this;
}
public function getFijarpvAlcambiarprecio(): ?string
{
return $this->fijarpvAlcambiarprecio;
}
public function setFijarpvAlcambiarprecio(?string $fijarpvAlcambiarprecio): self
{
$this->fijarpvAlcambiarprecio = $fijarpvAlcambiarprecio;
return $this;
}
public function getFormadepeso(): ?int
{
return $this->formadepeso;
}
public function setFormadepeso(?int $formadepeso): self
{
$this->formadepeso = $formadepeso;
return $this;
}
public function getContrapartidaconsumos(): ?string
{
return $this->contrapartidaconsumos;
}
public function setContrapartidaconsumos(?string $contrapartidaconsumos): self
{
$this->contrapartidaconsumos = $contrapartidaconsumos;
return $this;
}
public function getUsarfid(): ?string
{
return $this->usarfid;
}
public function setUsarfid(?string $usarfid): self
{
$this->usarfid = $usarfid;
return $this;
}
public function getVersion()
{
return $this->version;
}
public function setVersion($version): self
{
$this->version = $version;
return $this;
}
public function getTipoprodsaft(): ?string
{
return $this->tipoprodsaft;
}
public function setTipoprodsaft(?string $tipoprodsaft): self
{
$this->tipoprodsaft = $tipoprodsaft;
return $this;
}
public function isDescargado(): ?bool
{
return $this->descargado;
}
public function isHioposImprimircocina(): ?bool
{
return $this->hioposImprimircocina;
}
public function isHioposEbt(): ?bool
{
return $this->hioposEbt;
}
public function isHioposImprimircocina2(): ?bool
{
return $this->hioposImprimircocina2;
}
public function isHioposImprimircocina3(): ?bool
{
return $this->hioposImprimircocina3;
}
public function isHioposIsmodificador(): ?bool
{
return $this->hioposIsmodificador;
}
}