コード例 #1
0
 public function executePreviousReport(sfWebRequest $request)
 {
     if ($request->isMethod('POST')) {
         $this->flag = true;
         $visit_date = $this->getRequestParameter('visit_date');
         $c = new Criteria();
         //$c->add(LabReportPeer::STATUS, Constant::RECORD_STATUS_DELETED, Criteria::NOT_EQUAL);
         $c->add(LabReportPeer::CREATED_AT, $visit_date);
         $c->addAscendingOrderByColumn(LabReportPeer::ID);
         $this->reports = LabReportPeer::doSelect($c);
     } else {
         $this->flag = false;
     }
     // end else
 }
コード例 #2
0
ファイル: BaseVisit.php プロジェクト: lejacome/hospital-mgt
 /**
  * Gets an array of LabReport 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 Visit has previously been saved, it will retrieve
  * related LabReports from storage. If this Visit 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 LabReport[]
  * @throws     PropelException
  */
 public function getLabReports($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(VisitPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collLabReports === null) {
         if ($this->isNew()) {
             $this->collLabReports = array();
         } else {
             $criteria->add(LabReportPeer::VISIT_ID, $this->id);
             LabReportPeer::addSelectColumns($criteria);
             $this->collLabReports = LabReportPeer::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(LabReportPeer::VISIT_ID, $this->id);
             LabReportPeer::addSelectColumns($criteria);
             if (!isset($this->lastLabReportCriteria) || !$this->lastLabReportCriteria->equals($criteria)) {
                 $this->collLabReports = LabReportPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastLabReportCriteria = $criteria;
     return $this->collLabReports;
 }
コード例 #3
0
 /**
  * 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(LabReportPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(LabReportPeer::DATABASE_NAME);
         $criteria->add(LabReportPeer::ID, $pks, Criteria::IN);
         $objs = LabReportPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
コード例 #4
0
 public function executeVisitDetail(sfWebRequest $request)
 {
     $this->visit = VisitPeer::retrieveByPk(Utility::DecryptQueryString($request->getParameter('visit')));
     $visit = VisitPeer::retrieveByPk(Utility::DecryptQueryString($request->getParameter('visit')));
     $visit_id = $visit->getId();
     $c = new Criteria();
     //$c->add(LabReportPeer::STATUS, Constant::RECORD_STATUS_DELETED, Criteria::NOT_EQUAL);
     $c->add(LabReportPeer::VISIT_ID, $visit_id);
     $this->tests = LabReportPeer::doSelect($c);
     $d = new Criteria();
     //$d->add(VisitMedicinePeer::STATUS, Constant::RECORD_STATUS_DELETED, Criteria::NOT_EQUAL);
     $d->add(VisitMedicinePeer::VISIT_ID, $visit_id);
     $this->medicines = VisitMedicinePeer::doSelect($d);
 }