src/Entity/Articulos.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.  * Articulos
  7.  *
  8.  * @ORM\Table(name="articulos", options={"readOnly": true})
  9.  * @ORM\Entity
  10.  */
  11. class Articulos
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\Id
  17.      * @ORM\Column(name="CODARTICULO", type="integer", nullable=false)
  18.      */
  19.     private $codarticulo;
  20.     /**
  21.      * @var string|null
  22.      *
  23.      * @ORM\Column(name="DESCRIPCION", type="string", length=45, nullable=true, options={"default"="NULL"})
  24.      */
  25.     private $descripcion 'NULL';
  26.     /**
  27.      * @var string|null
  28.      *
  29.      * @ORM\Column(name="DESCRIPADIC", type="string", length=25, nullable=true, options={"default"="NULL"})
  30.      */
  31.     private $descripadic 'NULL';
  32.     /**
  33.      * @var int|null
  34.      *
  35.      * @ORM\Column(name="TIPOIMPUESTO", type="integer", nullable=true, options={"default"="NULL"})
  36.      */
  37.     private $tipoimpuesto NULL;
  38.     /**
  39.      * @var int|null
  40.      *
  41.      * @ORM\Column(name="DPTO", type="integer", nullable=true, options={"default"="NULL"})
  42.      */
  43.     private $dpto NULL;
  44.     /**
  45.      * @var int|null
  46.      *
  47.      * @ORM\Column(name="SECCION", type="integer", nullable=true, options={"default"="NULL"})
  48.      */
  49.     private $seccion NULL;
  50.     /**
  51.      * @var int|null
  52.      *
  53.      * @ORM\Column(name="FAMILIA", type="smallint", nullable=true, options={"default"="NULL"})
  54.      */
  55.     private $familia 'NULL';
  56.     /**
  57.      * @var int|null
  58.      *
  59.      * @ORM\Column(name="SUBFAMILIA", type="smallint", nullable=true, options={"default"="NULL"})
  60.      */
  61.     private $subfamilia 'NULL';
  62.     /**
  63.      * @var int|null
  64.      *
  65.      * @ORM\Column(name="LINEA", type="smallint", nullable=true, options={"default"="NULL"})
  66.      */
  67.     private $linea 'NULL';
  68.     /**
  69.      * @var string|null
  70.      *
  71.      * @ORM\Column(name="TEMPORADA", type="string", length=15, nullable=true, options={"default"="NULL"})
  72.      */
  73.     private $temporada 'NULL';
  74.     /**
  75.      * @var string|null
  76.      *
  77.      * @ORM\Column(name="GENERARETIQ", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
  78.      */
  79.     private $generaretiq 'NULL';
  80.     /**
  81.      * @var string|null
  82.      *
  83.      * @ORM\Column(name="FOTO", type="blob", length=16777215, nullable=true, options={"default"="NULL"})
  84.      */
  85.     private $foto 'NULL';
  86.     /**
  87.      * @var int|null
  88.      *
  89.      * @ORM\Column(name="MARCA", type="integer", nullable=true, options={"default"="NULL"})
  90.      */
  91.     private $marca NULL;
  92.     /**
  93.      * @var string|null
  94.      *
  95.      * @ORM\Column(name="CODTALLA", type="string", length=10, nullable=true, options={"default"="NULL"})
  96.      */
  97.     private $codtalla 'NULL';
  98.     /**
  99.      * @var string|null
  100.      *
  101.      * @ORM\Column(name="NORMA", type="string", length=15, nullable=true, options={"default"="NULL"})
  102.      */
  103.     private $norma 'NULL';
  104.     /**
  105.      * @var string|null
  106.      *
  107.      * @ORM\Column(name="TACON", type="string", length=10, nullable=true, options={"default"="NULL"})
  108.      */
  109.     private $tacon 'NULL';
  110.     /**
  111.      * @var string|null
  112.      *
  113.      * @ORM\Column(name="COMPOSICION", type="string", length=15, nullable=true, options={"default"="NULL"})
  114.      */
  115.     private $composicion 'NULL';
  116.     /**
  117.      * @var string|null
  118.      *
  119.      * @ORM\Column(name="ARTICULOVIRTUAL", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
  120.      */
  121.     private $articulovirtual 'NULL';
  122.     /**
  123.      * @var string|null
  124.      *
  125.      * @ORM\Column(name="TIENETC", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
  126.      */
  127.     private $tienetc 'NULL';
  128.     /**
  129.      * @var float|null
  130.      *
  131.      * @ORM\Column(name="UNID1C", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  132.      */
  133.     private $unid1c NULL;
  134.     /**
  135.      * @var float|null
  136.      *
  137.      * @ORM\Column(name="UNID2C", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  138.      */
  139.     private $unid2c NULL;
  140.     /**
  141.      * @var float|null
  142.      *
  143.      * @ORM\Column(name="UNID3C", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  144.      */
  145.     private $unid3c NULL;
  146.     /**
  147.      * @var float|null
  148.      *
  149.      * @ORM\Column(name="UNID4C", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  150.      */
  151.     private $unid4c NULL;
  152.     /**
  153.      * @var float|null
  154.      *
  155.      * @ORM\Column(name="UNID1V", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  156.      */
  157.     private $unid1v NULL;
  158.     /**
  159.      * @var float|null
  160.      *
  161.      * @ORM\Column(name="UNID2V", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  162.      */
  163.     private $unid2v NULL;
  164.     /**
  165.      * @var float|null
  166.      *
  167.      * @ORM\Column(name="UNID3V", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  168.      */
  169.     private $unid3v NULL;
  170.     /**
  171.      * @var float|null
  172.      *
  173.      * @ORM\Column(name="UNID4V", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  174.      */
  175.     private $unid4v NULL;
  176.     /**
  177.      * @var string|null
  178.      *
  179.      * @ORM\Column(name="ESKIT", type="string", length=2, nullable=true, options={"default"="NULL"})
  180.      */
  181.     private $eskit 'NULL';
  182.     /**
  183.      * @var string|null
  184.      *
  185.      * @ORM\Column(name="USARNUMSERIE", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
  186.      */
  187.     private $usarnumserie 'NULL';
  188.     /**
  189.      * @var string|null
  190.      *
  191.      * @ORM\Column(name="GENNUMSERIE", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
  192.      */
  193.     private $gennumserie 'NULL';
  194.     /**
  195.      * @var int|null
  196.      *
  197.      * @ORM\Column(name="TIPO", type="integer", nullable=true, options={"default"="NULL"})
  198.      */
  199.     private $tipo NULL;
  200.     /**
  201.      * @var \DateTime|null
  202.      *
  203.      * @ORM\Column(name="FECHAMODIFICADO", type="date", nullable=true, options={"default"="NULL"})
  204.      */
  205.     private $fechamodificado 'NULL';
  206.     /**
  207.      * @var string|null
  208.      *
  209.      * @ORM\Column(name="REFPROVEEDOR", type="string", length=15, nullable=true, options={"default"="NULL"})
  210.      */
  211.     private $refproveedor 'NULL';
  212.     /**
  213.      * @var string|null
  214.      *
  215.      * @ORM\Column(name="CONTRAPARTIDAVENTA", type="string", length=12, nullable=true, options={"default"="NULL"})
  216.      */
  217.     private $contrapartidaventa 'NULL';
  218.     /**
  219.      * @var string|null
  220.      *
  221.      * @ORM\Column(name="CONTRAPARTIDACOMPRA", type="string", length=12, nullable=true, options={"default"="NULL"})
  222.      */
  223.     private $contrapartidacompra 'NULL';
  224.     /**
  225.      * @var string|null
  226.      *
  227.      * @ORM\Column(name="UNIDADMEDIDA", type="string", length=10, nullable=true, options={"default"="NULL"})
  228.      */
  229.     private $unidadmedida 'NULL';
  230.     /**
  231.      * @var float|null
  232.      *
  233.      * @ORM\Column(name="UDSELABORACION", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  234.      */
  235.     private $udselaboracion NULL;
  236.     /**
  237.      * @var float|null
  238.      *
  239.      * @ORM\Column(name="MEDIDAREFERENCIA", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  240.      */
  241.     private $medidareferencia NULL;
  242.     /**
  243.      * @var string|null
  244.      *
  245.      * @ORM\Column(name="PORPESO", type="string", length=1, nullable=true, options={"default"="NULL"})
  246.      */
  247.     private $porpeso 'NULL';
  248.     /**
  249.      * @var string|null
  250.      *
  251.      * @ORM\Column(name="USASTOCKS", type="string", length=1, nullable=true, options={"default"="NULL"})
  252.      */
  253.     private $usastocks 'NULL';
  254.     /**
  255.      * @var int|null
  256.      *
  257.      * @ORM\Column(name="IMPUESTOCOMPRA", type="integer", nullable=true, options={"default"="NULL"})
  258.      */
  259.     private $impuestocompra NULL;
  260.     /**
  261.      * @var string|null
  262.      *
  263.      * @ORM\Column(name="DESCATALOGADO", type="string", length=1, nullable=true, options={"default"="NULL"})
  264.      */
  265.     private $descatalogado 'NULL';
  266.     /**
  267.      * @var float|null
  268.      *
  269.      * @ORM\Column(name="UDSTRASPASO", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  270.      */
  271.     private $udstraspaso NULL;
  272.     /**
  273.      * @var string|null
  274.      *
  275.      * @ORM\Column(name="TIPOARTICULO", type="string", length=1, nullable=true, options={"default"="NULL"})
  276.      */
  277.     private $tipoarticulo 'NULL';
  278.     /**
  279.      * @var string|null
  280.      *
  281.      * @ORM\Column(name="GARANTIACOMPRA", type="string", length=20, nullable=true, options={"default"="NULL"})
  282.      */
  283.     private $garantiacompra 'NULL';
  284.     /**
  285.      * @var string|null
  286.      *
  287.      * @ORM\Column(name="GARANTIAVENTA", type="string", length=20, nullable=true, options={"default"="NULL"})
  288.      */
  289.     private $garantiaventa 'NULL';
  290.     /**
  291.      * @var int|null
  292.      *
  293.      * @ORM\Column(name="COLORFONDO", type="integer", nullable=true, options={"default"="NULL"})
  294.      */
  295.     private $colorfondo NULL;
  296.     /**
  297.      * @var int|null
  298.      *
  299.      * @ORM\Column(name="COLORTEXTO", type="integer", nullable=true, options={"default"="NULL"})
  300.      */
  301.     private $colortexto NULL;
  302.     /**
  303.      * @var string|null
  304.      *
  305.      * @ORM\Column(name="TIPOSAT", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
  306.      */
  307.     private $tiposat 'NULL';
  308.     /**
  309.      * @var \DateTime|null
  310.      *
  311.      * @ORM\Column(name="FACTPORHORA", type="date", nullable=true, options={"default"="NULL"})
  312.      */
  313.     private $factporhora 'NULL';
  314.     /**
  315.      * @var int|null
  316.      *
  317.      * @ORM\Column(name="CONSUMADIC", type="integer", nullable=true, options={"default"="NULL"})
  318.      */
  319.     private $consumadic NULL;
  320.     /**
  321.      * @var float|null
  322.      *
  323.      * @ORM\Column(name="MARGEN", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  324.      */
  325.     private $margen NULL;
  326.     /**
  327.      * @var float|null
  328.      *
  329.      * @ORM\Column(name="CARGO1", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  330.      */
  331.     private $cargo1 NULL;
  332.     /**
  333.      * @var float|null
  334.      *
  335.      * @ORM\Column(name="CARGO2", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  336.      */
  337.     private $cargo2 NULL;
  338.     /**
  339.      * @var int|null
  340.      *
  341.      * @ORM\Column(name="NUMCONSUMICIONES", type="integer", nullable=true, options={"default"="NULL"})
  342.      */
  343.     private $numconsumiciones NULL;
  344.     /**
  345.      * @var int|null
  346.      *
  347.      * @ORM\Column(name="CODCENTRAL", type="integer", nullable=true, options={"default"="NULL"})
  348.      */
  349.     private $codcentral NULL;
  350.     /**
  351.      * @var string|null
  352.      *
  353.      * @ORM\Column(name="CONTRAPARTIDACOSTEVENTAS", type="string", length=12, nullable=true, options={"default"="NULL"})
  354.      */
  355.     private $contrapartidacosteventas 'NULL';
  356.     /**
  357.      * @var int|null
  358.      *
  359.      * @ORM\Column(name="CODDISENY", type="integer", nullable=true, options={"default"="NULL"})
  360.      */
  361.     private $coddiseny NULL;
  362.     /**
  363.      * @var int|null
  364.      *
  365.      * @ORM\Column(name="CODIGOADUANA", type="integer", nullable=true, options={"default"="NULL"})
  366.      */
  367.     private $codigoaduana NULL;
  368.     /**
  369.      * @var string|null
  370.      *
  371.      * @ORM\Column(name="MEDIDA2", type="string", length=10, nullable=true, options={"default"="NULL"})
  372.      */
  373.     private $medida2 'NULL';
  374.     /**
  375.      * @var string|null
  376.      *
  377.      * @ORM\Column(name="VISIBLEWEB", type="string", length=1, nullable=true, options={"default"="NULL","fixed"=true})
  378.      */
  379.     private $visibleweb 'NULL';
  380.     /**
  381.      * @var int|null
  382.      *
  383.      * @ORM\Column(name="DIASCADUCIDAD", type="integer", nullable=true, options={"default"="NULL"})
  384.      */
  385.     private $diascaducidad NULL;
  386.     /**
  387.      * @var float|null
  388.      *
  389.      * @ORM\Column(name="PORCRETENCION", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  390.      */
  391.     private $porcretencion NULL;
  392.     /**
  393.      * @var string|null
  394.      *
  395.      * @ORM\Column(name="CONTRAPARTIDACONSUMO", type="string", length=12, nullable=true, options={"default"="NULL"})
  396.      */
  397.     private $contrapartidaconsumo 'NULL';
  398.     /**
  399.      * @var string|null
  400.      *
  401.      * @ORM\Column(name="CONTRAPARTIDAVENTADMN", type="string", length=12, nullable=true, options={"default"="NULL"})
  402.      */
  403.     private $contrapartidaventadmn 'NULL';
  404.     /**
  405.      * @var string|null
  406.      *
  407.      * @ORM\Column(name="CONTRAPARTIDACOMPRADMN", type="string", length=12, nullable=true, options={"default"="NULL"})
  408.      */
  409.     private $contrapartidacompradmn 'NULL';
  410.     /**
  411.      * @var string|null
  412.      *
  413.      * @ORM\Column(name="CONTRAPARTIDACOSTEVENTASDMN", type="string", length=12, nullable=true, options={"default"="NULL"})
  414.      */
  415.     private $contrapartidacosteventasdmn 'NULL';
  416.     /**
  417.      * @var bool|null
  418.      *
  419.      * @ORM\Column(name="DESCARGADO", type="boolean", nullable=true, options={"default"="NULL"})
  420.      */
  421.     private $descargado 'NULL';
  422.     /**
  423.      * @var float|null
  424.      *
  425.      * @ORM\Column(name="PRECIOMINIMO", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  426.      */
  427.     private $preciominimo NULL;
  428.     /**
  429.      * @var float|null
  430.      *
  431.      * @ORM\Column(name="PRECIOMAXIMO", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  432.      */
  433.     private $preciomaximo NULL;
  434.     /**
  435.      * @var string|null
  436.      *
  437.      * @ORM\Column(name="PRECIOLIBRE", type="string", length=1, nullable=true, options={"default"="NULL"})
  438.      */
  439.     private $preciolibre 'NULL';
  440.     /**
  441.      * @var bool|null
  442.      *
  443.      * @ORM\Column(name="HIOPOS_IMPRIMIRCOCINA", type="boolean", nullable=true, options={"default"="NULL"})
  444.      */
  445.     private $hioposImprimircocina 'NULL';
  446.     /**
  447.      * @var bool|null
  448.      *
  449.      * @ORM\Column(name="HIOPOS_EBT", type="boolean", nullable=true, options={"default"="NULL"})
  450.      */
  451.     private $hioposEbt 'NULL';
  452.     /**
  453.      * @var int|null
  454.      *
  455.      * @ORM\Column(name="HIOPOS_TAKEAWAY", type="integer", nullable=true, options={"default"="NULL"})
  456.      */
  457.     private $hioposTakeaway NULL;
  458.     /**
  459.      * @var string|null
  460.      *
  461.      * @ORM\Column(name="AVISOVENTA", type="string", length=100, nullable=true, options={"default"="NULL"})
  462.      */
  463.     private $avisoventa 'NULL';
  464.     /**
  465.      * @var binary|null
  466.      *
  467.      * @ORM\Column(name="FOTOSHA", type="binary", nullable=true, options={"default"="NULL"})
  468.      */
  469.     private $fotosha 'NULL';
  470.     /**
  471.      * @var string|null
  472.      *
  473.      * @ORM\Column(name="FORZARUDSENTERASVENTA", type="string", length=4, nullable=true, options={"default"="NULL"})
  474.      */
  475.     private $forzarudsenterasventa 'NULL';
  476.     /**
  477.      * @var int|null
  478.      *
  479.      * @ORM\Column(name="DURACION", type="integer", nullable=true, options={"default"="NULL"})
  480.      */
  481.     private $duracion NULL;
  482.     /**
  483.      * @var int|null
  484.      *
  485.      * @ORM\Column(name="IDTALONARIO", type="integer", nullable=true, options={"default"="NULL"})
  486.      */
  487.     private $idtalonario NULL;
  488.     /**
  489.      * @var bool|null
  490.      *
  491.      * @ORM\Column(name="HIOPOS_IMPRIMIRCOCINA2", type="boolean", nullable=true, options={"default"="NULL"})
  492.      */
  493.     private $hioposImprimircocina2 'NULL';
  494.     /**
  495.      * @var bool|null
  496.      *
  497.      * @ORM\Column(name="HIOPOS_IMPRIMIRCOCINA3", type="boolean", nullable=true, options={"default"="NULL"})
  498.      */
  499.     private $hioposImprimircocina3 'NULL';
  500.     /**
  501.      * @var bool|null
  502.      *
  503.      * @ORM\Column(name="HIOPOS_ISMODIFICADOR", type="boolean", nullable=true, options={"default"="NULL"})
  504.      */
  505.     private $hioposIsmodificador 'NULL';
  506.     /**
  507.      * @var string|null
  508.      *
  509.      * @ORM\Column(name="NODTOAPLICABLE", type="string", length=4, nullable=true, options={"default"="NULL"})
  510.      */
  511.     private $nodtoaplicable 'NULL';
  512.     /**
  513.      * @var string|null
  514.      *
  515.      * @ORM\Column(name="CONTRAPARTIDADEVOLCOMPRA", type="string", length=12, nullable=true, options={"default"="NULL"})
  516.      */
  517.     private $contrapartidadevolcompra 'NULL';
  518.     /**
  519.      * @var string|null
  520.      *
  521.      * @ORM\Column(name="CONTRAPARTIDADEVOLVENTA", type="string", length=12, nullable=true, options={"default"="NULL"})
  522.      */
  523.     private $contrapartidadevolventa 'NULL';
  524.     /**
  525.      * @var string|null
  526.      *
  527.      * @ORM\Column(name="CONTRAPARTIDADEVOLCOSTEVENTA", type="string", length=12, nullable=true, options={"default"="NULL"})
  528.      */
  529.     private $contrapartidadevolcosteventa 'NULL';
  530.     /**
  531.      * @var string|null
  532.      *
  533.      * @ORM\Column(name="CONTRAPARTIDADEVOLCOMPRADMN", type="string", length=12, nullable=true, options={"default"="NULL"})
  534.      */
  535.     private $contrapartidadevolcompradmn 'NULL';
  536.     /**
  537.      * @var string|null
  538.      *
  539.      * @ORM\Column(name="CONTRAPARTIDADEVOLVENTADMN", type="string", length=12, nullable=true, options={"default"="NULL"})
  540.      */
  541.     private $contrapartidadevolventadmn 'NULL';
  542.     /**
  543.      * @var string|null
  544.      *
  545.      * @ORM\Column(name="CONTRAPARTIDADEVOLCOSTEVENTASDM", type="string", length=12, nullable=true, options={"default"="NULL"})
  546.      */
  547.     private $contrapartidadevolcosteventasdm 'NULL';
  548.     /**
  549.      * @var int|null
  550.      *
  551.      * @ORM\Column(name="REGIMRET_IVA", type="integer", nullable=true, options={"default"="NULL"})
  552.      */
  553.     private $regimretIva NULL;
  554.     /**
  555.      * @var int|null
  556.      *
  557.      * @ORM\Column(name="REGIMRET_BASEIMPONIBLE", type="integer", nullable=true, options={"default"="NULL"})
  558.      */
  559.     private $regimretBaseimponible NULL;
  560.     /**
  561.      * @var string|null
  562.      *
  563.      * @ORM\Column(name="SOLICITARCOMENTARIO", type="string", length=1, nullable=true, options={"default"="NULL"})
  564.      */
  565.     private $solicitarcomentario 'NULL';
  566.     /**
  567.      * @var string|null
  568.      *
  569.      * @ORM\Column(name="DIRCONTAB", type="string", length=8, nullable=true, options={"default"="NULL"})
  570.      */
  571.     private $dircontab 'NULL';
  572.     /**
  573.      * @var int|null
  574.      *
  575.      * @ORM\Column(name="SUBEMPRESA", type="integer", nullable=true, options={"default"="NULL"})
  576.      */
  577.     private $subempresa NULL;
  578.     /**
  579.      * @var string|null
  580.      *
  581.      * @ORM\Column(name="CONTRAPARTIDAVENTAEXONERADA", type="string", length=12, nullable=true, options={"default"="NULL"})
  582.      */
  583.     private $contrapartidaventaexonerada 'NULL';
  584.     /**
  585.      * @var string|null
  586.      *
  587.      * @ORM\Column(name="CONTRAPARTIDADEVOLVENTAEXONERADA", type="string", length=12, nullable=true, options={"default"="NULL"})
  588.      */
  589.     private $contrapartidadevolventaexonerada 'NULL';
  590.     /**
  591.      * @var string|null
  592.      *
  593.      * @ORM\Column(name="CONTRAPARTIDAFALTANTESINVENTARIO", type="string", length=12, nullable=true, options={"default"="NULL"})
  594.      */
  595.     private $contrapartidafaltantesinventario 'NULL';
  596.     /**
  597.      * @var string|null
  598.      *
  599.      * @ORM\Column(name="CONTRAPARTIDASOBRANTESINVENTARIO", type="string", length=12, nullable=true, options={"default"="NULL"})
  600.      */
  601.     private $contrapartidasobrantesinventario 'NULL';
  602.     /**
  603.      * @var string|null
  604.      *
  605.      * @ORM\Column(name="CONTRAPARTIDAORDENESFAB", type="string", length=12, nullable=true, options={"default"="NULL"})
  606.      */
  607.     private $contrapartidaordenesfab 'NULL';
  608.     /**
  609.      * @var string|null
  610.      *
  611.      * @ORM\Column(name="FIJARPV_CADADIA", type="string", length=1, nullable=true, options={"default"="NULL"})
  612.      */
  613.     private $fijarpvCadadia 'NULL';
  614.     /**
  615.      * @var string|null
  616.      *
  617.      * @ORM\Column(name="FIJARPV_ALCAMBIARPRECIO", type="string", length=1, nullable=true, options={"default"="NULL"})
  618.      */
  619.     private $fijarpvAlcambiarprecio 'NULL';
  620.     /**
  621.      * @var int|null
  622.      *
  623.      * @ORM\Column(name="FORMADEPESO", type="integer", nullable=true, options={"default"="NULL"})
  624.      */
  625.     private $formadepeso NULL;
  626.     /**
  627.      * @var string|null
  628.      *
  629.      * @ORM\Column(name="CONTRAPARTIDACONSUMOS", type="string", length=12, nullable=true, options={"default"="NULL"})
  630.      */
  631.     private $contrapartidaconsumos 'NULL';
  632.     /**
  633.      * @var string|null
  634.      *
  635.      * @ORM\Column(name="USARFID", type="string", length=1, nullable=true, options={"default"="NULL"})
  636.      */
  637.     private $usarfid 'NULL';
  638.     /**
  639.      * @var binary|null
  640.      *
  641.      * @ORM\Column(name="VERSION", type="binary", nullable=true, options={"default"="NULL"})
  642.      */
  643.     private $version 'NULL';
  644.     /**
  645.      * @var string|null
  646.      *
  647.      * @ORM\Column(name="TIPOPRODSAFT", type="string", length=1, nullable=true, options={"default"="NULL"})
  648.      */
  649.     private $tipoprodsaft 'NULL';
  650.     public function getCodarticulo(): ?int
  651.     {
  652.         return $this->codarticulo;
  653.     }
  654.     public function setCodarticulo(int $codarticulo): self
  655.     {
  656.         $this->codarticulo $codarticulo;
  657.         return $this;
  658.     }
  659.     public function getDescripcion(): ?string
  660.     {
  661.         return $this->descripcion;
  662.     }
  663.     public function setDescripcion(?string $descripcion): self
  664.     {
  665.         $this->descripcion $descripcion;
  666.         return $this;
  667.     }
  668.     public function getDescripadic(): ?string
  669.     {
  670.         return $this->descripadic;
  671.     }
  672.     public function setDescripadic(?string $descripadic): self
  673.     {
  674.         $this->descripadic $descripadic;
  675.         return $this;
  676.     }
  677.     public function getTipoimpuesto(): ?int
  678.     {
  679.         return $this->tipoimpuesto;
  680.     }
  681.     public function setTipoimpuesto(?int $tipoimpuesto): self
  682.     {
  683.         $this->tipoimpuesto $tipoimpuesto;
  684.         return $this;
  685.     }
  686.     public function getDpto(): ?int
  687.     {
  688.         return $this->dpto;
  689.     }
  690.     public function setDpto(?int $dpto): self
  691.     {
  692.         $this->dpto $dpto;
  693.         return $this;
  694.     }
  695.     public function getSeccion(): ?int
  696.     {
  697.         return $this->seccion;
  698.     }
  699.     public function setSeccion(?int $seccion): self
  700.     {
  701.         $this->seccion $seccion;
  702.         return $this;
  703.     }
  704.     public function getFamilia(): ?int
  705.     {
  706.         return $this->familia;
  707.     }
  708.     public function setFamilia(?int $familia): self
  709.     {
  710.         $this->familia $familia;
  711.         return $this;
  712.     }
  713.     public function getSubfamilia(): ?int
  714.     {
  715.         return $this->subfamilia;
  716.     }
  717.     public function setSubfamilia(?int $subfamilia): self
  718.     {
  719.         $this->subfamilia $subfamilia;
  720.         return $this;
  721.     }
  722.     public function getLinea(): ?int
  723.     {
  724.         return $this->linea;
  725.     }
  726.     public function setLinea(?int $linea): self
  727.     {
  728.         $this->linea $linea;
  729.         return $this;
  730.     }
  731.     public function getTemporada(): ?string
  732.     {
  733.         return $this->temporada;
  734.     }
  735.     public function setTemporada(?string $temporada): self
  736.     {
  737.         $this->temporada $temporada;
  738.         return $this;
  739.     }
  740.     public function getGeneraretiq(): ?string
  741.     {
  742.         return $this->generaretiq;
  743.     }
  744.     public function setGeneraretiq(?string $generaretiq): self
  745.     {
  746.         $this->generaretiq $generaretiq;
  747.         return $this;
  748.     }
  749.     public function getFoto()
  750.     {
  751.         return $this->foto;
  752.     }
  753.     public function setFoto($foto): self
  754.     {
  755.         $this->foto $foto;
  756.         return $this;
  757.     }
  758.     public function getMarca(): ?int
  759.     {
  760.         return $this->marca;
  761.     }
  762.     public function setMarca(?int $marca): self
  763.     {
  764.         $this->marca $marca;
  765.         return $this;
  766.     }
  767.     public function getCodtalla(): ?string
  768.     {
  769.         return $this->codtalla;
  770.     }
  771.     public function setCodtalla(?string $codtalla): self
  772.     {
  773.         $this->codtalla $codtalla;
  774.         return $this;
  775.     }
  776.     public function getNorma(): ?string
  777.     {
  778.         return $this->norma;
  779.     }
  780.     public function setNorma(?string $norma): self
  781.     {
  782.         $this->norma $norma;
  783.         return $this;
  784.     }
  785.     public function getTacon(): ?string
  786.     {
  787.         return $this->tacon;
  788.     }
  789.     public function setTacon(?string $tacon): self
  790.     {
  791.         $this->tacon $tacon;
  792.         return $this;
  793.     }
  794.     public function getComposicion(): ?string
  795.     {
  796.         return $this->composicion;
  797.     }
  798.     public function setComposicion(?string $composicion): self
  799.     {
  800.         $this->composicion $composicion;
  801.         return $this;
  802.     }
  803.     public function getArticulovirtual(): ?string
  804.     {
  805.         return $this->articulovirtual;
  806.     }
  807.     public function setArticulovirtual(?string $articulovirtual): self
  808.     {
  809.         $this->articulovirtual $articulovirtual;
  810.         return $this;
  811.     }
  812.     public function getTienetc(): ?string
  813.     {
  814.         return $this->tienetc;
  815.     }
  816.     public function setTienetc(?string $tienetc): self
  817.     {
  818.         $this->tienetc $tienetc;
  819.         return $this;
  820.     }
  821.     public function getUnid1c(): ?float
  822.     {
  823.         return $this->unid1c;
  824.     }
  825.     public function setUnid1c(?float $unid1c): self
  826.     {
  827.         $this->unid1c $unid1c;
  828.         return $this;
  829.     }
  830.     public function getUnid2c(): ?float
  831.     {
  832.         return $this->unid2c;
  833.     }
  834.     public function setUnid2c(?float $unid2c): self
  835.     {
  836.         $this->unid2c $unid2c;
  837.         return $this;
  838.     }
  839.     public function getUnid3c(): ?float
  840.     {
  841.         return $this->unid3c;
  842.     }
  843.     public function setUnid3c(?float $unid3c): self
  844.     {
  845.         $this->unid3c $unid3c;
  846.         return $this;
  847.     }
  848.     public function getUnid4c(): ?float
  849.     {
  850.         return $this->unid4c;
  851.     }
  852.     public function setUnid4c(?float $unid4c): self
  853.     {
  854.         $this->unid4c $unid4c;
  855.         return $this;
  856.     }
  857.     public function getUnid1v(): ?float
  858.     {
  859.         return $this->unid1v;
  860.     }
  861.     public function setUnid1v(?float $unid1v): self
  862.     {
  863.         $this->unid1v $unid1v;
  864.         return $this;
  865.     }
  866.     public function getUnid2v(): ?float
  867.     {
  868.         return $this->unid2v;
  869.     }
  870.     public function setUnid2v(?float $unid2v): self
  871.     {
  872.         $this->unid2v $unid2v;
  873.         return $this;
  874.     }
  875.     public function getUnid3v(): ?float
  876.     {
  877.         return $this->unid3v;
  878.     }
  879.     public function setUnid3v(?float $unid3v): self
  880.     {
  881.         $this->unid3v $unid3v;
  882.         return $this;
  883.     }
  884.     public function getUnid4v(): ?float
  885.     {
  886.         return $this->unid4v;
  887.     }
  888.     public function setUnid4v(?float $unid4v): self
  889.     {
  890.         $this->unid4v $unid4v;
  891.         return $this;
  892.     }
  893.     public function getEskit(): ?string
  894.     {
  895.         return $this->eskit;
  896.     }
  897.     public function setEskit(?string $eskit): self
  898.     {
  899.         $this->eskit $eskit;
  900.         return $this;
  901.     }
  902.     public function getUsarnumserie(): ?string
  903.     {
  904.         return $this->usarnumserie;
  905.     }
  906.     public function setUsarnumserie(?string $usarnumserie): self
  907.     {
  908.         $this->usarnumserie $usarnumserie;
  909.         return $this;
  910.     }
  911.     public function getGennumserie(): ?string
  912.     {
  913.         return $this->gennumserie;
  914.     }
  915.     public function setGennumserie(?string $gennumserie): self
  916.     {
  917.         $this->gennumserie $gennumserie;
  918.         return $this;
  919.     }
  920.     public function getTipo(): ?int
  921.     {
  922.         return $this->tipo;
  923.     }
  924.     public function setTipo(?int $tipo): self
  925.     {
  926.         $this->tipo $tipo;
  927.         return $this;
  928.     }
  929.     public function getFechamodificado(): ?\DateTimeInterface
  930.     {
  931.         return $this->fechamodificado;
  932.     }
  933.     public function setFechamodificado(?\DateTimeInterface $fechamodificado): self
  934.     {
  935.         $this->fechamodificado $fechamodificado;
  936.         return $this;
  937.     }
  938.     public function getRefproveedor(): ?string
  939.     {
  940.         return $this->refproveedor;
  941.     }
  942.     public function setRefproveedor(?string $refproveedor): self
  943.     {
  944.         $this->refproveedor $refproveedor;
  945.         return $this;
  946.     }
  947.     public function getContrapartidaventa(): ?string
  948.     {
  949.         return $this->contrapartidaventa;
  950.     }
  951.     public function setContrapartidaventa(?string $contrapartidaventa): self
  952.     {
  953.         $this->contrapartidaventa $contrapartidaventa;
  954.         return $this;
  955.     }
  956.     public function getContrapartidacompra(): ?string
  957.     {
  958.         return $this->contrapartidacompra;
  959.     }
  960.     public function setContrapartidacompra(?string $contrapartidacompra): self
  961.     {
  962.         $this->contrapartidacompra $contrapartidacompra;
  963.         return $this;
  964.     }
  965.     public function getUnidadmedida(): ?string
  966.     {
  967.         return $this->unidadmedida;
  968.     }
  969.     public function setUnidadmedida(?string $unidadmedida): self
  970.     {
  971.         $this->unidadmedida $unidadmedida;
  972.         return $this;
  973.     }
  974.     public function getUdselaboracion(): ?float
  975.     {
  976.         return $this->udselaboracion;
  977.     }
  978.     public function setUdselaboracion(?float $udselaboracion): self
  979.     {
  980.         $this->udselaboracion $udselaboracion;
  981.         return $this;
  982.     }
  983.     public function getMedidareferencia(): ?float
  984.     {
  985.         return $this->medidareferencia;
  986.     }
  987.     public function setMedidareferencia(?float $medidareferencia): self
  988.     {
  989.         $this->medidareferencia $medidareferencia;
  990.         return $this;
  991.     }
  992.     public function getPorpeso(): ?string
  993.     {
  994.         return $this->porpeso;
  995.     }
  996.     public function setPorpeso(?string $porpeso): self
  997.     {
  998.         $this->porpeso $porpeso;
  999.         return $this;
  1000.     }
  1001.     public function getUsastocks(): ?string
  1002.     {
  1003.         return $this->usastocks;
  1004.     }
  1005.     public function setUsastocks(?string $usastocks): self
  1006.     {
  1007.         $this->usastocks $usastocks;
  1008.         return $this;
  1009.     }
  1010.     public function getImpuestocompra(): ?int
  1011.     {
  1012.         return $this->impuestocompra;
  1013.     }
  1014.     public function setImpuestocompra(?int $impuestocompra): self
  1015.     {
  1016.         $this->impuestocompra $impuestocompra;
  1017.         return $this;
  1018.     }
  1019.     public function getDescatalogado(): ?string
  1020.     {
  1021.         return $this->descatalogado;
  1022.     }
  1023.     public function setDescatalogado(?string $descatalogado): self
  1024.     {
  1025.         $this->descatalogado $descatalogado;
  1026.         return $this;
  1027.     }
  1028.     public function getUdstraspaso(): ?float
  1029.     {
  1030.         return $this->udstraspaso;
  1031.     }
  1032.     public function setUdstraspaso(?float $udstraspaso): self
  1033.     {
  1034.         $this->udstraspaso $udstraspaso;
  1035.         return $this;
  1036.     }
  1037.     public function getTipoarticulo(): ?string
  1038.     {
  1039.         return $this->tipoarticulo;
  1040.     }
  1041.     public function setTipoarticulo(?string $tipoarticulo): self
  1042.     {
  1043.         $this->tipoarticulo $tipoarticulo;
  1044.         return $this;
  1045.     }
  1046.     public function getGarantiacompra(): ?string
  1047.     {
  1048.         return $this->garantiacompra;
  1049.     }
  1050.     public function setGarantiacompra(?string $garantiacompra): self
  1051.     {
  1052.         $this->garantiacompra $garantiacompra;
  1053.         return $this;
  1054.     }
  1055.     public function getGarantiaventa(): ?string
  1056.     {
  1057.         return $this->garantiaventa;
  1058.     }
  1059.     public function setGarantiaventa(?string $garantiaventa): self
  1060.     {
  1061.         $this->garantiaventa $garantiaventa;
  1062.         return $this;
  1063.     }
  1064.     public function getColorfondo(): ?int
  1065.     {
  1066.         return $this->colorfondo;
  1067.     }
  1068.     public function setColorfondo(?int $colorfondo): self
  1069.     {
  1070.         $this->colorfondo $colorfondo;
  1071.         return $this;
  1072.     }
  1073.     public function getColortexto(): ?int
  1074.     {
  1075.         return $this->colortexto;
  1076.     }
  1077.     public function setColortexto(?int $colortexto): self
  1078.     {
  1079.         $this->colortexto $colortexto;
  1080.         return $this;
  1081.     }
  1082.     public function getTiposat(): ?string
  1083.     {
  1084.         return $this->tiposat;
  1085.     }
  1086.     public function setTiposat(?string $tiposat): self
  1087.     {
  1088.         $this->tiposat $tiposat;
  1089.         return $this;
  1090.     }
  1091.     public function getFactporhora(): ?\DateTimeInterface
  1092.     {
  1093.         return $this->factporhora;
  1094.     }
  1095.     public function setFactporhora(?\DateTimeInterface $factporhora): self
  1096.     {
  1097.         $this->factporhora $factporhora;
  1098.         return $this;
  1099.     }
  1100.     public function getConsumadic(): ?int
  1101.     {
  1102.         return $this->consumadic;
  1103.     }
  1104.     public function setConsumadic(?int $consumadic): self
  1105.     {
  1106.         $this->consumadic $consumadic;
  1107.         return $this;
  1108.     }
  1109.     public function getMargen(): ?float
  1110.     {
  1111.         return $this->margen;
  1112.     }
  1113.     public function setMargen(?float $margen): self
  1114.     {
  1115.         $this->margen $margen;
  1116.         return $this;
  1117.     }
  1118.     public function getCargo1(): ?float
  1119.     {
  1120.         return $this->cargo1;
  1121.     }
  1122.     public function setCargo1(?float $cargo1): self
  1123.     {
  1124.         $this->cargo1 $cargo1;
  1125.         return $this;
  1126.     }
  1127.     public function getCargo2(): ?float
  1128.     {
  1129.         return $this->cargo2;
  1130.     }
  1131.     public function setCargo2(?float $cargo2): self
  1132.     {
  1133.         $this->cargo2 $cargo2;
  1134.         return $this;
  1135.     }
  1136.     public function getNumconsumiciones(): ?int
  1137.     {
  1138.         return $this->numconsumiciones;
  1139.     }
  1140.     public function setNumconsumiciones(?int $numconsumiciones): self
  1141.     {
  1142.         $this->numconsumiciones $numconsumiciones;
  1143.         return $this;
  1144.     }
  1145.     public function getCodcentral(): ?int
  1146.     {
  1147.         return $this->codcentral;
  1148.     }
  1149.     public function setCodcentral(?int $codcentral): self
  1150.     {
  1151.         $this->codcentral $codcentral;
  1152.         return $this;
  1153.     }
  1154.     public function getContrapartidacosteventas(): ?string
  1155.     {
  1156.         return $this->contrapartidacosteventas;
  1157.     }
  1158.     public function setContrapartidacosteventas(?string $contrapartidacosteventas): self
  1159.     {
  1160.         $this->contrapartidacosteventas $contrapartidacosteventas;
  1161.         return $this;
  1162.     }
  1163.     public function getCoddiseny(): ?int
  1164.     {
  1165.         return $this->coddiseny;
  1166.     }
  1167.     public function setCoddiseny(?int $coddiseny): self
  1168.     {
  1169.         $this->coddiseny $coddiseny;
  1170.         return $this;
  1171.     }
  1172.     public function getCodigoaduana(): ?int
  1173.     {
  1174.         return $this->codigoaduana;
  1175.     }
  1176.     public function setCodigoaduana(?int $codigoaduana): self
  1177.     {
  1178.         $this->codigoaduana $codigoaduana;
  1179.         return $this;
  1180.     }
  1181.     public function getMedida2(): ?string
  1182.     {
  1183.         return $this->medida2;
  1184.     }
  1185.     public function setMedida2(?string $medida2): self
  1186.     {
  1187.         $this->medida2 $medida2;
  1188.         return $this;
  1189.     }
  1190.     public function getVisibleweb(): ?string
  1191.     {
  1192.         return $this->visibleweb;
  1193.     }
  1194.     public function setVisibleweb(?string $visibleweb): self
  1195.     {
  1196.         $this->visibleweb $visibleweb;
  1197.         return $this;
  1198.     }
  1199.     public function getDiascaducidad(): ?int
  1200.     {
  1201.         return $this->diascaducidad;
  1202.     }
  1203.     public function setDiascaducidad(?int $diascaducidad): self
  1204.     {
  1205.         $this->diascaducidad $diascaducidad;
  1206.         return $this;
  1207.     }
  1208.     public function getPorcretencion(): ?float
  1209.     {
  1210.         return $this->porcretencion;
  1211.     }
  1212.     public function setPorcretencion(?float $porcretencion): self
  1213.     {
  1214.         $this->porcretencion $porcretencion;
  1215.         return $this;
  1216.     }
  1217.     public function getContrapartidaconsumo(): ?string
  1218.     {
  1219.         return $this->contrapartidaconsumo;
  1220.     }
  1221.     public function setContrapartidaconsumo(?string $contrapartidaconsumo): self
  1222.     {
  1223.         $this->contrapartidaconsumo $contrapartidaconsumo;
  1224.         return $this;
  1225.     }
  1226.     public function getContrapartidaventadmn(): ?string
  1227.     {
  1228.         return $this->contrapartidaventadmn;
  1229.     }
  1230.     public function setContrapartidaventadmn(?string $contrapartidaventadmn): self
  1231.     {
  1232.         $this->contrapartidaventadmn $contrapartidaventadmn;
  1233.         return $this;
  1234.     }
  1235.     public function getContrapartidacompradmn(): ?string
  1236.     {
  1237.         return $this->contrapartidacompradmn;
  1238.     }
  1239.     public function setContrapartidacompradmn(?string $contrapartidacompradmn): self
  1240.     {
  1241.         $this->contrapartidacompradmn $contrapartidacompradmn;
  1242.         return $this;
  1243.     }
  1244.     public function getContrapartidacosteventasdmn(): ?string
  1245.     {
  1246.         return $this->contrapartidacosteventasdmn;
  1247.     }
  1248.     public function setContrapartidacosteventasdmn(?string $contrapartidacosteventasdmn): self
  1249.     {
  1250.         $this->contrapartidacosteventasdmn $contrapartidacosteventasdmn;
  1251.         return $this;
  1252.     }
  1253.     public function getDescargado(): ?bool
  1254.     {
  1255.         return $this->descargado;
  1256.     }
  1257.     public function setDescargado(?bool $descargado): self
  1258.     {
  1259.         $this->descargado $descargado;
  1260.         return $this;
  1261.     }
  1262.     public function getPreciominimo(): ?float
  1263.     {
  1264.         return $this->preciominimo;
  1265.     }
  1266.     public function setPreciominimo(?float $preciominimo): self
  1267.     {
  1268.         $this->preciominimo $preciominimo;
  1269.         return $this;
  1270.     }
  1271.     public function getPreciomaximo(): ?float
  1272.     {
  1273.         return $this->preciomaximo;
  1274.     }
  1275.     public function setPreciomaximo(?float $preciomaximo): self
  1276.     {
  1277.         $this->preciomaximo $preciomaximo;
  1278.         return $this;
  1279.     }
  1280.     public function getPreciolibre(): ?string
  1281.     {
  1282.         return $this->preciolibre;
  1283.     }
  1284.     public function setPreciolibre(?string $preciolibre): self
  1285.     {
  1286.         $this->preciolibre $preciolibre;
  1287.         return $this;
  1288.     }
  1289.     public function getHioposImprimircocina(): ?bool
  1290.     {
  1291.         return $this->hioposImprimircocina;
  1292.     }
  1293.     public function setHioposImprimircocina(?bool $hioposImprimircocina): self
  1294.     {
  1295.         $this->hioposImprimircocina $hioposImprimircocina;
  1296.         return $this;
  1297.     }
  1298.     public function getHioposEbt(): ?bool
  1299.     {
  1300.         return $this->hioposEbt;
  1301.     }
  1302.     public function setHioposEbt(?bool $hioposEbt): self
  1303.     {
  1304.         $this->hioposEbt $hioposEbt;
  1305.         return $this;
  1306.     }
  1307.     public function getHioposTakeaway(): ?int
  1308.     {
  1309.         return $this->hioposTakeaway;
  1310.     }
  1311.     public function setHioposTakeaway(?int $hioposTakeaway): self
  1312.     {
  1313.         $this->hioposTakeaway $hioposTakeaway;
  1314.         return $this;
  1315.     }
  1316.     public function getAvisoventa(): ?string
  1317.     {
  1318.         return $this->avisoventa;
  1319.     }
  1320.     public function setAvisoventa(?string $avisoventa): self
  1321.     {
  1322.         $this->avisoventa $avisoventa;
  1323.         return $this;
  1324.     }
  1325.     public function getFotosha()
  1326.     {
  1327.         return $this->fotosha;
  1328.     }
  1329.     public function setFotosha($fotosha): self
  1330.     {
  1331.         $this->fotosha $fotosha;
  1332.         return $this;
  1333.     }
  1334.     public function getForzarudsenterasventa(): ?string
  1335.     {
  1336.         return $this->forzarudsenterasventa;
  1337.     }
  1338.     public function setForzarudsenterasventa(?string $forzarudsenterasventa): self
  1339.     {
  1340.         $this->forzarudsenterasventa $forzarudsenterasventa;
  1341.         return $this;
  1342.     }
  1343.     public function getDuracion(): ?int
  1344.     {
  1345.         return $this->duracion;
  1346.     }
  1347.     public function setDuracion(?int $duracion): self
  1348.     {
  1349.         $this->duracion $duracion;
  1350.         return $this;
  1351.     }
  1352.     public function getIdtalonario(): ?int
  1353.     {
  1354.         return $this->idtalonario;
  1355.     }
  1356.     public function setIdtalonario(?int $idtalonario): self
  1357.     {
  1358.         $this->idtalonario $idtalonario;
  1359.         return $this;
  1360.     }
  1361.     public function getHioposImprimircocina2(): ?bool
  1362.     {
  1363.         return $this->hioposImprimircocina2;
  1364.     }
  1365.     public function setHioposImprimircocina2(?bool $hioposImprimircocina2): self
  1366.     {
  1367.         $this->hioposImprimircocina2 $hioposImprimircocina2;
  1368.         return $this;
  1369.     }
  1370.     public function getHioposImprimircocina3(): ?bool
  1371.     {
  1372.         return $this->hioposImprimircocina3;
  1373.     }
  1374.     public function setHioposImprimircocina3(?bool $hioposImprimircocina3): self
  1375.     {
  1376.         $this->hioposImprimircocina3 $hioposImprimircocina3;
  1377.         return $this;
  1378.     }
  1379.     public function getHioposIsmodificador(): ?bool
  1380.     {
  1381.         return $this->hioposIsmodificador;
  1382.     }
  1383.     public function setHioposIsmodificador(?bool $hioposIsmodificador): self
  1384.     {
  1385.         $this->hioposIsmodificador $hioposIsmodificador;
  1386.         return $this;
  1387.     }
  1388.     public function getNodtoaplicable(): ?string
  1389.     {
  1390.         return $this->nodtoaplicable;
  1391.     }
  1392.     public function setNodtoaplicable(?string $nodtoaplicable): self
  1393.     {
  1394.         $this->nodtoaplicable $nodtoaplicable;
  1395.         return $this;
  1396.     }
  1397.     public function getContrapartidadevolcompra(): ?string
  1398.     {
  1399.         return $this->contrapartidadevolcompra;
  1400.     }
  1401.     public function setContrapartidadevolcompra(?string $contrapartidadevolcompra): self
  1402.     {
  1403.         $this->contrapartidadevolcompra $contrapartidadevolcompra;
  1404.         return $this;
  1405.     }
  1406.     public function getContrapartidadevolventa(): ?string
  1407.     {
  1408.         return $this->contrapartidadevolventa;
  1409.     }
  1410.     public function setContrapartidadevolventa(?string $contrapartidadevolventa): self
  1411.     {
  1412.         $this->contrapartidadevolventa $contrapartidadevolventa;
  1413.         return $this;
  1414.     }
  1415.     public function getContrapartidadevolcosteventa(): ?string
  1416.     {
  1417.         return $this->contrapartidadevolcosteventa;
  1418.     }
  1419.     public function setContrapartidadevolcosteventa(?string $contrapartidadevolcosteventa): self
  1420.     {
  1421.         $this->contrapartidadevolcosteventa $contrapartidadevolcosteventa;
  1422.         return $this;
  1423.     }
  1424.     public function getContrapartidadevolcompradmn(): ?string
  1425.     {
  1426.         return $this->contrapartidadevolcompradmn;
  1427.     }
  1428.     public function setContrapartidadevolcompradmn(?string $contrapartidadevolcompradmn): self
  1429.     {
  1430.         $this->contrapartidadevolcompradmn $contrapartidadevolcompradmn;
  1431.         return $this;
  1432.     }
  1433.     public function getContrapartidadevolventadmn(): ?string
  1434.     {
  1435.         return $this->contrapartidadevolventadmn;
  1436.     }
  1437.     public function setContrapartidadevolventadmn(?string $contrapartidadevolventadmn): self
  1438.     {
  1439.         $this->contrapartidadevolventadmn $contrapartidadevolventadmn;
  1440.         return $this;
  1441.     }
  1442.     public function getContrapartidadevolcosteventasdm(): ?string
  1443.     {
  1444.         return $this->contrapartidadevolcosteventasdm;
  1445.     }
  1446.     public function setContrapartidadevolcosteventasdm(?string $contrapartidadevolcosteventasdm): self
  1447.     {
  1448.         $this->contrapartidadevolcosteventasdm $contrapartidadevolcosteventasdm;
  1449.         return $this;
  1450.     }
  1451.     public function getRegimretIva(): ?int
  1452.     {
  1453.         return $this->regimretIva;
  1454.     }
  1455.     public function setRegimretIva(?int $regimretIva): self
  1456.     {
  1457.         $this->regimretIva $regimretIva;
  1458.         return $this;
  1459.     }
  1460.     public function getRegimretBaseimponible(): ?int
  1461.     {
  1462.         return $this->regimretBaseimponible;
  1463.     }
  1464.     public function setRegimretBaseimponible(?int $regimretBaseimponible): self
  1465.     {
  1466.         $this->regimretBaseimponible $regimretBaseimponible;
  1467.         return $this;
  1468.     }
  1469.     public function getSolicitarcomentario(): ?string
  1470.     {
  1471.         return $this->solicitarcomentario;
  1472.     }
  1473.     public function setSolicitarcomentario(?string $solicitarcomentario): self
  1474.     {
  1475.         $this->solicitarcomentario $solicitarcomentario;
  1476.         return $this;
  1477.     }
  1478.     public function getDircontab(): ?string
  1479.     {
  1480.         return $this->dircontab;
  1481.     }
  1482.     public function setDircontab(?string $dircontab): self
  1483.     {
  1484.         $this->dircontab $dircontab;
  1485.         return $this;
  1486.     }
  1487.     public function getSubempresa(): ?int
  1488.     {
  1489.         return $this->subempresa;
  1490.     }
  1491.     public function setSubempresa(?int $subempresa): self
  1492.     {
  1493.         $this->subempresa $subempresa;
  1494.         return $this;
  1495.     }
  1496.     public function getContrapartidaventaexonerada(): ?string
  1497.     {
  1498.         return $this->contrapartidaventaexonerada;
  1499.     }
  1500.     public function setContrapartidaventaexonerada(?string $contrapartidaventaexonerada): self
  1501.     {
  1502.         $this->contrapartidaventaexonerada $contrapartidaventaexonerada;
  1503.         return $this;
  1504.     }
  1505.     public function getContrapartidadevolventaexonerada(): ?string
  1506.     {
  1507.         return $this->contrapartidadevolventaexonerada;
  1508.     }
  1509.     public function setContrapartidadevolventaexonerada(?string $contrapartidadevolventaexonerada): self
  1510.     {
  1511.         $this->contrapartidadevolventaexonerada $contrapartidadevolventaexonerada;
  1512.         return $this;
  1513.     }
  1514.     public function getContrapartidafaltantesinventario(): ?string
  1515.     {
  1516.         return $this->contrapartidafaltantesinventario;
  1517.     }
  1518.     public function setContrapartidafaltantesinventario(?string $contrapartidafaltantesinventario): self
  1519.     {
  1520.         $this->contrapartidafaltantesinventario $contrapartidafaltantesinventario;
  1521.         return $this;
  1522.     }
  1523.     public function getContrapartidasobrantesinventario(): ?string
  1524.     {
  1525.         return $this->contrapartidasobrantesinventario;
  1526.     }
  1527.     public function setContrapartidasobrantesinventario(?string $contrapartidasobrantesinventario): self
  1528.     {
  1529.         $this->contrapartidasobrantesinventario $contrapartidasobrantesinventario;
  1530.         return $this;
  1531.     }
  1532.     public function getContrapartidaordenesfab(): ?string
  1533.     {
  1534.         return $this->contrapartidaordenesfab;
  1535.     }
  1536.     public function setContrapartidaordenesfab(?string $contrapartidaordenesfab): self
  1537.     {
  1538.         $this->contrapartidaordenesfab $contrapartidaordenesfab;
  1539.         return $this;
  1540.     }
  1541.     public function getFijarpvCadadia(): ?string
  1542.     {
  1543.         return $this->fijarpvCadadia;
  1544.     }
  1545.     public function setFijarpvCadadia(?string $fijarpvCadadia): self
  1546.     {
  1547.         $this->fijarpvCadadia $fijarpvCadadia;
  1548.         return $this;
  1549.     }
  1550.     public function getFijarpvAlcambiarprecio(): ?string
  1551.     {
  1552.         return $this->fijarpvAlcambiarprecio;
  1553.     }
  1554.     public function setFijarpvAlcambiarprecio(?string $fijarpvAlcambiarprecio): self
  1555.     {
  1556.         $this->fijarpvAlcambiarprecio $fijarpvAlcambiarprecio;
  1557.         return $this;
  1558.     }
  1559.     public function getFormadepeso(): ?int
  1560.     {
  1561.         return $this->formadepeso;
  1562.     }
  1563.     public function setFormadepeso(?int $formadepeso): self
  1564.     {
  1565.         $this->formadepeso $formadepeso;
  1566.         return $this;
  1567.     }
  1568.     public function getContrapartidaconsumos(): ?string
  1569.     {
  1570.         return $this->contrapartidaconsumos;
  1571.     }
  1572.     public function setContrapartidaconsumos(?string $contrapartidaconsumos): self
  1573.     {
  1574.         $this->contrapartidaconsumos $contrapartidaconsumos;
  1575.         return $this;
  1576.     }
  1577.     public function getUsarfid(): ?string
  1578.     {
  1579.         return $this->usarfid;
  1580.     }
  1581.     public function setUsarfid(?string $usarfid): self
  1582.     {
  1583.         $this->usarfid $usarfid;
  1584.         return $this;
  1585.     }
  1586.     public function getVersion()
  1587.     {
  1588.         return $this->version;
  1589.     }
  1590.     public function setVersion($version): self
  1591.     {
  1592.         $this->version $version;
  1593.         return $this;
  1594.     }
  1595.     public function getTipoprodsaft(): ?string
  1596.     {
  1597.         return $this->tipoprodsaft;
  1598.     }
  1599.     public function setTipoprodsaft(?string $tipoprodsaft): self
  1600.     {
  1601.         $this->tipoprodsaft $tipoprodsaft;
  1602.         return $this;
  1603.     }
  1604.     public function isDescargado(): ?bool
  1605.     {
  1606.         return $this->descargado;
  1607.     }
  1608.     public function isHioposImprimircocina(): ?bool
  1609.     {
  1610.         return $this->hioposImprimircocina;
  1611.     }
  1612.     public function isHioposEbt(): ?bool
  1613.     {
  1614.         return $this->hioposEbt;
  1615.     }
  1616.     public function isHioposImprimircocina2(): ?bool
  1617.     {
  1618.         return $this->hioposImprimircocina2;
  1619.     }
  1620.     public function isHioposImprimircocina3(): ?bool
  1621.     {
  1622.         return $this->hioposImprimircocina3;
  1623.     }
  1624.     public function isHioposIsmodificador(): ?bool
  1625.     {
  1626.         return $this->hioposIsmodificador;
  1627.     }
  1628. }