<?php
namespace App\Entity;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* Clientes
*
* @ORM\Table(name="clientes", indexes={@ORM\Index(name="CODVENDEDOR", columns={"CODVENDEDOR"})}, options={"readOnly": true})
* @ORM\Entity
*/
class Clientes
{
/**
* @var int
*
* @ORM\Id
* @ORM\Column(name="CODCLIENTE", type="integer", nullable=false)
*/
private $codcliente;
/**
* @var string|null
*
* @ORM\Column(name="CODCONTABLE", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $codcontable = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="NOMBRECLIENTE", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $nombrecliente = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="NOMBRECOMERCIAL", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $nombrecomercial = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CIF", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $cif = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ALIAS", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $alias = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="DIRECCION1", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $direccion1 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CODPOSTAL", type="string", length=8, nullable=true, options={"default"="NULL"})
*/
private $codpostal = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="POBLACION", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $poblacion = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="PROVINCIA", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $provincia = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="PAIS", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $pais = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="PERSONACONTACTO", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $personacontacto = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="TELEFONO1", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $telefono1 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="TELEFONO2", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $telefono2 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FAX", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $fax = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FAXPEDIDOS", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $faxpedidos = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="TELEX", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $telex = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="E_MAIL", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $eMail = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CODCLISUYO", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $codclisuyo = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="NUMCUENTA", type="string", length=10, nullable=true, options={"default"="NULL"})
*/
private $numcuenta = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CODBANCO", type="string", length=4, nullable=true, options={"default"="NULL"})
*/
private $codbanco = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="NUMSUCURSAL", type="string", length=4, nullable=true, options={"default"="NULL"})
*/
private $numsucursal = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="DIGCONTROLBANCO", type="string", length=2, nullable=true, options={"default"="NULL"})
*/
private $digcontrolbanco = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CODPOSTALBANCO", type="string", length=8, nullable=true, options={"default"="NULL"})
*/
private $codpostalbanco = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CODSWIFT", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $codswift = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="NOMBREBANCO", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $nombrebanco = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="DIRECCIONBANCO", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $direccionbanco = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="POBLACIONBANCO", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $poblacionbanco = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ENVIOPOR", type="string", length=20, nullable=true, options={"default"="NULL"})
*/
private $enviopor = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ENVIODIRECION", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $enviodirecion = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ENVIOCODPOSTAL", type="string", length=8, nullable=true, options={"default"="NULL"})
*/
private $enviocodpostal = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ENVIOPOBLACION", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $enviopoblacion = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ENVIOPROVINCIA", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $envioprovincia = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ENVIOPAIS", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $enviopais = 'NULL';
/**
* @var float|null
*
* @ORM\Column(name="CANTPORTESPAG", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $cantportespag = NULL;
/**
* @var string|null
*
* @ORM\Column(name="TIPOPORTES", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $tipoportes = 'NULL';
/**
* @var float|null
*
* @ORM\Column(name="NUMDIASENTREGA", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $numdiasentrega = NULL;
/**
* @var float|null
*
* @ORM\Column(name="RIESGOCONCEDIDO", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $riesgoconcedido = NULL;
/**
* @var int|null
*
* @ORM\Column(name="TIPO", type="smallint", nullable=true, options={"default"="NULL"})
*/
private $tipo = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="RECARGO", type="string", length=10, nullable=true, options={"default"="NULL"})
*/
private $recargo = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ZONA", type="string", length=2, nullable=true, options={"default"="NULL"})
*/
private $zona = 'NULL';
/**
* @var float|null
*
* @ORM\Column(name="CODVENDEDOR", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $codvendedor = NULL;
/**
* @var int|null
*
* @ORM\Column(name="DIAPAGO1", type="smallint", nullable=true, options={"default"="NULL"})
*/
private $diapago1 = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="DIAPAGO2", type="smallint", nullable=true, options={"default"="NULL"})
*/
private $diapago2 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="OBSERVACIONES", type="text", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $observaciones = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FACTURARSINIMPUESTOS", type="string", length=5, nullable=true, options={"default"="NULL"})
*/
private $facturarsinimpuestos = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="APDOCORREOS", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $apdocorreos = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="DTOCOMERCIAL", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $dtocomercial = 'NULL';
/**
* @var \DateTime|null
*
* @ORM\Column(name="FECHAMODIFICADO", type="date", nullable=true, options={"default"="NULL"})
*/
private $fechamodificado = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="REGIMFACT", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
*/
private $regimfact = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="CODMONEDA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $codmoneda = NULL;
/**
* @var string|null
*
* @ORM\Column(name="DIRECCION2", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $direccion2 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="COMPRADOREDI", type="string", length=13, nullable=true, options={"default"="NULL"})
*/
private $compradoredi = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="RECEPTOREDI", type="string", length=13, nullable=true, options={"default"="NULL"})
*/
private $receptoredi = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CLIENTEEDI", type="string", length=13, nullable=true, options={"default"="NULL"})
*/
private $clienteedi = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="PAGADOREDI", type="string", length=13, nullable=true, options={"default"="NULL"})
*/
private $pagadoredi = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="USUARIO", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $usuario = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="PASS", type="string", length=8, nullable=true, options={"default"="NULL"})
*/
private $pass = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="TIPODOC", type="integer", nullable=true, options={"default"="NULL"})
*/
private $tipodoc = NULL;
/**
* @var string|null
*
* @ORM\Column(name="NUMTARJETA", type="string", length=20, nullable=true, options={"default"="NULL"})
*/
private $numtarjeta = 'NULL';
/**
* @var \DateTime|null
*
* @ORM\Column(name="FECHANACIMIENTO", type="date", nullable=true, options={"default"="NULL"})
*/
private $fechanacimiento = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="SEXO", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $sexo = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="NIF20", type="string", length=20, nullable=true, options={"default"="NULL"})
*/
private $nif20 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="DESCATALOGADO", type="string", length=5, nullable=true, options={"default"="NULL"})
*/
private $descatalogado = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="TRANSPORTE", type="integer", nullable=true, options={"default"="NULL"})
*/
private $transporte = NULL;
/**
* @var int|null
*
* @ORM\Column(name="MESVACACIONES", type="integer", nullable=true, options={"default"="NULL"})
*/
private $mesvacaciones = NULL;
/**
* @var int|null
*
* @ORM\Column(name="GRUPOIMPRESION", type="integer", nullable=true, options={"default"="NULL"})
*/
private $grupoimpresion = NULL;
/**
* @var int|null
*
* @ORM\Column(name="NUMCOPIASFACTURA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $numcopiasfactura = NULL;
/**
* @var int|null
*
* @ORM\Column(name="TIPOCLIENTE", type="integer", nullable=true, options={"default"="NULL"})
*/
private $tipocliente = NULL;
/**
* @var string|null
*
* @ORM\Column(name="CONDENTREGAEDI", type="string", length=3, nullable=true, options={"default"="NULL"})
*/
private $condentregaedi = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CONDENTREGA", type="string", length=3, nullable=true, options={"default"="NULL"})
*/
private $condentrega = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="CODIDIOMA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $codidioma = NULL;
/**
* @var string|null
*
* @ORM\Column(name="SERIE", type="string", length=4, nullable=true, options={"default"="NULL"})
*/
private $serie = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ALMACEN", type="string", length=3, nullable=true, options={"default"="NULL"})
*/
private $almacen = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="LOCAL_REMOTA", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $localRemota = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="EMPRESA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $empresa = NULL;
/**
* @var string|null
*
* @ORM\Column(name="CODENTREGA", type="string", length=3, nullable=true, options={"default"="NULL"})
*/
private $codentrega = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="PROCEDENCIA", type="string", length=30, nullable=true, options={"default"="NULL"})
*/
private $procedencia = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="CODIGOPROCEDENCIA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $codigoprocedencia = NULL;
/**
* @var int|null
*
* @ORM\Column(name="IDSUCURSAL", type="integer", nullable=true, options={"default"="NULL"})
*/
private $idsucursal = NULL;
/**
* @var int|null
*
* @ORM\Column(name="CODVISIBLE", type="integer", nullable=true, options={"default"="NULL"})
*/
private $codvisible = NULL;
/**
* @var string|null
*
* @ORM\Column(name="CODPAIS", type="string", length=2, nullable=true, options={"default"="NULL"})
*/
private $codpais = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="B2B_IDMAPPING", type="integer", nullable=true, options={"default"="NULL"})
*/
private $b2bIdmapping = NULL;
/**
* @var int|null
*
* @ORM\Column(name="FACTURARCONIMPUESTO", type="integer", nullable=true, options={"default"="NULL"})
*/
private $facturarconimpuesto = NULL;
/**
* @var string|null
*
* @ORM\Column(name="FOTOCLIENTE", type="blob", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $fotocliente = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="CARGOSFIJOSA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $cargosfijosa = NULL;
/**
* @var int|null
*
* @ORM\Column(name="TIPOTARJETA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $tipotarjeta = NULL;
/**
* @var string|null
*
* @ORM\Column(name="TARCADUCIDAD", type="string", length=4, nullable=true, options={"default"="NULL"})
*/
private $tarcaducidad = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CVC", type="string", length=4, nullable=true, options={"default"="NULL"})
*/
private $cvc = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CODCONTABLEDMN", type="string", length=12, nullable=true, options={"default"="NULL"})
*/
private $codcontabledmn = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="DISENYO_CAMPOSLIBRES", type="integer", nullable=true, options={"default"="NULL"})
*/
private $disenyoCamposlibres = NULL;
/**
* @var string|null
*
* @ORM\Column(name="MOBIL", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $mobil = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="NOCALCULARCARGO1ARTIC", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $nocalcularcargo1artic = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="NOCALCULARCARGO2ARTIC", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $nocalcularcargo2artic = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ESCLIENTEDELGRUPO", type="string", length=5, nullable=true, options={"default"="NULL"})
*/
private $esclientedelgrupo = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="PASSWORDCOMMERCE", type="string", length=32, nullable=true, options={"default"="NULL"})
*/
private $passwordcommerce = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="TIPORESERVA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $tiporeserva = NULL;
/**
* @var string|null
*
* @ORM\Column(name="REGIMRET", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $regimret = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="TIPORET", type="integer", nullable=true, options={"default"="NULL"})
*/
private $tiporet = NULL;
/**
* @var int|null
*
* @ORM\Column(name="RET_TIPORETENCIONIVA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $retTiporetencioniva = NULL;
/**
* @var float|null
*
* @ORM\Column(name="RET_PORCEXCLUSION", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $retPorcexclusion = NULL;
/**
* @var \DateTime|null
*
* @ORM\Column(name="RET_FECHAINIEXCLUSION", type="datetime", nullable=true, options={"default"="NULL"})
*/
private $retFechainiexclusion = 'NULL';
/**
* @var \DateTime|null
*
* @ORM\Column(name="RET_FECHAFINEXCLUSION", type="datetime", nullable=true, options={"default"="NULL"})
*/
private $retFechafinexclusion = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="CAMPOSLIBRESTOTALIZAR", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $camposlibrestotalizar = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="CODCLIASOC", type="integer", nullable=true, options={"default"="NULL"})
*/
private $codcliasoc = NULL;
/**
* @var int|null
*
* @ORM\Column(name="CARGOSEXTRASA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $cargosextrasa = NULL;
/**
* @var float|null
*
* @ORM\Column(name="COMISION", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $comision = NULL;
/**
* @var int|null
*
* @ORM\Column(name="PROVEEDORCOMISION", type="integer", nullable=true, options={"default"="NULL"})
*/
private $proveedorcomision = NULL;
/**
* @var bool|null
*
* @ORM\Column(name="COMISIONESFACTURABLES", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $comisionesfacturables = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="LOCALIZADOROBLIGATORIO", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $localizadorobligatorio = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="RECC", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $recc = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="BLOQUEADO", type="string", length=5, nullable=true, options={"default"="NULL"})
*/
private $bloqueado = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="ORDENADEUDO", type="string", length=35, nullable=true, options={"default"="NULL"})
*/
private $ordenadeudo = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="SUBNORMA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $subnorma = NULL;
/**
* @var int|null
*
* @ORM\Column(name="SECUENCIAADEUDO", type="integer", nullable=true, options={"default"="NULL"})
*/
private $secuenciaadeudo = NULL;
/**
* @var string|null
*
* @ORM\Column(name="CODIGOIBAN", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $codigoiban = 'NULL';
/**
* @var \DateTime|null
*
* @ORM\Column(name="FECHAFIRMAORDENADEUDO", type="datetime", nullable=true, options={"default"="NULL"})
*/
private $fechafirmaordenadeudo = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="TIPODOCIDENT", type="integer", nullable=true, options={"default"="NULL"})
*/
private $tipodocident = NULL;
/**
* @var string|null
*
* @ORM\Column(name="PERSONAJURIDICA", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $personajuridica = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="RECIBIRINFORMACION", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $recibirinformacion = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="CONFIRMACIONRESERVACOMPLETA", type="boolean", nullable=true, options={"default"="NULL"})
*/
private $confirmacionreservacompleta = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="CONFIRMACIONRESERVADISENYO", type="integer", nullable=true, options={"default"="NULL"})
*/
private $confirmacionreservadisenyo = NULL;
/**
* @var int|null
*
* @ORM\Column(name="CONFIRMACIONRESERVAPLANTILLACOMPLETA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $confirmacionreservaplantillacompleta = NULL;
/**
* @var int|null
*
* @ORM\Column(name="CONFIRMACIONRESERVAPLANTILLASIMPLE", type="integer", nullable=true, options={"default"="NULL"})
*/
private $confirmacionreservaplantillasimple = NULL;
/**
* @var string|null
*
* @ORM\Column(name="MAXIMOVENTA_APLICAR", type="string", length=10, nullable=true, options={"default"="NULL"})
*/
private $maximoventaAplicar = 'NULL';
/**
* @var float|null
*
* @ORM\Column(name="MAXIMOVENTA_IMPORTE", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $maximoventaImporte = NULL;
/**
* @var int|null
*
* @ORM\Column(name="MAXIMOVENTA_CODMONEDA", type="integer", nullable=true, options={"default"="NULL"})
*/
private $maximoventaCodmoneda = NULL;
/**
* @var int|null
*
* @ORM\Column(name="TIPOOPERACION", type="integer", nullable=true, options={"default"="NULL"})
*/
private $tipooperacion = NULL;
/**
* @var string|null
*
* @ORM\Column(name="VERSION", type="blob", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $version = 'NULL';
public function getCodcliente(): ?int
{
return $this->codcliente;
}
public function setCodcliente(int $codcliente): self
{
$this->codcliente = $codcliente;
return $this;
}
public function getCodcontable(): ?string
{
return $this->codcontable;
}
public function setCodcontable(?string $codcontable): self
{
$this->codcontable = $codcontable;
return $this;
}
public function getNombrecliente(): ?string
{
return $this->nombrecliente;
}
public function setNombrecliente(?string $nombrecliente): self
{
$this->nombrecliente = $nombrecliente;
return $this;
}
public function getNombrecomercial(): ?string
{
return $this->nombrecomercial;
}
public function setNombrecomercial(?string $nombrecomercial): self
{
$this->nombrecomercial = $nombrecomercial;
return $this;
}
public function getCif(): ?string
{
return $this->cif;
}
public function setCif(?string $cif): self
{
$this->cif = $cif;
return $this;
}
public function getAlias(): ?string
{
return $this->alias;
}
public function setAlias(?string $alias): self
{
$this->alias = $alias;
return $this;
}
public function getDireccion1(): ?string
{
return $this->direccion1;
}
public function setDireccion1(?string $direccion1): self
{
$this->direccion1 = $direccion1;
return $this;
}
public function getCodpostal(): ?string
{
return $this->codpostal;
}
public function setCodpostal(?string $codpostal): self
{
$this->codpostal = $codpostal;
return $this;
}
public function getPoblacion(): ?string
{
return $this->poblacion;
}
public function setPoblacion(?string $poblacion): self
{
$this->poblacion = $poblacion;
return $this;
}
public function getProvincia(): ?string
{
return $this->provincia;
}
public function setProvincia(?string $provincia): self
{
$this->provincia = $provincia;
return $this;
}
public function getPais(): ?string
{
return $this->pais;
}
public function setPais(?string $pais): self
{
$this->pais = $pais;
return $this;
}
public function getPersonacontacto(): ?string
{
return $this->personacontacto;
}
public function setPersonacontacto(?string $personacontacto): self
{
$this->personacontacto = $personacontacto;
return $this;
}
public function getTelefono1(): ?string
{
return $this->telefono1;
}
public function setTelefono1(?string $telefono1): self
{
$this->telefono1 = $telefono1;
return $this;
}
public function getTelefono2(): ?string
{
return $this->telefono2;
}
public function setTelefono2(?string $telefono2): self
{
$this->telefono2 = $telefono2;
return $this;
}
public function getFax(): ?string
{
return $this->fax;
}
public function setFax(?string $fax): self
{
$this->fax = $fax;
return $this;
}
public function getFaxpedidos(): ?string
{
return $this->faxpedidos;
}
public function setFaxpedidos(?string $faxpedidos): self
{
$this->faxpedidos = $faxpedidos;
return $this;
}
public function getTelex(): ?string
{
return $this->telex;
}
public function setTelex(?string $telex): self
{
$this->telex = $telex;
return $this;
}
public function getEMail(): ?string
{
return $this->eMail;
}
public function setEMail(?string $eMail): self
{
$this->eMail = $eMail;
return $this;
}
public function getCodclisuyo(): ?string
{
return $this->codclisuyo;
}
public function setCodclisuyo(?string $codclisuyo): self
{
$this->codclisuyo = $codclisuyo;
return $this;
}
public function getNumcuenta(): ?string
{
return $this->numcuenta;
}
public function setNumcuenta(?string $numcuenta): self
{
$this->numcuenta = $numcuenta;
return $this;
}
public function getCodbanco(): ?string
{
return $this->codbanco;
}
public function setCodbanco(?string $codbanco): self
{
$this->codbanco = $codbanco;
return $this;
}
public function getNumsucursal(): ?string
{
return $this->numsucursal;
}
public function setNumsucursal(?string $numsucursal): self
{
$this->numsucursal = $numsucursal;
return $this;
}
public function getDigcontrolbanco(): ?string
{
return $this->digcontrolbanco;
}
public function setDigcontrolbanco(?string $digcontrolbanco): self
{
$this->digcontrolbanco = $digcontrolbanco;
return $this;
}
public function getCodpostalbanco(): ?string
{
return $this->codpostalbanco;
}
public function setCodpostalbanco(?string $codpostalbanco): self
{
$this->codpostalbanco = $codpostalbanco;
return $this;
}
public function getCodswift(): ?string
{
return $this->codswift;
}
public function setCodswift(?string $codswift): self
{
$this->codswift = $codswift;
return $this;
}
public function getNombrebanco(): ?string
{
return $this->nombrebanco;
}
public function setNombrebanco(?string $nombrebanco): self
{
$this->nombrebanco = $nombrebanco;
return $this;
}
public function getDireccionbanco(): ?string
{
return $this->direccionbanco;
}
public function setDireccionbanco(?string $direccionbanco): self
{
$this->direccionbanco = $direccionbanco;
return $this;
}
public function getPoblacionbanco(): ?string
{
return $this->poblacionbanco;
}
public function setPoblacionbanco(?string $poblacionbanco): self
{
$this->poblacionbanco = $poblacionbanco;
return $this;
}
public function getEnviopor(): ?string
{
return $this->enviopor;
}
public function setEnviopor(?string $enviopor): self
{
$this->enviopor = $enviopor;
return $this;
}
public function getEnviodirecion(): ?string
{
return $this->enviodirecion;
}
public function setEnviodirecion(?string $enviodirecion): self
{
$this->enviodirecion = $enviodirecion;
return $this;
}
public function getEnviocodpostal(): ?string
{
return $this->enviocodpostal;
}
public function setEnviocodpostal(?string $enviocodpostal): self
{
$this->enviocodpostal = $enviocodpostal;
return $this;
}
public function getEnviopoblacion(): ?string
{
return $this->enviopoblacion;
}
public function setEnviopoblacion(?string $enviopoblacion): self
{
$this->enviopoblacion = $enviopoblacion;
return $this;
}
public function getEnvioprovincia(): ?string
{
return $this->envioprovincia;
}
public function setEnvioprovincia(?string $envioprovincia): self
{
$this->envioprovincia = $envioprovincia;
return $this;
}
public function getEnviopais(): ?string
{
return $this->enviopais;
}
public function setEnviopais(?string $enviopais): self
{
$this->enviopais = $enviopais;
return $this;
}
public function getCantportespag(): ?float
{
return $this->cantportespag;
}
public function setCantportespag(?float $cantportespag): self
{
$this->cantportespag = $cantportespag;
return $this;
}
public function getTipoportes(): ?string
{
return $this->tipoportes;
}
public function setTipoportes(?string $tipoportes): self
{
$this->tipoportes = $tipoportes;
return $this;
}
public function getNumdiasentrega(): ?float
{
return $this->numdiasentrega;
}
public function setNumdiasentrega(?float $numdiasentrega): self
{
$this->numdiasentrega = $numdiasentrega;
return $this;
}
public function getRiesgoconcedido(): ?float
{
return $this->riesgoconcedido;
}
public function setRiesgoconcedido(?float $riesgoconcedido): self
{
$this->riesgoconcedido = $riesgoconcedido;
return $this;
}
public function getTipo(): ?int
{
return $this->tipo;
}
public function setTipo(?int $tipo): self
{
$this->tipo = $tipo;
return $this;
}
public function getRecargo(): ?string
{
return $this->recargo;
}
public function setRecargo(?string $recargo): self
{
$this->recargo = $recargo;
return $this;
}
public function getZona(): ?string
{
return $this->zona;
}
public function setZona(?string $zona): self
{
$this->zona = $zona;
return $this;
}
public function getCodvendedor(): ?float
{
return $this->codvendedor;
}
public function setCodvendedor(?float $codvendedor): self
{
$this->codvendedor = $codvendedor;
return $this;
}
public function getDiapago1(): ?int
{
return $this->diapago1;
}
public function setDiapago1(?int $diapago1): self
{
$this->diapago1 = $diapago1;
return $this;
}
public function getDiapago2(): ?int
{
return $this->diapago2;
}
public function setDiapago2(?int $diapago2): self
{
$this->diapago2 = $diapago2;
return $this;
}
public function getObservaciones(): ?string
{
return $this->observaciones;
}
public function setObservaciones(?string $observaciones): self
{
$this->observaciones = $observaciones;
return $this;
}
public function getFacturarsinimpuestos(): ?string
{
return $this->facturarsinimpuestos;
}
public function setFacturarsinimpuestos(?string $facturarsinimpuestos): self
{
$this->facturarsinimpuestos = $facturarsinimpuestos;
return $this;
}
public function getApdocorreos(): ?string
{
return $this->apdocorreos;
}
public function setApdocorreos(?string $apdocorreos): self
{
$this->apdocorreos = $apdocorreos;
return $this;
}
public function getDtocomercial(): ?string
{
return $this->dtocomercial;
}
public function setDtocomercial(?string $dtocomercial): self
{
$this->dtocomercial = $dtocomercial;
return $this;
}
public function getFechamodificado(): ?\DateTimeInterface
{
return $this->fechamodificado;
}
public function setFechamodificado(?\DateTimeInterface $fechamodificado): self
{
$this->fechamodificado = $fechamodificado;
return $this;
}
public function getRegimfact(): ?string
{
return $this->regimfact;
}
public function setRegimfact(?string $regimfact): self
{
$this->regimfact = $regimfact;
return $this;
}
public function getCodmoneda(): ?int
{
return $this->codmoneda;
}
public function setCodmoneda(?int $codmoneda): self
{
$this->codmoneda = $codmoneda;
return $this;
}
public function getDireccion2(): ?string
{
return $this->direccion2;
}
public function setDireccion2(?string $direccion2): self
{
$this->direccion2 = $direccion2;
return $this;
}
public function getCompradoredi(): ?string
{
return $this->compradoredi;
}
public function setCompradoredi(?string $compradoredi): self
{
$this->compradoredi = $compradoredi;
return $this;
}
public function getReceptoredi(): ?string
{
return $this->receptoredi;
}
public function setReceptoredi(?string $receptoredi): self
{
$this->receptoredi = $receptoredi;
return $this;
}
public function getClienteedi(): ?string
{
return $this->clienteedi;
}
public function setClienteedi(?string $clienteedi): self
{
$this->clienteedi = $clienteedi;
return $this;
}
public function getPagadoredi(): ?string
{
return $this->pagadoredi;
}
public function setPagadoredi(?string $pagadoredi): self
{
$this->pagadoredi = $pagadoredi;
return $this;
}
public function getUsuario(): ?string
{
return $this->usuario;
}
public function setUsuario(?string $usuario): self
{
$this->usuario = $usuario;
return $this;
}
public function getPass(): ?string
{
return $this->pass;
}
public function setPass(?string $pass): self
{
$this->pass = $pass;
return $this;
}
public function getTipodoc(): ?int
{
return $this->tipodoc;
}
public function setTipodoc(?int $tipodoc): self
{
$this->tipodoc = $tipodoc;
return $this;
}
public function getNumtarjeta(): ?string
{
return $this->numtarjeta;
}
public function setNumtarjeta(?string $numtarjeta): self
{
$this->numtarjeta = $numtarjeta;
return $this;
}
public function getFechanacimiento(): ?\DateTimeInterface
{
return $this->fechanacimiento;
}
public function setFechanacimiento(?\DateTimeInterface $fechanacimiento): self
{
$this->fechanacimiento = $fechanacimiento;
return $this;
}
public function getSexo(): ?string
{
return $this->sexo;
}
public function setSexo(?string $sexo): self
{
$this->sexo = $sexo;
return $this;
}
public function getNif20(): ?string
{
return $this->nif20;
}
public function setNif20(?string $nif20): self
{
$this->nif20 = $nif20;
return $this;
}
public function getDescatalogado(): ?string
{
return $this->descatalogado;
}
public function setDescatalogado(?string $descatalogado): self
{
$this->descatalogado = $descatalogado;
return $this;
}
public function getTransporte(): ?int
{
return $this->transporte;
}
public function setTransporte(?int $transporte): self
{
$this->transporte = $transporte;
return $this;
}
public function getMesvacaciones(): ?int
{
return $this->mesvacaciones;
}
public function setMesvacaciones(?int $mesvacaciones): self
{
$this->mesvacaciones = $mesvacaciones;
return $this;
}
public function getGrupoimpresion(): ?int
{
return $this->grupoimpresion;
}
public function setGrupoimpresion(?int $grupoimpresion): self
{
$this->grupoimpresion = $grupoimpresion;
return $this;
}
public function getNumcopiasfactura(): ?int
{
return $this->numcopiasfactura;
}
public function setNumcopiasfactura(?int $numcopiasfactura): self
{
$this->numcopiasfactura = $numcopiasfactura;
return $this;
}
public function getTipocliente(): ?int
{
return $this->tipocliente;
}
public function setTipocliente(?int $tipocliente): self
{
$this->tipocliente = $tipocliente;
return $this;
}
public function getCondentregaedi(): ?string
{
return $this->condentregaedi;
}
public function setCondentregaedi(?string $condentregaedi): self
{
$this->condentregaedi = $condentregaedi;
return $this;
}
public function getCondentrega(): ?string
{
return $this->condentrega;
}
public function setCondentrega(?string $condentrega): self
{
$this->condentrega = $condentrega;
return $this;
}
public function getCodidioma(): ?int
{
return $this->codidioma;
}
public function setCodidioma(?int $codidioma): self
{
$this->codidioma = $codidioma;
return $this;
}
public function getSerie(): ?string
{
return $this->serie;
}
public function setSerie(?string $serie): self
{
$this->serie = $serie;
return $this;
}
public function getAlmacen(): ?string
{
return $this->almacen;
}
public function setAlmacen(?string $almacen): self
{
$this->almacen = $almacen;
return $this;
}
public function getLocalRemota(): ?string
{
return $this->localRemota;
}
public function setLocalRemota(?string $localRemota): self
{
$this->localRemota = $localRemota;
return $this;
}
public function getEmpresa(): ?int
{
return $this->empresa;
}
public function setEmpresa(?int $empresa): self
{
$this->empresa = $empresa;
return $this;
}
public function getCodentrega(): ?string
{
return $this->codentrega;
}
public function setCodentrega(?string $codentrega): self
{
$this->codentrega = $codentrega;
return $this;
}
public function getProcedencia(): ?string
{
return $this->procedencia;
}
public function setProcedencia(?string $procedencia): self
{
$this->procedencia = $procedencia;
return $this;
}
public function getCodigoprocedencia(): ?int
{
return $this->codigoprocedencia;
}
public function setCodigoprocedencia(?int $codigoprocedencia): self
{
$this->codigoprocedencia = $codigoprocedencia;
return $this;
}
public function getIdsucursal(): ?int
{
return $this->idsucursal;
}
public function setIdsucursal(?int $idsucursal): self
{
$this->idsucursal = $idsucursal;
return $this;
}
public function getCodvisible(): ?int
{
return $this->codvisible;
}
public function setCodvisible(?int $codvisible): self
{
$this->codvisible = $codvisible;
return $this;
}
public function getCodpais(): ?string
{
return $this->codpais;
}
public function setCodpais(?string $codpais): self
{
$this->codpais = $codpais;
return $this;
}
public function getB2bIdmapping(): ?int
{
return $this->b2bIdmapping;
}
public function setB2bIdmapping(?int $b2bIdmapping): self
{
$this->b2bIdmapping = $b2bIdmapping;
return $this;
}
public function getFacturarconimpuesto(): ?int
{
return $this->facturarconimpuesto;
}
public function setFacturarconimpuesto(?int $facturarconimpuesto): self
{
$this->facturarconimpuesto = $facturarconimpuesto;
return $this;
}
public function getFotocliente()
{
return $this->fotocliente;
}
public function setFotocliente($fotocliente): self
{
$this->fotocliente = $fotocliente;
return $this;
}
public function getCargosfijosa(): ?int
{
return $this->cargosfijosa;
}
public function setCargosfijosa(?int $cargosfijosa): self
{
$this->cargosfijosa = $cargosfijosa;
return $this;
}
public function getTipotarjeta(): ?int
{
return $this->tipotarjeta;
}
public function setTipotarjeta(?int $tipotarjeta): self
{
$this->tipotarjeta = $tipotarjeta;
return $this;
}
public function getTarcaducidad(): ?string
{
return $this->tarcaducidad;
}
public function setTarcaducidad(?string $tarcaducidad): self
{
$this->tarcaducidad = $tarcaducidad;
return $this;
}
public function getCvc(): ?string
{
return $this->cvc;
}
public function setCvc(?string $cvc): self
{
$this->cvc = $cvc;
return $this;
}
public function getCodcontabledmn(): ?string
{
return $this->codcontabledmn;
}
public function setCodcontabledmn(?string $codcontabledmn): self
{
$this->codcontabledmn = $codcontabledmn;
return $this;
}
public function getDisenyoCamposlibres(): ?int
{
return $this->disenyoCamposlibres;
}
public function setDisenyoCamposlibres(?int $disenyoCamposlibres): self
{
$this->disenyoCamposlibres = $disenyoCamposlibres;
return $this;
}
public function getMobil(): ?string
{
return $this->mobil;
}
public function setMobil(?string $mobil): self
{
$this->mobil = $mobil;
return $this;
}
public function getNocalcularcargo1artic(): ?bool
{
return $this->nocalcularcargo1artic;
}
public function setNocalcularcargo1artic(?bool $nocalcularcargo1artic): self
{
$this->nocalcularcargo1artic = $nocalcularcargo1artic;
return $this;
}
public function getNocalcularcargo2artic(): ?bool
{
return $this->nocalcularcargo2artic;
}
public function setNocalcularcargo2artic(?bool $nocalcularcargo2artic): self
{
$this->nocalcularcargo2artic = $nocalcularcargo2artic;
return $this;
}
public function getEsclientedelgrupo(): ?string
{
return $this->esclientedelgrupo;
}
public function setEsclientedelgrupo(?string $esclientedelgrupo): self
{
$this->esclientedelgrupo = $esclientedelgrupo;
return $this;
}
public function getPasswordcommerce(): ?string
{
return $this->passwordcommerce;
}
public function setPasswordcommerce(?string $passwordcommerce): self
{
$this->passwordcommerce = $passwordcommerce;
return $this;
}
public function getTiporeserva(): ?int
{
return $this->tiporeserva;
}
public function setTiporeserva(?int $tiporeserva): self
{
$this->tiporeserva = $tiporeserva;
return $this;
}
public function getRegimret(): ?string
{
return $this->regimret;
}
public function setRegimret(?string $regimret): self
{
$this->regimret = $regimret;
return $this;
}
public function getTiporet(): ?int
{
return $this->tiporet;
}
public function setTiporet(?int $tiporet): self
{
$this->tiporet = $tiporet;
return $this;
}
public function getRetTiporetencioniva(): ?int
{
return $this->retTiporetencioniva;
}
public function setRetTiporetencioniva(?int $retTiporetencioniva): self
{
$this->retTiporetencioniva = $retTiporetencioniva;
return $this;
}
public function getRetPorcexclusion(): ?float
{
return $this->retPorcexclusion;
}
public function setRetPorcexclusion(?float $retPorcexclusion): self
{
$this->retPorcexclusion = $retPorcexclusion;
return $this;
}
public function getRetFechainiexclusion(): ?\DateTimeInterface
{
return $this->retFechainiexclusion;
}
public function setRetFechainiexclusion(?\DateTimeInterface $retFechainiexclusion): self
{
$this->retFechainiexclusion = $retFechainiexclusion;
return $this;
}
public function getRetFechafinexclusion(): ?\DateTimeInterface
{
return $this->retFechafinexclusion;
}
public function setRetFechafinexclusion(?\DateTimeInterface $retFechafinexclusion): self
{
$this->retFechafinexclusion = $retFechafinexclusion;
return $this;
}
public function getCamposlibrestotalizar(): ?bool
{
return $this->camposlibrestotalizar;
}
public function setCamposlibrestotalizar(?bool $camposlibrestotalizar): self
{
$this->camposlibrestotalizar = $camposlibrestotalizar;
return $this;
}
public function getCodcliasoc(): ?int
{
return $this->codcliasoc;
}
public function setCodcliasoc(?int $codcliasoc): self
{
$this->codcliasoc = $codcliasoc;
return $this;
}
public function getCargosextrasa(): ?int
{
return $this->cargosextrasa;
}
public function setCargosextrasa(?int $cargosextrasa): self
{
$this->cargosextrasa = $cargosextrasa;
return $this;
}
public function getComision(): ?float
{
return $this->comision;
}
public function setComision(?float $comision): self
{
$this->comision = $comision;
return $this;
}
public function getProveedorcomision(): ?int
{
return $this->proveedorcomision;
}
public function setProveedorcomision(?int $proveedorcomision): self
{
$this->proveedorcomision = $proveedorcomision;
return $this;
}
public function getComisionesfacturables(): ?bool
{
return $this->comisionesfacturables;
}
public function setComisionesfacturables(?bool $comisionesfacturables): self
{
$this->comisionesfacturables = $comisionesfacturables;
return $this;
}
public function getLocalizadorobligatorio(): ?bool
{
return $this->localizadorobligatorio;
}
public function setLocalizadorobligatorio(?bool $localizadorobligatorio): self
{
$this->localizadorobligatorio = $localizadorobligatorio;
return $this;
}
public function getRecc(): ?bool
{
return $this->recc;
}
public function setRecc(?bool $recc): self
{
$this->recc = $recc;
return $this;
}
public function getBloqueado(): ?string
{
return $this->bloqueado;
}
public function setBloqueado(?string $bloqueado): self
{
$this->bloqueado = $bloqueado;
return $this;
}
public function getOrdenadeudo(): ?string
{
return $this->ordenadeudo;
}
public function setOrdenadeudo(?string $ordenadeudo): self
{
$this->ordenadeudo = $ordenadeudo;
return $this;
}
public function getSubnorma(): ?int
{
return $this->subnorma;
}
public function setSubnorma(?int $subnorma): self
{
$this->subnorma = $subnorma;
return $this;
}
public function getSecuenciaadeudo(): ?int
{
return $this->secuenciaadeudo;
}
public function setSecuenciaadeudo(?int $secuenciaadeudo): self
{
$this->secuenciaadeudo = $secuenciaadeudo;
return $this;
}
public function getCodigoiban(): ?string
{
return $this->codigoiban;
}
public function setCodigoiban(?string $codigoiban): self
{
$this->codigoiban = $codigoiban;
return $this;
}
public function getFechafirmaordenadeudo(): ?\DateTimeInterface
{
return $this->fechafirmaordenadeudo;
}
public function setFechafirmaordenadeudo(?\DateTimeInterface $fechafirmaordenadeudo): self
{
$this->fechafirmaordenadeudo = $fechafirmaordenadeudo;
return $this;
}
public function getTipodocident(): ?int
{
return $this->tipodocident;
}
public function setTipodocident(?int $tipodocident): self
{
$this->tipodocident = $tipodocident;
return $this;
}
public function getPersonajuridica(): ?string
{
return $this->personajuridica;
}
public function setPersonajuridica(?string $personajuridica): self
{
$this->personajuridica = $personajuridica;
return $this;
}
public function getRecibirinformacion(): ?bool
{
return $this->recibirinformacion;
}
public function setRecibirinformacion(?bool $recibirinformacion): self
{
$this->recibirinformacion = $recibirinformacion;
return $this;
}
public function getConfirmacionreservacompleta(): ?bool
{
return $this->confirmacionreservacompleta;
}
public function setConfirmacionreservacompleta(?bool $confirmacionreservacompleta): self
{
$this->confirmacionreservacompleta = $confirmacionreservacompleta;
return $this;
}
public function getConfirmacionreservadisenyo(): ?int
{
return $this->confirmacionreservadisenyo;
}
public function setConfirmacionreservadisenyo(?int $confirmacionreservadisenyo): self
{
$this->confirmacionreservadisenyo = $confirmacionreservadisenyo;
return $this;
}
public function getConfirmacionreservaplantillacompleta(): ?int
{
return $this->confirmacionreservaplantillacompleta;
}
public function setConfirmacionreservaplantillacompleta(?int $confirmacionreservaplantillacompleta): self
{
$this->confirmacionreservaplantillacompleta = $confirmacionreservaplantillacompleta;
return $this;
}
public function getConfirmacionreservaplantillasimple(): ?int
{
return $this->confirmacionreservaplantillasimple;
}
public function setConfirmacionreservaplantillasimple(?int $confirmacionreservaplantillasimple): self
{
$this->confirmacionreservaplantillasimple = $confirmacionreservaplantillasimple;
return $this;
}
public function getMaximoventaAplicar(): ?string
{
return $this->maximoventaAplicar;
}
public function setMaximoventaAplicar(?string $maximoventaAplicar): self
{
$this->maximoventaAplicar = $maximoventaAplicar;
return $this;
}
public function getMaximoventaImporte(): ?float
{
return $this->maximoventaImporte;
}
public function setMaximoventaImporte(?float $maximoventaImporte): self
{
$this->maximoventaImporte = $maximoventaImporte;
return $this;
}
public function getMaximoventaCodmoneda(): ?int
{
return $this->maximoventaCodmoneda;
}
public function setMaximoventaCodmoneda(?int $maximoventaCodmoneda): self
{
$this->maximoventaCodmoneda = $maximoventaCodmoneda;
return $this;
}
public function getTipooperacion(): ?int
{
return $this->tipooperacion;
}
public function setTipooperacion(?int $tipooperacion): self
{
$this->tipooperacion = $tipooperacion;
return $this;
}
public function getVersion()
{
return $this->version;
}
public function setVersion($version): self
{
$this->version = $version;
return $this;
}
public function isNocalcularcargo1artic(): ?bool
{
return $this->nocalcularcargo1artic;
}
public function isNocalcularcargo2artic(): ?bool
{
return $this->nocalcularcargo2artic;
}
public function isCamposlibrestotalizar(): ?bool
{
return $this->camposlibrestotalizar;
}
public function isComisionesfacturables(): ?bool
{
return $this->comisionesfacturables;
}
public function isLocalizadorobligatorio(): ?bool
{
return $this->localizadorobligatorio;
}
public function isRecc(): ?bool
{
return $this->recc;
}
public function isRecibirinformacion(): ?bool
{
return $this->recibirinformacion;
}
public function isConfirmacionreservacompleta(): ?bool
{
return $this->confirmacionreservacompleta;
}
}