Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | 2x | import moment from 'moment'; export const insuredsMock = [ { insuredNumber: '1234567', language: 'FR', lastname: 'User', firstname: 'Jean-Marc', birthDate: '1966-08-02T23:00:00Z', gender: 'M', partPrincipal: true, insuredYears: [ { year: 2022, annualDeductibleAmount: 1000, annualCoInsuranceAmount: 700, paidDeductibleAmount: 750, paidCoInsuranceAmount: 0, paidCoInsurancePercent: 0, toBePaidCoInsuranceAmount: 700, paidDeductiblePercent: 75, toBePaidDeductibleAmount: 250, }, { year: 2021, annualDeductibleAmount: 1000, annualCoInsuranceAmount: 700, paidDeductibleAmount: 1000, paidCoInsuranceAmount: 71.75, paidCoInsurancePercent: 10, toBePaidCoInsuranceAmount: 628.25, paidDeductiblePercent: 100, toBePaidDeductibleAmount: 0, }, ], }, { insuredNumber: '2234567', language: 'FR', lastname: 'User', firstname: 'Cynthia', birthDate: moment().toISOString(), gender: 'F', insuredYears: [ { year: 2022, annualDeductibleAmount: 1000, annualCoInsuranceAmount: 700, paidDeductibleAmount: 300, paidCoInsuranceAmount: 0, paidCoInsurancePercent: 0, toBePaidCoInsuranceAmount: 700, paidDeductiblePercent: 30, toBePaidDeductibleAmount: 700, }, { year: 2021, annualDeductibleAmount: 1000, annualCoInsuranceAmount: 700, paidDeductibleAmount: 800, paidCoInsuranceAmount: 0, paidCoInsurancePercent: 0, toBePaidCoInsuranceAmount: 700, paidDeductiblePercent: 80, toBePaidDeductibleAmount: 200, }, ], }, { insuredNumber: '3234567', language: 'FR', lastname: 'User', firstname: 'Luc', birthDate: '1999-04-10T22:00:00Z', gender: 'M', insuredYears: [ { year: 2022, annualDeductibleAmount: 0, annualCoInsuranceAmount: 350, paidDeductibleAmount: 0, paidCoInsuranceAmount: 189.55, paidCoInsurancePercent: 54, toBePaidCoInsuranceAmount: 160.45, paidDeductiblePercent: 0, toBePaidDeductibleAmount: 0, }, { year: 2021, annualDeductibleAmount: 0, annualCoInsuranceAmount: 350, paidDeductibleAmount: 0, paidCoInsuranceAmount: 350, paidCoInsurancePercent: 100, toBePaidCoInsuranceAmount: 0, paidDeductiblePercent: 0, toBePaidDeductibleAmount: 0, }, ], }, { insuredNumber: '4234567', language: 'FR', firstname: 'Sophie12345678', lastname: 'User1234567891234567890', birthDate: '2006-01-06T23:00:00Z', gender: 'F', insuredYears: [ { year: 2021, annualDeductibleAmount: 0, annualCoInsuranceAmount: 350, paidDeductibleAmount: 0, paidCoInsuranceAmount: 0, paidCoInsurancePercent: 0, toBePaidCoInsuranceAmount: 350, paidDeductiblePercent: 0, toBePaidDeductibleAmount: 0, }, { year: 2020, annualDeductibleAmount: 0, annualCoInsuranceAmount: 350, paidDeductibleAmount: 0, paidCoInsuranceAmount: 63.18, paidCoInsurancePercent: 18, toBePaidCoInsuranceAmount: 286.82, paidDeductiblePercent: 0, toBePaidDeductibleAmount: 0, }, ], }, ]; |