Commit 6434be10 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Suppression d'annee_debut et annee_fin pour les TPJS

Utilisation de ParametreEntityInterface
parent bf44c71c
Loading
Loading
Loading
Loading
+0 −14
Original line number Diff line number Diff line
<?php

//@formatter:off

return [
    'name'    => 'TPJS_ANNEE_FIN_FK',
    'unique'  => FALSE,
    'table'   => 'TYPE_PIECE_JOINTE_STATUT',
    'columns' => [
        'ANNEE_FIN_ID',
    ],
];

//@formatter:on
+2 −2
Original line number Diff line number Diff line
@@ -3,11 +3,11 @@
//@formatter:off

return [
    'name'    => 'TPJS_ANNEE_DEB_FK',
    'name'    => 'TYPE_PIECE_JOINTE_STATUT_ANNEE_FK',
    'unique'  => FALSE,
    'table'   => 'TYPE_PIECE_JOINTE_STATUT',
    'columns' => [
        'ANNEE_DEBUT_ID',
        'ANNEE_ID',
    ],
];

+0 −16
Original line number Diff line number Diff line
<?php

//@formatter:off

return [
    'name'        => 'TPJS_ANNEE_FIN_FK',
    'table'       => 'TYPE_PIECE_JOINTE_STATUT',
    'rtable'      => 'ANNEE',
    'delete_rule' => 'CASCADE',
    'index'       => NULL,
    'columns'     => [
        'ANNEE_FIN_ID' => 'ID',
    ],
];

//@formatter:on
+3 −3
Original line number Diff line number Diff line
@@ -3,13 +3,13 @@
//@formatter:off

return [
    'name'        => 'TPJS_ANNEE_DEB_FK',
    'name'        => 'TYPE_PIECE_JOINTE_STATUT_ANNEE_FK',
    'table'       => 'TYPE_PIECE_JOINTE_STATUT',
    'rtable'      => 'ANNEE',
    'delete_rule' => 'CASCADE',
    'delete_rule' => NULL,
    'index'       => NULL,
    'columns'     => [
        'ANNEE_DEBUT_ID' => 'ID',
        'ANNEE_ID' => 'ID',
    ],
];

+14 −26
Original line number Diff line number Diff line
@@ -9,28 +9,16 @@ return [
    'commentaire' => NULL,
    'sequence'    => 'TYPE_PIECE_JOINTE_STATU_ID_SEQ',
    'columns'     => [
        'ANNEE_DEBUT_ID'        => [
            'name'        => 'ANNEE_DEBUT_ID',
        'ANNEE_ID'              => [
            'name'        => 'ANNEE_ID',
            'type'        => 'int',
            'bdd-type'    => 'NUMBER',
            'length'      => 0,
            'scale'       => '0',
            'precision'   => NULL,
            'nullable'    => TRUE,
            'default'     => NULL,
            'position'    => 12,
            'commentaire' => NULL,
        ],
        'ANNEE_FIN_ID'          => [
            'name'        => 'ANNEE_FIN_ID',
            'type'        => 'int',
            'bdd-type'    => 'NUMBER',
            'length'      => 0,
            'scale'       => '0',
            'scale'       => NULL,
            'precision'   => NULL,
            'nullable'    => TRUE,
            'default'     => NULL,
            'position'    => 13,
            'position'    => 17,
            'commentaire' => NULL,
        ],
        'CHANGEMENT_RIB'        => [
@@ -42,7 +30,7 @@ return [
            'precision'   => 1,
            'nullable'    => FALSE,
            'default'     => '0',
            'position'    => 15,
            'position'    => 13,
            'commentaire' => NULL,
        ],
        'DUREE_VIE'             => [
@@ -54,7 +42,7 @@ return [
            'precision'   => NULL,
            'nullable'    => FALSE,
            'default'     => '1',
            'position'    => 16,
            'position'    => 14,
            'commentaire' => 'Durée de vie de la pièce jointe',
        ],
        'FC'                    => [
@@ -66,7 +54,7 @@ return [
            'precision'   => 1,
            'nullable'    => FALSE,
            'default'     => '0',
            'position'    => 14,
            'position'    => 12,
            'commentaire' => NULL,
        ],
        'HISTO_CREATEUR_ID'     => [
@@ -161,7 +149,7 @@ return [
            'scale'       => '0',
            'precision'   => NULL,
            'nullable'    => FALSE,
            'default'     => NULL,
            'default'     => '1',
            'position'    => 3,
            'commentaire' => NULL,
        ],
@@ -174,16 +162,16 @@ return [
            'precision'   => 1,
            'nullable'    => TRUE,
            'default'     => '0',
            'position'    => 17,
            'position'    => 15,
            'commentaire' => 'Piece jointe obligatoire même si les heures sont non payables',
        ],
        'SEUIL_HETD'            => [
            'name'        => 'SEUIL_HETD',
            'type'        => 'int',
            'bdd-type'    => 'NUMBER',
            'type'        => 'float',
            'bdd-type'    => 'FLOAT',
            'length'      => 0,
            'scale'       => '0',
            'precision'   => NULL,
            'scale'       => NULL,
            'precision'   => 126,
            'nullable'    => TRUE,
            'default'     => NULL,
            'position'    => 5,
@@ -198,7 +186,7 @@ return [
            'precision'   => NULL,
            'nullable'    => FALSE,
            'default'     => NULL,
            'position'    => 18,
            'position'    => 16,
            'commentaire' => NULL,
        ],
        'TYPE_HEURE_HETD'       => [
Loading