Пример #1
0
 /**
  * @param $bookingCompanyCode
  * @return $this
  */
 public function setBookingCompanyCode($bookingCompanyCode)
 {
     if (!$this->pos->getBookingChannel()) {
         $this->pos->setBookingChannel(new BookingChannel());
     }
     $this->pos->getBookingChannel()->getCompanyName()->setCode($bookingCompanyCode);
     return $this;
 }
Пример #2
0
 /**
  * @param $companyName
  * @return $this
  */
 public function setCompanyName($companyName)
 {
     $this->pos->getSource()->getRequestorId()->getCompanyName()->setName($companyName);
     return $this;
 }