public static function doSelectJoinAllExceptColLocation(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     VCatalogPerSourcePeer::addSelectColumns($c);
     $startcol2 = VCatalogPerSourcePeer::NUM_COLUMNS - VCatalogPerSourcePeer::NUM_LAZY_LOAD_COLUMNS + 1;
     CatalogPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + CatalogPeer::NUM_COLUMNS;
     DepartmentPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + DepartmentPeer::NUM_COLUMNS;
     ColSourcePeer::addSelectColumns($c);
     $startcol5 = $startcol4 + ColSourcePeer::NUM_COLUMNS;
     $c->addJoin(VCatalogPerSourcePeer::CATALOG_ID, CatalogPeer::ID);
     $c->addJoin(VCatalogPerSourcePeer::DEPARTMENT_ID, DepartmentPeer::ID);
     $c->addJoin(VCatalogPerSourcePeer::COL_SOURCE_ID, ColSourcePeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = VCatalogPerSourcePeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = CatalogPeer::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->getCatalog();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addVCatalogPerSource($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initVCatalogPerSources();
             $obj2->addVCatalogPerSource($obj1);
         }
         $omClass = DepartmentPeer::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->getDepartment();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addVCatalogPerSource($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initVCatalogPerSources();
             $obj3->addVCatalogPerSource($obj1);
         }
         $omClass = ColSourcePeer::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->getColSource();
             if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj4->addVCatalogPerSource($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj4->initVCatalogPerSources();
             $obj4->addVCatalogPerSource($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
Beispiel #2
0
 public function executeDelete()
 {
     $col_source = ColSourcePeer::retrieveByPk($this->getRequestParameter('id'));
     $this->forward404Unless($col_source);
     $ref_error = 0;
     foreach ($col_source->getRefCountMethods() as $ref) {
         $method = "count" . $ref['affix'];
         $count = $col_source->{$method}();
         if ($count > 0) {
             ++$ref_error;
             $this->getRequest()->setError('col_source/delete/' . sfInflector::camelize($ref['table']), $count);
         }
     }
     if ($ref_error > 0) {
         $this->getRequest()->setError('col_source/delete', '_ERR_DELETE_ (' . $col_source->toString() . ' - id:' . $col_source->getId() . ')');
     } else {
         $col_source->delete();
     }
     return $this->forward('col_source', 'list');
 }
Beispiel #3
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(ColSourcePeer::ID, $pks, Criteria::IN);
         $objs = ColSourcePeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Beispiel #4
0
 public static function doSelectJoinAllExceptColLocation(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     ColItemPeer::addSelectColumns($c);
     $startcol2 = ColItemPeer::NUM_COLUMNS - ColItemPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     CatalogPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + CatalogPeer::NUM_COLUMNS;
     ColStatusPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + ColStatusPeer::NUM_COLUMNS;
     ColConditionPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + ColConditionPeer::NUM_COLUMNS;
     MemberPeer::addSelectColumns($c);
     $startcol6 = $startcol5 + MemberPeer::NUM_COLUMNS;
     ColSourcePeer::addSelectColumns($c);
     $startcol7 = $startcol6 + ColSourcePeer::NUM_COLUMNS;
     $c->addJoin(ColItemPeer::CATALOG_ID, CatalogPeer::ID);
     $c->addJoin(ColItemPeer::COL_STATUS_ID, ColStatusPeer::ID);
     $c->addJoin(ColItemPeer::COL_CONDITION_ID, ColConditionPeer::ID);
     $c->addJoin(ColItemPeer::MEMBER_ID, MemberPeer::ID);
     $c->addJoin(ColItemPeer::COL_SOURCE_ID, ColSourcePeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = ColItemPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = CatalogPeer::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->getCatalog();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addColItem($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initColItems();
             $obj2->addColItem($obj1);
         }
         $omClass = ColStatusPeer::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->getColStatus();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addColItem($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initColItems();
             $obj3->addColItem($obj1);
         }
         $omClass = ColConditionPeer::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->getColCondition();
             if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj4->addColItem($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj4->initColItems();
             $obj4->addColItem($obj1);
         }
         $omClass = MemberPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj5 = new $cls();
         $obj5->hydrate($rs, $startcol5);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj5 = $temp_obj1->getMember();
             if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj5->addColItem($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj5->initColItems();
             $obj5->addColItem($obj1);
         }
         $omClass = ColSourcePeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj6 = new $cls();
         $obj6->hydrate($rs, $startcol6);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj6 = $temp_obj1->getColSource();
             if ($temp_obj6->getPrimaryKey() === $obj6->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj6->addColItem($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj6->initColItems();
             $obj6->addColItem($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
Beispiel #5
0
 public function getColSource($con = null)
 {
     include_once 'lib/model/om/BaseColSourcePeer.php';
     if ($this->aColSource === null && $this->col_source_id !== null) {
         $this->aColSource = ColSourcePeer::retrieveByPK($this->col_source_id, $con);
     }
     return $this->aColSource;
 }
Beispiel #6
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = ColSourcePeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setCode($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setName($arr[$keys[2]]);
     }
 }