Historique corrigé
This commit is contained in:
parent
969dd9a4d5
commit
08c803faa0
File diff suppressed because one or more lines are too long
|
@ -739,5 +739,7 @@
|
|||
"SCAN": "Scanner",
|
||||
"BRING_YOUR_CAMERA_CLOSER_TO_SCAN_QR_CODE": "Approchez votre caméra du QR Code afin de le scanner",
|
||||
"QUANTITY_CANNOT_BE_SUPERIOR": "La quantité ne doit pas être supérieure à",
|
||||
"EXCLUSION": "Exclusion"
|
||||
"EXCLUSION": "Exclusion",
|
||||
"VALIDATION_EFFECTUE": "Validation effectué",
|
||||
"USER_SUCCESSFULLY_VALIDATED": "Utilisateur validé avec succès"
|
||||
}
|
||||
|
|
|
@ -418,7 +418,7 @@ const HistoriqueNanoSanteAgentScreen = ({
|
|||
</View>
|
||||
<View style={{flex: 1, alignItems: 'flex-end'}}>
|
||||
<Text
|
||||
style={[Typography.caption1, Color.grayColor]}>{historyItemDetail.insured_amount}</Text>
|
||||
style={[Typography.caption1, Color.grayColor]}>{historyItemDetail.insurer_amount}</Text>
|
||||
</View>
|
||||
</View>
|
||||
<View style={{flexDirection: 'row', marginTop: 10}}>
|
||||
|
@ -427,7 +427,7 @@ const HistoriqueNanoSanteAgentScreen = ({
|
|||
</View>
|
||||
<View style={{flex: 1, alignItems: 'flex-end'}}>
|
||||
<Text
|
||||
style={[Typography.caption1, Color.grayColor]}>{historyItemDetail.insurer_amount}</Text>
|
||||
style={[Typography.caption1, Color.grayColor]}>{historyItemDetail.insured_amount}</Text>
|
||||
</View>
|
||||
</View>
|
||||
<View style={{flexDirection: 'row', marginTop: 10}}>
|
||||
|
@ -447,7 +447,7 @@ const HistoriqueNanoSanteAgentScreen = ({
|
|||
description={`${I18n.t('ID')}: ${history_care.health_care_sheet_id}\
|
||||
${I18n.t('AMOUNT')}: ${history_care.amount}\
|
||||
${I18n.t('MONTANT_ASSURANCE')}: ${history_care.insuredAmount}\
|
||||
${I18n.t('MONTANT_ASSURE')}: ${history_care.insurerAmount}\
|
||||
${I18n.t('MONTANT_ASSURE')}: ${history_care.insuredAmount}\
|
||||
${I18n.t('PATIENT')}: ${history_care.patient_firstname !== null ? history_care.patient_firstname : '' } ${history_care.patient_lastname}\n
|
||||
${I18n.t('PRATICIEN')}: ${history_care.practitioner_firstname !== null ? history_care.practitioner_firstname : ''} ${history_care.practitioner_lastname}\
|
||||
`}
|
||||
|
@ -497,7 +497,7 @@ const HistoriqueNanoSanteAgentScreen = ({
|
|||
}}>
|
||||
<View style={[styles.contentTop, {borderColor: Color.borderColor}]}>
|
||||
<View style={{flex: 1, alignItems: 'flex-start'}}>
|
||||
<Text caption1>{`${I18n.t('MONTANT_ASSURANCE')}: ${item.insured_amount}`}</Text>
|
||||
<Text caption1>{`${I18n.t('MONTANT_ASSURANCE')}: ${item.insurance_amount}`}</Text>
|
||||
<Text footnote light numberOfLines={1}>
|
||||
{`${I18n.t('STATE')}: ${item.state.toLowerCase()}`}
|
||||
</Text>
|
||||
|
@ -544,9 +544,9 @@ const HistoriqueNanoSanteAgentScreen = ({
|
|||
<View style={[styles.contentTop, {borderColor: Color.borderColor}]}>
|
||||
<View style={{flex: 1, alignItems: 'flex-start'}}>
|
||||
<Text
|
||||
caption1>{`${I18n.t('MONTANT_ASSURANCE')}: ${item.insured_amount}`}</Text>
|
||||
caption1>{`${I18n.t('MONTANT_ASSURANCE')}: ${item.insurer_amount}`}</Text>
|
||||
<Text footnote light numberOfLines={1}>
|
||||
{`${I18n.t('MONTANT_ASSURE')}: ${item.insurer_amount}`}
|
||||
{`${I18n.t('MONTANT_ASSURE')}: ${item.insured_amount}`}
|
||||
</Text>
|
||||
</View>
|
||||
|
||||
|
|
Loading…
Reference in New Issue