src/Entity/Clientes.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\DBAL\Types\Types;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * Clientes
  7.  *
  8.  * @ORM\Table(name="clientes", indexes={@ORM\Index(name="CODVENDEDOR", columns={"CODVENDEDOR"})}, options={"readOnly": true})
  9.  * @ORM\Entity
  10.  */
  11. class Clientes
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\Id
  17.      * @ORM\Column(name="CODCLIENTE", type="integer", nullable=false)
  18.      */
  19.     private $codcliente;
  20.     /**
  21.      * @var string|null
  22.      *
  23.      * @ORM\Column(name="CODCONTABLE", type="string", length=12, nullable=true, options={"default"="NULL"})
  24.      */
  25.     private $codcontable 'NULL';
  26.     /**
  27.      * @var string|null
  28.      *
  29.      * @ORM\Column(name="NOMBRECLIENTE", type="string", length=255, nullable=true, options={"default"="NULL"})
  30.      */
  31.     private $nombrecliente 'NULL';
  32.     /**
  33.      * @var string|null
  34.      *
  35.      * @ORM\Column(name="NOMBRECOMERCIAL", type="string", length=255, nullable=true, options={"default"="NULL"})
  36.      */
  37.     private $nombrecomercial 'NULL';
  38.     /**
  39.      * @var string|null
  40.      *
  41.      * @ORM\Column(name="CIF", type="string", length=12, nullable=true, options={"default"="NULL"})
  42.      */
  43.     private $cif 'NULL';
  44.     /**
  45.      * @var string|null
  46.      *
  47.      * @ORM\Column(name="ALIAS", type="string", length=255, nullable=true, options={"default"="NULL"})
  48.      */
  49.     private $alias 'NULL';
  50.     /**
  51.      * @var string|null
  52.      *
  53.      * @ORM\Column(name="DIRECCION1", type="string", length=255, nullable=true, options={"default"="NULL"})
  54.      */
  55.     private $direccion1 'NULL';
  56.     /**
  57.      * @var string|null
  58.      *
  59.      * @ORM\Column(name="CODPOSTAL", type="string", length=8, nullable=true, options={"default"="NULL"})
  60.      */
  61.     private $codpostal 'NULL';
  62.     /**
  63.      * @var string|null
  64.      *
  65.      * @ORM\Column(name="POBLACION", type="string", length=100, nullable=true, options={"default"="NULL"})
  66.      */
  67.     private $poblacion 'NULL';
  68.     /**
  69.      * @var string|null
  70.      *
  71.      * @ORM\Column(name="PROVINCIA", type="string", length=100, nullable=true, options={"default"="NULL"})
  72.      */
  73.     private $provincia 'NULL';
  74.     /**
  75.      * @var string|null
  76.      *
  77.      * @ORM\Column(name="PAIS", type="string", length=100, nullable=true, options={"default"="NULL"})
  78.      */
  79.     private $pais 'NULL';
  80.     /**
  81.      * @var string|null
  82.      *
  83.      * @ORM\Column(name="PERSONACONTACTO", type="string", length=255, nullable=true, options={"default"="NULL"})
  84.      */
  85.     private $personacontacto 'NULL';
  86.     /**
  87.      * @var string|null
  88.      *
  89.      * @ORM\Column(name="TELEFONO1", type="string", length=15, nullable=true, options={"default"="NULL"})
  90.      */
  91.     private $telefono1 'NULL';
  92.     /**
  93.      * @var string|null
  94.      *
  95.      * @ORM\Column(name="TELEFONO2", type="string", length=15, nullable=true, options={"default"="NULL"})
  96.      */
  97.     private $telefono2 'NULL';
  98.     /**
  99.      * @var string|null
  100.      *
  101.      * @ORM\Column(name="FAX", type="string", length=15, nullable=true, options={"default"="NULL"})
  102.      */
  103.     private $fax 'NULL';
  104.     /**
  105.      * @var string|null
  106.      *
  107.      * @ORM\Column(name="FAXPEDIDOS", type="string", length=15, nullable=true, options={"default"="NULL"})
  108.      */
  109.     private $faxpedidos 'NULL';
  110.     /**
  111.      * @var string|null
  112.      *
  113.      * @ORM\Column(name="TELEX", type="string", length=15, nullable=true, options={"default"="NULL"})
  114.      */
  115.     private $telex 'NULL';
  116.     /**
  117.      * @var string|null
  118.      *
  119.      * @ORM\Column(name="E_MAIL", type="string", length=255, nullable=true, options={"default"="NULL"})
  120.      */
  121.     private $eMail 'NULL';
  122.     /**
  123.      * @var string|null
  124.      *
  125.      * @ORM\Column(name="CODCLISUYO", type="string", length=12, nullable=true, options={"default"="NULL"})
  126.      */
  127.     private $codclisuyo 'NULL';
  128.     /**
  129.      * @var string|null
  130.      *
  131.      * @ORM\Column(name="NUMCUENTA", type="string", length=10, nullable=true, options={"default"="NULL"})
  132.      */
  133.     private $numcuenta 'NULL';
  134.     /**
  135.      * @var string|null
  136.      *
  137.      * @ORM\Column(name="CODBANCO", type="string", length=4, nullable=true, options={"default"="NULL"})
  138.      */
  139.     private $codbanco 'NULL';
  140.     /**
  141.      * @var string|null
  142.      *
  143.      * @ORM\Column(name="NUMSUCURSAL", type="string", length=4, nullable=true, options={"default"="NULL"})
  144.      */
  145.     private $numsucursal 'NULL';
  146.     /**
  147.      * @var string|null
  148.      *
  149.      * @ORM\Column(name="DIGCONTROLBANCO", type="string", length=2, nullable=true, options={"default"="NULL"})
  150.      */
  151.     private $digcontrolbanco 'NULL';
  152.     /**
  153.      * @var string|null
  154.      *
  155.      * @ORM\Column(name="CODPOSTALBANCO", type="string", length=8, nullable=true, options={"default"="NULL"})
  156.      */
  157.     private $codpostalbanco 'NULL';
  158.     /**
  159.      * @var string|null
  160.      *
  161.      * @ORM\Column(name="CODSWIFT", type="string", length=15, nullable=true, options={"default"="NULL"})
  162.      */
  163.     private $codswift 'NULL';
  164.     /**
  165.      * @var string|null
  166.      *
  167.      * @ORM\Column(name="NOMBREBANCO", type="string", length=255, nullable=true, options={"default"="NULL"})
  168.      */
  169.     private $nombrebanco 'NULL';
  170.     /**
  171.      * @var string|null
  172.      *
  173.      * @ORM\Column(name="DIRECCIONBANCO", type="string", length=255, nullable=true, options={"default"="NULL"})
  174.      */
  175.     private $direccionbanco 'NULL';
  176.     /**
  177.      * @var string|null
  178.      *
  179.      * @ORM\Column(name="POBLACIONBANCO", type="string", length=100, nullable=true, options={"default"="NULL"})
  180.      */
  181.     private $poblacionbanco 'NULL';
  182.     /**
  183.      * @var string|null
  184.      *
  185.      * @ORM\Column(name="ENVIOPOR", type="string", length=20, nullable=true, options={"default"="NULL"})
  186.      */
  187.     private $enviopor 'NULL';
  188.     /**
  189.      * @var string|null
  190.      *
  191.      * @ORM\Column(name="ENVIODIRECION", type="string", length=255, nullable=true, options={"default"="NULL"})
  192.      */
  193.     private $enviodirecion 'NULL';
  194.     /**
  195.      * @var string|null
  196.      *
  197.      * @ORM\Column(name="ENVIOCODPOSTAL", type="string", length=8, nullable=true, options={"default"="NULL"})
  198.      */
  199.     private $enviocodpostal 'NULL';
  200.     /**
  201.      * @var string|null
  202.      *
  203.      * @ORM\Column(name="ENVIOPOBLACION", type="string", length=100, nullable=true, options={"default"="NULL"})
  204.      */
  205.     private $enviopoblacion 'NULL';
  206.     /**
  207.      * @var string|null
  208.      *
  209.      * @ORM\Column(name="ENVIOPROVINCIA", type="string", length=100, nullable=true, options={"default"="NULL"})
  210.      */
  211.     private $envioprovincia 'NULL';
  212.     /**
  213.      * @var string|null
  214.      *
  215.      * @ORM\Column(name="ENVIOPAIS", type="string", length=100, nullable=true, options={"default"="NULL"})
  216.      */
  217.     private $enviopais 'NULL';
  218.     /**
  219.      * @var float|null
  220.      *
  221.      * @ORM\Column(name="CANTPORTESPAG", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  222.      */
  223.     private $cantportespag NULL;
  224.     /**
  225.      * @var string|null
  226.      *
  227.      * @ORM\Column(name="TIPOPORTES", type="string", length=1, nullable=true, options={"default"="NULL"})
  228.      */
  229.     private $tipoportes 'NULL';
  230.     /**
  231.      * @var float|null
  232.      *
  233.      * @ORM\Column(name="NUMDIASENTREGA", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  234.      */
  235.     private $numdiasentrega NULL;
  236.     /**
  237.      * @var float|null
  238.      *
  239.      * @ORM\Column(name="RIESGOCONCEDIDO", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  240.      */
  241.     private $riesgoconcedido NULL;
  242.     /**
  243.      * @var int|null
  244.      *
  245.      * @ORM\Column(name="TIPO", type="smallint", nullable=true, options={"default"="NULL"})
  246.      */
  247.     private $tipo 'NULL';
  248.     /**
  249.      * @var string|null
  250.      *
  251.      * @ORM\Column(name="RECARGO", type="string", length=10, nullable=true, options={"default"="NULL"})
  252.      */
  253.     private $recargo 'NULL';
  254.     /**
  255.      * @var string|null
  256.      *
  257.      * @ORM\Column(name="ZONA", type="string", length=2, nullable=true, options={"default"="NULL"})
  258.      */
  259.     private $zona 'NULL';
  260.     /**
  261.      * @var float|null
  262.      *
  263.      * @ORM\Column(name="CODVENDEDOR", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  264.      */
  265.     private $codvendedor NULL;
  266.     /**
  267.      * @var int|null
  268.      *
  269.      * @ORM\Column(name="DIAPAGO1", type="smallint", nullable=true, options={"default"="NULL"})
  270.      */
  271.     private $diapago1 'NULL';
  272.     /**
  273.      * @var int|null
  274.      *
  275.      * @ORM\Column(name="DIAPAGO2", type="smallint", nullable=true, options={"default"="NULL"})
  276.      */
  277.     private $diapago2 'NULL';
  278.     /**
  279.      * @var string|null
  280.      *
  281.      * @ORM\Column(name="OBSERVACIONES", type="text", length=16777215, nullable=true, options={"default"="NULL"})
  282.      */
  283.     private $observaciones 'NULL';
  284.     /**
  285.      * @var string|null
  286.      *
  287.      * @ORM\Column(name="FACTURARSINIMPUESTOS", type="string", length=5, nullable=true, options={"default"="NULL"})
  288.      */
  289.     private $facturarsinimpuestos 'NULL';
  290.     /**
  291.      * @var string|null
  292.      *
  293.      * @ORM\Column(name="APDOCORREOS", type="string", length=12, nullable=true, options={"default"="NULL"})
  294.      */
  295.     private $apdocorreos 'NULL';
  296.     /**
  297.      * @var string|null
  298.      *
  299.      * @ORM\Column(name="DTOCOMERCIAL", type="string", length=12, nullable=true, options={"default"="NULL"})
  300.      */
  301.     private $dtocomercial 'NULL';
  302.     /**
  303.      * @var \DateTime|null
  304.      *
  305.      * @ORM\Column(name="FECHAMODIFICADO", type="date", nullable=true, options={"default"="NULL"})
  306.      */
  307.     private $fechamodificado 'NULL';
  308.     /**
  309.      * @var string|null
  310.      *
  311.      * @ORM\Column(name="REGIMFACT", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
  312.      */
  313.     private $regimfact 'NULL';
  314.     /**
  315.      * @var int|null
  316.      *
  317.      * @ORM\Column(name="CODMONEDA", type="integer", nullable=true, options={"default"="NULL"})
  318.      */
  319.     private $codmoneda NULL;
  320.     /**
  321.      * @var string|null
  322.      *
  323.      * @ORM\Column(name="DIRECCION2", type="string", length=255, nullable=true, options={"default"="NULL"})
  324.      */
  325.     private $direccion2 'NULL';
  326.     /**
  327.      * @var string|null
  328.      *
  329.      * @ORM\Column(name="COMPRADOREDI", type="string", length=13, nullable=true, options={"default"="NULL"})
  330.      */
  331.     private $compradoredi 'NULL';
  332.     /**
  333.      * @var string|null
  334.      *
  335.      * @ORM\Column(name="RECEPTOREDI", type="string", length=13, nullable=true, options={"default"="NULL"})
  336.      */
  337.     private $receptoredi 'NULL';
  338.     /**
  339.      * @var string|null
  340.      *
  341.      * @ORM\Column(name="CLIENTEEDI", type="string", length=13, nullable=true, options={"default"="NULL"})
  342.      */
  343.     private $clienteedi 'NULL';
  344.     /**
  345.      * @var string|null
  346.      *
  347.      * @ORM\Column(name="PAGADOREDI", type="string", length=13, nullable=true, options={"default"="NULL"})
  348.      */
  349.     private $pagadoredi 'NULL';
  350.     /**
  351.      * @var string|null
  352.      *
  353.      * @ORM\Column(name="USUARIO", type="string", length=15, nullable=true, options={"default"="NULL"})
  354.      */
  355.     private $usuario 'NULL';
  356.     /**
  357.      * @var string|null
  358.      *
  359.      * @ORM\Column(name="PASS", type="string", length=8, nullable=true, options={"default"="NULL"})
  360.      */
  361.     private $pass 'NULL';
  362.     /**
  363.      * @var int|null
  364.      *
  365.      * @ORM\Column(name="TIPODOC", type="integer", nullable=true, options={"default"="NULL"})
  366.      */
  367.     private $tipodoc NULL;
  368.     /**
  369.      * @var string|null
  370.      *
  371.      * @ORM\Column(name="NUMTARJETA", type="string", length=20, nullable=true, options={"default"="NULL"})
  372.      */
  373.     private $numtarjeta 'NULL';
  374.     /**
  375.      * @var \DateTime|null
  376.      *
  377.      * @ORM\Column(name="FECHANACIMIENTO", type="date", nullable=true, options={"default"="NULL"})
  378.      */
  379.     private $fechanacimiento 'NULL';
  380.     /**
  381.      * @var string|null
  382.      *
  383.      * @ORM\Column(name="SEXO", type="string", length=1, nullable=true, options={"default"="NULL"})
  384.      */
  385.     private $sexo 'NULL';
  386.     /**
  387.      * @var string|null
  388.      *
  389.      * @ORM\Column(name="NIF20", type="string", length=20, nullable=true, options={"default"="NULL"})
  390.      */
  391.     private $nif20 'NULL';
  392.     /**
  393.      * @var string|null
  394.      *
  395.      * @ORM\Column(name="DESCATALOGADO", type="string", length=5, nullable=true, options={"default"="NULL"})
  396.      */
  397.     private $descatalogado 'NULL';
  398.     /**
  399.      * @var int|null
  400.      *
  401.      * @ORM\Column(name="TRANSPORTE", type="integer", nullable=true, options={"default"="NULL"})
  402.      */
  403.     private $transporte NULL;
  404.     /**
  405.      * @var int|null
  406.      *
  407.      * @ORM\Column(name="MESVACACIONES", type="integer", nullable=true, options={"default"="NULL"})
  408.      */
  409.     private $mesvacaciones NULL;
  410.     /**
  411.      * @var int|null
  412.      *
  413.      * @ORM\Column(name="GRUPOIMPRESION", type="integer", nullable=true, options={"default"="NULL"})
  414.      */
  415.     private $grupoimpresion NULL;
  416.     /**
  417.      * @var int|null
  418.      *
  419.      * @ORM\Column(name="NUMCOPIASFACTURA", type="integer", nullable=true, options={"default"="NULL"})
  420.      */
  421.     private $numcopiasfactura NULL;
  422.     /**
  423.      * @var int|null
  424.      *
  425.      * @ORM\Column(name="TIPOCLIENTE", type="integer", nullable=true, options={"default"="NULL"})
  426.      */
  427.     private $tipocliente NULL;
  428.     /**
  429.      * @var string|null
  430.      *
  431.      * @ORM\Column(name="CONDENTREGAEDI", type="string", length=3, nullable=true, options={"default"="NULL"})
  432.      */
  433.     private $condentregaedi 'NULL';
  434.     /**
  435.      * @var string|null
  436.      *
  437.      * @ORM\Column(name="CONDENTREGA", type="string", length=3, nullable=true, options={"default"="NULL"})
  438.      */
  439.     private $condentrega 'NULL';
  440.     /**
  441.      * @var int|null
  442.      *
  443.      * @ORM\Column(name="CODIDIOMA", type="integer", nullable=true, options={"default"="NULL"})
  444.      */
  445.     private $codidioma NULL;
  446.     /**
  447.      * @var string|null
  448.      *
  449.      * @ORM\Column(name="SERIE", type="string", length=4, nullable=true, options={"default"="NULL"})
  450.      */
  451.     private $serie 'NULL';
  452.     /**
  453.      * @var string|null
  454.      *
  455.      * @ORM\Column(name="ALMACEN", type="string", length=3, nullable=true, options={"default"="NULL"})
  456.      */
  457.     private $almacen 'NULL';
  458.     /**
  459.      * @var string|null
  460.      *
  461.      * @ORM\Column(name="LOCAL_REMOTA", type="string", length=1, nullable=true, options={"default"="NULL"})
  462.      */
  463.     private $localRemota 'NULL';
  464.     /**
  465.      * @var int|null
  466.      *
  467.      * @ORM\Column(name="EMPRESA", type="integer", nullable=true, options={"default"="NULL"})
  468.      */
  469.     private $empresa NULL;
  470.     /**
  471.      * @var string|null
  472.      *
  473.      * @ORM\Column(name="CODENTREGA", type="string", length=3, nullable=true, options={"default"="NULL"})
  474.      */
  475.     private $codentrega 'NULL';
  476.     /**
  477.      * @var string|null
  478.      *
  479.      * @ORM\Column(name="PROCEDENCIA", type="string", length=30, nullable=true, options={"default"="NULL"})
  480.      */
  481.     private $procedencia 'NULL';
  482.     /**
  483.      * @var int|null
  484.      *
  485.      * @ORM\Column(name="CODIGOPROCEDENCIA", type="integer", nullable=true, options={"default"="NULL"})
  486.      */
  487.     private $codigoprocedencia NULL;
  488.     /**
  489.      * @var int|null
  490.      *
  491.      * @ORM\Column(name="IDSUCURSAL", type="integer", nullable=true, options={"default"="NULL"})
  492.      */
  493.     private $idsucursal NULL;
  494.     /**
  495.      * @var int|null
  496.      *
  497.      * @ORM\Column(name="CODVISIBLE", type="integer", nullable=true, options={"default"="NULL"})
  498.      */
  499.     private $codvisible NULL;
  500.     /**
  501.      * @var string|null
  502.      *
  503.      * @ORM\Column(name="CODPAIS", type="string", length=2, nullable=true, options={"default"="NULL"})
  504.      */
  505.     private $codpais 'NULL';
  506.     /**
  507.      * @var int|null
  508.      *
  509.      * @ORM\Column(name="B2B_IDMAPPING", type="integer", nullable=true, options={"default"="NULL"})
  510.      */
  511.     private $b2bIdmapping NULL;
  512.     /**
  513.      * @var int|null
  514.      *
  515.      * @ORM\Column(name="FACTURARCONIMPUESTO", type="integer", nullable=true, options={"default"="NULL"})
  516.      */
  517.     private $facturarconimpuesto NULL;
  518.     /**
  519.      * @var string|null
  520.      *
  521.      * @ORM\Column(name="FOTOCLIENTE", type="blob", length=16777215, nullable=true, options={"default"="NULL"})
  522.      */
  523.     private $fotocliente 'NULL';
  524.     /**
  525.      * @var int|null
  526.      *
  527.      * @ORM\Column(name="CARGOSFIJOSA", type="integer", nullable=true, options={"default"="NULL"})
  528.      */
  529.     private $cargosfijosa NULL;
  530.     /**
  531.      * @var int|null
  532.      *
  533.      * @ORM\Column(name="TIPOTARJETA", type="integer", nullable=true, options={"default"="NULL"})
  534.      */
  535.     private $tipotarjeta NULL;
  536.     /**
  537.      * @var string|null
  538.      *
  539.      * @ORM\Column(name="TARCADUCIDAD", type="string", length=4, nullable=true, options={"default"="NULL"})
  540.      */
  541.     private $tarcaducidad 'NULL';
  542.     /**
  543.      * @var string|null
  544.      *
  545.      * @ORM\Column(name="CVC", type="string", length=4, nullable=true, options={"default"="NULL"})
  546.      */
  547.     private $cvc 'NULL';
  548.     /**
  549.      * @var string|null
  550.      *
  551.      * @ORM\Column(name="CODCONTABLEDMN", type="string", length=12, nullable=true, options={"default"="NULL"})
  552.      */
  553.     private $codcontabledmn 'NULL';
  554.     /**
  555.      * @var int|null
  556.      *
  557.      * @ORM\Column(name="DISENYO_CAMPOSLIBRES", type="integer", nullable=true, options={"default"="NULL"})
  558.      */
  559.     private $disenyoCamposlibres NULL;
  560.     /**
  561.      * @var string|null
  562.      *
  563.      * @ORM\Column(name="MOBIL", type="string", length=15, nullable=true, options={"default"="NULL"})
  564.      */
  565.     private $mobil 'NULL';
  566.     /**
  567.      * @var bool|null
  568.      *
  569.      * @ORM\Column(name="NOCALCULARCARGO1ARTIC", type="boolean", nullable=true, options={"default"="NULL"})
  570.      */
  571.     private $nocalcularcargo1artic 'NULL';
  572.     /**
  573.      * @var bool|null
  574.      *
  575.      * @ORM\Column(name="NOCALCULARCARGO2ARTIC", type="boolean", nullable=true, options={"default"="NULL"})
  576.      */
  577.     private $nocalcularcargo2artic 'NULL';
  578.     /**
  579.      * @var string|null
  580.      *
  581.      * @ORM\Column(name="ESCLIENTEDELGRUPO", type="string", length=5, nullable=true, options={"default"="NULL"})
  582.      */
  583.     private $esclientedelgrupo 'NULL';
  584.     /**
  585.      * @var string|null
  586.      *
  587.      * @ORM\Column(name="PASSWORDCOMMERCE", type="string", length=32, nullable=true, options={"default"="NULL"})
  588.      */
  589.     private $passwordcommerce 'NULL';
  590.     /**
  591.      * @var int|null
  592.      *
  593.      * @ORM\Column(name="TIPORESERVA", type="integer", nullable=true, options={"default"="NULL"})
  594.      */
  595.     private $tiporeserva NULL;
  596.     /**
  597.      * @var string|null
  598.      *
  599.      * @ORM\Column(name="REGIMRET", type="string", length=1, nullable=true, options={"default"="NULL"})
  600.      */
  601.     private $regimret 'NULL';
  602.     /**
  603.      * @var int|null
  604.      *
  605.      * @ORM\Column(name="TIPORET", type="integer", nullable=true, options={"default"="NULL"})
  606.      */
  607.     private $tiporet NULL;
  608.     /**
  609.      * @var int|null
  610.      *
  611.      * @ORM\Column(name="RET_TIPORETENCIONIVA", type="integer", nullable=true, options={"default"="NULL"})
  612.      */
  613.     private $retTiporetencioniva NULL;
  614.     /**
  615.      * @var float|null
  616.      *
  617.      * @ORM\Column(name="RET_PORCEXCLUSION", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  618.      */
  619.     private $retPorcexclusion NULL;
  620.     /**
  621.      * @var \DateTime|null
  622.      *
  623.      * @ORM\Column(name="RET_FECHAINIEXCLUSION", type="datetime", nullable=true, options={"default"="NULL"})
  624.      */
  625.     private $retFechainiexclusion 'NULL';
  626.     /**
  627.      * @var \DateTime|null
  628.      *
  629.      * @ORM\Column(name="RET_FECHAFINEXCLUSION", type="datetime", nullable=true, options={"default"="NULL"})
  630.      */
  631.     private $retFechafinexclusion 'NULL';
  632.     /**
  633.      * @var bool|null
  634.      *
  635.      * @ORM\Column(name="CAMPOSLIBRESTOTALIZAR", type="boolean", nullable=true, options={"default"="NULL"})
  636.      */
  637.     private $camposlibrestotalizar 'NULL';
  638.     /**
  639.      * @var int|null
  640.      *
  641.      * @ORM\Column(name="CODCLIASOC", type="integer", nullable=true, options={"default"="NULL"})
  642.      */
  643.     private $codcliasoc NULL;
  644.     /**
  645.      * @var int|null
  646.      *
  647.      * @ORM\Column(name="CARGOSEXTRASA", type="integer", nullable=true, options={"default"="NULL"})
  648.      */
  649.     private $cargosextrasa NULL;
  650.     /**
  651.      * @var float|null
  652.      *
  653.      * @ORM\Column(name="COMISION", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  654.      */
  655.     private $comision NULL;
  656.     /**
  657.      * @var int|null
  658.      *
  659.      * @ORM\Column(name="PROVEEDORCOMISION", type="integer", nullable=true, options={"default"="NULL"})
  660.      */
  661.     private $proveedorcomision NULL;
  662.     /**
  663.      * @var bool|null
  664.      *
  665.      * @ORM\Column(name="COMISIONESFACTURABLES", type="boolean", nullable=true, options={"default"="NULL"})
  666.      */
  667.     private $comisionesfacturables 'NULL';
  668.     /**
  669.      * @var bool|null
  670.      *
  671.      * @ORM\Column(name="LOCALIZADOROBLIGATORIO", type="boolean", nullable=true, options={"default"="NULL"})
  672.      */
  673.     private $localizadorobligatorio 'NULL';
  674.     /**
  675.      * @var bool|null
  676.      *
  677.      * @ORM\Column(name="RECC", type="boolean", nullable=true, options={"default"="NULL"})
  678.      */
  679.     private $recc 'NULL';
  680.     /**
  681.      * @var string|null
  682.      *
  683.      * @ORM\Column(name="BLOQUEADO", type="string", length=5, nullable=true, options={"default"="NULL"})
  684.      */
  685.     private $bloqueado 'NULL';
  686.     /**
  687.      * @var string|null
  688.      *
  689.      * @ORM\Column(name="ORDENADEUDO", type="string", length=35, nullable=true, options={"default"="NULL"})
  690.      */
  691.     private $ordenadeudo 'NULL';
  692.     /**
  693.      * @var int|null
  694.      *
  695.      * @ORM\Column(name="SUBNORMA", type="integer", nullable=true, options={"default"="NULL"})
  696.      */
  697.     private $subnorma NULL;
  698.     /**
  699.      * @var int|null
  700.      *
  701.      * @ORM\Column(name="SECUENCIAADEUDO", type="integer", nullable=true, options={"default"="NULL"})
  702.      */
  703.     private $secuenciaadeudo NULL;
  704.     /**
  705.      * @var string|null
  706.      *
  707.      * @ORM\Column(name="CODIGOIBAN", type="string", length=100, nullable=true, options={"default"="NULL"})
  708.      */
  709.     private $codigoiban 'NULL';
  710.     /**
  711.      * @var \DateTime|null
  712.      *
  713.      * @ORM\Column(name="FECHAFIRMAORDENADEUDO", type="datetime", nullable=true, options={"default"="NULL"})
  714.      */
  715.     private $fechafirmaordenadeudo 'NULL';
  716.     /**
  717.      * @var int|null
  718.      *
  719.      * @ORM\Column(name="TIPODOCIDENT", type="integer", nullable=true, options={"default"="NULL"})
  720.      */
  721.     private $tipodocident NULL;
  722.     /**
  723.      * @var string|null
  724.      *
  725.      * @ORM\Column(name="PERSONAJURIDICA", type="string", length=1, nullable=true, options={"default"="NULL"})
  726.      */
  727.     private $personajuridica 'NULL';
  728.     /**
  729.      * @var bool|null
  730.      *
  731.      * @ORM\Column(name="RECIBIRINFORMACION", type="boolean", nullable=true, options={"default"="NULL"})
  732.      */
  733.     private $recibirinformacion 'NULL';
  734.     /**
  735.      * @var bool|null
  736.      *
  737.      * @ORM\Column(name="CONFIRMACIONRESERVACOMPLETA", type="boolean", nullable=true, options={"default"="NULL"})
  738.      */
  739.     private $confirmacionreservacompleta 'NULL';
  740.     /**
  741.      * @var int|null
  742.      *
  743.      * @ORM\Column(name="CONFIRMACIONRESERVADISENYO", type="integer", nullable=true, options={"default"="NULL"})
  744.      */
  745.     private $confirmacionreservadisenyo NULL;
  746.     /**
  747.      * @var int|null
  748.      *
  749.      * @ORM\Column(name="CONFIRMACIONRESERVAPLANTILLACOMPLETA", type="integer", nullable=true, options={"default"="NULL"})
  750.      */
  751.     private $confirmacionreservaplantillacompleta NULL;
  752.     /**
  753.      * @var int|null
  754.      *
  755.      * @ORM\Column(name="CONFIRMACIONRESERVAPLANTILLASIMPLE", type="integer", nullable=true, options={"default"="NULL"})
  756.      */
  757.     private $confirmacionreservaplantillasimple NULL;
  758.     /**
  759.      * @var string|null
  760.      *
  761.      * @ORM\Column(name="MAXIMOVENTA_APLICAR", type="string", length=10, nullable=true, options={"default"="NULL"})
  762.      */
  763.     private $maximoventaAplicar 'NULL';
  764.     /**
  765.      * @var float|null
  766.      *
  767.      * @ORM\Column(name="MAXIMOVENTA_IMPORTE", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  768.      */
  769.     private $maximoventaImporte NULL;
  770.     /**
  771.      * @var int|null
  772.      *
  773.      * @ORM\Column(name="MAXIMOVENTA_CODMONEDA", type="integer", nullable=true, options={"default"="NULL"})
  774.      */
  775.     private $maximoventaCodmoneda NULL;
  776.     /**
  777.      * @var int|null
  778.      *
  779.      * @ORM\Column(name="TIPOOPERACION", type="integer", nullable=true, options={"default"="NULL"})
  780.      */
  781.     private $tipooperacion NULL;
  782.     /**
  783.      * @var string|null
  784.      *
  785.      * @ORM\Column(name="VERSION", type="blob", length=16777215, nullable=true, options={"default"="NULL"})
  786.      */
  787.     private $version 'NULL';
  788.     public function getCodcliente(): ?int
  789.     {
  790.         return $this->codcliente;
  791.     }
  792.     public function setCodcliente(int $codcliente): self
  793.     {
  794.         $this->codcliente $codcliente;
  795.         return $this;
  796.     }
  797.     public function getCodcontable(): ?string
  798.     {
  799.         return $this->codcontable;
  800.     }
  801.     public function setCodcontable(?string $codcontable): self
  802.     {
  803.         $this->codcontable $codcontable;
  804.         return $this;
  805.     }
  806.     public function getNombrecliente(): ?string
  807.     {
  808.         return $this->nombrecliente;
  809.     }
  810.     public function setNombrecliente(?string $nombrecliente): self
  811.     {
  812.         $this->nombrecliente $nombrecliente;
  813.         return $this;
  814.     }
  815.     public function getNombrecomercial(): ?string
  816.     {
  817.         return $this->nombrecomercial;
  818.     }
  819.     public function setNombrecomercial(?string $nombrecomercial): self
  820.     {
  821.         $this->nombrecomercial $nombrecomercial;
  822.         return $this;
  823.     }
  824.     public function getCif(): ?string
  825.     {
  826.         return $this->cif;
  827.     }
  828.     public function setCif(?string $cif): self
  829.     {
  830.         $this->cif $cif;
  831.         return $this;
  832.     }
  833.     public function getAlias(): ?string
  834.     {
  835.         return $this->alias;
  836.     }
  837.     public function setAlias(?string $alias): self
  838.     {
  839.         $this->alias $alias;
  840.         return $this;
  841.     }
  842.     public function getDireccion1(): ?string
  843.     {
  844.         return $this->direccion1;
  845.     }
  846.     public function setDireccion1(?string $direccion1): self
  847.     {
  848.         $this->direccion1 $direccion1;
  849.         return $this;
  850.     }
  851.     public function getCodpostal(): ?string
  852.     {
  853.         return $this->codpostal;
  854.     }
  855.     public function setCodpostal(?string $codpostal): self
  856.     {
  857.         $this->codpostal $codpostal;
  858.         return $this;
  859.     }
  860.     public function getPoblacion(): ?string
  861.     {
  862.         return $this->poblacion;
  863.     }
  864.     public function setPoblacion(?string $poblacion): self
  865.     {
  866.         $this->poblacion $poblacion;
  867.         return $this;
  868.     }
  869.     public function getProvincia(): ?string
  870.     {
  871.         return $this->provincia;
  872.     }
  873.     public function setProvincia(?string $provincia): self
  874.     {
  875.         $this->provincia $provincia;
  876.         return $this;
  877.     }
  878.     public function getPais(): ?string
  879.     {
  880.         return $this->pais;
  881.     }
  882.     public function setPais(?string $pais): self
  883.     {
  884.         $this->pais $pais;
  885.         return $this;
  886.     }
  887.     public function getPersonacontacto(): ?string
  888.     {
  889.         return $this->personacontacto;
  890.     }
  891.     public function setPersonacontacto(?string $personacontacto): self
  892.     {
  893.         $this->personacontacto $personacontacto;
  894.         return $this;
  895.     }
  896.     public function getTelefono1(): ?string
  897.     {
  898.         return $this->telefono1;
  899.     }
  900.     public function setTelefono1(?string $telefono1): self
  901.     {
  902.         $this->telefono1 $telefono1;
  903.         return $this;
  904.     }
  905.     public function getTelefono2(): ?string
  906.     {
  907.         return $this->telefono2;
  908.     }
  909.     public function setTelefono2(?string $telefono2): self
  910.     {
  911.         $this->telefono2 $telefono2;
  912.         return $this;
  913.     }
  914.     public function getFax(): ?string
  915.     {
  916.         return $this->fax;
  917.     }
  918.     public function setFax(?string $fax): self
  919.     {
  920.         $this->fax $fax;
  921.         return $this;
  922.     }
  923.     public function getFaxpedidos(): ?string
  924.     {
  925.         return $this->faxpedidos;
  926.     }
  927.     public function setFaxpedidos(?string $faxpedidos): self
  928.     {
  929.         $this->faxpedidos $faxpedidos;
  930.         return $this;
  931.     }
  932.     public function getTelex(): ?string
  933.     {
  934.         return $this->telex;
  935.     }
  936.     public function setTelex(?string $telex): self
  937.     {
  938.         $this->telex $telex;
  939.         return $this;
  940.     }
  941.     public function getEMail(): ?string
  942.     {
  943.         return $this->eMail;
  944.     }
  945.     public function setEMail(?string $eMail): self
  946.     {
  947.         $this->eMail $eMail;
  948.         return $this;
  949.     }
  950.     public function getCodclisuyo(): ?string
  951.     {
  952.         return $this->codclisuyo;
  953.     }
  954.     public function setCodclisuyo(?string $codclisuyo): self
  955.     {
  956.         $this->codclisuyo $codclisuyo;
  957.         return $this;
  958.     }
  959.     public function getNumcuenta(): ?string
  960.     {
  961.         return $this->numcuenta;
  962.     }
  963.     public function setNumcuenta(?string $numcuenta): self
  964.     {
  965.         $this->numcuenta $numcuenta;
  966.         return $this;
  967.     }
  968.     public function getCodbanco(): ?string
  969.     {
  970.         return $this->codbanco;
  971.     }
  972.     public function setCodbanco(?string $codbanco): self
  973.     {
  974.         $this->codbanco $codbanco;
  975.         return $this;
  976.     }
  977.     public function getNumsucursal(): ?string
  978.     {
  979.         return $this->numsucursal;
  980.     }
  981.     public function setNumsucursal(?string $numsucursal): self
  982.     {
  983.         $this->numsucursal $numsucursal;
  984.         return $this;
  985.     }
  986.     public function getDigcontrolbanco(): ?string
  987.     {
  988.         return $this->digcontrolbanco;
  989.     }
  990.     public function setDigcontrolbanco(?string $digcontrolbanco): self
  991.     {
  992.         $this->digcontrolbanco $digcontrolbanco;
  993.         return $this;
  994.     }
  995.     public function getCodpostalbanco(): ?string
  996.     {
  997.         return $this->codpostalbanco;
  998.     }
  999.     public function setCodpostalbanco(?string $codpostalbanco): self
  1000.     {
  1001.         $this->codpostalbanco $codpostalbanco;
  1002.         return $this;
  1003.     }
  1004.     public function getCodswift(): ?string
  1005.     {
  1006.         return $this->codswift;
  1007.     }
  1008.     public function setCodswift(?string $codswift): self
  1009.     {
  1010.         $this->codswift $codswift;
  1011.         return $this;
  1012.     }
  1013.     public function getNombrebanco(): ?string
  1014.     {
  1015.         return $this->nombrebanco;
  1016.     }
  1017.     public function setNombrebanco(?string $nombrebanco): self
  1018.     {
  1019.         $this->nombrebanco $nombrebanco;
  1020.         return $this;
  1021.     }
  1022.     public function getDireccionbanco(): ?string
  1023.     {
  1024.         return $this->direccionbanco;
  1025.     }
  1026.     public function setDireccionbanco(?string $direccionbanco): self
  1027.     {
  1028.         $this->direccionbanco $direccionbanco;
  1029.         return $this;
  1030.     }
  1031.     public function getPoblacionbanco(): ?string
  1032.     {
  1033.         return $this->poblacionbanco;
  1034.     }
  1035.     public function setPoblacionbanco(?string $poblacionbanco): self
  1036.     {
  1037.         $this->poblacionbanco $poblacionbanco;
  1038.         return $this;
  1039.     }
  1040.     public function getEnviopor(): ?string
  1041.     {
  1042.         return $this->enviopor;
  1043.     }
  1044.     public function setEnviopor(?string $enviopor): self
  1045.     {
  1046.         $this->enviopor $enviopor;
  1047.         return $this;
  1048.     }
  1049.     public function getEnviodirecion(): ?string
  1050.     {
  1051.         return $this->enviodirecion;
  1052.     }
  1053.     public function setEnviodirecion(?string $enviodirecion): self
  1054.     {
  1055.         $this->enviodirecion $enviodirecion;
  1056.         return $this;
  1057.     }
  1058.     public function getEnviocodpostal(): ?string
  1059.     {
  1060.         return $this->enviocodpostal;
  1061.     }
  1062.     public function setEnviocodpostal(?string $enviocodpostal): self
  1063.     {
  1064.         $this->enviocodpostal $enviocodpostal;
  1065.         return $this;
  1066.     }
  1067.     public function getEnviopoblacion(): ?string
  1068.     {
  1069.         return $this->enviopoblacion;
  1070.     }
  1071.     public function setEnviopoblacion(?string $enviopoblacion): self
  1072.     {
  1073.         $this->enviopoblacion $enviopoblacion;
  1074.         return $this;
  1075.     }
  1076.     public function getEnvioprovincia(): ?string
  1077.     {
  1078.         return $this->envioprovincia;
  1079.     }
  1080.     public function setEnvioprovincia(?string $envioprovincia): self
  1081.     {
  1082.         $this->envioprovincia $envioprovincia;
  1083.         return $this;
  1084.     }
  1085.     public function getEnviopais(): ?string
  1086.     {
  1087.         return $this->enviopais;
  1088.     }
  1089.     public function setEnviopais(?string $enviopais): self
  1090.     {
  1091.         $this->enviopais $enviopais;
  1092.         return $this;
  1093.     }
  1094.     public function getCantportespag(): ?float
  1095.     {
  1096.         return $this->cantportespag;
  1097.     }
  1098.     public function setCantportespag(?float $cantportespag): self
  1099.     {
  1100.         $this->cantportespag $cantportespag;
  1101.         return $this;
  1102.     }
  1103.     public function getTipoportes(): ?string
  1104.     {
  1105.         return $this->tipoportes;
  1106.     }
  1107.     public function setTipoportes(?string $tipoportes): self
  1108.     {
  1109.         $this->tipoportes $tipoportes;
  1110.         return $this;
  1111.     }
  1112.     public function getNumdiasentrega(): ?float
  1113.     {
  1114.         return $this->numdiasentrega;
  1115.     }
  1116.     public function setNumdiasentrega(?float $numdiasentrega): self
  1117.     {
  1118.         $this->numdiasentrega $numdiasentrega;
  1119.         return $this;
  1120.     }
  1121.     public function getRiesgoconcedido(): ?float
  1122.     {
  1123.         return $this->riesgoconcedido;
  1124.     }
  1125.     public function setRiesgoconcedido(?float $riesgoconcedido): self
  1126.     {
  1127.         $this->riesgoconcedido $riesgoconcedido;
  1128.         return $this;
  1129.     }
  1130.     public function getTipo(): ?int
  1131.     {
  1132.         return $this->tipo;
  1133.     }
  1134.     public function setTipo(?int $tipo): self
  1135.     {
  1136.         $this->tipo $tipo;
  1137.         return $this;
  1138.     }
  1139.     public function getRecargo(): ?string
  1140.     {
  1141.         return $this->recargo;
  1142.     }
  1143.     public function setRecargo(?string $recargo): self
  1144.     {
  1145.         $this->recargo $recargo;
  1146.         return $this;
  1147.     }
  1148.     public function getZona(): ?string
  1149.     {
  1150.         return $this->zona;
  1151.     }
  1152.     public function setZona(?string $zona): self
  1153.     {
  1154.         $this->zona $zona;
  1155.         return $this;
  1156.     }
  1157.     public function getCodvendedor(): ?float
  1158.     {
  1159.         return $this->codvendedor;
  1160.     }
  1161.     public function setCodvendedor(?float $codvendedor): self
  1162.     {
  1163.         $this->codvendedor $codvendedor;
  1164.         return $this;
  1165.     }
  1166.     public function getDiapago1(): ?int
  1167.     {
  1168.         return $this->diapago1;
  1169.     }
  1170.     public function setDiapago1(?int $diapago1): self
  1171.     {
  1172.         $this->diapago1 $diapago1;
  1173.         return $this;
  1174.     }
  1175.     public function getDiapago2(): ?int
  1176.     {
  1177.         return $this->diapago2;
  1178.     }
  1179.     public function setDiapago2(?int $diapago2): self
  1180.     {
  1181.         $this->diapago2 $diapago2;
  1182.         return $this;
  1183.     }
  1184.     public function getObservaciones(): ?string
  1185.     {
  1186.         return $this->observaciones;
  1187.     }
  1188.     public function setObservaciones(?string $observaciones): self
  1189.     {
  1190.         $this->observaciones $observaciones;
  1191.         return $this;
  1192.     }
  1193.     public function getFacturarsinimpuestos(): ?string
  1194.     {
  1195.         return $this->facturarsinimpuestos;
  1196.     }
  1197.     public function setFacturarsinimpuestos(?string $facturarsinimpuestos): self
  1198.     {
  1199.         $this->facturarsinimpuestos $facturarsinimpuestos;
  1200.         return $this;
  1201.     }
  1202.     public function getApdocorreos(): ?string
  1203.     {
  1204.         return $this->apdocorreos;
  1205.     }
  1206.     public function setApdocorreos(?string $apdocorreos): self
  1207.     {
  1208.         $this->apdocorreos $apdocorreos;
  1209.         return $this;
  1210.     }
  1211.     public function getDtocomercial(): ?string
  1212.     {
  1213.         return $this->dtocomercial;
  1214.     }
  1215.     public function setDtocomercial(?string $dtocomercial): self
  1216.     {
  1217.         $this->dtocomercial $dtocomercial;
  1218.         return $this;
  1219.     }
  1220.     public function getFechamodificado(): ?\DateTimeInterface
  1221.     {
  1222.         return $this->fechamodificado;
  1223.     }
  1224.     public function setFechamodificado(?\DateTimeInterface $fechamodificado): self
  1225.     {
  1226.         $this->fechamodificado $fechamodificado;
  1227.         return $this;
  1228.     }
  1229.     public function getRegimfact(): ?string
  1230.     {
  1231.         return $this->regimfact;
  1232.     }
  1233.     public function setRegimfact(?string $regimfact): self
  1234.     {
  1235.         $this->regimfact $regimfact;
  1236.         return $this;
  1237.     }
  1238.     public function getCodmoneda(): ?int
  1239.     {
  1240.         return $this->codmoneda;
  1241.     }
  1242.     public function setCodmoneda(?int $codmoneda): self
  1243.     {
  1244.         $this->codmoneda $codmoneda;
  1245.         return $this;
  1246.     }
  1247.     public function getDireccion2(): ?string
  1248.     {
  1249.         return $this->direccion2;
  1250.     }
  1251.     public function setDireccion2(?string $direccion2): self
  1252.     {
  1253.         $this->direccion2 $direccion2;
  1254.         return $this;
  1255.     }
  1256.     public function getCompradoredi(): ?string
  1257.     {
  1258.         return $this->compradoredi;
  1259.     }
  1260.     public function setCompradoredi(?string $compradoredi): self
  1261.     {
  1262.         $this->compradoredi $compradoredi;
  1263.         return $this;
  1264.     }
  1265.     public function getReceptoredi(): ?string
  1266.     {
  1267.         return $this->receptoredi;
  1268.     }
  1269.     public function setReceptoredi(?string $receptoredi): self
  1270.     {
  1271.         $this->receptoredi $receptoredi;
  1272.         return $this;
  1273.     }
  1274.     public function getClienteedi(): ?string
  1275.     {
  1276.         return $this->clienteedi;
  1277.     }
  1278.     public function setClienteedi(?string $clienteedi): self
  1279.     {
  1280.         $this->clienteedi $clienteedi;
  1281.         return $this;
  1282.     }
  1283.     public function getPagadoredi(): ?string
  1284.     {
  1285.         return $this->pagadoredi;
  1286.     }
  1287.     public function setPagadoredi(?string $pagadoredi): self
  1288.     {
  1289.         $this->pagadoredi $pagadoredi;
  1290.         return $this;
  1291.     }
  1292.     public function getUsuario(): ?string
  1293.     {
  1294.         return $this->usuario;
  1295.     }
  1296.     public function setUsuario(?string $usuario): self
  1297.     {
  1298.         $this->usuario $usuario;
  1299.         return $this;
  1300.     }
  1301.     public function getPass(): ?string
  1302.     {
  1303.         return $this->pass;
  1304.     }
  1305.     public function setPass(?string $pass): self
  1306.     {
  1307.         $this->pass $pass;
  1308.         return $this;
  1309.     }
  1310.     public function getTipodoc(): ?int
  1311.     {
  1312.         return $this->tipodoc;
  1313.     }
  1314.     public function setTipodoc(?int $tipodoc): self
  1315.     {
  1316.         $this->tipodoc $tipodoc;
  1317.         return $this;
  1318.     }
  1319.     public function getNumtarjeta(): ?string
  1320.     {
  1321.         return $this->numtarjeta;
  1322.     }
  1323.     public function setNumtarjeta(?string $numtarjeta): self
  1324.     {
  1325.         $this->numtarjeta $numtarjeta;
  1326.         return $this;
  1327.     }
  1328.     public function getFechanacimiento(): ?\DateTimeInterface
  1329.     {
  1330.         return $this->fechanacimiento;
  1331.     }
  1332.     public function setFechanacimiento(?\DateTimeInterface $fechanacimiento): self
  1333.     {
  1334.         $this->fechanacimiento $fechanacimiento;
  1335.         return $this;
  1336.     }
  1337.     public function getSexo(): ?string
  1338.     {
  1339.         return $this->sexo;
  1340.     }
  1341.     public function setSexo(?string $sexo): self
  1342.     {
  1343.         $this->sexo $sexo;
  1344.         return $this;
  1345.     }
  1346.     public function getNif20(): ?string
  1347.     {
  1348.         return $this->nif20;
  1349.     }
  1350.     public function setNif20(?string $nif20): self
  1351.     {
  1352.         $this->nif20 $nif20;
  1353.         return $this;
  1354.     }
  1355.     public function getDescatalogado(): ?string
  1356.     {
  1357.         return $this->descatalogado;
  1358.     }
  1359.     public function setDescatalogado(?string $descatalogado): self
  1360.     {
  1361.         $this->descatalogado $descatalogado;
  1362.         return $this;
  1363.     }
  1364.     public function getTransporte(): ?int
  1365.     {
  1366.         return $this->transporte;
  1367.     }
  1368.     public function setTransporte(?int $transporte): self
  1369.     {
  1370.         $this->transporte $transporte;
  1371.         return $this;
  1372.     }
  1373.     public function getMesvacaciones(): ?int
  1374.     {
  1375.         return $this->mesvacaciones;
  1376.     }
  1377.     public function setMesvacaciones(?int $mesvacaciones): self
  1378.     {
  1379.         $this->mesvacaciones $mesvacaciones;
  1380.         return $this;
  1381.     }
  1382.     public function getGrupoimpresion(): ?int
  1383.     {
  1384.         return $this->grupoimpresion;
  1385.     }
  1386.     public function setGrupoimpresion(?int $grupoimpresion): self
  1387.     {
  1388.         $this->grupoimpresion $grupoimpresion;
  1389.         return $this;
  1390.     }
  1391.     public function getNumcopiasfactura(): ?int
  1392.     {
  1393.         return $this->numcopiasfactura;
  1394.     }
  1395.     public function setNumcopiasfactura(?int $numcopiasfactura): self
  1396.     {
  1397.         $this->numcopiasfactura $numcopiasfactura;
  1398.         return $this;
  1399.     }
  1400.     public function getTipocliente(): ?int
  1401.     {
  1402.         return $this->tipocliente;
  1403.     }
  1404.     public function setTipocliente(?int $tipocliente): self
  1405.     {
  1406.         $this->tipocliente $tipocliente;
  1407.         return $this;
  1408.     }
  1409.     public function getCondentregaedi(): ?string
  1410.     {
  1411.         return $this->condentregaedi;
  1412.     }
  1413.     public function setCondentregaedi(?string $condentregaedi): self
  1414.     {
  1415.         $this->condentregaedi $condentregaedi;
  1416.         return $this;
  1417.     }
  1418.     public function getCondentrega(): ?string
  1419.     {
  1420.         return $this->condentrega;
  1421.     }
  1422.     public function setCondentrega(?string $condentrega): self
  1423.     {
  1424.         $this->condentrega $condentrega;
  1425.         return $this;
  1426.     }
  1427.     public function getCodidioma(): ?int
  1428.     {
  1429.         return $this->codidioma;
  1430.     }
  1431.     public function setCodidioma(?int $codidioma): self
  1432.     {
  1433.         $this->codidioma $codidioma;
  1434.         return $this;
  1435.     }
  1436.     public function getSerie(): ?string
  1437.     {
  1438.         return $this->serie;
  1439.     }
  1440.     public function setSerie(?string $serie): self
  1441.     {
  1442.         $this->serie $serie;
  1443.         return $this;
  1444.     }
  1445.     public function getAlmacen(): ?string
  1446.     {
  1447.         return $this->almacen;
  1448.     }
  1449.     public function setAlmacen(?string $almacen): self
  1450.     {
  1451.         $this->almacen $almacen;
  1452.         return $this;
  1453.     }
  1454.     public function getLocalRemota(): ?string
  1455.     {
  1456.         return $this->localRemota;
  1457.     }
  1458.     public function setLocalRemota(?string $localRemota): self
  1459.     {
  1460.         $this->localRemota $localRemota;
  1461.         return $this;
  1462.     }
  1463.     public function getEmpresa(): ?int
  1464.     {
  1465.         return $this->empresa;
  1466.     }
  1467.     public function setEmpresa(?int $empresa): self
  1468.     {
  1469.         $this->empresa $empresa;
  1470.         return $this;
  1471.     }
  1472.     public function getCodentrega(): ?string
  1473.     {
  1474.         return $this->codentrega;
  1475.     }
  1476.     public function setCodentrega(?string $codentrega): self
  1477.     {
  1478.         $this->codentrega $codentrega;
  1479.         return $this;
  1480.     }
  1481.     public function getProcedencia(): ?string
  1482.     {
  1483.         return $this->procedencia;
  1484.     }
  1485.     public function setProcedencia(?string $procedencia): self
  1486.     {
  1487.         $this->procedencia $procedencia;
  1488.         return $this;
  1489.     }
  1490.     public function getCodigoprocedencia(): ?int
  1491.     {
  1492.         return $this->codigoprocedencia;
  1493.     }
  1494.     public function setCodigoprocedencia(?int $codigoprocedencia): self
  1495.     {
  1496.         $this->codigoprocedencia $codigoprocedencia;
  1497.         return $this;
  1498.     }
  1499.     public function getIdsucursal(): ?int
  1500.     {
  1501.         return $this->idsucursal;
  1502.     }
  1503.     public function setIdsucursal(?int $idsucursal): self
  1504.     {
  1505.         $this->idsucursal $idsucursal;
  1506.         return $this;
  1507.     }
  1508.     public function getCodvisible(): ?int
  1509.     {
  1510.         return $this->codvisible;
  1511.     }
  1512.     public function setCodvisible(?int $codvisible): self
  1513.     {
  1514.         $this->codvisible $codvisible;
  1515.         return $this;
  1516.     }
  1517.     public function getCodpais(): ?string
  1518.     {
  1519.         return $this->codpais;
  1520.     }
  1521.     public function setCodpais(?string $codpais): self
  1522.     {
  1523.         $this->codpais $codpais;
  1524.         return $this;
  1525.     }
  1526.     public function getB2bIdmapping(): ?int
  1527.     {
  1528.         return $this->b2bIdmapping;
  1529.     }
  1530.     public function setB2bIdmapping(?int $b2bIdmapping): self
  1531.     {
  1532.         $this->b2bIdmapping $b2bIdmapping;
  1533.         return $this;
  1534.     }
  1535.     public function getFacturarconimpuesto(): ?int
  1536.     {
  1537.         return $this->facturarconimpuesto;
  1538.     }
  1539.     public function setFacturarconimpuesto(?int $facturarconimpuesto): self
  1540.     {
  1541.         $this->facturarconimpuesto $facturarconimpuesto;
  1542.         return $this;
  1543.     }
  1544.     public function getFotocliente()
  1545.     {
  1546.         return $this->fotocliente;
  1547.     }
  1548.     public function setFotocliente($fotocliente): self
  1549.     {
  1550.         $this->fotocliente $fotocliente;
  1551.         return $this;
  1552.     }
  1553.     public function getCargosfijosa(): ?int
  1554.     {
  1555.         return $this->cargosfijosa;
  1556.     }
  1557.     public function setCargosfijosa(?int $cargosfijosa): self
  1558.     {
  1559.         $this->cargosfijosa $cargosfijosa;
  1560.         return $this;
  1561.     }
  1562.     public function getTipotarjeta(): ?int
  1563.     {
  1564.         return $this->tipotarjeta;
  1565.     }
  1566.     public function setTipotarjeta(?int $tipotarjeta): self
  1567.     {
  1568.         $this->tipotarjeta $tipotarjeta;
  1569.         return $this;
  1570.     }
  1571.     public function getTarcaducidad(): ?string
  1572.     {
  1573.         return $this->tarcaducidad;
  1574.     }
  1575.     public function setTarcaducidad(?string $tarcaducidad): self
  1576.     {
  1577.         $this->tarcaducidad $tarcaducidad;
  1578.         return $this;
  1579.     }
  1580.     public function getCvc(): ?string
  1581.     {
  1582.         return $this->cvc;
  1583.     }
  1584.     public function setCvc(?string $cvc): self
  1585.     {
  1586.         $this->cvc $cvc;
  1587.         return $this;
  1588.     }
  1589.     public function getCodcontabledmn(): ?string
  1590.     {
  1591.         return $this->codcontabledmn;
  1592.     }
  1593.     public function setCodcontabledmn(?string $codcontabledmn): self
  1594.     {
  1595.         $this->codcontabledmn $codcontabledmn;
  1596.         return $this;
  1597.     }
  1598.     public function getDisenyoCamposlibres(): ?int
  1599.     {
  1600.         return $this->disenyoCamposlibres;
  1601.     }
  1602.     public function setDisenyoCamposlibres(?int $disenyoCamposlibres): self
  1603.     {
  1604.         $this->disenyoCamposlibres $disenyoCamposlibres;
  1605.         return $this;
  1606.     }
  1607.     public function getMobil(): ?string
  1608.     {
  1609.         return $this->mobil;
  1610.     }
  1611.     public function setMobil(?string $mobil): self
  1612.     {
  1613.         $this->mobil $mobil;
  1614.         return $this;
  1615.     }
  1616.     public function getNocalcularcargo1artic(): ?bool
  1617.     {
  1618.         return $this->nocalcularcargo1artic;
  1619.     }
  1620.     public function setNocalcularcargo1artic(?bool $nocalcularcargo1artic): self
  1621.     {
  1622.         $this->nocalcularcargo1artic $nocalcularcargo1artic;
  1623.         return $this;
  1624.     }
  1625.     public function getNocalcularcargo2artic(): ?bool
  1626.     {
  1627.         return $this->nocalcularcargo2artic;
  1628.     }
  1629.     public function setNocalcularcargo2artic(?bool $nocalcularcargo2artic): self
  1630.     {
  1631.         $this->nocalcularcargo2artic $nocalcularcargo2artic;
  1632.         return $this;
  1633.     }
  1634.     public function getEsclientedelgrupo(): ?string
  1635.     {
  1636.         return $this->esclientedelgrupo;
  1637.     }
  1638.     public function setEsclientedelgrupo(?string $esclientedelgrupo): self
  1639.     {
  1640.         $this->esclientedelgrupo $esclientedelgrupo;
  1641.         return $this;
  1642.     }
  1643.     public function getPasswordcommerce(): ?string
  1644.     {
  1645.         return $this->passwordcommerce;
  1646.     }
  1647.     public function setPasswordcommerce(?string $passwordcommerce): self
  1648.     {
  1649.         $this->passwordcommerce $passwordcommerce;
  1650.         return $this;
  1651.     }
  1652.     public function getTiporeserva(): ?int
  1653.     {
  1654.         return $this->tiporeserva;
  1655.     }
  1656.     public function setTiporeserva(?int $tiporeserva): self
  1657.     {
  1658.         $this->tiporeserva $tiporeserva;
  1659.         return $this;
  1660.     }
  1661.     public function getRegimret(): ?string
  1662.     {
  1663.         return $this->regimret;
  1664.     }
  1665.     public function setRegimret(?string $regimret): self
  1666.     {
  1667.         $this->regimret $regimret;
  1668.         return $this;
  1669.     }
  1670.     public function getTiporet(): ?int
  1671.     {
  1672.         return $this->tiporet;
  1673.     }
  1674.     public function setTiporet(?int $tiporet): self
  1675.     {
  1676.         $this->tiporet $tiporet;
  1677.         return $this;
  1678.     }
  1679.     public function getRetTiporetencioniva(): ?int
  1680.     {
  1681.         return $this->retTiporetencioniva;
  1682.     }
  1683.     public function setRetTiporetencioniva(?int $retTiporetencioniva): self
  1684.     {
  1685.         $this->retTiporetencioniva $retTiporetencioniva;
  1686.         return $this;
  1687.     }
  1688.     public function getRetPorcexclusion(): ?float
  1689.     {
  1690.         return $this->retPorcexclusion;
  1691.     }
  1692.     public function setRetPorcexclusion(?float $retPorcexclusion): self
  1693.     {
  1694.         $this->retPorcexclusion $retPorcexclusion;
  1695.         return $this;
  1696.     }
  1697.     public function getRetFechainiexclusion(): ?\DateTimeInterface
  1698.     {
  1699.         return $this->retFechainiexclusion;
  1700.     }
  1701.     public function setRetFechainiexclusion(?\DateTimeInterface $retFechainiexclusion): self
  1702.     {
  1703.         $this->retFechainiexclusion $retFechainiexclusion;
  1704.         return $this;
  1705.     }
  1706.     public function getRetFechafinexclusion(): ?\DateTimeInterface
  1707.     {
  1708.         return $this->retFechafinexclusion;
  1709.     }
  1710.     public function setRetFechafinexclusion(?\DateTimeInterface $retFechafinexclusion): self
  1711.     {
  1712.         $this->retFechafinexclusion $retFechafinexclusion;
  1713.         return $this;
  1714.     }
  1715.     public function getCamposlibrestotalizar(): ?bool
  1716.     {
  1717.         return $this->camposlibrestotalizar;
  1718.     }
  1719.     public function setCamposlibrestotalizar(?bool $camposlibrestotalizar): self
  1720.     {
  1721.         $this->camposlibrestotalizar $camposlibrestotalizar;
  1722.         return $this;
  1723.     }
  1724.     public function getCodcliasoc(): ?int
  1725.     {
  1726.         return $this->codcliasoc;
  1727.     }
  1728.     public function setCodcliasoc(?int $codcliasoc): self
  1729.     {
  1730.         $this->codcliasoc $codcliasoc;
  1731.         return $this;
  1732.     }
  1733.     public function getCargosextrasa(): ?int
  1734.     {
  1735.         return $this->cargosextrasa;
  1736.     }
  1737.     public function setCargosextrasa(?int $cargosextrasa): self
  1738.     {
  1739.         $this->cargosextrasa $cargosextrasa;
  1740.         return $this;
  1741.     }
  1742.     public function getComision(): ?float
  1743.     {
  1744.         return $this->comision;
  1745.     }
  1746.     public function setComision(?float $comision): self
  1747.     {
  1748.         $this->comision $comision;
  1749.         return $this;
  1750.     }
  1751.     public function getProveedorcomision(): ?int
  1752.     {
  1753.         return $this->proveedorcomision;
  1754.     }
  1755.     public function setProveedorcomision(?int $proveedorcomision): self
  1756.     {
  1757.         $this->proveedorcomision $proveedorcomision;
  1758.         return $this;
  1759.     }
  1760.     public function getComisionesfacturables(): ?bool
  1761.     {
  1762.         return $this->comisionesfacturables;
  1763.     }
  1764.     public function setComisionesfacturables(?bool $comisionesfacturables): self
  1765.     {
  1766.         $this->comisionesfacturables $comisionesfacturables;
  1767.         return $this;
  1768.     }
  1769.     public function getLocalizadorobligatorio(): ?bool
  1770.     {
  1771.         return $this->localizadorobligatorio;
  1772.     }
  1773.     public function setLocalizadorobligatorio(?bool $localizadorobligatorio): self
  1774.     {
  1775.         $this->localizadorobligatorio $localizadorobligatorio;
  1776.         return $this;
  1777.     }
  1778.     public function getRecc(): ?bool
  1779.     {
  1780.         return $this->recc;
  1781.     }
  1782.     public function setRecc(?bool $recc): self
  1783.     {
  1784.         $this->recc $recc;
  1785.         return $this;
  1786.     }
  1787.     public function getBloqueado(): ?string
  1788.     {
  1789.         return $this->bloqueado;
  1790.     }
  1791.     public function setBloqueado(?string $bloqueado): self
  1792.     {
  1793.         $this->bloqueado $bloqueado;
  1794.         return $this;
  1795.     }
  1796.     public function getOrdenadeudo(): ?string
  1797.     {
  1798.         return $this->ordenadeudo;
  1799.     }
  1800.     public function setOrdenadeudo(?string $ordenadeudo): self
  1801.     {
  1802.         $this->ordenadeudo $ordenadeudo;
  1803.         return $this;
  1804.     }
  1805.     public function getSubnorma(): ?int
  1806.     {
  1807.         return $this->subnorma;
  1808.     }
  1809.     public function setSubnorma(?int $subnorma): self
  1810.     {
  1811.         $this->subnorma $subnorma;
  1812.         return $this;
  1813.     }
  1814.     public function getSecuenciaadeudo(): ?int
  1815.     {
  1816.         return $this->secuenciaadeudo;
  1817.     }
  1818.     public function setSecuenciaadeudo(?int $secuenciaadeudo): self
  1819.     {
  1820.         $this->secuenciaadeudo $secuenciaadeudo;
  1821.         return $this;
  1822.     }
  1823.     public function getCodigoiban(): ?string
  1824.     {
  1825.         return $this->codigoiban;
  1826.     }
  1827.     public function setCodigoiban(?string $codigoiban): self
  1828.     {
  1829.         $this->codigoiban $codigoiban;
  1830.         return $this;
  1831.     }
  1832.     public function getFechafirmaordenadeudo(): ?\DateTimeInterface
  1833.     {
  1834.         return $this->fechafirmaordenadeudo;
  1835.     }
  1836.     public function setFechafirmaordenadeudo(?\DateTimeInterface $fechafirmaordenadeudo): self
  1837.     {
  1838.         $this->fechafirmaordenadeudo $fechafirmaordenadeudo;
  1839.         return $this;
  1840.     }
  1841.     public function getTipodocident(): ?int
  1842.     {
  1843.         return $this->tipodocident;
  1844.     }
  1845.     public function setTipodocident(?int $tipodocident): self
  1846.     {
  1847.         $this->tipodocident $tipodocident;
  1848.         return $this;
  1849.     }
  1850.     public function getPersonajuridica(): ?string
  1851.     {
  1852.         return $this->personajuridica;
  1853.     }
  1854.     public function setPersonajuridica(?string $personajuridica): self
  1855.     {
  1856.         $this->personajuridica $personajuridica;
  1857.         return $this;
  1858.     }
  1859.     public function getRecibirinformacion(): ?bool
  1860.     {
  1861.         return $this->recibirinformacion;
  1862.     }
  1863.     public function setRecibirinformacion(?bool $recibirinformacion): self
  1864.     {
  1865.         $this->recibirinformacion $recibirinformacion;
  1866.         return $this;
  1867.     }
  1868.     public function getConfirmacionreservacompleta(): ?bool
  1869.     {
  1870.         return $this->confirmacionreservacompleta;
  1871.     }
  1872.     public function setConfirmacionreservacompleta(?bool $confirmacionreservacompleta): self
  1873.     {
  1874.         $this->confirmacionreservacompleta $confirmacionreservacompleta;
  1875.         return $this;
  1876.     }
  1877.     public function getConfirmacionreservadisenyo(): ?int
  1878.     {
  1879.         return $this->confirmacionreservadisenyo;
  1880.     }
  1881.     public function setConfirmacionreservadisenyo(?int $confirmacionreservadisenyo): self
  1882.     {
  1883.         $this->confirmacionreservadisenyo $confirmacionreservadisenyo;
  1884.         return $this;
  1885.     }
  1886.     public function getConfirmacionreservaplantillacompleta(): ?int
  1887.     {
  1888.         return $this->confirmacionreservaplantillacompleta;
  1889.     }
  1890.     public function setConfirmacionreservaplantillacompleta(?int $confirmacionreservaplantillacompleta): self
  1891.     {
  1892.         $this->confirmacionreservaplantillacompleta $confirmacionreservaplantillacompleta;
  1893.         return $this;
  1894.     }
  1895.     public function getConfirmacionreservaplantillasimple(): ?int
  1896.     {
  1897.         return $this->confirmacionreservaplantillasimple;
  1898.     }
  1899.     public function setConfirmacionreservaplantillasimple(?int $confirmacionreservaplantillasimple): self
  1900.     {
  1901.         $this->confirmacionreservaplantillasimple $confirmacionreservaplantillasimple;
  1902.         return $this;
  1903.     }
  1904.     public function getMaximoventaAplicar(): ?string
  1905.     {
  1906.         return $this->maximoventaAplicar;
  1907.     }
  1908.     public function setMaximoventaAplicar(?string $maximoventaAplicar): self
  1909.     {
  1910.         $this->maximoventaAplicar $maximoventaAplicar;
  1911.         return $this;
  1912.     }
  1913.     public function getMaximoventaImporte(): ?float
  1914.     {
  1915.         return $this->maximoventaImporte;
  1916.     }
  1917.     public function setMaximoventaImporte(?float $maximoventaImporte): self
  1918.     {
  1919.         $this->maximoventaImporte $maximoventaImporte;
  1920.         return $this;
  1921.     }
  1922.     public function getMaximoventaCodmoneda(): ?int
  1923.     {
  1924.         return $this->maximoventaCodmoneda;
  1925.     }
  1926.     public function setMaximoventaCodmoneda(?int $maximoventaCodmoneda): self
  1927.     {
  1928.         $this->maximoventaCodmoneda $maximoventaCodmoneda;
  1929.         return $this;
  1930.     }
  1931.     public function getTipooperacion(): ?int
  1932.     {
  1933.         return $this->tipooperacion;
  1934.     }
  1935.     public function setTipooperacion(?int $tipooperacion): self
  1936.     {
  1937.         $this->tipooperacion $tipooperacion;
  1938.         return $this;
  1939.     }
  1940.     public function getVersion()
  1941.     {
  1942.         return $this->version;
  1943.     }
  1944.     public function setVersion($version): self
  1945.     {
  1946.         $this->version $version;
  1947.         return $this;
  1948.     }
  1949.     public function isNocalcularcargo1artic(): ?bool
  1950.     {
  1951.         return $this->nocalcularcargo1artic;
  1952.     }
  1953.     public function isNocalcularcargo2artic(): ?bool
  1954.     {
  1955.         return $this->nocalcularcargo2artic;
  1956.     }
  1957.     public function isCamposlibrestotalizar(): ?bool
  1958.     {
  1959.         return $this->camposlibrestotalizar;
  1960.     }
  1961.     public function isComisionesfacturables(): ?bool
  1962.     {
  1963.         return $this->comisionesfacturables;
  1964.     }
  1965.     public function isLocalizadorobligatorio(): ?bool
  1966.     {
  1967.         return $this->localizadorobligatorio;
  1968.     }
  1969.     public function isRecc(): ?bool
  1970.     {
  1971.         return $this->recc;
  1972.     }
  1973.     public function isRecibirinformacion(): ?bool
  1974.     {
  1975.         return $this->recibirinformacion;
  1976.     }
  1977.     public function isConfirmacionreservacompleta(): ?bool
  1978.     {
  1979.         return $this->confirmacionreservacompleta;
  1980.     }
  1981. }