Status Buchnungen und Zimmer verfügbar

git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3432 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
adametz 2018-07-26 16:07:56 +00:00
parent 0bdd497cfb
commit a6ef96b4e5
15 changed files with 27874 additions and 26 deletions

View file

@ -70,6 +70,11 @@ class TravelPeriodPrice
private $effectiveChildPrice = null;
private $effectiveComfortPrice = null;
/**
* @ORM\Column(name="available", type="integer", nullable=false)
*/
private $available;
/**
* Set priceType
*
@ -94,6 +99,30 @@ class TravelPeriodPrice
return $this->priceType;
}
/**
* Set available
*
* @param integer $available
*
* @return TravelPeriodPrice
*/
public function setAvailable($available)
{
$this->available = $available;
return $this;
}
/**
* Get available
*
* @return integer
*/
public function getAvailable()
{
return $this->available;
}
/**
* Set priceChildren
*