Commit 0243c012 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Modif dans les colonnes de SYGAL_THESE: cod_anu_prm_iae (annee de premiere...

Modif dans les colonnes de SYGAL_THESE: cod_anu_prm_iae (annee de premiere inscription, nouvelle colonne), ecole_doct_id (renommage), unite_rech_id (renommage).
parent 1c0cc888
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
    <entity name="ImportData\V1\Entity\Db\These" table="SYGAL_THESE">
    <entity name="ImportData\V1\Entity\Db\These" table="SYGAL_THESE_2">
        <id    name="id"                      type="string"   column="ID"/>
        <field name="sourceId"                type="string"   column="SOURCE_ID"            length="6"      nullable="true"/>
        <field name="etatThese"               type="string"   column="ETA_THS"              length="1"      nullable="true"/>
@@ -12,8 +12,9 @@
        <field name="title"                   type="string"   column="LIB_THS"              length="800"    nullable="true"/>
        <field name="codeLNG"                 type="string"   column="COD_LNG"              length="4"      nullable="true"/>
        <field name="datePremiereInsc"        type="datetime" column="DAT_DEB_THS"                          nullable="true"/>
        <field name="uniteRechId"             type="string"   column="COD_EQR"              length="10"     nullable="true"/>
        <field name="ecoleDoctId"             type="string"   column="COD_NAT_EDO"          length="4"      nullable="true"/>
        <field name="anneeUnivPremiereInsc"   type="integer"  column="COD_ANU_PRM_IAE"                      nullable="true"/>
        <field name="uniteRechId"             type="string"   column="UNITE_RECH_ID"        length="10"     nullable="true"/>
        <field name="ecoleDoctId"             type="string"   column="ECOLE_DOCT_ID"        length="4"      nullable="true"/>
        <field name="libPaysCotut"            type="string"   column="LIB_PAY"              length="40"     nullable="true"/>
        <field name="libEtabCotut"            type="string"   column="LIB_ETB_COT"          length="120"    nullable="true"/>
        <field name="temAvenant"              type="string"   column="TEM_AVENANT"          length="1"      nullable="true"/>
+4 −171
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ class These
    protected $title;
    protected $codeLNG;
    protected $datePremiereInsc;
    protected $anneeUnivPremiereInsc;
    protected $uniteRechId;
    protected $ecoleDoctId;
    protected $libPaysCotut;
@@ -40,14 +41,6 @@ class These
        return $this->id;
    }

    /**
     * @param mixed $id
     */
    public function setId($id)
    {
        $this->id = $id;
    }

    /**
     * @return mixed
     */
@@ -56,14 +49,6 @@ class These
        return $this->uniteRechId;
    }

    /**
     * @param mixed $uniteRechId
     */
    public function setUniteRechId($uniteRechId)
    {
        $this->uniteRechId = $uniteRechId;
    }

    /**
     * @return mixed
     */
@@ -72,14 +57,6 @@ class These
        return $this->sourceId;
    }

    /**
     * @param mixed $sourceId
     */
    public function setSourceId($sourceId)
    {
        $this->sourceId = $sourceId;
    }

    /**
     * @return mixed
     */
@@ -88,14 +65,6 @@ class These
        return $this->etatThese;
    }

    /**
     * @param mixed $etatThese
     */
    public function setEtatThese($etatThese)
    {
        $this->etatThese = $etatThese;
    }

    /**
     * @return mixed
     */
@@ -104,14 +73,6 @@ class These
        return $this->doctorantId;
    }

    /**
     * @param mixed $doctorantId
     */
    public function setDoctorantId($doctorantId)
    {
        $this->doctorantId = $doctorantId;
    }

    /**
     * @return mixed
     */
@@ -120,14 +81,6 @@ class These
        return $this->codeDiscipline;
    }

    /**
     * @param mixed $codeDiscipline
     */
    public function setCodeDiscipline($codeDiscipline)
    {
        $this->codeDiscipline = $codeDiscipline;
    }

    /**
     * @return mixed
     */
@@ -136,14 +89,6 @@ class These
        return $this->libDiscipline;
    }

    /**
     * @param mixed $libDiscipline
     */
    public function setLibDiscipline($libDiscipline)
    {
        $this->libDiscipline = $libDiscipline;
    }

    /**
     * @return mixed
     */
@@ -152,14 +97,6 @@ class These
        return $this->title;
    }

    /**
     * @param mixed $title
     */
    public function setTitle($title)
    {
        $this->title = $title;
    }

    /**
     * @return mixed
     */
@@ -168,14 +105,6 @@ class These
        return $this->codeLNG;
    }

    /**
     * @param mixed $codeLNG
     */
    public function setCodeLNG($codeLNG)
    {
        $this->codeLNG = $codeLNG;
    }

    /**
     * @return mixed
     */
@@ -185,11 +114,11 @@ class These
    }

    /**
     * @param mixed $datePremiereInsc
     * @return mixed
     */
    public function setDatePremiereInsc($datePremiereInsc)
    public function getAnneeUnivPremiereInsc()
    {
        $this->datePremiereInsc = $datePremiereInsc;
        return $this->anneeUnivPremiereInsc;
    }

    /**
@@ -200,14 +129,6 @@ class These
        return $this->ecoleDoctId;
    }

    /**
     * @param mixed $ecoleDoctId
     */
    public function setEcoleDoctId($ecoleDoctId)
    {
        $this->ecoleDoctId = $ecoleDoctId;
    }

    /**
     * @return mixed
     */
@@ -216,14 +137,6 @@ class These
        return $this->libPaysCotut;
    }

    /**
     * @param mixed $libPaysCotut
     */
    public function setLibPaysCotut($libPaysCotut)
    {
        $this->libPaysCotut = $libPaysCotut;
    }

    /**
     * @return mixed
     */
@@ -232,14 +145,6 @@ class These
        return $this->libEtabCotut;
    }

    /**
     * @param mixed $libEtabCotut
     */
    public function setLibEtabCotut($libEtabCotut)
    {
        $this->libEtabCotut = $libEtabCotut;
    }

    /**
     * @return mixed
     */
@@ -248,14 +153,6 @@ class These
        return $this->temAvenant;
    }

    /**
     * @param mixed $temAvenant
     */
    public function setTemAvenant($temAvenant)
    {
        $this->temAvenant = $temAvenant;
    }

    /**
     * @return mixed
     */
@@ -264,14 +161,6 @@ class These
        return $this->dateSoutenancePrev;
    }

    /**
     * @param mixed $dateSoutenancePrev
     */
    public function setDateSoutenancePrev($dateSoutenancePrev)
    {
        $this->dateSoutenancePrev = $dateSoutenancePrev;
    }

    /**
     * @return mixed
     */
@@ -280,14 +169,6 @@ class These
        return $this->temSoutenanceAutorisee;
    }

    /**
     * @param mixed $temSoutenanceAutorisee
     */
    public function setTemSoutenanceAutorisee($temSoutenanceAutorisee)
    {
        $this->temSoutenanceAutorisee = $temSoutenanceAutorisee;
    }

    /**
     * @return mixed
     */
@@ -296,14 +177,6 @@ class These
        return $this->dateSoutenanceAutorisee;
    }

    /**
     * @param mixed $dateSoutenanceAutorisee
     */
    public function setDateSoutenanceAutorisee($dateSoutenanceAutorisee)
    {
        $this->dateSoutenanceAutorisee = $dateSoutenanceAutorisee;
    }

    /**
     * @return mixed
     */
@@ -312,14 +185,6 @@ class These
        return $this->dateSoutenance;
    }

    /**
     * @param mixed $dateSoutenance
     */
    public function setDateSoutenance($dateSoutenance)
    {
        $this->dateSoutenance = $dateSoutenance;
    }

    /**
     * @return mixed
     */
@@ -328,14 +193,6 @@ class These
        return $this->dateConfidFin;
    }

    /**
     * @param mixed $dateConfidFin
     */
    public function setDateConfidFin($dateConfidFin)
    {
        $this->dateConfidFin = $dateConfidFin;
    }

    /**
     * @return mixed
     */
@@ -344,14 +201,6 @@ class These
        return $this->resultat;
    }

    /**
     * @param mixed $resultat
     */
    public function setResultat($resultat)
    {
        $this->resultat = $resultat;
    }

    /**
     * @return mixed
     */
@@ -360,14 +209,6 @@ class These
        return $this->etatReporduction;
    }

    /**
     * @param mixed $etatReporduction
     */
    public function setEtatReporduction($etatReporduction)
    {
        $this->etatReporduction = $etatReporduction;
    }

    /**
     * @return mixed
     */
@@ -375,12 +216,4 @@ class These
    {
        return $this->correctionAutorisee;
    }

    /**
     * @param mixed $correctionAutorisee
     */
    public function setCorrectionAutorisee($correctionAutorisee)
    {
        $this->correctionAutorisee = $correctionAutorisee;
    }
}