DerDu/SPHERE-Framework

View on GitHub
Application/Transfer/Import/Annaberg/Service.php

Summary

Maintainability
F
1 mo
Test Coverage
<?php
/**
 * Created by PhpStorm.
 * User: Kauschke
 * Date: 06.07.2016
 * Time: 08:53
 */

namespace SPHERE\Application\Transfer\Import\Annaberg;

use MOC\V\Component\Document\Component\Bridge\Repository\PhpExcel;
use MOC\V\Component\Document\Document;
use SPHERE\Application\Contact\Address\Address;
use SPHERE\Application\Contact\Mail\Mail;
use SPHERE\Application\Contact\Phone\Phone;
use SPHERE\Application\Corporation\Company\Company;
use SPHERE\Application\Education\Lesson\Division\Division;
use SPHERE\Application\Education\Lesson\Subject\Subject;
use SPHERE\Application\Education\Lesson\Term\Term;
use SPHERE\Application\Education\School\Course\Course;
use SPHERE\Application\Education\School\Type\Type;
use SPHERE\Application\People\Group\Group;
use SPHERE\Application\People\Meta\Common\Common;
use SPHERE\Application\People\Meta\Common\Service\Entity\TblCommonBirthDates;
use SPHERE\Application\People\Meta\Common\Service\Entity\TblCommonInformation;
use SPHERE\Application\People\Meta\Student\Student;
use SPHERE\Application\People\Meta\Teacher\Teacher;
use SPHERE\Application\People\Person\Person;
use SPHERE\Application\People\Person\Service\Entity\TblPerson;
use SPHERE\Application\People\Relationship\Relationship;
use SPHERE\Common\Frontend\Form\IFormInterface;
use SPHERE\Common\Frontend\Layout\Repository\Panel;
use SPHERE\Common\Frontend\Layout\Structure\Layout;
use SPHERE\Common\Frontend\Layout\Structure\LayoutColumn;
use SPHERE\Common\Frontend\Layout\Structure\LayoutGroup;
use SPHERE\Common\Frontend\Layout\Structure\LayoutRow;
use SPHERE\Common\Frontend\Message\Repository\Danger;
use SPHERE\Common\Frontend\Message\Repository\Info;
use SPHERE\Common\Frontend\Message\Repository\Success;
use SPHERE\Common\Frontend\Message\Repository\Warning;
use SPHERE\System\Extension\Repository\Debugger;
use Symfony\Component\HttpFoundation\File\UploadedFile;

/**
 * Class Service
 * @package SPHERE\Application\Transfer\Import\Annaberg
 */
class Service
{

    /**
     * @param IFormInterface|null $Form
     * @param UploadedFile|null $File
     * @return IFormInterface|Danger|Success|string
     *
     * @throws \MOC\V\Component\Document\Exception\DocumentTypeException
     */
    public function createCompaniesFromFile(
        IFormInterface $Form = null,
        UploadedFile $File = null
    ) {

        /**
         * Skip to Frontend
         */
        if (null === $File) {
            return $Form;
        }

        if (null !== $File) {
            if ($File->getError()) {
                $Form->setError('File', 'Fehler');
            } else {

                /**
                 * Prepare
                 */
                $File = $File->move($File->getPath(), $File->getFilename() . '.' . $File->getClientOriginalExtension());
                /**
                 * Read
                 */
                //$File->getMimeType()
                /** @var PhpExcel $Document */
                $Document = Document::getDocument($File->getPathname());
                if (!$Document instanceof PhpExcel) {
                    $Form->setError('File', 'Fehler');
                    return $Form;
                }

                $X = $Document->getSheetColumnCount();
                $Y = $Document->getSheetRowCount();

                /**
                 * Header -> Location
                 */
                $Location = array(
                    'E.nummer' => null,
                    'Einrichtungsname' => null,
                    'Straße' => null,
                    'Plz' => null,
                    'Ort' => null,
                );
                for ($RunX = 0; $RunX < $X; $RunX++) {
                    $Value = trim($Document->getValue($Document->getCell($RunX, 0)));
                    if (array_key_exists($Value, $Location)) {
                        $Location[$Value] = $RunX;
                    }
                }

                /**
                 * Import
                 */
                if (!in_array(null, $Location, true)) {
                    $countCompany = 0;

                    for ($RunY = 1; $RunY < $Y; $RunY++) {
                        $companyName = trim($Document->getValue($Document->getCell($Location['Einrichtungsname'],
                            $RunY)));

                        if ($companyName) {
                            $tblCompany = Company::useService()->insertCompany(
                                $companyName,
                                trim($Document->getValue($Document->getCell($Location['E.nummer'], $RunY)))
                            );
                            if ($tblCompany) {
                                $countCompany++;

                                \SPHERE\Application\Corporation\Group\Group::useService()->addGroupCompany(
                                    \SPHERE\Application\Corporation\Group\Group::useService()->getGroupByMetaTable('COMMON'),
                                    $tblCompany
                                );
                                \SPHERE\Application\Corporation\Group\Group::useService()->addGroupCompany(
                                    \SPHERE\Application\Corporation\Group\Group::useService()->getGroupByMetaTable('SCHOOL'),
                                    $tblCompany
                                );

                                $streetName = '';
                                $streetNumber = '';
                                $street = trim($Document->getValue($Document->getCell($Location['Straße'],
                                    $RunY)));
                                if (preg_match_all('!\d+!', $street, $matches)) {
                                    $pos = strpos($street, $matches[0][0]);
                                    if ($pos !== null) {
                                        $streetName = trim(substr($street, 0, $pos));
                                        $streetNumber = trim(substr($street, $pos));
                                    }
                                }
                                $zipCode = trim($Document->getValue($Document->getCell($Location['Plz'],
                                    $RunY)));
                                $city = trim($Document->getValue($Document->getCell($Location['Ort'],
                                    $RunY)));

                                if ($streetName && $streetNumber && $zipCode && $city) {
                                    Address::useService()->insertAddressToCompany(
                                        $tblCompany,
                                        $streetName,
                                        $streetNumber,
                                        $zipCode,
                                        $city,
                                        '',
                                        ''
                                    );
                                }
                            }
                        }
                    }
                    return
                        new Success('Es wurden ' . $countCompany . ' Schulen erfolgreich angelegt.');
                } else {
                    Debugger::screenDump($Location);
                    return new Info(json_encode($Location)) .
                    new Danger(
                        "File konnte nicht importiert werden, da nicht alle erforderlichen Spalten gefunden wurden");
                }
            }
        }
        return new Danger('File nicht gefunden');
    }

    /**
     * @param IFormInterface|null $Form
     * @param UploadedFile $File
     *
     * @return IFormInterface|Danger|string
     *
     * @throws \MOC\V\Component\Document\Exception\DocumentTypeException
     */
    public function createStaffsFromFile(IFormInterface $Form = null, UploadedFile $File = null)
    {

        /**
         * Skip to Frontend
         */
        if (null === $File) {
            return $Form;
        }

        if (null !== $File) {
            if ($File->getError()) {
                $Form->setError('File', 'Fehler');
            } else {

                /**
                 * Prepare
                 */
                $File = $File->move($File->getPath(), $File->getFilename() . '.' . $File->getClientOriginalExtension());
                /**
                 * Read
                 */
                /** @var PhpExcel $Document */
                $Document = Document::getDocument($File->getPathname());

                $X = $Document->getSheetColumnCount();
                $Y = $Document->getSheetRowCount();

                /**
                 * Header -> Location
                 */
                $Location = array(
                    'Kürzel' => null,
                    'Anrede' => null,
                    'Titel' => null,
                    'Name' => null,
                    'Vorname' => null,
                    'Straße' => null,
                    'Ort' => null,
                    'Telefon' => null,
                    'Mobil' => null,
                    'geboren' => null,
                );
                for ($RunX = 0; $RunX < $X; $RunX++) {
                    $Value = trim($Document->getValue($Document->getCell($RunX, 0)));
                    if (array_key_exists($Value, $Location)) {
                        $Location[$Value] = $RunX;
                    }
                }

                /**
                 * Import
                 */
                if (!in_array(null, $Location, true)) {
                    $countStaff = 0;
                    $countStaffExists = 0;
                    $error = array();

                    $tblStaffGroup = Group::useService()->getGroupByMetaTable('STAFF');
                    $tblTeacherGroup = Group::useService()->getGroupByMetaTable('TEACHER');

                    for ($RunY = 1; $RunY < $Y; $RunY++) {

                        $firstName = trim($Document->getValue($Document->getCell($Location['Vorname'], $RunY)));
                        $lastName = trim($Document->getValue($Document->getCell($Location['Name'], $RunY)));
                        if ($firstName !== '' && $lastName !== '') {

                            $cityName = trim($Document->getValue($Document->getCell($Location['Ort'], $RunY)));
                            $cityCode = '';
                            $cityDistrict = '';
                            $pos = strpos($cityName, " ");
                            if ($pos !== false) {
                                $cityCode = trim(substr($cityName, 0, $pos));
                                $cityName = trim(substr($cityName, $pos + 1));

                                $pos = strpos($cityName, " OT ");
                                if ($pos !== false) {
                                    $cityDistrict = trim(substr($cityName, $pos + 4));
                                    $cityName = trim(substr($cityName, 0, $pos));
                                }
                            }

                            $tblPersonExits = Person::useService()->existsPerson(
                                $firstName,
                                $lastName,
                                $cityCode
                            );

                            $acronym = trim($Document->getValue($Document->getCell($Location['Kürzel'], $RunY)));

                            if ($tblPersonExits) {

                                $error[] = 'Zeile: ' . ($RunY + 1) . ' Die Person wurde nicht angelegt, da schon eine Person mit gleichen Namen und gleicher PLZ existiert.';

                                Group::useService()->addGroupPerson($tblStaffGroup, $tblPersonExits);
                                Group::useService()->addGroupPerson($tblTeacherGroup, $tblPersonExits);

                                if ($acronym !== '') {
                                    Teacher::useService()->insertTeacher($tblPersonExits, $acronym);
                                }

                                $countStaffExists++;

                            } else {

                                $salutation = trim($Document->getValue($Document->getCell($Location['Anrede'],
                                    $RunY)));
                                if ($salutation == 'Herr' || $salutation == 'Herrn') {
                                    $tblSalutation = Person::useService()->getSalutationById(1);
                                } elseif ($salutation == 'Frau') {
                                    $tblSalutation = Person::useService()->getSalutationById(2);
                                } else {
                                    $tblSalutation = false;
                                }

                                $tblPerson = Person::useService()->insertPerson(
                                    $tblSalutation ? $tblSalutation : null,
                                    trim($Document->getValue($Document->getCell($Location['Titel'], $RunY))),
                                    $firstName,
                                    '',
                                    $lastName,
                                    array(
                                        0 => Group::useService()->getGroupByMetaTable('COMMON'),
                                        1 => $tblStaffGroup,
                                        2 => $tblTeacherGroup
                                    )
                                );

                                if ($tblPerson !== false) {
                                    $countStaff++;

                                    if ($acronym !== '') {
                                        Teacher::useService()->insertTeacher($tblPerson, $acronym);
                                    }

                                    $day = trim($Document->getValue($Document->getCell($Location['geboren'],
                                        $RunY)));
                                    if ($day !== '') {
                                        $birthday = date('d.m.Y', \PHPExcel_Shared_Date::ExcelToPHP($day));
                                    } else {
                                        $birthday = '';
                                    }
//                                    $gender = trim($Document->getValue($Document->getCell($Location['Geschlecht'],
//                                        $RunY)));
//                                    if ($gender == 'm') {
//                                        $gender = TblCommonBirthDates::VALUE_GENDER_MALE;
//                                    } elseif ($gender == 'w') {
//                                        $gender = TblCommonBirthDates::VALUE_GENDER_FEMALE;
//                                    } else {
                                    $gender = TblCommonBirthDates::VALUE_GENDER_NULL;
//                                    }

                                    Common::useService()->insertMeta(
                                        $tblPerson,
                                        $birthday,
                                        '',
                                        $gender,
                                        '',
                                        '',
                                        TblCommonInformation::VALUE_IS_ASSISTANCE_NULL,
                                        '',
                                        ''
                                    );

                                    // Address
                                    $StreetName = '';
                                    $StreetNumber = '';
                                    $Street = trim($Document->getValue($Document->getCell($Location['Straße'],
                                        $RunY)));
                                    if (preg_match_all('!\d+!', $Street, $matches)) {
                                        $pos = strpos($Street, $matches[0][0]);
                                        if ($pos !== null) {
                                            $StreetName = trim(substr($Street, 0, $pos));
                                            $StreetNumber = trim(substr($Street, $pos));
                                        }
                                    }

                                    if ($StreetName && $StreetNumber && $cityCode && $cityName) {
                                        Address::useService()->insertAddressToPerson(
                                            $tblPerson, $StreetName, $StreetNumber, $cityCode, $cityName, $cityDistrict,
                                            ''
                                        );
                                    } else {
                                        $error[] = 'Zeile: ' . ($RunY + 1) . ' Die Adresse der Person wurde nicht angelegt, da sie keine vollständige Adresse besitzt.';
                                    }

                                    $phoneNumber = trim($Document->getValue($Document->getCell($Location['Telefon'],
                                        $RunY)));
                                    if ($phoneNumber != '') {
                                        $tblType = Phone::useService()->getTypeById(1);
                                        if (0 === strpos($phoneNumber, '01')) {
                                            $tblType = Phone::useService()->getTypeById(2);
                                        }
                                        Phone::useService()->insertPhoneToPerson(
                                            $tblPerson,
                                            $phoneNumber,
                                            $tblType,
                                            ''
                                        );
                                    }

                                    $phoneNumber = trim($Document->getValue($Document->getCell($Location['Mobil'],
                                        $RunY)));
                                    if ($phoneNumber != '') {
                                        $tblType = Phone::useService()->getTypeById(1);
                                        if (0 === strpos($phoneNumber, '01')) {
                                            $tblType = Phone::useService()->getTypeById(2);
                                        }
                                        Phone::useService()->insertPhoneToPerson(
                                            $tblPerson,
                                            $phoneNumber,
                                            $tblType,
                                            ''
                                        );
                                    }
                                }
                            }
                        } else {
                            $error[] = 'Zeile: ' . ($RunY + 1) . ' Die Person wurde nicht angelegt, da sie keinen Namen und Vornamen hat.';
                        }
                    }

                    Debugger::screenDump($error);

                    return
                        new Success('Es wurden ' . $countStaff . ' Mitarbeiter erfolgreich angelegt.') .
                        ($countStaffExists > 0 ?
                            new Warning($countStaffExists . ' Mitarbeiter exisistieren bereits.') : '')
                        . new Layout(new LayoutGroup(new LayoutRow(new LayoutColumn(
                            new Panel(
                                'Fehler',
                                $error,
                                Panel::PANEL_TYPE_DANGER
                            )
                        ))));

                } else {
                    Debugger::screenDump($Location);

                    return new Warning(json_encode($Location)) . new Danger(
                        "File konnte nicht importiert werden, da nicht alle erforderlichen Spalten gefunden wurden");
                }
            }
        }

        return new Danger('File nicht gefunden');
    }

    /**
     * @param IFormInterface|null $Form
     * @param UploadedFile|null $File
     *
     * @return IFormInterface|Danger|string
     * @throws \MOC\V\Component\Document\Exception\DocumentTypeException
     */
    public function createStudentsFromFile(
        IFormInterface $Form = null,
        UploadedFile $File = null
    ) {


        /**
         * Skip to Frontend
         */
        if (null === $File) {
            return $Form;
        }

        if (null !== $File) {
            if ($File->getError()) {
                $Form->setError('File', 'Fehler');
            } else {

                /**
                 * Prepare
                 */
                $File = $File->move($File->getPath(),
                    $File->getFilename() . '.' . $File->getClientOriginalExtension());

                /**
                 * Read
                 */
                //$File->getMimeType()
                /** @var PhpExcel $Document */
                $Document = Document::getDocument($File->getPathname());
                if (!$Document instanceof PhpExcel) {
                    $Form->setError('File', 'Fehler');
                    return $Form;
                }

                $X = $Document->getSheetColumnCount();
                $Y = $Document->getSheetRowCount();

                /**
                 * Header -> Location
                 */
                $Location = array(
                    'Schüler_Schülernummer' => null,
                    'Schüler_Name' => null,
                    'Schüler_Vorname' => null,
                    'Schüler_Klasse' => null,
                    'Schüler_Stammgruppe' => null,
                    'Schüler_Geschlecht' => null,
                    'Schüler_Staatsangehörigkeit' => null,
                    'Schüler_Straße' => null,
                    'Schüler_Plz' => null,
                    'Schüler_Wohnort' => null,
                    'Schüler_Ortsteil' => null,
                    'Schüler_Landkreis' => null,
                    'Schüler_Bundesland' => null,
                    'Schüler_Geburtsdatum' => null,
                    'Schüler_Geburtsort' => null,
                    'Schüler_Geschwister' => null,
                    'Schüler_Integr_Förderschüler' => null,
                    'Schüler_Konfession' => null,
                    'Schüler_Einschulung_am' => null,
                    'Schüler_Aufnahme_am' => null,
                    'Schüler_Abgang_am' => null,
                    'Schüler_abgebende_Schule_ID' => null,
                    'Schüler_aufnehmende_Schule_ID' => null,
                    'Schüler_Schließfachnummer' => null,
                    'Schüler_letzte_Schulart' => null,
                    'Schüler_Krankenversicherung_bei' => null,
                    'Schüler_Krankenkasse' => null,
                    'Schüler_Förderschwerpunkt' => null,
                    'Schüler_Förderung_Hinweise' => null,
                    'Beförderung_Fahrschüler' => null,
                    'Beförderung_Einsteigestelle' => null,
                    'Beförderung_Verkehrsmittel' => null,
                    'Schueler_Telefon1' => null,
                    'Schueler_Telefon2' => null,
                    'Sorgeberechtigte1_Telefon1' => null,
                    'Sorgeberechtigte2_Telefon1' => null,
                    'Sorgeberechtigte1_Telefon2' => null,
                    'Sorgeberechtigte2_Telefon2' => null,
                    'Schueler_Email' => null,
                    'Sorgeberechtigte1_Email' => null,
                    'Sorgeberechtigte2_Email' => null,
                    'Sorgeberechtigter1_Titel' => null,
                    'Sorgeberechtigter1_Name' => null,
                    'Sorgeberechtigter1_Vorname' => null,
                    'Sorgeberechtigter1_Geschlecht' => null,
                    'Sorgeberechtigter1_Straße' => null,
                    'Sorgeberechtigter1_Plz' => null,
                    'Sorgeberechtigter1_Wohnort' => null,
                    'Sorgeberechtigter1_Ortsteil' => null,
                    'Sorgeberechtigter2_Titel' => null,
                    'Sorgeberechtigter2_Name' => null,
                    'Sorgeberechtigter2_Vorname' => null,
                    'Sorgeberechtigter2_Geschlecht' => null,
                    'Sorgeberechtigter2_Straße' => null,
                    'Sorgeberechtigter2_Plz' => null,
                    'Sorgeberechtigter2_Wohnort' => null,
                    'Sorgeberechtigter2_Ortsteil' => null,
                    'Fächer_Bildungsgang' => null,
                    'Fächer_Profil' => null,
                    'Fächer_Neigungskursbereich' => null,
                    'Fächer_Neigungskurs' => null,
                    'Fächer_Religionsunterricht' => null,
                    'Fächer_Fremdsprache1' => null,
                    'Fächer_Fremdsprache1_von' => null,
                    'Fächer_Fremdsprache1_bis' => null,
                    'Fächer_Fremdsprache2' => null,
                    'Fächer_Fremdsprache2_von' => null,
                    'Fächer_Fremdsprache2_bis' => null,
                );

                for ($RunX = 0; $RunX < $X; $RunX++) {
                    $Value = trim($Document->getValue($Document->getCell($RunX, 0)));
                    if (array_key_exists($Value, $Location)) {
                        $Location[$Value] = $RunX;
                    }
                }

                /**
                 * Import
                 */
                if (!in_array(null, $Location, true)) {
                    $countStudent = 0;
                    $countFather = 0;
                    $countMother = 0;
                    $countFatherExists = 0;
                    $countMotherExists = 0;

                    // Profile löschen
                    $this->destroySubjectByAcronym('KPR');
                    $this->destroySubjectByAcronym('SPR');
                    $this->destroySubjectByAcronym('NPR');
                    $this->destroySubjectByAcronym('GPR');

                    // Profile anlegen
                    $tblSubject = Subject::useService()->insertSubject('p/gw', 'gesellschaftwissenschaftliches Profil');
                    Subject::useService()->addCategorySubject(Subject::useService()->getCategoryByIdentifier('PROFILE'),
                        $tblSubject);
                    $tblSubject = Subject::useService()->insertSubject('p/kü', 'künsterliches Profil');
                    Subject::useService()->addCategorySubject(Subject::useService()->getCategoryByIdentifier('PROFILE'),
                        $tblSubject);
                    $tblSubject = Subject::useService()->insertSubject('p/nw', 'naturwissenschaftliches Propfil');
                    Subject::useService()->addCategorySubject(Subject::useService()->getCategoryByIdentifier('PROFILE'),
                        $tblSubject);
                    $tblSubject = Subject::useService()->insertSubject('p/orc', 'Profil Orchester');
                    Subject::useService()->addCategorySubject(Subject::useService()->getCategoryByIdentifier('PROFILE'),
                        $tblSubject);
                    $tblSubject = Subject::useService()->insertSubject('p/so1', 'sonstiges Profil 1');
                    Subject::useService()->addCategorySubject(Subject::useService()->getCategoryByIdentifier('PROFILE'),
                        $tblSubject);
                    $tblSubject = Subject::useService()->insertSubject('p/spr', 'sprachliches Profil');
                    Subject::useService()->addCategorySubject(Subject::useService()->getCategoryByIdentifier('PROFILE'),
                        $tblSubject);

                    $tblCompanyGym = Company::useService()->insertCompany("Ev. Schulgemeinschaft Erzgebirge staatl. anerkanntes Gymnasium");
                    \SPHERE\Application\Corporation\Group\Group::useService()->addGroupCompany(
                        \SPHERE\Application\Corporation\Group\Group::useService()->getGroupByMetaTable('COMMON'),
                        $tblCompanyGym
                    );
                    \SPHERE\Application\Corporation\Group\Group::useService()->addGroupCompany(
                        \SPHERE\Application\Corporation\Group\Group::useService()->getGroupByMetaTable('SCHOOL'),
                        $tblCompanyGym
                    );
                    $tblCompanyOber = Company::useService()->insertCompany("Ev. Schulgemeinschaft Erzgebirge staatl. anerkannte Oberschule");
                    \SPHERE\Application\Corporation\Group\Group::useService()->addGroupCompany(
                        \SPHERE\Application\Corporation\Group\Group::useService()->getGroupByMetaTable('COMMON'),
                        $tblCompanyOber
                    );
                    \SPHERE\Application\Corporation\Group\Group::useService()->addGroupCompany(
                        \SPHERE\Application\Corporation\Group\Group::useService()->getGroupByMetaTable('SCHOOL'),
                        $tblCompanyOber
                    );

                    $year = 17;
                    // normales Schuljahr
                    $tblYear = Term::useService()->insertYear('20' . $year . '/' . ($year + 1));
                    if ($tblYear) {
                        $tblPeriodList = Term::useService()->getPeriodAllByYear($tblYear);
                        if (!$tblPeriodList) {
                            // firstTerm
                            $tblPeriod = Term::useService()->insertPeriod(
                                '1. Halbjahr',
                                '01.08.20' . $year,
                                '31.01.20' . ($year + 1)
                            );
                            if ($tblPeriod) {
                                Term::useService()->insertYearPeriod($tblYear, $tblPeriod);
                            }

                            // secondTerm
                            $tblPeriod = Term::useService()->insertPeriod(
                                '2. Halbjahr',
                                '01.02.20' . ($year + 1),
                                '31.07.20' . ($year + 1)
                            );
                            if ($tblPeriod) {
                                Term::useService()->insertYearPeriod($tblYear, $tblPeriod);
                            }
                        }
                    }
                    // Klasse 12
                    $tblYearDivision12 = Term::useService()->insertYear('20' . $year . '/' . ($year + 1),  'Klasse 12');
                    if ($tblYearDivision12) {
                        $tblPeriodList = Term::useService()->getPeriodAllByYear($tblYearDivision12);
                        if (!$tblPeriodList) {
                            // firstTerm
                            $tblPeriod = Term::useService()->insertPeriod(
                                '1. Halbjahr',
                                '01.08.20' . $year,
                                '31.12.20' . ($year + 1)
                            );
                            if ($tblPeriod) {
                                Term::useService()->insertYearPeriod($tblYearDivision12, $tblPeriod);
                            }

                            // secondTerm
                            $tblPeriod = Term::useService()->insertPeriod(
                                '2. Halbjahr',
                                '01.01.20' . ($year + 1),
                                '30.06.20' . ($year + 1)
                            );
                            if ($tblPeriod) {
                                Term::useService()->insertYearPeriod($tblYearDivision12, $tblPeriod);
                            }
                        }
                    }


                    $error = array();
                    for ($RunY = 1; $RunY < $Y; $RunY++) {
                        set_time_limit(300);
                        // Student
                        $firstName = trim($Document->getValue($Document->getCell($Location['Schüler_Vorname'], $RunY)));
                        $lastName = trim($Document->getValue($Document->getCell($Location['Schüler_Name'], $RunY)));
                        if ($firstName === '' || $lastName === '') {
                            $error[] = 'Zeile: ' . ($RunY + 1) . ' Der Schüler wurde nicht hinzugefügt, da er keinen Vornamen und/oder Namen besitzt.';
                        } else {

                            $tblPerson = Person::useService()->insertPerson(
                                Person::useService()->getSalutationById(3),    //Schüler
                                '',
                                $firstName,
                                '',
                                $lastName,
                                array(
                                    0 => Group::useService()->getGroupByMetaTable('COMMON'),
                                    1 => Group::useService()->getGroupByMetaTable('STUDENT'),
                                )
                            );

                            if ($tblPerson === false) {
                                $error[] = 'Zeile: ' . ($RunY + 1) . ' Der Schüler konnte nicht angelegt werden.';
                            } else {
                                $countStudent++;

                                $mainGroup = trim($Document->getValue($Document->getCell($Location['Schüler_Stammgruppe'],
                                    $RunY)));
                                if ($mainGroup !== '') {
                                    $tblMainGroup = Group::useService()->insertGroup($mainGroup);
                                    if ($tblMainGroup) {
                                        Group::useService()->addGroupPerson($tblMainGroup, $tblPerson);
                                    } else {
                                        $error[] = 'Zeile: ' . ($RunY + 1) . ' Stammgruppe nicht gefunden.';
                                    }
                                }

                                $gender = trim($Document->getValue($Document->getCell($Location['Schüler_Geschlecht'],
                                    $RunY)));
                                if ($gender == 'm') {
                                    $gender = TblCommonBirthDates::VALUE_GENDER_MALE;
                                } elseif ($gender == 'w') {
                                    $gender = TblCommonBirthDates::VALUE_GENDER_FEMALE;
                                } else {
                                    $gender = TblCommonBirthDates::VALUE_GENDER_NULL;
                                }

                                Common::useService()->insertMeta(
                                    $tblPerson,
                                    trim($Document->getValue($Document->getCell($Location['Schüler_Geburtsdatum'],
                                        $RunY))),
                                    trim($Document->getValue($Document->getCell($Location['Schüler_Geburtsort'],
                                        $RunY))),
                                    $gender,
                                    trim($Document->getValue($Document->getCell($Location['Schüler_Staatsangehörigkeit'],
                                        $RunY))),
                                    trim($Document->getValue($Document->getCell($Location['Schüler_Konfession'],
                                        $RunY))),
                                    TblCommonInformation::VALUE_IS_ASSISTANCE_NULL,
                                    '',
                                    ''
                                );

                                $tblSchoolType = Type::useService()->getTypeById(7); // Gymnasium
                                $tblCurrentCompany = $tblCompanyGym;

                                // division
                                $tblDivision = false;
                                $tblAlternateCourse = false;
                                $division = trim($Document->getValue($Document->getCell($Location['Schüler_Klasse'],
                                    $RunY)));
                                if ($division !== '') {
                                    if (strpos($division, 'alpha') !== false) {
                                        $tblSchoolType = Type::useService()->getTypeById(8); // Oberschule
                                        $tblCurrentCompany = $tblCompanyOber;
                                        $tblAlternateCourse = Course::useService()->getCourseById(2); // Realschule
                                    } else {
                                        $tblAlternateCourse = Course::useService()->getCourseById(3); // Gymnasium
                                    }

                                    if (strpos($division, '12') !== false){
                                        $tblSelectedYear = $tblYearDivision12;
                                    } else {
                                        $tblSelectedYear = $tblYear;
                                    }

                                    if ($tblSchoolType) {
                                        $level = '';
                                        $pos = strpos($division, ' ');
                                        if ($pos !== false) {
                                            $level = trim(substr($division, 0, $pos));
                                            $division = trim(substr($division, $pos + 1));
                                        } else {
                                            $pos = strpos($division, '-');
                                            if ($pos !== false) {
                                                $level = trim(substr($division, 0, $pos));
                                                //$division = trim(substr($division, $pos + 1));
                                                $tblGroup = Group::useService()->insertGroup($division);
                                                if ($tblGroup){
                                                    Group::useService()->addGroupPerson($tblGroup, $tblPerson);
                                                }
                                                $division = '';
                                            }
                                        }

                                        if ($level !== '') {
                                            $tblLevel = Division::useService()->insertLevel($tblSchoolType, $level);
                                            if ($tblLevel) {
                                                $tblDivision = Division::useService()->insertDivision(
                                                    $tblSelectedYear,
                                                    $tblLevel,
                                                    $division
                                                );
                                            }
                                        }
                                    }

                                    if ($tblDivision) {
                                        Division::useService()->insertDivisionStudent($tblDivision, $tblPerson);
                                    } else {
                                        $error[] = 'Zeile: ' . ($RunY + 1) . ' Der Schüler konnte keiner Klasse zugeordnet werden.';
                                    }
                                }

                                // Address
                                $studentCityCode = str_pad(
                                    trim($Document->getValue($Document->getCell($Location['Schüler_Plz'], $RunY))),
                                    5,
                                    "0",
                                    STR_PAD_LEFT
                                );
                                $studentCityName = trim($Document->getValue($Document->getCell($Location['Schüler_Wohnort'],
                                    $RunY)));
                                $studentCityDistrict = trim($Document->getValue($Document->getCell($Location['Schüler_Ortsteil'],
                                    $RunY)));
                                $streetName = '';
                                $streetNumber = '';
                                $street = trim($Document->getValue($Document->getCell($Location['Schüler_Straße'],
                                    $RunY)));
                                if (preg_match_all('!\d+!', $street, $matches)) {
                                    $pos = strpos($street, $matches[0][0]);
                                    if ($pos !== null) {
                                        $streetName = trim(substr($street, 0, $pos));
                                        $streetNumber = trim(substr($street, $pos));
                                    }
                                }
                                $county = trim($Document->getValue($Document->getCell($Location['Schüler_Landkreis'],
                                    $RunY)));
                                if (trim($Document->getValue($Document->getCell($Location['Schüler_Bundesland'],
                                        $RunY))) == 'Sachsen'
                                ) {
                                    $tblState = Address::useService()->getStateByName('Sachsen');
                                } else {
                                    $tblState = false;
                                }
                                if ($streetName !== '' && $streetNumber !== ''
                                    && $studentCityCode && $studentCityName
                                ) {
                                    Address::useService()->insertAddressToPerson(
                                        $tblPerson, $streetName, $streetNumber, $studentCityCode, $studentCityName,
                                        $studentCityDistrict, '', $county, '', $tblState ? $tblState : null
                                    );
                                }

                                $tblRelationshipTypeCustody = Relationship::useService()->getTypeById(1);
                                // Father
                                $tblPersonFather = null;
                                $fatherLastName = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter2_Name'],
                                    $RunY)));
                                $fatherFirstName = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter2_Vorname'],
                                    $RunY)));

                                $fatherCityCode = str_pad(
                                    trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter2_Plz'],
                                        $RunY))),
                                    5,
                                    "0",
                                    STR_PAD_LEFT
                                );

                                if ($fatherLastName != '') {

                                    $tblPersonFatherExists = Person::useService()->existsPerson(
                                        $fatherFirstName,
                                        $fatherLastName,
                                        $fatherCityCode
                                    );

                                    if (!$tblPersonFatherExists) {
                                        $gender = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter2_Geschlecht'],
                                            $RunY)));
                                        if ($gender == 'm') {
                                            $gender = TblCommonBirthDates::VALUE_GENDER_MALE;
                                            $tblSalutation = Person::useService()->getSalutationById(1);
                                        } elseif ($gender == 'w') {
                                            $gender = TblCommonBirthDates::VALUE_GENDER_FEMALE;
                                            $tblSalutation = Person::useService()->getSalutationById(2);
                                        } else {
                                            $gender = TblCommonBirthDates::VALUE_GENDER_NULL;
                                            $tblSalutation = null;
                                        }

                                        $tblPersonFather = Person::useService()->insertPerson(
                                            $tblSalutation,
                                            trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter2_Titel'],
                                                $RunY))),
                                            $fatherFirstName,
                                            '',
                                            $fatherLastName,
                                            array(
                                                0 => Group::useService()->getGroupByMetaTable('COMMON'),
                                                1 => Group::useService()->getGroupByMetaTable('CUSTODY')
                                            )
                                        );

                                        if ($tblPersonFather) {
                                            Common::useService()->insertMeta(
                                                $tblPersonFather,
                                                '',
                                                '',
                                                $gender,
                                                '',
                                                '',
                                                TblCommonInformation::VALUE_IS_ASSISTANCE_NULL,
                                                '',
                                                ''
                                            );
                                        }

                                        Relationship::useService()->insertRelationshipToPerson(
                                            $tblPersonFather,
                                            $tblPerson,
                                            $tblRelationshipTypeCustody,
                                            ''
                                        );

                                        $countFather++;
                                    } else {

                                        Relationship::useService()->insertRelationshipToPerson(
                                            $tblPersonFatherExists,
                                            $tblPerson,
                                            $tblRelationshipTypeCustody,
                                            ''
                                        );

                                        $error[] = 'Zeile: ' . ($RunY + 1) . ' Der Sorgeberechtigte2 wurde nicht angelegt, da schon eine Person mit gleichen Namen und gleicher PLZ existiert. Der Schüler wurde mit der bereits existierenden Person verknüpft';

                                        $countFatherExists++;
                                    }
                                }

                                // Mother
                                $tblPersonMother = null;
                                $motherLastName = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter1_Name'],
                                    $RunY)));
                                $motherFirstName = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter1_Vorname'],
                                    $RunY)));
                                $motherCityCode = str_pad(
                                    trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter1_Plz'],
                                        $RunY))),
                                    5,
                                    "0",
                                    STR_PAD_LEFT
                                );

                                if ($motherLastName != '') {

                                    $tblPersonMotherExists = Person::useService()->existsPerson(
                                        $motherFirstName,
                                        $motherLastName,
                                        $studentCityCode
                                    );

                                    if (!$tblPersonMotherExists) {
                                        $gender = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter1_Geschlecht'],
                                            $RunY)));
                                        if ($gender == 'm') {
                                            $gender = TblCommonBirthDates::VALUE_GENDER_MALE;
                                            $tblSalutation = Person::useService()->getSalutationById(1);
                                        } elseif ($gender == 'w') {
                                            $gender = TblCommonBirthDates::VALUE_GENDER_FEMALE;
                                            $tblSalutation = Person::useService()->getSalutationById(2);
                                        } else {
                                            $gender = TblCommonBirthDates::VALUE_GENDER_NULL;
                                            $tblSalutation = null;
                                        }

                                        $tblPersonMother = Person::useService()->insertPerson(
                                            $tblSalutation,
                                            trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter1_Titel'],
                                                $RunY))),
                                            $motherFirstName,
                                            '',
                                            $motherLastName,
                                            array(
                                                0 => Group::useService()->getGroupByMetaTable('COMMON'),
                                                1 => Group::useService()->getGroupByMetaTable('CUSTODY')
                                            )
                                        );

                                        if ($tblPersonMother) {
                                            Common::useService()->insertMeta(
                                                $tblPersonMother,
                                                '',
                                                '',
                                                $gender,
                                                '',
                                                '',
                                                TblCommonInformation::VALUE_IS_ASSISTANCE_NULL,
                                                '',
                                                ''
                                            );
                                        }

                                        Relationship::useService()->insertRelationshipToPerson(
                                            $tblPersonMother,
                                            $tblPerson,
                                            $tblRelationshipTypeCustody,
                                            ''
                                        );

                                        $countMother++;
                                    } else {

                                        Relationship::useService()->insertRelationshipToPerson(
                                            $tblPersonMotherExists,
                                            $tblPerson,
                                            $tblRelationshipTypeCustody,
                                            ''
                                        );

                                        $error[] = 'Zeile: ' . ($RunY + 1) . ' Der Sorgeberechtigte1 wurde nicht angelegt, da schon eine Person mit gleichen Namen und gleicher PLZ existiert. Der Schüler wurde mit der bereits existierenden Person verknüpft';

                                        $countMotherExists++;
                                    }
                                }


                                if ($tblPersonFather !== null) {
                                    $streetName = '';
                                    $streetNumber = '';
                                    $street = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter2_Straße'],
                                        $RunY)));
                                    if (preg_match_all('!\d+!', $street, $matches)) {
                                        $pos = strpos($street, $matches[0][0]);
                                        if ($pos !== null) {
                                            $streetName = trim(substr($street, 0, $pos));
                                            $streetNumber = trim(substr($street, $pos));
                                        }
                                    }

                                    $city = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter2_Wohnort'],
                                        $RunY)));

                                    if ($streetName !== '' && $streetNumber !== '' && $fatherCityCode && $city) {
                                        Address::useService()->insertAddressToPerson(
                                            $tblPersonFather,
                                            $streetName,
                                            $streetNumber,
                                            $fatherCityCode,
                                            $city,
                                            trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter2_Ortsteil'],
                                                $RunY))),
                                            ''
                                        );
                                    } else {
                                        $error[] = 'Zeile: ' . ($RunY + 1) . ' Die Adresse des Sorgeberechtigte2 wurde nicht angelegt, da keine vollständige Adresse hinterlegt ist.';
                                    }
                                }
                                if ($tblPersonMother !== null) {
                                    $streetName = '';
                                    $streetNumber = '';
                                    $street = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter1_Straße'],
                                        $RunY)));
                                    if (preg_match_all('!\d+!', $street, $matches)) {
                                        $pos = strpos($street, $matches[0][0]);
                                        if ($pos !== null) {
                                            $streetName = trim(substr($street, 0, $pos));
                                            $streetNumber = trim(substr($street, $pos));
                                        }
                                    }

                                    $city = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter1_Wohnort'],
                                        $RunY)));

                                    if ($streetName !== '' && $streetNumber !== '' && $fatherCityCode && $city) {
                                        Address::useService()->insertAddressToPerson(
                                            $tblPersonMother,
                                            $streetName,
                                            $streetNumber,
                                            $motherCityCode,
                                            $city,
                                            trim($Document->getValue($Document->getCell($Location['Sorgeberechtigter1_Ortsteil'],
                                                $RunY))),
                                            ''
                                        );
                                    } else {
                                        $error[] = 'Zeile: ' . ($RunY + 1) . ' Die Adresse des Sorgeberechtigte1 wurde nicht angelegt, da keine vollständige Adresse hinterlegt ist.';
                                    }
                                }

                                // phone
                                $phoneNumber = trim($Document->getValue($Document->getCell($Location['Schueler_Telefon1'],
                                    $RunY)));
                                if ($phoneNumber != '') {
                                   $this->setPhoneNumber($tblPerson, $phoneNumber);
                                }
                                $phoneNumber = trim($Document->getValue($Document->getCell($Location['Schueler_Telefon2'],
                                    $RunY)));
                                if ($phoneNumber != '') {
                                    $this->setPhoneNumber($tblPerson, $phoneNumber);
                                }
                                if ($tblPersonMother) {
                                    $phoneNumber = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigte1_Telefon1'],
                                        $RunY)));
                                    if ($phoneNumber != '') {
                                        $this->setPhoneNumber($tblPersonMother, $phoneNumber);
                                    }
                                    $phoneNumber = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigte1_Telefon2'],
                                        $RunY)));
                                    if ($phoneNumber != '') {
                                        $this->setPhoneNumber($tblPersonMother, $phoneNumber);
                                    }
                                }
                                if ($tblPersonFather) {
                                    $phoneNumber = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigte2_Telefon1'],
                                        $RunY)));
                                    if ($phoneNumber != '') {
                                        $this->setPhoneNumber($tblPersonFather, $phoneNumber);
                                    }
                                    $phoneNumber = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigte2_Telefon2'],
                                        $RunY)));
                                    if ($phoneNumber != '') {
                                        $this->setPhoneNumber($tblPersonFather, $phoneNumber);
                                    }
                                }

                                $mailAddress = trim($Document->getValue($Document->getCell($Location['Schueler_Email'],
                                    $RunY)));
                                if ($mailAddress != '') {
                                    Mail::useService()->insertMailToPerson(
                                        $tblPerson,
                                        $mailAddress,
                                        Mail::useService()->getTypeById(1),
                                        ''
                                    );
                                }

                                if ($tblPersonMother) {
                                    $mailAddress = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigte1_Email'],
                                        $RunY)));
                                    if ($mailAddress != '') {
                                        Mail::useService()->insertMailToPerson(
                                            $tblPersonMother,
                                            $mailAddress,
                                            Mail::useService()->getTypeById(1),
                                            ''
                                        );
                                    }
                                }

                                if ($tblPersonFather) {
                                    $mailAddress = trim($Document->getValue($Document->getCell($Location['Sorgeberechtigte2_Email'],
                                        $RunY)));
                                    if ($mailAddress != '') {
                                        Mail::useService()->insertMailToPerson(
                                            $tblPersonFather,
                                            $mailAddress,
                                            Mail::useService()->getTypeById(1),
                                            ''
                                        );
                                    }
                                }


                                /*
                                 * student
                                 */
//                                $sibling = trim($Document->getValue($Document->getCell($Location['Schüler_Geschwister'],
//                                    $RunY)));
//                                $tblSiblingRank = false;
//                                if ($sibling !== '') {
//                                    if ($sibling == '0') {
//                                        // do nothing
//                                    } elseif ($sibling == '1') {
//                                        $tblSiblingRank = Relationship::useService()->getSiblingRankById(1);
//                                    } elseif ($sibling == '2') {
//                                        $tblSiblingRank = Relationship::useService()->getSiblingRankById(2);
//                                    } elseif ($sibling == '3') {
//                                        $tblSiblingRank = Relationship::useService()->getSiblingRankById(3);
//                                    } elseif ($sibling == '4') {
//                                        $tblSiblingRank = Relationship::useService()->getSiblingRankById(4);
//                                    } elseif ($sibling == '5') {
//                                        $tblSiblingRank = Relationship::useService()->getSiblingRankById(5);
//                                    } elseif ($sibling == '6') {
//                                        $tblSiblingRank = Relationship::useService()->getSiblingRankById(6);
//                                    } else {
//                                        $error[] = 'Zeile: ' . ($RunY + 1) . ' Geschwisterkind konnte nicht angelegt werden.';
//                                    }
//                                }
                                $tblStudentBilling = null;
//                                if ($tblSiblingRank) {
//                                    $tblStudentBilling = Student::useService()->insertStudentBilling($tblSiblingRank);
//                                } else {
//                                    $tblStudentBilling = null;
//                                }

                                $coachingRequired = (trim($Document->getValue($Document->getCell($Location['Schüler_Integr_Förderschüler'],
                                        $RunY))) == '1');
                                $coachingRemark = trim($Document->getValue($Document->getCell($Location['Schüler_Förderung_Hinweise'],
                                    $RunY)));
                                if ($coachingRequired || $coachingRemark !== '') {
                                    $tblStudentIntegration = Student::useService()->insertStudentIntegration(
                                        null,
                                        null,
                                        null,
                                        null,
                                        null,
                                        $coachingRequired,
                                        '',
                                        $coachingRemark
                                    );
                                } else {
                                    $tblStudentIntegration = null;
                                }

                                $insuranceBy = trim($Document->getValue($Document->getCell($Location['Schüler_Krankenversicherung_bei'],
                                    $RunY)));
                                $insuranceState = 0;
                                if ($insuranceBy !== '' && $insuranceBy !== '0') {
                                    if ($insuranceBy == '1') {
                                        if ($tblPersonMother) {
                                            $tblCommon = Common::useService()->getCommonByPerson($tblPersonMother);
                                            if ($tblCommon && $tblCommon->getTblCommonBirthDates()) {
                                                if ($tblCommon->getTblCommonBirthDates()->getGender() == TblCommonBirthDates::VALUE_GENDER_FEMALE) {
                                                    $insuranceState = 5;
                                                } elseif ($tblCommon->getTblCommonBirthDates()->getGender() == TblCommonBirthDates::VALUE_GENDER_MALE) {
                                                    $insuranceState = 4;
                                                }
                                            }
                                        }
                                    } elseif ($insuranceBy == '2') {
                                        if ($tblPersonFather) {
                                            $tblCommon = Common::useService()->getCommonByPerson($tblPersonFather);
                                            if ($tblCommon && $tblCommon->getTblCommonBirthDates()) {
                                                if ($tblCommon->getTblCommonBirthDates()->getGender() == TblCommonBirthDates::VALUE_GENDER_FEMALE) {
                                                    $insuranceState = 5;
                                                } elseif ($tblCommon->getTblCommonBirthDates()->getGender() == TblCommonBirthDates::VALUE_GENDER_MALE) {
                                                    $insuranceState = 4;
                                                }
                                            }
                                        }
                                    }
                                }

                                $insurance = trim($Document->getValue($Document->getCell($Location['Schüler_Krankenkasse'],
                                    $RunY)));
                                if ($insurance) {
                                    $tblStudentMedicalRecord = Student::useService()->insertStudentMedicalRecord(
                                        '',
                                        '',
                                        $insurance,
                                        $insuranceState
                                    );
                                } else {
                                    $tblStudentMedicalRecord = null;
                                }

                                $locker = trim($Document->getValue($Document->getCell($Location['Schüler_Schließfachnummer'],
                                    $RunY)));
                                if ($locker !== '') {
                                    $tblStudentLocker = Student::useService()->insertStudentLocker(
                                        $locker, '', ''
                                    );
                                } else {
                                    $tblStudentLocker = null;
                                }

                                $transportRemark = '';
                                $transport = trim($Document->getValue($Document->getCell($Location['Beförderung_Verkehrsmittel'],
                                    $RunY)));
                                if ($transport !== '') {
                                    $transportRemark = 'Verkehrsmittel: ' . $transport;
                                }
                                $isTransportStudent = trim($Document->getValue($Document->getCell($Location['Beförderung_Fahrschüler'],
                                    $RunY)));
                                if ($isTransportStudent === '1') {
                                    $transportRemark .= ' Fahrschüler';
                                }
                                $tblStudentTransport = Student::useService()->insertStudentTransport(
                                    '',
                                    trim($Document->getValue($Document->getCell($Location['Beförderung_Einsteigestelle'],
                                        $RunY))),
                                    '',
                                    $transportRemark
                                );

                                $tblStudent = Student::useService()->insertStudent(
                                    $tblPerson,
                                    trim($Document->getValue($Document->getCell($Location['Schüler_Schülernummer'],
                                        $RunY))),
                                    $tblStudentMedicalRecord, $tblStudentTransport,
                                    $tblStudentBilling, $tblStudentLocker, null, $tblStudentIntegration);
                                if ($tblStudent) {

                                    // Schülertransfer
                                    $enrollmentDate = trim($Document->getValue($Document->getCell($Location['Schüler_Einschulung_am'],
                                        $RunY)));
                                    if ($enrollmentDate !== '' && date_create($enrollmentDate) !== false) {
                                        $tblStudentTransferType = Student::useService()->getStudentTransferTypeByIdentifier('ENROLLMENT');
                                        Student::useService()->insertStudentTransfer(
                                            $tblStudent,
                                            $tblStudentTransferType,
                                            null,
                                            null,
                                            null,
                                            $enrollmentDate,
                                            ''
                                        );
                                    }
                                    $arriveDate = trim($Document->getValue($Document->getCell($Location['Schüler_Aufnahme_am'],
                                        $RunY)));
                                    $arriveSchool = null;
                                    $company = trim($Document->getValue($Document->getCell($Location['Schüler_abgebende_Schule_ID'],
                                        $RunY)));
                                    $lastSchoolType = trim($Document->getValue($Document->getCell($Location['Schüler_letzte_Schulart'],
                                        $RunY)));
                                    if ($lastSchoolType == 'MS'
                                        || $lastSchoolType == 'RS'
                                    ) {
                                        $tblLastSchoolType = Type::useService()->getTypeById(8); // Oberschule
                                    } elseif ($lastSchoolType === 'GS') {
                                        $tblLastSchoolType = Type::useService()->getTypeById(6); // Grundschule
                                    } elseif ($lastSchoolType === 'GY') {
                                        $tblLastSchoolType = Type::useService()->getTypeById(7); // Gymnasium
                                    } else {
                                        $tblLastSchoolType = false;
                                    }
                                    if ($company != '') {
                                        $arriveSchool = Company::useService()->getCompanyByDescription($company);
                                    }
                                    if ($arriveDate !== '' && date_create($arriveDate) !== false) {

                                        $tblStudentTransferType = Student::useService()->getStudentTransferTypeByIdentifier('ARRIVE');
                                        Student::useService()->insertStudentTransfer(
                                            $tblStudent,
                                            $tblStudentTransferType,
                                            $arriveSchool ? $arriveSchool : null,
                                            $tblLastSchoolType ? $tblLastSchoolType : null,
                                            null,
                                            $arriveDate,
                                            ''
                                        );
                                    }
                                    $leaveDate = trim($Document->getValue($Document->getCell($Location['Schüler_Abgang_am'],
                                        $RunY)));
                                    $leaveSchool = null;
                                    $company = trim($Document->getValue($Document->getCell($Location['Schüler_aufnehmende_Schule_ID'],
                                        $RunY)));
                                    if ($company != '') {
                                        $leaveSchool = Company::useService()->getCompanyByDescription($company);
                                    }
                                    if (($leaveDate !== '' && date_create($leaveDate) !== false) || $leaveSchool) {
                                        $tblStudentTransferType = Student::useService()->getStudentTransferTypeByIdentifier('LEAVE');
                                        Student::useService()->insertStudentTransfer(
                                            $tblStudent,
                                            $tblStudentTransferType,
                                            $leaveSchool ? $leaveSchool : null,
                                            null,
                                            null,
                                            $leaveDate,
                                            ''
                                        );
                                    }

                                    $tblCourse = null;
                                    if (($course = trim($Document->getValue($Document->getCell($Location['Fächer_Bildungsgang'],
                                        $RunY))))
                                    ) {
                                        if ($course == 'HS') {
                                            $tblCourse = Course::useService()->getCourseById(1); // Hauptschule
                                        } elseif ($course == 'GY') {
                                            $tblCourse = Course::useService()->getCourseById(3); // Gymnasium
                                        } elseif ($course == 'RS') {
                                            $tblCourse = Course::useService()->getCourseById(2); // Realschule
                                        } elseif ($course == '') {
                                            $tblCourse = $tblAlternateCourse ? $tblAlternateCourse : null;
                                        } else {
//                                            $error[] = 'Zeile: ' . ($RunY + 1) . ' Bildungsgang nicht gefunden.';
                                        }
                                    }
                                    $tblStudentTransferType = Student::useService()->getStudentTransferTypeByIdentifier('PROCESS');
                                    Student::useService()->insertStudentTransfer(

                                        $tblStudent,
                                        $tblStudentTransferType,
                                        $tblCurrentCompany ? $tblCurrentCompany : null,
                                        $tblSchoolType ? $tblSchoolType : null,
                                        $tblCourse ? $tblCourse : null,
                                        null,
                                        ''
                                    );

                                    /*
                                     * Fächer
                                     */
                                    // Religion
                                    $subjectReligion = trim($Document->getValue($Document->getCell($Location['Fächer_Religionsunterricht'],
                                        $RunY)));
                                    $tblSubject = false;
                                    if ($subjectReligion !== '') {
                                        if ($subjectReligion === 'ETH') {
                                            $tblSubject = Subject::useService()->getSubjectByAcronym('ETH');
                                        } elseif ($subjectReligion === 'RE/e') {
                                            $tblSubject = Subject::useService()->getSubjectByAcronym('REV');
                                        } elseif ($subjectReligion === 'RE/k') {
                                            $tblSubject = Subject::useService()->getSubjectByAcronym('RKA');
                                        }
                                        if ($tblSubject) {
                                            Student::useService()->addStudentSubject(
                                                $tblStudent,
                                                Student::useService()->getStudentSubjectTypeByIdentifier('RELIGION'),
                                                Student::useService()->getStudentSubjectRankingByIdentifier('1'),
                                                $tblSubject
                                            );
                                        }
                                    }

                                    // Profil
                                    $profile = trim($Document->getValue($Document->getCell($Location['Fächer_Profil'],
                                        $RunY)));
                                    if ($profile !== '') {
                                        $tblProfileSubject = Subject::useService()->getSubjectByAcronym(strtoupper($profile));
                                        if ($tblProfileSubject) {
                                            Student::useService()->addStudentSubject(
                                                $tblStudent,
                                                Student::useService()->getStudentSubjectTypeByIdentifier('PROFILE'),
                                                Student::useService()->getStudentSubjectRankingByIdentifier('1'),
                                                $tblProfileSubject
                                            );
                                        }
                                    }

                                    // Fremdsprachen
                                    for ($i = 1; $i <= 2; $i++) {
                                        $subjectLanguage = trim($Document->getValue($Document->getCell($Location['Fächer_Fremdsprache' . $i],
                                            $RunY)));
                                        $tblSubject = false;
                                        if ($subjectLanguage !== '') {
                                            if ($subjectLanguage === 'EN'
                                                || $subjectLanguage === 'Englisch'
                                            ) {
                                                $tblSubject = Subject::useService()->getSubjectByAcronym('EN');
                                            } elseif ($subjectLanguage === 'FR'
                                                || $subjectLanguage === 'Fra'
                                                || $subjectLanguage === 'Französisch'
                                            ) {
                                                $tblSubject = Subject::useService()->getSubjectByAcronym('FR');
                                            } elseif ($subjectLanguage === 'LA') {
                                                $tblSubject = Subject::useService()->getSubjectByAcronym('LA');
                                            } elseif ($subjectLanguage === 'RU') {
                                                $tblSubject = Subject::useService()->getSubjectByAcronym('RU');
                                            } else {
                                                $error[] = 'Zeile: ' . ($RunY + 1) . ' Fremdsprache nicht gefunden.';
                                            }

                                            if ($tblSubject) {
                                                $tblFromLevel = false;
                                                $fromLevel = trim($Document->getValue($Document->getCell($Location['Fächer_Fremdsprache' . $i . '_von'],
                                                    $RunY)));
                                                if ($fromLevel !== '') {
                                                    $tblFromLevel = Division::useService()->insertLevel(
                                                        $tblSchoolType,
                                                        $fromLevel
                                                    );
                                                }

                                                $tblToLevel = false;
                                                $toLevel = trim($Document->getValue($Document->getCell($Location['Fächer_Fremdsprache' . $i . '_bis'],
                                                    $RunY)));
                                                if ($toLevel !== '') {
                                                    $tblToLevel = Division::useService()->insertLevel(
                                                        $tblSchoolType,
                                                        $toLevel
                                                    );
                                                }

                                                Student::useService()->addStudentSubject(
                                                    $tblStudent,
                                                    Student::useService()->getStudentSubjectTypeByIdentifier('FOREIGN_LANGUAGE'),
                                                    Student::useService()->getStudentSubjectRankingByIdentifier($i),
                                                    $tblSubject,
                                                    $tblFromLevel ? $tblFromLevel : null,
                                                    $tblToLevel ? $tblToLevel : null
                                                );
                                            }
                                        }
                                    }

                                    /*
                                     * Förderung
                                     */
                                    $focus = trim($Document->getValue($Document->getCell($Location['Schüler_Förderschwerpunkt'],
                                        $RunY)));
                                    if ($focus !== '') {
                                        if ($focus === 'GE') {
                                            $tblStudentFocusType = Student::useService()->getStudentFocusTypeByName('Geistige Entwicklung');
                                            if ($tblStudentFocusType) {
                                                Student::useService()->addStudentFocus($tblStudent,
                                                    $tblStudentFocusType);
                                            } else {
                                                $error[] = 'Zeile: ' . ($RunY + 1) . ' Förderschwerpunkt ' . $focus . ' wurde nicht gefunden.';
                                            }
                                        } elseif ($focus === 'LE') {
                                            $tblStudentFocusType = Student::useService()->getStudentFocusTypeByName('Lernen');
                                            if ($tblStudentFocusType) {
                                                Student::useService()->addStudentFocus($tblStudent,
                                                    $tblStudentFocusType);
                                            } else {
                                                $error[] = 'Zeile: ' . ($RunY + 1) . ' Förderschwerpunkt ' . $focus . ' wurde nicht gefunden.';
                                            }
                                        } elseif ($focus === 'SPR') {
                                            $tblStudentFocusType = Student::useService()->getStudentFocusTypeByName('Sprache');
                                            if ($tblStudentFocusType) {
                                                Student::useService()->addStudentFocus($tblStudent,
                                                    $tblStudentFocusType);
                                            } else {
                                                $error[] = 'Zeile: ' . ($RunY + 1) . ' Förderschwerpunkt ' . $focus . ' wurde nicht gefunden.';
                                            }
                                        } elseif ($focus === 'ESE') {
                                            $tblStudentFocusType = Student::useService()->getStudentFocusTypeByName('Sozial-emotionale Entwicklung');
                                            if ($tblStudentFocusType) {
                                                Student::useService()->addStudentFocus($tblStudent,
                                                    $tblStudentFocusType);
                                            } else {
                                                $error[] = 'Zeile: ' . ($RunY + 1) . ' Förderschwerpunkt ' . $focus . ' wurde nicht gefunden.';
                                            }
                                        } elseif ($focus === 'HÖ') {
                                            $tblStudentFocusType = Student::useService()->getStudentFocusTypeByName('Hören');
                                            if ($tblStudentFocusType) {
                                                Student::useService()->addStudentFocus($tblStudent,
                                                    $tblStudentFocusType);
                                            } else {
                                                $error[] = 'Zeile: ' . ($RunY + 1) . ' Förderschwerpunkt ' . $focus . ' wurde nicht gefunden.';
                                            }
                                        } elseif ($focus === 'KME') {
                                            $tblStudentFocusType = Student::useService()->getStudentFocusTypeByName('Körperlich-motorische Entwicklung');
                                            if ($tblStudentFocusType) {
                                                Student::useService()->addStudentFocus($tblStudent,
                                                    $tblStudentFocusType);
                                            } else {
                                                $error[] = 'Zeile: ' . ($RunY + 1) . ' Förderschwerpunkt ' . $focus . ' wurde nicht gefunden.';
                                            }
                                        } elseif ($focus === 'SBH') {
                                            $tblStudentFocusType = Student::useService()->getStudentFocusTypeByName('Sehen');
                                            if ($tblStudentFocusType) {
                                                Student::useService()->addStudentFocus($tblStudent,
                                                    $tblStudentFocusType);
                                            } else {
                                                $error[] = 'Zeile: ' . ($RunY + 1) . ' Förderschwerpunkt ' . $focus . ' wurde nicht gefunden.';
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }

                    // delete company description (fuxschool id)
                    $tblCompanyAll = Company::useService()->getCompanyAll();
                    if ($tblCompanyAll) {
                        foreach ($tblCompanyAll as $tblCompany) {
                            Company::useService()->updateCompanyWithoutForm($tblCompany, $tblCompany->getName(),
                                $tblCompany->getExtendedName(), '');
                        }
                    }

                    Debugger::screenDump($error);

                    return
                        new Success('Es wurden ' . $countStudent . ' Schüler erfolgreich angelegt.') .
                        new Success('Es wurden ' . $countFather . ' Sorgeberechtigte2 erfolgreich angelegt.') .
                        ($countFatherExists > 0 ?
                            new Warning($countFatherExists . ' Sorgeberechtigte2 exisistieren bereits.') : '') .
                        new Success('Es wurden ' . $countMother . ' Sorgeberechtigte1 erfolgreich angelegt.') .
                        ($countMotherExists > 0 ?
                            new Warning($countMotherExists . ' Sorgeberechtigte1 exisistieren bereits.') : '')
                        . new Layout(new LayoutGroup(new LayoutRow(new LayoutColumn(
                            new Panel(
                                'Fehler',
                                $error,
                                Panel::PANEL_TYPE_DANGER
                            )
                        ))));

                } else {
                    Debugger::screenDump($Location);

                    return new Warning(json_encode($Location)) . new Danger(
                        "File konnte nicht importiert werden, da nicht alle erforderlichen Spalten gefunden wurden");
                }
            }
        }

        return new Danger('File nicht gefunden');
    }

    /**
     * @param $Acronym
     *
     * @return bool|string
     */
    private function destroySubjectByAcronym($Acronym)
    {
        $tblSubject = Subject::useService()->getSubjectByAcronym($Acronym);
        if ($tblSubject) {
            return Subject::useService()->destroySubject($tblSubject);
        }

        return false;
    }

    /**
     * @param TblPerson|bool $tblPerson
     * @param string $phoneNumber
     */
    private function setPhoneNumber($tblPerson, $phoneNumber)
    {
        $tblType = Phone::useService()->getTypeById(1);
        if (0 === strpos($phoneNumber, '01')) {
            $tblType = Phone::useService()->getTypeById(2);
        }

        $remark = trim(preg_replace('/[^a-zA-Z ]/', '', $phoneNumber));
        $phoneNumber = preg_replace('/[^0-9]/', '', $phoneNumber);

        Phone::useService()->insertPhoneToPerson(
            $tblPerson,
            $phoneNumber,
            $tblType,
            $remark
        );
    }
}