deposit percent in programm for caluclate price
git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3465 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
3cb28e108b
commit
ee98d2faa3
2 changed files with 41 additions and 4 deletions
|
|
@ -198,6 +198,14 @@ class TravelProgram
|
|||
*/
|
||||
private $travelAgenda;
|
||||
|
||||
/**
|
||||
* @var integer
|
||||
*
|
||||
* @ORM\Column(name="deposit_percent", type="integer", nullable=true)
|
||||
*/
|
||||
|
||||
private $depositPercent;
|
||||
|
||||
/**
|
||||
* @var boolean
|
||||
*
|
||||
|
|
@ -1057,6 +1065,32 @@ class TravelProgram
|
|||
return $this->travelAgenda;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set travelAgenda
|
||||
*
|
||||
* @param integer $depositPercent
|
||||
*
|
||||
* @return TravelProgram
|
||||
*/
|
||||
public function setDepositPercent($depositPercent)
|
||||
{
|
||||
$this->depositPercent = $depositPercent;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get depositPercent
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
public function getDepositPercent()
|
||||
{
|
||||
return $this->depositPercent;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Set nettoPricesInEuro
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue