Skip to content

Commit

Permalink
Merge pull request #18 from giansalex/ICBPER
Browse files Browse the repository at this point in the history
ICBPER (Resumen diario)
  • Loading branch information
giansalex authored Aug 4, 2019
2 parents e38fe19 + aef0a10 commit c133f3d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/Core/Model/Summary/SummaryDetail.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ class SummaryDetail
*/
private $mtoOtrosTributos;

/**
* @var float
*/
private $mtoIcbper;

/**
* @return string
*/
Expand Down Expand Up @@ -332,6 +337,7 @@ public function setMtoOperExoneradas($mtoOperExoneradas)

return $this;
}

/**
* @return float
*/
Expand Down Expand Up @@ -422,11 +428,13 @@ public function getMtoIvap()

/**
* @param float $mtoIvap
*
* @return SummaryDetail
*/
public function setMtoIvap($mtoIvap)
{
$this->mtoIvap = $mtoIvap;

return $this;
}

Expand Down Expand Up @@ -469,4 +477,24 @@ public function setMtoOtrosTributos($mtoOtrosTributos)

return $this;
}

/**
* @return float
*/
public function getMtoIcbper()
{
return $this->mtoIcbper;
}

/**
* @param float $mtoIcbper
*
* @return SummaryDetail
*/
public function setMtoIcbper($mtoIcbper)
{
$this->mtoIcbper = $mtoIcbper;

return $this;
}
}

0 comments on commit c133f3d

Please sign in to comment.