コード例 #1
0
 public static function doSelectJoinAllExceptAcademicProcess(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     VAcademicCostTaPeer::addSelectColumns($c);
     $startcol2 = VAcademicCostTaPeer::NUM_COLUMNS - VAcademicCostTaPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     AcademicCalendarPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + AcademicCalendarPeer::NUM_COLUMNS;
     AcademicCostComponentPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + AcademicCostComponentPeer::NUM_COLUMNS;
     BankAccountPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + BankAccountPeer::NUM_COLUMNS;
     $c->addJoin(VAcademicCostTaPeer::ACADEMIC_CALENDAR_ID, AcademicCalendarPeer::ID);
     $c->addJoin(VAcademicCostTaPeer::ACADEMIC_COST_COMPONENT_ID, AcademicCostComponentPeer::ID);
     $c->addJoin(VAcademicCostTaPeer::BANK_ACCOUNT_ID, BankAccountPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = VAcademicCostTaPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = AcademicCalendarPeer::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->getAcademicCalendar();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addVAcademicCostTa($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initVAcademicCostTas();
             $obj2->addVAcademicCostTa($obj1);
         }
         $omClass = AcademicCostComponentPeer::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->getAcademicCostComponent();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addVAcademicCostTa($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initVAcademicCostTas();
             $obj3->addVAcademicCostTa($obj1);
         }
         $omClass = BankAccountPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj4 = new $cls();
         $obj4->hydrate($rs, $startcol4);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj4 = $temp_obj1->getBankAccount();
             if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj4->addVAcademicCostTa($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj4->initVAcademicCostTas();
             $obj4->addVAcademicCostTa($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
コード例 #2
0
 public static function doSelectJoinAll(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     BankAccountPeer::addSelectColumns($c);
     $startcol2 = BankAccountPeer::NUM_COLUMNS - BankAccountPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     DepartmentPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + DepartmentPeer::NUM_COLUMNS;
     $c->addJoin(BankAccountPeer::DEPARTMENT_ID, DepartmentPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = BankAccountPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = DepartmentPeer::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->getDepartment();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addBankAccount($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initBankAccounts();
             $obj2->addBankAccount($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
コード例 #3
0
 public static function doSelectJoinAllExceptAcademicCalendar(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     ExpenditureJournalTaPeer::addSelectColumns($c);
     $startcol2 = ExpenditureJournalTaPeer::NUM_COLUMNS - ExpenditureJournalTaPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     BankAccountPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + BankAccountPeer::NUM_COLUMNS;
     $c->addJoin(ExpenditureJournalTaPeer::BANK_ACCOUNT_ID, BankAccountPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = ExpenditureJournalTaPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = BankAccountPeer::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->getBankAccount();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addExpenditureJournalTa($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initExpenditureJournalTas();
             $obj2->addExpenditureJournalTa($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
コード例 #4
0
ファイル: BaseDepartment.php プロジェクト: taryono/school
 public function getBankAccounts($criteria = null, $con = null)
 {
     include_once 'lib/model/om/BaseBankAccountPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collBankAccounts === null) {
         if ($this->isNew()) {
             $this->collBankAccounts = array();
         } else {
             $criteria->add(BankAccountPeer::DEPARTMENT_ID, $this->getId());
             BankAccountPeer::addSelectColumns($criteria);
             $this->collBankAccounts = BankAccountPeer::doSelect($criteria, $con);
         }
     } else {
         if (!$this->isNew()) {
             $criteria->add(BankAccountPeer::DEPARTMENT_ID, $this->getId());
             BankAccountPeer::addSelectColumns($criteria);
             if (!isset($this->lastBankAccountCriteria) || !$this->lastBankAccountCriteria->equals($criteria)) {
                 $this->collBankAccounts = BankAccountPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastBankAccountCriteria = $criteria;
     return $this->collBankAccounts;
 }