Commit 9b35e089 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Vues mal formatées

parent b6313ce2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
CREATE
OR REPLACE FORCE VIEW V_CONTRAT_MAIN AS
CREATE OR REPLACE FORCE VIEW V_CONTRAT_MAIN AS
WITH hs AS (
  SELECT contrat_id, SUM(heures) "serviceTotal", MAX("libelleAutres") "libelleAutres" FROM V_CONTRAT_SERVICES GROUP BY contrat_id
)
+1 −2
Original line number Diff line number Diff line
CREATE
OR REPLACE FORCE VIEW V_EXPORT_PAIEMENT_SIHAM AS
CREATE OR REPLACE FORCE VIEW V_EXPORT_PAIEMENT_SIHAM AS
SELECT annee_id,
       type_intervenant_id,
       structure_id,
+1 −2
Original line number Diff line number Diff line
CREATE
OR REPLACE FORCE VIEW V_EXPORT_PILOTAGE_ECARTS_ETATS AS
CREATE OR REPLACE FORCE VIEW V_EXPORT_PILOTAGE_ECARTS_ETATS AS
SELECT t3.annee_id                             annee_id,
       t3.annee_id || '-' || (t3.annee_id + 1) annee,
       t3.etat,
+1 −2
Original line number Diff line number Diff line
CREATE
OR REPLACE FORCE VIEW V_HETD_PREV_VAL_STRUCT AS
CREATE OR REPLACE FORCE VIEW V_HETD_PREV_VAL_STRUCT AS
SELECT annee_id,
       structure_id,
       SUM(heures) heures
+1 −2
Original line number Diff line number Diff line
CREATE
OR REPLACE FORCE VIEW V_IMPUTATION_BUDGETAIRE_SIHAM AS
CREATE OR REPLACE FORCE VIEW V_IMPUTATION_BUDGETAIRE_SIHAM AS
SELECT 'P'                                                                                type,
       NULL                                                                               uo,
       intervenant_matricule                                                              matricule,
Loading