-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from thegreenter/guia-2022
Guia de Remisión 2022 (XML)
- Loading branch information
Showing
18 changed files
with
1,225 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
107 changes: 107 additions & 0 deletions
107
packages/core/src/Core/Model/Despatch/AdditionalDoc.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Greenter\Model\Despatch; | ||
|
||
/** | ||
* Class AdditionalDoc. | ||
*/ | ||
class AdditionalDoc | ||
{ | ||
/** | ||
* Tipo de documento (Descripción) | ||
* | ||
* @var string | ||
*/ | ||
private $tipoDesc; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
private $tipo; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
private $nro; | ||
|
||
/** | ||
* RUC Emisor | ||
* | ||
* @var string | ||
*/ | ||
private $emisor; | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getTipoDesc(): ?string | ||
{ | ||
return $this->tipoDesc; | ||
} | ||
|
||
/** | ||
* @param string|null $tipoDesc | ||
* @return AdditionalDoc | ||
*/ | ||
public function setTipoDesc(?string $tipoDesc): AdditionalDoc | ||
{ | ||
$this->tipoDesc = $tipoDesc; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getTipo(): ?string | ||
{ | ||
return $this->tipo; | ||
} | ||
|
||
/** | ||
* @param string|null $tipo | ||
* @return AdditionalDoc | ||
*/ | ||
public function setTipo(?string $tipo): AdditionalDoc | ||
{ | ||
$this->tipo = $tipo; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getNro(): string | ||
{ | ||
return $this->nro; | ||
} | ||
|
||
/** | ||
* @param string|null $nro | ||
* @return AdditionalDoc | ||
*/ | ||
public function setNro(?string $nro): AdditionalDoc | ||
{ | ||
$this->nro = $nro; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getEmisor(): ?string | ||
{ | ||
return $this->emisor; | ||
} | ||
|
||
/** | ||
* @param string|null $emisor | ||
* @return AdditionalDoc | ||
*/ | ||
public function setEmisor(?string $emisor): AdditionalDoc | ||
{ | ||
$this->emisor = $emisor; | ||
return $this; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.