You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

73 lines
2.9 KiB

src: |
SELECT 1::bigint AS oid,
'SEJOURS'::text AS code,
'Superviseur d''activité'::text AS texte,
'245'::text AS dimensions_date,
ARRAY[''::text, 'sortie'::text, ''::text, 'ventes'::text, 'groupage'::text] AS dimensions_date_texte
UNION
SELECT 2::bigint AS oid,
'OCCUPATION'::text AS code,
'Occupation'::text AS texte,
'1'::text AS dimensions_date,
ARRAY['mouvement'::text, ''::text, ''::text, ''::text, ''::text] AS dimensions_date_texte
UNION
SELECT 3::bigint AS oid,
'PLACES'::text AS code,
'Places'::text AS texte,
'1'::text AS dimensions_date,
ARRAY['mouvement'::text, ''::text, ''::text, ''::text, ''::text] AS dimensions_date_texte
UNION
SELECT 4::bigint AS oid,
'FACTURATION_CLINIQUE'::text AS code,
'Facturation Clinique'::text AS texte,
'1234'::text AS dimensions_date,
ARRAY['acte'::text, 'sortie'::text, 'facture'::text, 'ventes'::text, ''::text] AS dimensions_date_texte
UNION
SELECT 5::bigint AS oid,
'CLIENTS_CLINIQUE'::text AS code,
'Clients Clinique'::text AS texte,
'4'::text AS dimensions_date,
ARRAY[''::text, ''::text, ''::text, 'comptable'::text, ''::text] AS dimensions_date_texte
UNION
SELECT 6::bigint AS oid,
'FACTURATION_HONORAIRE'::text AS code,
'Facturation Honoraires'::text AS texte,
'1234'::text AS dimensions_date,
ARRAY['acte'::text, 'sortie'::text, 'facture'::text, 'ventes'::text, ''::text] AS dimensions_date_texte
UNION
SELECT 7::bigint AS oid,
'CLIENTS_HONORAIRE'::text AS code,
'Clients Honoraire'::text AS texte,
'4'::text AS dimensions_date,
ARRAY[''::text, ''::text, ''::text, 'comptable'::text, ''::text] AS dimensions_date_texte
UNION
SELECT 8::bigint AS oid,
'EN_COURS'::text AS code,
'En-cours'::text AS texte,
'4'::text AS dimensions_date,
ARRAY[''::text, ''::text, ''::text, 'comptable'::text, ''::text] AS dimensions_date_texte
UNION
SELECT 9::bigint AS oid,
'ANNULATIONS'::text AS code,
'Annulations'::text AS texte,
'1'::text AS dimensions_date,
ARRAY['entree'::text, ''::text, ''::text, ''::text, ''::text] AS dimensions_date_texte
UNION
SELECT 11::bigint AS oid,
'OCCUPATION_BLOC'::text AS code,
'Occupation bloc'::text AS texte,
'1'::text AS dimensions_date,
ARRAY['intervention'::text, ''::text, ''::text, ''::text, ''::text] AS dimensions_date_texte
UNION
SELECT 97::bigint AS oid,
'CALENDRIER'::text AS code,
'Calendrier'::text AS texte,
'1'::text AS dimensions_date,
ARRAY['jour'::text, ''::text, ''::text, ''::text, ''::text] AS dimensions_date_texte
UNION
SELECT 98::bigint AS oid,
'*CALC'::text AS code,
'Calcul entre indicateurs'::text AS texte,
''::text AS dimensions_date,
ARRAY[''::text, ''::text, ''::text, ''::text, ''::text] AS dimensions_date_texte
ORDER BY 1;