本文整理汇总了PHP中EmployeePeer::getOMClass方法的典型用法代码示例。如果您正苦于以下问题:PHP EmployeePeer::getOMClass方法的具体用法?PHP EmployeePeer::getOMClass怎么用?PHP EmployeePeer::getOMClass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EmployeePeer
的用法示例。
在下文中一共展示了EmployeePeer::getOMClass方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doSelectJoinAllExceptCourseSchedule
public static function doSelectJoinAllExceptCourseSchedule(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
CourseScheduleTutorPeer::addSelectColumns($c);
$startcol2 = CourseScheduleTutorPeer::NUM_COLUMNS - CourseScheduleTutorPeer::NUM_LAZY_LOAD_COLUMNS + 1;
EmployeePeer::addSelectColumns($c);
$startcol3 = $startcol2 + EmployeePeer::NUM_COLUMNS;
$c->addJoin(CourseScheduleTutorPeer::EMPLOYEE_ID, EmployeePeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = CourseScheduleTutorPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = EmployeePeer::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->getEmployee();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addCourseScheduleTutor($obj1);
break;
}
}
if ($newObject) {
$obj2->initCourseScheduleTutors();
$obj2->addCourseScheduleTutor($obj1);
}
$results[] = $obj1;
}
return $results;
}
示例2: doSelectJoinAllExceptEmployeeDivision
public static function doSelectJoinAllExceptEmployeeDivision(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
EmployeeDetailPeer::addSelectColumns($c);
$startcol2 = EmployeeDetailPeer::NUM_COLUMNS - EmployeeDetailPeer::NUM_LAZY_LOAD_COLUMNS + 1;
EmployeePeer::addSelectColumns($c);
$startcol3 = $startcol2 + EmployeePeer::NUM_COLUMNS;
ReligionPeer::addSelectColumns($c);
$startcol4 = $startcol3 + ReligionPeer::NUM_COLUMNS;
ReligionPeer::addSelectColumns($c);
$startcol5 = $startcol4 + ReligionPeer::NUM_COLUMNS;
EmployeeLevelPeer::addSelectColumns($c);
$startcol6 = $startcol5 + EmployeeLevelPeer::NUM_COLUMNS;
MaritalStatusPeer::addSelectColumns($c);
$startcol7 = $startcol6 + MaritalStatusPeer::NUM_COLUMNS;
$c->addJoin(EmployeeDetailPeer::EMPLOYEE_ID, EmployeePeer::ID);
$c->addJoin(EmployeeDetailPeer::RELIGION_ID, ReligionPeer::ID);
$c->addJoin(EmployeeDetailPeer::SPOUSE_RELIGION_ID, ReligionPeer::ID);
$c->addJoin(EmployeeDetailPeer::EMPLOYEE_LEVEL_ID, EmployeeLevelPeer::ID);
$c->addJoin(EmployeeDetailPeer::MARITAL_STATUS_ID, MaritalStatusPeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = EmployeeDetailPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = EmployeePeer::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->getEmployee();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addEmployeeDetail($obj1);
break;
}
}
if ($newObject) {
$obj2->initEmployeeDetails();
$obj2->addEmployeeDetail($obj1);
}
$omClass = ReligionPeer::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->getReligionRelatedByReligionId();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addEmployeeDetailRelatedByReligionId($obj1);
break;
}
}
if ($newObject) {
$obj3->initEmployeeDetailsRelatedByReligionId();
$obj3->addEmployeeDetailRelatedByReligionId($obj1);
}
$omClass = ReligionPeer::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->getReligionRelatedBySpouseReligionId();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addEmployeeDetailRelatedBySpouseReligionId($obj1);
break;
}
}
if ($newObject) {
$obj4->initEmployeeDetailsRelatedBySpouseReligionId();
$obj4->addEmployeeDetailRelatedBySpouseReligionId($obj1);
}
$omClass = EmployeeLevelPeer::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->getEmployeeLevel();
if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
$newObject = false;
$temp_obj5->addEmployeeDetail($obj1);
break;
}
}
if ($newObject) {
$obj5->initEmployeeDetails();
//.........这里部分代码省略.........
示例3: doSelectJoinAllExceptGradeComponent
public static function doSelectJoinAllExceptGradeComponent(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
AbsenceEkskulPeer::addSelectColumns($c);
$startcol2 = AbsenceEkskulPeer::NUM_COLUMNS - AbsenceEkskulPeer::NUM_LAZY_LOAD_COLUMNS + 1;
StudentPeer::addSelectColumns($c);
$startcol3 = $startcol2 + StudentPeer::NUM_COLUMNS;
AcademicCalendarPeer::addSelectColumns($c);
$startcol4 = $startcol3 + AcademicCalendarPeer::NUM_COLUMNS;
ClassGroupPeer::addSelectColumns($c);
$startcol5 = $startcol4 + ClassGroupPeer::NUM_COLUMNS;
SchedulePeer::addSelectColumns($c);
$startcol6 = $startcol5 + SchedulePeer::NUM_COLUMNS;
ScheduleDetailPeer::addSelectColumns($c);
$startcol7 = $startcol6 + ScheduleDetailPeer::NUM_COLUMNS;
EmployeePeer::addSelectColumns($c);
$startcol8 = $startcol7 + EmployeePeer::NUM_COLUMNS;
$c->addJoin(AbsenceEkskulPeer::STUDENT_ID, StudentPeer::ID);
$c->addJoin(AbsenceEkskulPeer::ACADEMIC_CALENDAR_ID, AcademicCalendarPeer::ID);
$c->addJoin(AbsenceEkskulPeer::CLASS_GROUP_ID, ClassGroupPeer::ID);
$c->addJoin(AbsenceEkskulPeer::SCHEDULE_ID, SchedulePeer::ID);
$c->addJoin(AbsenceEkskulPeer::SCHEDULE_DETAIL_ID, ScheduleDetailPeer::ID);
$c->addJoin(AbsenceEkskulPeer::EMPLOYEE_ID, EmployeePeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = AbsenceEkskulPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = StudentPeer::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->getStudent();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addAbsenceEkskul($obj1);
break;
}
}
if ($newObject) {
$obj2->initAbsenceEkskuls();
$obj2->addAbsenceEkskul($obj1);
}
$omClass = AcademicCalendarPeer::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->getAcademicCalendar();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addAbsenceEkskul($obj1);
break;
}
}
if ($newObject) {
$obj3->initAbsenceEkskuls();
$obj3->addAbsenceEkskul($obj1);
}
$omClass = ClassGroupPeer::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->getClassGroup();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addAbsenceEkskul($obj1);
break;
}
}
if ($newObject) {
$obj4->initAbsenceEkskuls();
$obj4->addAbsenceEkskul($obj1);
}
$omClass = SchedulePeer::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->getSchedule();
if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
$newObject = false;
$temp_obj5->addAbsenceEkskul($obj1);
break;
}
//.........这里部分代码省略.........
示例4: doSelectJoinAllExceptClassType
public static function doSelectJoinAllExceptClassType(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
CounselingPeer::addSelectColumns($c);
$startcol2 = CounselingPeer::NUM_COLUMNS - CounselingPeer::NUM_LAZY_LOAD_COLUMNS + 1;
EmployeePeer::addSelectColumns($c);
$startcol3 = $startcol2 + EmployeePeer::NUM_COLUMNS;
AcademicCalendarPeer::addSelectColumns($c);
$startcol4 = $startcol3 + AcademicCalendarPeer::NUM_COLUMNS;
ClassGroupPeer::addSelectColumns($c);
$startcol5 = $startcol4 + ClassGroupPeer::NUM_COLUMNS;
$c->addJoin(CounselingPeer::EMPLOYEE_ID, EmployeePeer::ID);
$c->addJoin(CounselingPeer::ACADEMIC_CALENDAR_ID, AcademicCalendarPeer::ID);
$c->addJoin(CounselingPeer::CLASS_GROUP_ID, ClassGroupPeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = CounselingPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = EmployeePeer::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->getEmployee();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addCounseling($obj1);
break;
}
}
if ($newObject) {
$obj2->initCounselings();
$obj2->addCounseling($obj1);
}
$omClass = AcademicCalendarPeer::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->getAcademicCalendar();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addCounseling($obj1);
break;
}
}
if ($newObject) {
$obj3->initCounselings();
$obj3->addCounseling($obj1);
}
$omClass = ClassGroupPeer::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->getClassGroup();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addCounseling($obj1);
break;
}
}
if ($newObject) {
$obj4->initCounselings();
$obj4->addCounseling($obj1);
}
$results[] = $obj1;
}
return $results;
}
示例5: doSelectJoinAllExceptRole
/**
* Selects a collection of User objects pre-filled with all related objects except Role.
*
* @param Criteria $c
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of User objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinAllExceptRole(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
foreach (sfMixer::getCallables('BaseUserPeer:doSelectJoinAllExcept:doSelectJoinAllExcept') as $callable) {
call_user_func($callable, 'BaseUserPeer', $c, $con);
}
$c = clone $c;
// Set the correct dbName if it has not been overridden
// $c->getDbName() will return the same object if not set to another value
// so == check is okay and faster
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
UserPeer::addSelectColumns($c);
$startcol2 = UserPeer::NUM_COLUMNS - UserPeer::NUM_LAZY_LOAD_COLUMNS;
EmployeePeer::addSelectColumns($c);
$startcol3 = $startcol2 + (EmployeePeer::NUM_COLUMNS - EmployeePeer::NUM_LAZY_LOAD_COLUMNS);
$c->addJoin(array(UserPeer::EMPLOYEE_ID), array(EmployeePeer::ID), $join_behavior);
$stmt = BasePeer::doSelect($c, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = UserPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = UserPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://propel.phpdb.org/trac/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} else {
$omClass = UserPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj1 = new $cls();
$obj1->hydrate($row);
UserPeer::addInstanceToPool($obj1, $key1);
}
// if obj1 already loaded
// Add objects for joined Employee rows
$key2 = EmployeePeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = EmployeePeer::getInstanceFromPool($key2);
if (!$obj2) {
$omClass = EmployeePeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
EmployeePeer::addInstanceToPool($obj2, $key2);
}
// if $obj2 already loaded
// Add the $obj1 (User) to the collection in $obj2 (Employee)
$obj2->addUser($obj1);
}
// if joined row is not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
示例6: doSelectJoinAllExceptLeaveType
public static function doSelectJoinAllExceptLeaveType(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
EmployeeLeavePeer::addSelectColumns($c);
$startcol2 = EmployeeLeavePeer::NUM_COLUMNS - EmployeeLeavePeer::NUM_LAZY_LOAD_COLUMNS + 1;
EmployeePeer::addSelectColumns($c);
$startcol3 = $startcol2 + EmployeePeer::NUM_COLUMNS;
DepartmentPeer::addSelectColumns($c);
$startcol4 = $startcol3 + DepartmentPeer::NUM_COLUMNS;
AcademicCalendarPeer::addSelectColumns($c);
$startcol5 = $startcol4 + AcademicCalendarPeer::NUM_COLUMNS;
EmployeeLevelPeer::addSelectColumns($c);
$startcol6 = $startcol5 + EmployeeLevelPeer::NUM_COLUMNS;
EmployeeDivisionPeer::addSelectColumns($c);
$startcol7 = $startcol6 + EmployeeDivisionPeer::NUM_COLUMNS;
$c->addJoin(EmployeeLeavePeer::EMPLOYEE_ID, EmployeePeer::ID);
$c->addJoin(EmployeeLeavePeer::DEPARTMENT_ID, DepartmentPeer::ID);
$c->addJoin(EmployeeLeavePeer::ACADEMIC_CALENDAR_ID, AcademicCalendarPeer::ID);
$c->addJoin(EmployeeLeavePeer::EMPLOYEE_LEVEL_ID, EmployeeLevelPeer::ID);
$c->addJoin(EmployeeLeavePeer::EMPLOYEE_DIVISION_ID, EmployeeDivisionPeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = EmployeeLeavePeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = EmployeePeer::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->getEmployee();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addEmployeeLeave($obj1);
break;
}
}
if ($newObject) {
$obj2->initEmployeeLeaves();
$obj2->addEmployeeLeave($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->addEmployeeLeave($obj1);
break;
}
}
if ($newObject) {
$obj3->initEmployeeLeaves();
$obj3->addEmployeeLeave($obj1);
}
$omClass = AcademicCalendarPeer::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->getAcademicCalendar();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addEmployeeLeave($obj1);
break;
}
}
if ($newObject) {
$obj4->initEmployeeLeaves();
$obj4->addEmployeeLeave($obj1);
}
$omClass = EmployeeLevelPeer::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->getEmployeeLevel();
if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
$newObject = false;
$temp_obj5->addEmployeeLeave($obj1);
break;
}
}
if ($newObject) {
$obj5->initEmployeeLeaves();
//.........这里部分代码省略.........
示例7: doSelectJoinAllExceptGradeComponent
public static function doSelectJoinAllExceptGradeComponent(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
VAbsenceEkskulPeer::addSelectColumns($c);
$startcol2 = VAbsenceEkskulPeer::NUM_COLUMNS - VAbsenceEkskulPeer::NUM_LAZY_LOAD_COLUMNS + 1;
SchedulePeer::addSelectColumns($c);
$startcol3 = $startcol2 + SchedulePeer::NUM_COLUMNS;
ScheduleDetailPeer::addSelectColumns($c);
$startcol4 = $startcol3 + ScheduleDetailPeer::NUM_COLUMNS;
EmployeePeer::addSelectColumns($c);
$startcol5 = $startcol4 + EmployeePeer::NUM_COLUMNS;
$c->addJoin(VAbsenceEkskulPeer::SCHEDULE_ID, SchedulePeer::ID);
$c->addJoin(VAbsenceEkskulPeer::SCHEDULE_DETAIL_ID, ScheduleDetailPeer::ID);
$c->addJoin(VAbsenceEkskulPeer::EMPLOYEE_ID, EmployeePeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = VAbsenceEkskulPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = SchedulePeer::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->getSchedule();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addVAbsenceEkskul($obj1);
break;
}
}
if ($newObject) {
$obj2->initVAbsenceEkskuls();
$obj2->addVAbsenceEkskul($obj1);
}
$omClass = ScheduleDetailPeer::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->getScheduleDetail();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addVAbsenceEkskul($obj1);
break;
}
}
if ($newObject) {
$obj3->initVAbsenceEkskuls();
$obj3->addVAbsenceEkskul($obj1);
}
$omClass = EmployeePeer::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->getEmployee();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addVAbsenceEkskul($obj1);
break;
}
}
if ($newObject) {
$obj4->initVAbsenceEkskuls();
$obj4->addVAbsenceEkskul($obj1);
}
$results[] = $obj1;
}
return $results;
}
示例8: doSelectJoinAllExceptGradeComponent
public static function doSelectJoinAllExceptGradeComponent(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
SchedulePeer::addSelectColumns($c);
$startcol2 = SchedulePeer::NUM_COLUMNS - SchedulePeer::NUM_LAZY_LOAD_COLUMNS + 1;
SubjectCurrPeer::addSelectColumns($c);
$startcol3 = $startcol2 + SubjectCurrPeer::NUM_COLUMNS;
EmployeePeer::addSelectColumns($c);
$startcol4 = $startcol3 + EmployeePeer::NUM_COLUMNS;
ClassGroupPeer::addSelectColumns($c);
$startcol5 = $startcol4 + ClassGroupPeer::NUM_COLUMNS;
LocationPeer::addSelectColumns($c);
$startcol6 = $startcol5 + LocationPeer::NUM_COLUMNS;
ClassSessionPeer::addSelectColumns($c);
$startcol7 = $startcol6 + ClassSessionPeer::NUM_COLUMNS;
AcademicCalendarPeer::addSelectColumns($c);
$startcol8 = $startcol7 + AcademicCalendarPeer::NUM_COLUMNS;
GradeSpecPeer::addSelectColumns($c);
$startcol9 = $startcol8 + GradeSpecPeer::NUM_COLUMNS;
$c->addJoin(SchedulePeer::SUBJECT_CURR_ID, SubjectCurrPeer::ID);
$c->addJoin(SchedulePeer::EMPLOYEE_ID, EmployeePeer::ID);
$c->addJoin(SchedulePeer::CLASS_GROUP_ID, ClassGroupPeer::ID);
$c->addJoin(SchedulePeer::LOCATION_ID, LocationPeer::ID);
$c->addJoin(SchedulePeer::CLASS_SESSION_ID, ClassSessionPeer::ID);
$c->addJoin(SchedulePeer::ACADEMIC_CALENDAR_ID, AcademicCalendarPeer::ID);
$c->addJoin(SchedulePeer::GRADE_SPEC_ID, GradeSpecPeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = SchedulePeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = SubjectCurrPeer::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->getSubjectCurr();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addSchedule($obj1);
break;
}
}
if ($newObject) {
$obj2->initSchedules();
$obj2->addSchedule($obj1);
}
$omClass = EmployeePeer::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->getEmployee();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addSchedule($obj1);
break;
}
}
if ($newObject) {
$obj3->initSchedules();
$obj3->addSchedule($obj1);
}
$omClass = ClassGroupPeer::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->getClassGroup();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addSchedule($obj1);
break;
}
}
if ($newObject) {
$obj4->initSchedules();
$obj4->addSchedule($obj1);
}
$omClass = LocationPeer::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->getLocation();
if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
$newObject = false;
//.........这里部分代码省略.........
示例9: doSelectJoinAllExceptWardBed
/**
* Selects a collection of Visit objects pre-filled with all related objects except WardBed.
*
* @param Criteria $c
* @param PropelPDO $con
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of Visit objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
*/
public static function doSelectJoinAllExceptWardBed(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
{
$c = clone $c;
// Set the correct dbName if it has not been overridden
// $c->getDbName() will return the same object if not set to another value
// so == check is okay and faster
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
VisitPeer::addSelectColumns($c);
$startcol2 = VisitPeer::NUM_COLUMNS - VisitPeer::NUM_LAZY_LOAD_COLUMNS;
PatientPeer::addSelectColumns($c);
$startcol3 = $startcol2 + (PatientPeer::NUM_COLUMNS - PatientPeer::NUM_LAZY_LOAD_COLUMNS);
EmployeePeer::addSelectColumns($c);
$startcol4 = $startcol3 + (EmployeePeer::NUM_COLUMNS - EmployeePeer::NUM_LAZY_LOAD_COLUMNS);
EmployeePeer::addSelectColumns($c);
$startcol5 = $startcol4 + (EmployeePeer::NUM_COLUMNS - EmployeePeer::NUM_LAZY_LOAD_COLUMNS);
$c->addJoin(array(VisitPeer::PATIENT_ID), array(PatientPeer::ID), $join_behavior);
$c->addJoin(array(VisitPeer::DOCTOR_ID), array(EmployeePeer::ID), $join_behavior);
$c->addJoin(array(VisitPeer::WARD_DOC_ID), array(EmployeePeer::ID), $join_behavior);
$stmt = BasePeer::doSelect($c, $con);
$results = array();
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = VisitPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = VisitPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://propel.phpdb.org/trac/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} else {
$omClass = VisitPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj1 = new $cls();
$obj1->hydrate($row);
VisitPeer::addInstanceToPool($obj1, $key1);
}
// if obj1 already loaded
// Add objects for joined Patient rows
$key2 = PatientPeer::getPrimaryKeyHashFromRow($row, $startcol2);
if ($key2 !== null) {
$obj2 = PatientPeer::getInstanceFromPool($key2);
if (!$obj2) {
$omClass = PatientPeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj2 = new $cls();
$obj2->hydrate($row, $startcol2);
PatientPeer::addInstanceToPool($obj2, $key2);
}
// if $obj2 already loaded
// Add the $obj1 (Visit) to the collection in $obj2 (Patient)
$obj2->addVisit($obj1);
}
// if joined row is not null
// Add objects for joined Employee rows
$key3 = EmployeePeer::getPrimaryKeyHashFromRow($row, $startcol3);
if ($key3 !== null) {
$obj3 = EmployeePeer::getInstanceFromPool($key3);
if (!$obj3) {
$omClass = EmployeePeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj3 = new $cls();
$obj3->hydrate($row, $startcol3);
EmployeePeer::addInstanceToPool($obj3, $key3);
}
// if $obj3 already loaded
// Add the $obj1 (Visit) to the collection in $obj3 (Employee)
$obj3->addVisitRelatedByDoctorId($obj1);
}
// if joined row is not null
// Add objects for joined Employee rows
$key4 = EmployeePeer::getPrimaryKeyHashFromRow($row, $startcol4);
if ($key4 !== null) {
$obj4 = EmployeePeer::getInstanceFromPool($key4);
if (!$obj4) {
$omClass = EmployeePeer::getOMClass();
$cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
$obj4 = new $cls();
$obj4->hydrate($row, $startcol4);
EmployeePeer::addInstanceToPool($obj4, $key4);
}
// if $obj4 already loaded
// Add the $obj1 (Visit) to the collection in $obj4 (Employee)
$obj4->addVisitRelatedByWardDocId($obj1);
}
// if joined row is not null
$results[] = $obj1;
}
$stmt->closeCursor();
return $results;
}
示例10: doSelectJoinAllExceptClassGroup
public static function doSelectJoinAllExceptClassGroup(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
ClassCounselPeer::addSelectColumns($c);
$startcol2 = ClassCounselPeer::NUM_COLUMNS - ClassCounselPeer::NUM_LAZY_LOAD_COLUMNS + 1;
CourseSchedulePeer::addSelectColumns($c);
$startcol3 = $startcol2 + CourseSchedulePeer::NUM_COLUMNS;
StudentPeer::addSelectColumns($c);
$startcol4 = $startcol3 + StudentPeer::NUM_COLUMNS;
CounselingStatusPeer::addSelectColumns($c);
$startcol5 = $startcol4 + CounselingStatusPeer::NUM_COLUMNS;
EmployeePeer::addSelectColumns($c);
$startcol6 = $startcol5 + EmployeePeer::NUM_COLUMNS;
$c->addJoin(ClassCounselPeer::COURSE_SCHEDULE_ID, CourseSchedulePeer::ID);
$c->addJoin(ClassCounselPeer::STUDENT_ID, StudentPeer::ID);
$c->addJoin(ClassCounselPeer::COUNSELING_STATUS_ID, CounselingStatusPeer::ID);
$c->addJoin(ClassCounselPeer::EMPLOYEE_ID, EmployeePeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = ClassCounselPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = CourseSchedulePeer::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->getCourseSchedule();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addClassCounsel($obj1);
break;
}
}
if ($newObject) {
$obj2->initClassCounsels();
$obj2->addClassCounsel($obj1);
}
$omClass = StudentPeer::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->getStudent();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addClassCounsel($obj1);
break;
}
}
if ($newObject) {
$obj3->initClassCounsels();
$obj3->addClassCounsel($obj1);
}
$omClass = CounselingStatusPeer::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->getCounselingStatus();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addClassCounsel($obj1);
break;
}
}
if ($newObject) {
$obj4->initClassCounsels();
$obj4->addClassCounsel($obj1);
}
$omClass = EmployeePeer::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->getEmployee();
if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
$newObject = false;
$temp_obj5->addClassCounsel($obj1);
break;
}
}
if ($newObject) {
$obj5->initClassCounsels();
$obj5->addClassCounsel($obj1);
}
$results[] = $obj1;
//.........这里部分代码省略.........
示例11: doSelectJoinAllExceptSchedule
public static function doSelectJoinAllExceptSchedule(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
ClassAgendaPeer::addSelectColumns($c);
$startcol2 = ClassAgendaPeer::NUM_COLUMNS - ClassAgendaPeer::NUM_LAZY_LOAD_COLUMNS + 1;
CourseSchedulePeer::addSelectColumns($c);
$startcol3 = $startcol2 + CourseSchedulePeer::NUM_COLUMNS;
ClassSessionPeer::addSelectColumns($c);
$startcol4 = $startcol3 + ClassSessionPeer::NUM_COLUMNS;
SubjectGradingPeer::addSelectColumns($c);
$startcol5 = $startcol4 + SubjectGradingPeer::NUM_COLUMNS;
StudentPeer::addSelectColumns($c);
$startcol6 = $startcol5 + StudentPeer::NUM_COLUMNS;
StudentAbsencePeer::addSelectColumns($c);
$startcol7 = $startcol6 + StudentAbsencePeer::NUM_COLUMNS;
ClassGroupPeer::addSelectColumns($c);
$startcol8 = $startcol7 + ClassGroupPeer::NUM_COLUMNS;
EmployeePeer::addSelectColumns($c);
$startcol9 = $startcol8 + EmployeePeer::NUM_COLUMNS;
$c->addJoin(ClassAgendaPeer::COURSE_SCHEDULE_ID, CourseSchedulePeer::ID);
$c->addJoin(ClassAgendaPeer::CLASS_SESSION_ID, ClassSessionPeer::ID);
$c->addJoin(ClassAgendaPeer::SUBJECT_GRADING_ID, SubjectGradingPeer::ID);
$c->addJoin(ClassAgendaPeer::STUDENT_ID, StudentPeer::ID);
$c->addJoin(ClassAgendaPeer::STUDENT_ABSENCE_ID, StudentAbsencePeer::ID);
$c->addJoin(ClassAgendaPeer::CLASS_GROUP_ID, ClassGroupPeer::ID);
$c->addJoin(ClassAgendaPeer::EMPLOYEE_ID, EmployeePeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = ClassAgendaPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = CourseSchedulePeer::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->getCourseSchedule();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addClassAgenda($obj1);
break;
}
}
if ($newObject) {
$obj2->initClassAgendas();
$obj2->addClassAgenda($obj1);
}
$omClass = ClassSessionPeer::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->getClassSession();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addClassAgenda($obj1);
break;
}
}
if ($newObject) {
$obj3->initClassAgendas();
$obj3->addClassAgenda($obj1);
}
$omClass = SubjectGradingPeer::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->getSubjectGrading();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addClassAgenda($obj1);
break;
}
}
if ($newObject) {
$obj4->initClassAgendas();
$obj4->addClassAgenda($obj1);
}
$omClass = StudentPeer::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->getStudent();
if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
$newObject = false;
//.........这里部分代码省略.........
示例12: doSelectJoinAllExceptMember
public static function doSelectJoinAllExceptMember(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
EmployeePeer::addSelectColumns($c);
$startcol2 = EmployeePeer::NUM_COLUMNS - EmployeePeer::NUM_LAZY_LOAD_COLUMNS + 1;
DepartmentPeer::addSelectColumns($c);
$startcol3 = $startcol2 + DepartmentPeer::NUM_COLUMNS;
StaffTypePeer::addSelectColumns($c);
$startcol4 = $startcol3 + StaffTypePeer::NUM_COLUMNS;
$c->addJoin(EmployeePeer::DEPARTMENT_ID, DepartmentPeer::ID);
$c->addJoin(EmployeePeer::STAFF_TYPE_ID, StaffTypePeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = EmployeePeer::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->addEmployee($obj1);
break;
}
}
if ($newObject) {
$obj2->initEmployees();
$obj2->addEmployee($obj1);
}
$omClass = StaffTypePeer::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->getStaffType();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addEmployee($obj1);
break;
}
}
if ($newObject) {
$obj3->initEmployees();
$obj3->addEmployee($obj1);
}
$results[] = $obj1;
}
return $results;
}
示例13: doSelectJoinAllExceptEmployeeLevel
public static function doSelectJoinAllExceptEmployeeLevel(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
EmployeeJobHistoryPeer::addSelectColumns($c);
$startcol2 = EmployeeJobHistoryPeer::NUM_COLUMNS - EmployeeJobHistoryPeer::NUM_LAZY_LOAD_COLUMNS + 1;
EmployeePeer::addSelectColumns($c);
$startcol3 = $startcol2 + EmployeePeer::NUM_COLUMNS;
StaffTypePeer::addSelectColumns($c);
$startcol4 = $startcol3 + StaffTypePeer::NUM_COLUMNS;
StructuralJobPeer::addSelectColumns($c);
$startcol5 = $startcol4 + StructuralJobPeer::NUM_COLUMNS;
FunctionalJobPeer::addSelectColumns($c);
$startcol6 = $startcol5 + FunctionalJobPeer::NUM_COLUMNS;
DepartmentPeer::addSelectColumns($c);
$startcol7 = $startcol6 + DepartmentPeer::NUM_COLUMNS;
$c->addJoin(EmployeeJobHistoryPeer::EMPLOYEE_ID, EmployeePeer::ID);
$c->addJoin(EmployeeJobHistoryPeer::STAFF_TYPE_ID, StaffTypePeer::ID);
$c->addJoin(EmployeeJobHistoryPeer::STRUCTURAL_JOB_ID, StructuralJobPeer::ID);
$c->addJoin(EmployeeJobHistoryPeer::FUNCTIONAL_JOB_ID, FunctionalJobPeer::ID);
$c->addJoin(EmployeeJobHistoryPeer::DEPARTMENT_ID, DepartmentPeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = EmployeeJobHistoryPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = EmployeePeer::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->getEmployee();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addEmployeeJobHistory($obj1);
break;
}
}
if ($newObject) {
$obj2->initEmployeeJobHistorys();
$obj2->addEmployeeJobHistory($obj1);
}
$omClass = StaffTypePeer::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->getStaffType();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addEmployeeJobHistory($obj1);
break;
}
}
if ($newObject) {
$obj3->initEmployeeJobHistorys();
$obj3->addEmployeeJobHistory($obj1);
}
$omClass = StructuralJobPeer::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->getStructuralJob();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addEmployeeJobHistory($obj1);
break;
}
}
if ($newObject) {
$obj4->initEmployeeJobHistorys();
$obj4->addEmployeeJobHistory($obj1);
}
$omClass = FunctionalJobPeer::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->getFunctionalJob();
if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
$newObject = false;
$temp_obj5->addEmployeeJobHistory($obj1);
break;
}
}
if ($newObject) {
$obj5->initEmployeeJobHistorys();
//.........这里部分代码省略.........
示例14: doSelectJoinAllExceptAcademicCalendar
public static function doSelectJoinAllExceptAcademicCalendar(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
OutclassCounselingPeer::addSelectColumns($c);
$startcol2 = OutclassCounselingPeer::NUM_COLUMNS - OutclassCounselingPeer::NUM_LAZY_LOAD_COLUMNS + 1;
EmployeePeer::addSelectColumns($c);
$startcol3 = $startcol2 + EmployeePeer::NUM_COLUMNS;
StudentPeer::addSelectColumns($c);
$startcol4 = $startcol3 + StudentPeer::NUM_COLUMNS;
LocationPeer::addSelectColumns($c);
$startcol5 = $startcol4 + LocationPeer::NUM_COLUMNS;
StudentPeer::addSelectColumns($c);
$startcol6 = $startcol5 + StudentPeer::NUM_COLUMNS;
CounselingStatusPeer::addSelectColumns($c);
$startcol7 = $startcol6 + CounselingStatusPeer::NUM_COLUMNS;
ClassGroupPeer::addSelectColumns($c);
$startcol8 = $startcol7 + ClassGroupPeer::NUM_COLUMNS;
$c->addJoin(OutclassCounselingPeer::EMPLOYEE_ID, EmployeePeer::ID);
$c->addJoin(OutclassCounselingPeer::STUDENT_INFORMER, StudentPeer::ID);
$c->addJoin(OutclassCounselingPeer::LOCATION_ID, LocationPeer::ID);
$c->addJoin(OutclassCounselingPeer::STUDENT_ID, StudentPeer::ID);
$c->addJoin(OutclassCounselingPeer::COUNSELING_STATUS_ID, CounselingStatusPeer::ID);
$c->addJoin(OutclassCounselingPeer::CLASS_GROUP_ID, ClassGroupPeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = OutclassCounselingPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = EmployeePeer::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->getEmployee();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addOutclassCounseling($obj1);
break;
}
}
if ($newObject) {
$obj2->initOutclassCounselings();
$obj2->addOutclassCounseling($obj1);
}
$omClass = StudentPeer::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->getStudentRelatedByStudentInformer();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addOutclassCounselingRelatedByStudentInformer($obj1);
break;
}
}
if ($newObject) {
$obj3->initOutclassCounselingsRelatedByStudentInformer();
$obj3->addOutclassCounselingRelatedByStudentInformer($obj1);
}
$omClass = LocationPeer::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->getLocation();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addOutclassCounseling($obj1);
break;
}
}
if ($newObject) {
$obj4->initOutclassCounselings();
$obj4->addOutclassCounseling($obj1);
}
$omClass = StudentPeer::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->getStudentRelatedByStudentId();
if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
$newObject = false;
$temp_obj5->addOutclassCounselingRelatedByStudentId($obj1);
break;
}
//.........这里部分代码省略.........
示例15: doSelectJoinAllExceptDepartment
public static function doSelectJoinAllExceptDepartment(Criteria $c, $con = null)
{
$c = clone $c;
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
}
VSubjectAccalLectorStudentPeer::addSelectColumns($c);
$startcol2 = VSubjectAccalLectorStudentPeer::NUM_COLUMNS - VSubjectAccalLectorStudentPeer::NUM_LAZY_LOAD_COLUMNS + 1;
SubjectAccalPeer::addSelectColumns($c);
$startcol3 = $startcol2 + SubjectAccalPeer::NUM_COLUMNS;
ClassGroupPeer::addSelectColumns($c);
$startcol4 = $startcol3 + ClassGroupPeer::NUM_COLUMNS;
AcademicCalendarPeer::addSelectColumns($c);
$startcol5 = $startcol4 + AcademicCalendarPeer::NUM_COLUMNS;
SubjectPeer::addSelectColumns($c);
$startcol6 = $startcol5 + SubjectPeer::NUM_COLUMNS;
EmployeePeer::addSelectColumns($c);
$startcol7 = $startcol6 + EmployeePeer::NUM_COLUMNS;
CurriculumPeer::addSelectColumns($c);
$startcol8 = $startcol7 + CurriculumPeer::NUM_COLUMNS;
$c->addJoin(VSubjectAccalLectorStudentPeer::SUBJECT_ACCAL_ID, SubjectAccalPeer::ID);
$c->addJoin(VSubjectAccalLectorStudentPeer::CLASS_GROUP_ID, ClassGroupPeer::ID);
$c->addJoin(VSubjectAccalLectorStudentPeer::ACADEMIC_CALENDAR_ID, AcademicCalendarPeer::ID);
$c->addJoin(VSubjectAccalLectorStudentPeer::SUBJECT_ID, SubjectPeer::ID);
$c->addJoin(VSubjectAccalLectorStudentPeer::EMPLOYEE_ID, EmployeePeer::ID);
$c->addJoin(VSubjectAccalLectorStudentPeer::CURRICULUM_ID, CurriculumPeer::ID);
$rs = BasePeer::doSelect($c, $con);
$results = array();
while ($rs->next()) {
$omClass = VSubjectAccalLectorStudentPeer::getOMClass();
$cls = Propel::import($omClass);
$obj1 = new $cls();
$obj1->hydrate($rs);
$omClass = SubjectAccalPeer::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->getSubjectAccal();
if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
$newObject = false;
$temp_obj2->addVSubjectAccalLectorStudent($obj1);
break;
}
}
if ($newObject) {
$obj2->initVSubjectAccalLectorStudents();
$obj2->addVSubjectAccalLectorStudent($obj1);
}
$omClass = ClassGroupPeer::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->getClassGroup();
if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
$newObject = false;
$temp_obj3->addVSubjectAccalLectorStudent($obj1);
break;
}
}
if ($newObject) {
$obj3->initVSubjectAccalLectorStudents();
$obj3->addVSubjectAccalLectorStudent($obj1);
}
$omClass = AcademicCalendarPeer::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->getAcademicCalendar();
if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
$newObject = false;
$temp_obj4->addVSubjectAccalLectorStudent($obj1);
break;
}
}
if ($newObject) {
$obj4->initVSubjectAccalLectorStudents();
$obj4->addVSubjectAccalLectorStudent($obj1);
}
$omClass = SubjectPeer::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->getSubject();
if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
$newObject = false;
$temp_obj5->addVSubjectAccalLectorStudent($obj1);
break;
}
//.........这里部分代码省略.........