Clean comment
parent
383d9a6085
commit
18359b5a25
|
@ -49,7 +49,6 @@ export function getNextQuestions(
|
|||
const score = (question: string) => {
|
||||
const indexList =
|
||||
whitelist.findIndex((name) => question.startsWith(name)) + 1
|
||||
// notPriority ne fonctionne pas comme prévue non ? car il est identique à whitelist
|
||||
const indexNotPriority =
|
||||
notPriority.findIndex((name) => question.startsWith(name)) + 1
|
||||
const differenceCoeff = questionDifference(
|
||||
|
@ -60,6 +59,7 @@ export function getNextQuestions(
|
|||
return indexList + indexNotPriority + differenceCoeff
|
||||
}
|
||||
|
||||
// The higher the score, the less important the question
|
||||
return nextSteps.sort((a, b) => score(a) - score(b))
|
||||
}
|
||||
|
||||
|
|
|
@ -29,7 +29,6 @@ export const configSASU: SimulationConfig = {
|
|||
'liste noire': [
|
||||
'entreprise . charges',
|
||||
'entreprise . imposition',
|
||||
// 'entreprise . rémunération du dirigeant', n'existe plus
|
||||
'entreprise . association non lucrative',
|
||||
],
|
||||
'non prioritaires': [
|
||||
|
|
|
@ -52,7 +52,6 @@ export const configIndépendant: SimulationConfig = {
|
|||
'dirigeant . indépendant . PL . PAMC . IJSS',
|
||||
'dirigeant . indépendant . PL . CNAVPL . exonération incapacité',
|
||||
'dirigeant . indépendant . cotisations et contributions . exonérations . pension invalidité',
|
||||
// 'entreprise . ZFU', n'existe plus
|
||||
'entreprise . salariés . effectif',
|
||||
'entreprise . activité . débit de tabac',
|
||||
],
|
||||
|
|
|
@ -1,18 +1,11 @@
|
|||
import { SimulationConfig } from './types'
|
||||
|
||||
export const configRémunérationDirigeant: SimulationConfig = {
|
||||
// titre:
|
||||
// "Calcul du revenu du travailleur indépendant ou dirigeant d'entreprise après paiement des cotisations et de l'impôt sur le revenu.\n",
|
||||
'objectifs exclusifs': [],
|
||||
objectifs: [
|
||||
'dirigeant . rémunération . net',
|
||||
'entreprise . charges',
|
||||
'dirigeant . auto-entrepreneur . revenu net',
|
||||
|
||||
// // pas utile ?
|
||||
// 'salarié . rémunération . net . à payer avant impôt',
|
||||
// 'protection sociale . retraite',
|
||||
// 'protection sociale . retraite . base . trimestres',
|
||||
'protection sociale . santé . indemnités journalières',
|
||||
],
|
||||
questions: {
|
||||
|
|
|
@ -3,7 +3,6 @@ import { SimulationConfig } from './types'
|
|||
export const configSalarié: SimulationConfig = {
|
||||
'objectifs exclusifs': [
|
||||
'salarié . coût total employeur',
|
||||
// 'salarié . contrat . salaire brut . équivalent temps plein', pas utile ?
|
||||
'salarié . contrat . salaire brut',
|
||||
'salarié . rémunération . net . à payer avant impôt',
|
||||
'salarié . rémunération . net . payé après impôt',
|
||||
|
|
|
@ -15,7 +15,6 @@ export type SimulationConfig = Partial<{
|
|||
|
||||
/**
|
||||
* Objectifs de la simulation
|
||||
* TODO
|
||||
*/
|
||||
objectifs?: DottedName[]
|
||||
|
||||
|
@ -27,7 +26,6 @@ export type SimulationConfig = Partial<{
|
|||
questions: {
|
||||
/**
|
||||
* Question non prioritaires
|
||||
* TODO
|
||||
*/
|
||||
'non prioritaires'?: DottedName[]
|
||||
|
||||
|
|
Loading…
Reference in New Issue