Пример #1
0
 /**
  * Get the associated OrderStatus object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     OrderStatus The associated OrderStatus object.
  * @throws     PropelException
  */
 public function getOrderStatus(PropelPDO $con = null)
 {
     if ($this->aOrderStatus === null && $this->order_status_id !== null) {
         $this->aOrderStatus = OrderStatusPeer::retrieveByPk($this->order_status_id);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aOrderStatus->addOrders($this);
         		 */
     }
     return $this->aOrderStatus;
 }