2018-07-09 16:20:13 +00:00
|
|
|
let displayedTargetNames = [
|
2018-07-09 08:17:17 +00:00
|
|
|
'contrat salarié . salaire . total',
|
|
|
|
'contrat salarié . salaire . brut de base',
|
2018-07-09 16:31:35 +00:00
|
|
|
'contrat salarié . salaire . net après impôt'
|
2018-07-09 08:17:17 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
export let popularTargetNames = [
|
|
|
|
...displayedTargetNames,
|
2018-07-09 16:20:13 +00:00
|
|
|
'contrat salarié . salaire . net à payer' // Not computed by the above targets, needed for the payslip view
|
2018-07-09 08:17:17 +00:00
|
|
|
]
|
|
|
|
export default {
|
|
|
|
popularTargetNames,
|
|
|
|
displayedTargetNames
|
|
|
|
}
|