pour déploiement auto v2 via gitlab
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.
 
 

869 lines
26 KiB

<?xml version="1.0" encoding="ISO-8859-1"?>
<VUE name="PMSI000005"
label="PMSI. Liste des RSS par critères"
title="= 'Liste des RSS (' + SELECT.PERIODE_LABEL + ' à ' + SELECT.TOPERIODE_LABEL + ') - ' + SELECT.VERSION_GROUPAGE_LABEL"
database="iCTI"
swf="*CTI_view1"
softCode="iCTI_pmsi"
globals="PMSI_globals.XML"
componentsFile="PMSI_components.XML"
helpDokuWIkiDir="pmsi:sejours_analyse_globale:severites"
helpDokuWIkiFile="pmsi000141">
<VIEWPROPERTIES>
<PROPERTY name="NO_RSS_SELECT" >
<value><![CDATA[
[EVAL
if ('[NO_RSS_SELECT]' == '') {return "";}
return "
AND v_rss_1.no_rss
= ANY (
string_to_array(
regexp_replace(
trim(
regexp_replace('[NO_RSS_SELECT]', '[^0-9]', ' ', 'g')
)
, ' +', ' ', 'g'
)
, ' '
)
)";
EVAL]
]]></value>
</PROPERTY>
<PROPERTY name="NO_SEJOUR_SELECT" >
<value><![CDATA[
[EVAL
if ('[NO_SEJOUR]' == '') {return "";}
return "
AND trim(v_rss_1.no_sejour_administratif)
= ANY (
string_to_array(
translate(trim('[NO_SEJOUR]'), ' ', ','), ',')
)
AND v_rss_1.no_sejour_administratif <> ''
";
EVAL]
]]></value>
</PROPERTY>
<PROPERTY name="NOM_SELECT" >
<value><![CDATA[
[EVAL
if ('[NOM]' == '') {return "";}
return "
AND identite_nom || ' ' || identite_nom_naissance || ' ' || identite_prenom
ILIKE ALL (
string_to_array(
'%' ||
regexp_replace(
regexp_replace(
trim('[NOM]')
, ' +', ' ', 'g'
)
, ' ', '% %', 'g'
)
|| '%'
, ' '
)
)";
EVAL]
]]></value>
</PROPERTY>
<PROPERTYx dataLink="VIEWPROPERTIES" nameField="name" valueField="value" />
</VIEWPROPERTIES>
<VIEWPROPERTIES componentName="PROPERTIES_DIAG" />
<SELECTIONS label="Paramètres de l'analyse" displayText="= var display:String = '';
if (SELECT.NO_RSS_SELECT != '') {
display = display + 'N° RSS : #B#' + SELECT.NO_RSS_SELECT;
display = display + '#/B# ';
}
if (SELECT.NOM != '') {
display = display + 'Nom : #B#' + SELECT.NOM;
display = display + '#/B# ';
}
if (display != '') {
}
return display;
"
>
<GROUP label="Date sortie">
<FIELD name="ALIAS_PERIODE" label="" UI="combo" width="220" default="CUM_LAST_MONTH" tree="true" globalListProvider="ALIAS_PERIODE" />
<FIELD name="PERIODE" label="" UI="combo" tree="true" width="200" default="2014-01-01" globalListProvider="DATE_DEBUT" printable="false" >
</FIELD>
<FIELD name="TOPERIODE" label="à" UI="combo" tree="true" width="200" default="2014-12-31" globalListProvider="DATE_FIN" printable="false">
</FIELD>
</GROUP>
<GROUP label="N° de RSS">
<FIELD name="NO_RSS_SELECT" label="" UI="textArea" width="550" height="70" default="" showIfNotDefault="true" />
</GROUP>
<GROUP label="N° de séjour administratif">
<FIELD name="NO_SEJOUR" label="" UI="textArea" width="550" height="70" default="" showIfNotDefault="true" />
</GROUP>
<GROUP label="Ou Nom">
<FIELD name="NOM" label="" UI="text" width="200" default="" showIfNotDefault="true">
</FIELD>
</GROUP>
</SELECTIONS>
<SELECTIONS componentName="FILTRES_RSS_SELECTIONS" />
<SELECTIONS componentName="FILTRES_DIAG_SELECTIONS" />
<QUERIES>
<QUERY label="">
<SQL optimizer="V_RSS_X">
<select><![CDATA[
DROP TABLE IF EXISTS w_diag;
CREATE TEMP TABLE w_diag AS
(
SELECT
v_rss_1.rss_id,
count(p_rss_diagnostics.diagnostic_id) AS nb_diag
FROM
#V_RSS_X#
JOIN pmsi.p_rss_diagnostics ON p_rss_diagnostics.rss_id = v_rss_1.rss_id
WHERE 1=1
AND date_sortie BETWEEN '[PERIODE]' AND '[TOPERIODE]'
[VIEW.NO_RSS_SELECT]
[VIEW.NO_SEJOUR_SELECT]
[VIEW.NOM_SELECT]
[VIEW.FILTRE_RSS_SELECT]
[VIEW.FILTRE_DIAG_SELECT]
GROUP BY v_rss_1.rss_id
)
;
DROP TABLE IF EXISTS w_acte;
CREATE TEMP TABLE w_acte AS
(
SELECT
v_rss_1.rss_id,
count(p_rss_actes.acte_id) AS nb_acte
FROM
#V_RSS_X#
JOIN pmsi.p_rss_actes ON p_rss_actes.rss_id = v_rss_1.rss_id
WHERE 1=1
AND date_sortie BETWEEN '[PERIODE]' AND '[TOPERIODE]'
[VIEW.NO_RSS_SELECT]
[VIEW.NO_SEJOUR_SELECT]
[VIEW.NOM_SELECT]
[VIEW.FILTRE_RSS_SELECT]
[VIEW.FILTRE_DIAG_SELECT]
GROUP BY v_rss_1.rss_id
)
;
DROP TABLE IF EXISTS w_interv;
CREATE TEMP TABLE w_interv AS
(
SELECT
v_rss_1.rss_id,
count(p_rss_actes.acte_id) AS nb_interv
FROM
#V_RSS_X#
JOIN pmsi.p_rss_actes ON p_rss_actes.rss_id = v_rss_1.rss_id
JOIN (
SELECT to_id as acte_id FROM pmsi.t_listes_contenu JOIN pmsi.t_listes ON t_listes.oid = t_listes_contenu.liste_id WHERE t_listes.code = 'CTI_INTERV'
) interv ON interv.acte_id = p_rss_actes.acte_id
WHERE 1=1
AND date_sortie BETWEEN '[PERIODE]' AND '[TOPERIODE]'
AND p_rss_actes.activite_ccam <> '4'
[VIEW.NO_RSS_SELECT]
[VIEW.NO_SEJOUR_SELECT]
[VIEW.NOM_SELECT]
[VIEW.FILTRE_RSS_SELECT]
[VIEW.FILTRE_DIAG_SELECT]
GROUP BY v_rss_1.rss_id
)
;
(
SELECT
v_rss_1.rss_id,
v_rss_1.no_rss,
v_rss_1.en_cours_texte_tres_court,
CASE WHEN patient_no_patient &gt; 0 THEN patient_no_patient ELSE 0 END,
v_rss_1.no_sejour_administratif,
v_rss_1.finess,
identite_nom || ' ' || identite_prenom,
ghm_code,
severite_ghm_code,
ghs_code,
ligne_oap_code,
medecin_reference_rss_nom,
diagnostic_principal_code,
unite_medicale_principale_code,
acte_principal_code,
date_entree,
date_sortie,
mode_entree::text || provenance::text,
mode_sortie::text || destination::text,
sexe_texte_court,
age,
v_rss_1.date_naissance,
code_postal,
nb_rsa,
nb_rum,
duree_sejour,
nb_seances,
poids_bebe,
age_gestationnel,
CASE WHEN date_dernieres_regles != '2099-12-31' THEN date_dernieres_regles ELSE null END,
COALESCE(w_acte.nb_acte, 0),
COALESCE(w_diag.nb_diag, 0),
COALESCE(w_interv.nb_interv, 0),
activite_urgence,
v_rsf_total_1.valorise_fides_id,
conversion_hp_hc_code,
raac_code,
np_code,
passage_urgences_code,
rescrit_tarif_code,
adm_prod_reshospi_code,
contexte_pat_code,
nb_intervention_code
FROM
#V_RSS_X#
LEFT JOIN w_acte ON w_acte.rss_id = v_rss_1.rss_id
LEFT JOIN w_diag ON w_diag.rss_id = v_rss_1.rss_id
LEFT JOIN w_interv ON w_interv.rss_id = v_rss_1.rss_id
WHERE 1=1
AND date_sortie BETWEEN '[PERIODE]' AND '[TOPERIODE]'
[VIEW.NO_RSS_SELECT]
[VIEW.NO_SEJOUR_SELECT]
[VIEW.NOM_SELECT]
[VIEW.FILTRE_RSS_SELECT]
[VIEW.FILTRE_DIAG_SELECT]
)
UNION ALL
(
SELECT
-9999999,
COUNT(DISTINCT v_rss_1.no_rss),
'',
0,
'',
'',
SUM(1)::text || ' RSS, '::text || COUNT(DISTINCT patient_id)::text || ' patients'::text ,
'',
'',
'',
'',
'',
'',
'',
'',
null,
null,
'',
'',
'',
0,
null,
'',
SUM(nb_rsa), SUM(nb_rum), SUM(duree_sejour), SUM(nb_seances),
null,null,null,
sum(w_acte.nb_acte),
sum(w_diag.nb_diag),
sum(w_interv.nb_interv),
'',
sum(v_rsf_total_1.valorise_fides_id),
SUM(CASE WHEN conversion_hp_hc_code not in ('0','') THEN 1 ELSE 0 END)::text,
SUM(CASE WHEN raac_code not in ('0','') THEN 1 ELSE 0 END)::text,
SUM(CASE WHEN np_code not in ('0','') THEN 1 ELSE 0 END)::text,
SUM(CASE WHEN passage_urgences_code not in ('0','') THEN 1 ELSE 0 END)::text,
SUM(CASE WHEN rescrit_tarif_code not in ('0','') THEN 1 ELSE 0 END)::text,
SUM(CASE WHEN adm_prod_reshospi_code not in ('0','') THEN 1 ELSE 0 END)::text,
SUM(CASE WHEN adm_prod_reshospi_code not in ('0','') THEN 1 ELSE 0 END)::text,
SUM(CASE WHEN nb_intervention_code not in ('0','') THEN 1 ELSE 0 END)::text
FROM
#V_RSS_X#
LEFT JOIN w_acte ON w_acte.rss_id = v_rss_1.rss_id
LEFT JOIN w_diag ON w_diag.rss_id = v_rss_1.rss_id
LEFT JOIN w_interv ON w_interv.rss_id = v_rss_1.rss_id
WHERE 1=1
AND date_sortie BETWEEN '[PERIODE]' AND '[TOPERIODE]'
[VIEW.NO_RSS_SELECT]
[VIEW.NO_SEJOUR_SELECT]
[VIEW.NOM_SELECT]
[VIEW.FILTRE_RSS_SELECT]
[VIEW.FILTRE_DIAG_SELECT]
)
ORDER BY 2
;
]]></select>
<FIELDS>
<FIELD name="OID" />
<FIELD name="RSS" />
<FIELD name="EXP" />
<FIELD name="PAT" />
<FIELD name="SEJ" />
<FIELD name="FIN" />
<FIELD name="NOM" ifHideNames="Non autorisé"/>
<FIELD name="GHM" />
<FIELD name="SEV" />
<FIELD name="GHS" />
<FIELD name="OAP" />
<FIELD name="MED" />
<FIELD name="DIAGP" />
<FIELD name="UMP" />
<FIELD name="ACTEP" />
<FIELD name="DATE" />
<FIELD name="DATS" />
<FIELD name="MODE" />
<FIELD name="MODS" />
<FIELD name="SEX" />
<FIELD name="AGE" />
<FIELD name="DATN" ifHideNames="Non autorisé"/>
<FIELD name="CODP" />
<FIELD name="NRSA"/>
<FIELD name="NRUM"/>
<FIELD name="NBJ"/>
<FIELD name="NSEA"/>
<FIELD name="PBB"/>
<FIELD name="AGEST"/>
<FIELD name="DDR"/>
<FIELD name="NB_ACTE"/>
<FIELD name="NB_DIAG"/>
<FIELD name="NB_INTERV"/>
<FIELD name="ACT_URG"/>
<FIELD name="FIDES_ON"/>
<FIELD name="COHPHC"/>
<FIELD name="RAAC"/>
<FIELD name="NP"/>
<FIELD name="PASSAGE_URGENCES"/>
<FIELD name="RESC_TARIF"/>
<FIELD name="ADM_PR_RES_HOSP"/>
<FIELD name="CONT_PAT"/>
<FIELD name="NB_INTERVV"/>
</FIELDS>
</SQL>
</QUERY>
</QUERIES>
<PRESENTATION>
<VIEWLINKS>
<VIEWLINK label="Détail RSS" shortLabel="Détail RSS" view="PMSI000006.XML">
<ARG name="OID" value="ROW.OID" />
</VIEWLINK>
<VIEWLINKx label="Créer un extrait de base" shortLabel="Extrait de base" view="PMSI000055.XML" rowContext="false">
</VIEWLINKx>
</VIEWLINKS>
<ONGLET excelLabel="Liste RSS" >
<DATAGRID title="" total="true" key="RSS" headerHeight="36"
totalRowInRows="= ROW.OID == '-9999999'"
>
<ROWSTYLE name="fontSize" value="11" />
<FOOTERROWSTYLE name="fontSize" value="11" />
<COLUMN dataField="OID"
type="Char"
visible="false">
</COLUMN>
<COLUMN dataField="FIN"
width="60"
type="Char"
visible="true"
headerText="Etablissement"
textAlign="left"
visibleCondition="ENV.CONSOLIDATION == '1'"
otherFunction="text"
totalFunction="text"
totalComplement=""
description="Code FINESS de l'établissement dans lequel ont été inscrits les RUM">
</COLUMN>
<COLUMN dataField="RSS"
width="70"
type="Number"
visible="true"
outputFormat="#"
headerText="N° RSS"
textAlign="center"
otherFunction="text"
totalFunction="text"
totalComplement="TOTAL"
description="Numéro de RSS du séjour">
</COLUMN>
<COLUMN dataField="PAT"
width="80"
type="Number"
visible="true"
outputFormat="#"
headerText="N° Patient"
textAlign="center"
otherFunction="text"
totalFunction="text"
totalComplement=""
>
</COLUMN>
<COLUMN dataField="SEJ"
width="85"
type="Char"
visible="true"
outputFormat="#"
headerText="N° séjour"
textAlign="left"
otherFunction="text"
totalFunction="text"
totalComplement=""
description="Numéro de séjour administaratif">
</COLUMN>
<COLUMN dataField="NOM"
minWidth="180"
maxWidth="230"
type="Char"
visible="true"
headerText="Nom"
textAlign="left"
otherFunction="text"
totalFunction="text"
totalComplement="*ROW"
description="Nom et prénom du patient (si autorisé)">
</COLUMN>
<COLUMN dataField="SEX"
width="45"
type="Char"
visible="true"
headerText="Sexe"
fixed="false"
textAlign="right"
otherFunction="text"
totalFunction="text"
description="Sexe du patient">
<CELLSTYLE name="cellIndicator" value="femme, 12,left middle , 0xEB76B1" condition="ROW.SEX == 'F'" />
<CELLSTYLE name="cellIndicator" value="homme, 12,left middle , 0x75a0eb " condition="ROW.SEX == 'M'" />
<CELLSTYLE name="cellIndicator" value="rectangle, 10,left middle , #FF5001 " condition="ROW.SEX == 'I'" />
<CELLSTYLE name="cellIndicator" value="rectangle, 10, left middle, 0x666666" condition="ROW.SEX != 'F' &amp;&amp; ROW.SEX != 'M' &amp;&amp; ROW.SEX != 'I'" />
</COLUMN>
<COLUMN dataField="DATN"
width="60"
type="Date"
inputFormat="AAAA-MM-JJ"
outputFormat="DD/MM/YY"
visible="true"
fixed="false"
headerText="Date naissance"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Date de naissance du patient (si autorisé)">
</COLUMN>
<COLUMN dataField="AGE"
width="40"
type="Number"
outputFormat="#"
fixed="false"
visible="true"
headerText="Age"
textAlign="right"
otherFunction="text"
totalFunction="text"
description="Age du patient">
</COLUMN>
<COLUMN dataField="CODP"
width="40"
type="Char"
outputFormat="#"
fixed="false"
visible="true"
headerText="Code postal"
textAlign="right"
otherFunction="text"
totalFunction="text"
description="Code postal d'origine du patient">
</COLUMN>
<COLUMN dataField="DATE"
width="60"
type="Date"
inputFormat="AAAA-MM-JJ"
outputFormat="DD/MM/YY"
visible="true"
fixed="false"
headerText="Date entrée"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Date d'entrée dans l'établissement">
</COLUMN>
<COLUMN dataField="DATS"
width="60"
type="Date"
inputFormat="AAAA-MM-JJ"
outputFormat="DD/MM/YY"
visible="true"
fixed="false"
headerText="Date sortie"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Date de sortie de l'établissement">
</COLUMN>
<COLUMN dataField="MODE"
width="45"
type="Char"
visible="true"
fixed="false"
headerText="Mode entrée"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Mode d'entrée du séjour">
</COLUMN>
<COLUMN dataField="PASSAGE_URGENCES" width="45" type="Char" visible="true" headerText="Passage Urgences" textAlign="center" otherFunction="text" totalFunction="text">
<description><![CDATA[
<B>Passage urgence: </B>
- 0 ou vide : Non reinseigné
- 5 : Passage urgences même entité
- U : Passage urgences autre entité
- V : Passage urgences même et autre entité
]]></description>
</COLUMN>
<COLUMN dataField="MODS"
width="45"
type="Char"
visible="true"
fixed="false"
headerText="Mode sortie"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Mode de sortie du séjour">
</COLUMN>
<COLUMN dataField="EXP"
width="30"
type="Char"
visible="true"
fixed="false"
headerText="EXP"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="= return &quot;Etat du dossier (liste par étapes successives):&lt;ul&gt;&lt;li&gt;&lt;b&gt;PR&lt;/b&gt; : Présent&lt;/li&gt;&lt;li&gt;&lt;b&gt;SO&lt;/b&gt; : Sorti&lt;/li&gt;&lt;li&gt;&lt;b&gt;GR&lt;/b&gt; : Groupé&lt;/li&gt;&lt;li&gt;&lt;b&gt;GV&lt;/b&gt; : Validé&lt;/li&gt;&lt;li&gt;&lt;b&gt;FA&lt;/b&gt; : Facturé&lt;/li&gt;&lt;li&gt;&lt;b&gt;EX&lt;/b&gt; : Expédié à ePMSI&lt;/li&gt;&lt;/ul&gt;&quot;">
</COLUMN>
<COLUMN dataField="GHM"
width="55"
type="Char"
visible="true"
fixed="false"
headerText="GHM"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Code GHM du séjour" >
</COLUMN>
<COLUMN dataField="SEV"
width="30"
type="Char"
visible="true"
fixed="false"
headerText="Sév"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Sévérité du code GHM du séjour" >
</COLUMN>
<COLUMN dataField="GHS"
width="40"
type="Char"
visible="true"
fixed="false"
headerText="GHS"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Code GHS du séjour" >
</COLUMN>
<COLUMN dataField="OAP"
width="40"
type="Char"
visible="true"
headerText="OAP"
textAlign="left"
fixed="false"
otherFunction="text"
totalFunction="text"
description="Ligne OAP (Classification dépréciée mais donnée à titre informatif)" >
</COLUMN>
<COLUMN dataField="FIDES_ON"
width="40"
type="Char"
visible="true"
headerText="FIDES"
textAlign="left"
fixed="false"
otherFunction="text"
totalFunction="text"
description="Valorisation FIDES : 1 = OUI , 0 = non" >
</COLUMN>
<COLUMN dataField="MED"
minWidth="60"
maxWidth="150"
type="Char"
visible="true"
fixed="false"
headerText="Médecin"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Identité du médecin responsable du séjour" >
</COLUMN>
<COLUMN dataField="UMP"
width="50"
type="Char"
visible="true"
fixed="false"
headerText="UM"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="= return &quot;Unité médicale principale du séjour (Premier cas rencontré) :&lt;ul&gt;&lt;li&gt;Unité dans laquelle a été donné le diagnostic princpal du séjour&lt;/li&gt;&lt;li&gt;Première unité médicale visitée dans laquelle des actes classants ont été exécutés&lt;/li&gt;&lt;li&gt;Unité médicale du RUM avec la plus longue durée&lt;/li&gt;&lt;/ul&gt;&quot;">
</COLUMN>
<COLUMN dataField="ACT_URG"
width="50"
type="Char"
visible="true"
fixed="false"
headerText="ACT URG"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Activité urgence : au moins une prestation ATU facturée">
</COLUMN>
<COLUMN dataField="DIAGP"
width="50"
type="Char"
fixed="false"
visible="true"
headerText="Diag P"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Diagnostic principal du séjour">
</COLUMN>
<COLUMN dataField="ACTEP"
width="60"
type="Char"
fixed="false"
visible="true"
headerText="Acte P"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Acte principal du séjour : Acte réalisé pendant le séjour présentant le plus gros ICR (Indice de Coût Relatif) ; les actes d'anesthésie ne sont pas pris en compte dans le choix de l'acte principal">
</COLUMN>
<COLUMN dataField="NB_DIAG"
width="40"
type="Number"
fixed="false"
visible="true"
outputFormat="#"
headerText="Nb diags"
textAlign="right"
otherFunction="sum"
totalFunction="sum"
description="Nombre de diagnostics du séjour (principal, relié, associé ou documentaire)">
</COLUMN>
<COLUMN dataField="NB_ACTE"
width="40"
type="Number"
fixed="false"
visible="true"
outputFormat="#"
headerText="Nb actes"
textAlign="right"
otherFunction="sum"
totalFunction="sum"
description="Nombre d'actes réalisés pendant le séjour (toutes activités confondues)">
</COLUMN>
<COLUMN dataField="NB_INTERV"
width="40"
type="Number"
fixed="false"
visible="true"
outputFormat="#"
headerText="Nb interv"
textAlign="right"
otherFunction="sum"
totalFunction="sum"
description="= return &quot;Nombre d'actes hors anesthésie présents dans la liste &lt;b&gt;CTI. Actes définissant une intervention&lt;/b&gt; (Menu P.M.S.I. MCO | Paramètres | Classification | Listes | Actes | Listes CTI)&quot;">
</COLUMN>
<COLUMN dataField="NRSA"
width="50"
visible="false"
type="Number"
outputFormat="#"
fixed="false"
headerText="Nb séjours"
textAlign="right"
totalFunction="sum"
otherFunction="sum">
</COLUMN>
<COLUMN dataField="NRUM"
width="35"
visible="true"
type="Number"
outputFormat="#"
fixed="false"
headerText="Nb RUM"
textAlign="right"
totalFunction="sum"
otherFunction="sum"
description="Nombre de RUM dans le séjour">
</COLUMN>
<COLUMN dataField="NSEA"
width="50"
visible="true"
type="Number"
outputFormat="#"
headerText="Nb séances"
fixed="false"
textAlign="right"
totalFunction="sum"
otherFunction="sum"
description="Nombre de séances du séjour">
</COLUMN>
<COLUMN dataField="NBJ"
width="50"
visible="true"
type="Number"
outputFormat="#"
headerText="Durée séjour"
fixed="false"
textAlign="right"
totalFunction="sum"
otherFunction="sum"
description="Durée du séjour : différence entre la date de sortie et la date d'entrée">
</COLUMN>
<COLUMN dataField="PBB"
width="50"
visible="true"
type="Number"
outputFormat="#"
headerText="Poids bébé"
fixed="false"
textAlign="right"
totalFunction="sum"
otherFunction="sum"
description="Poids du bébé">
</COLUMN>
<COLUMN dataField="AGEST"
width="40"
type="Number"
outputFormat="#"
fixed="false"
visible="true"
headerText="Age gestationnel"
textAlign="right"
otherFunction="text"
totalFunction="text"
description="Age gestationnel">
</COLUMN>
<COLUMN dataField="DDR"
width="60"
type="Date"
inputFormat="AAAA-MM-JJ"
outputFormat="DD/MM/YY"
visible="true"
fixed="false"
headerText="Date dern. règles"
textAlign="left"
otherFunction="text"
totalFunction="text"
description="Date des dernières règles">
</COLUMN>
<COLUMN dataField="COHPHC" width="45" type="Char" visible="true" headerText="Conv. HP,HC" textAlign="center" otherFunction="text" totalFunction="text">
<description><![CDATA[
<B>Conversion (HP,HC): </B>
- 0 ou vide : Non reinseigné
- 1 : Conversion HC
- 2 : Absence de conversion HC
]]></description>
</COLUMN>
<COLUMN dataField="RAAC" width="45" type="Char" visible="true" headerText="RAAC" textAlign="center" otherFunction="text" totalFunction="text">
<description><![CDATA[
<B>RAAC: </B>
- 0 ou vide : Non reinseigné
- 1 : Prise en charge RAAC
- 2 : Pas de prise en charge RAAC
]]></description>
</COLUMN>
<COLUMN dataField="NP" width="45" type="Char" visible="true" headerText="NP" textAlign="center" otherFunction="text" totalFunction="text">
<description><![CDATA[
<B>NP: </B>
- 0 ou vide : Non reinseigné
- 1 : Prise en charge non Programmé
- 2 : Prise en charge programmé
]]></description>
</COLUMN>
<COLUMN dataField="RESC_TARIF" width="45" type="Char" visible="true" headerText="RESC TARIF" textAlign="center" otherFunction="text" totalFunction="text">
<description><![CDATA[
<B>Rescrit tarif: </B>
- 0 ou vide : Non reinseigné
- 1 : Situation relevant d'une hospitalisation de jour
- 2 : Pas de Situation relevant d'une hospitalisation de jour
]]></description>
</COLUMN>
<COLUMN dataField="ADM_PR_RES_HOSP" width="45" type="Char" visible="true" headerText="ADM PROD RH" textAlign="center" otherFunction="text" totalFunction="text">
<description><![CDATA[
<B>Administration de produits de la réserve hospitalière: </B>
- 0 ou vide : Non reinseigné
- 1 : Prise en charge avec administration de produit de la RH
- 2 : Pas de prise en charge avec administration de produit de la RH
]]></description>
</COLUMN>
<COLUMN dataField="CONT_PAT" width="45" type="Char" visible="true" headerText="CONT PAT" textAlign="center" otherFunction="text" totalFunction="text">
<description><![CDATA[
<B>Contexte particulier ou surveillance particulière: </B>
- 0 ou vide : Non renseigné
- 1 : Prise en charge avec contexte particulier ou surveillance particulière
- 2 : Pas de prise en charge avec contexte particulier ou surveillance particulière
]]> </description>
</COLUMN>
<COLUMN dataField="NB_INTERVV" width="45" type="Char" visible="true" headerText="NB INTER" textAlign="center" otherFunction="text" totalFunction="text">
<description><![CDATA[
<B>Nombre interventions: </B>
- 0 ou vide : Non reinseigné
- A : Nombre d'interventions inférieur à 3
- B : Plus de 3 interventions
- C : 3 interventions
]]></description>
</COLUMN>
</DATAGRID>
</ONGLET>
</PRESENTATION>
</VUE>