Example #1
0
 public function getBudgetChartsRelatedByParentJoinDepartment($criteria = null, $con = null)
 {
     include_once 'lib/model/om/BaseBudgetChartPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collBudgetChartsRelatedByParent === null) {
         if ($this->isNew()) {
             $this->collBudgetChartsRelatedByParent = array();
         } else {
             $criteria->add(BudgetChartPeer::PARENT, $this->getId());
             $this->collBudgetChartsRelatedByParent = BudgetChartPeer::doSelectJoinDepartment($criteria, $con);
         }
     } else {
         $criteria->add(BudgetChartPeer::PARENT, $this->getId());
         if (!isset($this->lastBudgetChartRelatedByParentCriteria) || !$this->lastBudgetChartRelatedByParentCriteria->equals($criteria)) {
             $this->collBudgetChartsRelatedByParent = BudgetChartPeer::doSelectJoinDepartment($criteria, $con);
         }
     }
     $this->lastBudgetChartRelatedByParentCriteria = $criteria;
     return $this->collBudgetChartsRelatedByParent;
 }
Example #2
0
 public static function doSelectJoinAllExceptBudgetStatus(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     BudgetPeer::addSelectColumns($c);
     $startcol2 = BudgetPeer::NUM_COLUMNS - BudgetPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     BudgetCategoryPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + BudgetCategoryPeer::NUM_COLUMNS;
     BudgetChartPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + BudgetChartPeer::NUM_COLUMNS;
     $c->addJoin(BudgetPeer::BUDGET_CATEGORY_ID, BudgetCategoryPeer::ID);
     $c->addJoin(BudgetPeer::BUDGET_CHART_ID, BudgetChartPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = BudgetPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = BudgetCategoryPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj2 = new $cls();
         $obj2->hydrate($rs, $startcol2);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj2 = $temp_obj1->getBudgetCategory();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addBudget($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initBudgets();
             $obj2->addBudget($obj1);
         }
         $omClass = BudgetChartPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj3 = new $cls();
         $obj3->hydrate($rs, $startcol3);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj3 = $temp_obj1->getBudgetChart();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addBudget($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initBudgets();
             $obj3->addBudget($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
Example #3
0
 public function getBudgetChart($con = null)
 {
     include_once 'lib/model/om/BaseBudgetChartPeer.php';
     if ($this->aBudgetChart === null && $this->budget_chart_id !== null) {
         $this->aBudgetChart = BudgetChartPeer::retrieveByPK($this->budget_chart_id, $con);
     }
     return $this->aBudgetChart;
 }
Example #4
0
 public static function retrieveByPKs($pks, $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(self::DATABASE_NAME);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria();
         $criteria->add(BudgetChartPeer::ID, $pks, Criteria::IN);
         $objs = BudgetChartPeer::doSelect($criteria, $con);
     }
     return $objs;
 }