Esempio n. 1
0
 public function executeDutyRoster(sfWebRequest $request)
 {
     $c = new Criteria();
     $c->add(DutyRosterPeer::STATUS, Constant::RECORD_STATUS_DELETED, Criteria::NOT_EQUAL);
     $c->add(DutyRosterPeer::DUTY_DATE, date('Y-m-d'));
     $c->addAscendingOrderByColumn(DutyRosterPeer::EMPLOYEE_ID);
     $this->dutys = DutyRosterPeer::doSelect($c);
 }
Esempio n. 2
0
 /**
  * Gets an array of DutyRoster objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this DutyPlace has previously been saved, it will retrieve
  * related DutyRosters from storage. If this DutyPlace is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array DutyRoster[]
  * @throws     PropelException
  */
 public function getDutyRosters($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(DutyPlacePeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collDutyRosters === null) {
         if ($this->isNew()) {
             $this->collDutyRosters = array();
         } else {
             $criteria->add(DutyRosterPeer::DUTY_PLACE_ID, $this->id);
             DutyRosterPeer::addSelectColumns($criteria);
             $this->collDutyRosters = DutyRosterPeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return the collection.
             $criteria->add(DutyRosterPeer::DUTY_PLACE_ID, $this->id);
             DutyRosterPeer::addSelectColumns($criteria);
             if (!isset($this->lastDutyRosterCriteria) || !$this->lastDutyRosterCriteria->equals($criteria)) {
                 $this->collDutyRosters = DutyRosterPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastDutyRosterCriteria = $criteria;
     return $this->collDutyRosters;
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(DutyRosterPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(DutyRosterPeer::DATABASE_NAME);
         $criteria->add(DutyRosterPeer::ID, $pks, Criteria::IN);
         $objs = DutyRosterPeer::doSelect($criteria, $con);
     }
     return $objs;
 }