예제 #1
0
파일: Sales.php 프로젝트: AlvaCorp/POS-2
 /**
  * Declares an association between this object and a ChildUserDetail object.
  *
  * @param  ChildUserDetail $v
  * @return $this|\ORM\Sales The current object (for fluent API support)
  * @throws PropelException
  */
 public function setCashier(ChildUserDetail $v = null)
 {
     if ($v === null) {
         $this->setCashierId(NULL);
     } else {
         $this->setCashierId($v->getId());
     }
     $this->aCashier = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildUserDetail object, it will not be re-added.
     if ($v !== null) {
         $v->addSales($this);
     }
     return $this;
 }