Clean comment

pull/2362/head
Jérémy Rialland 2022-11-03 12:22:08 +01:00 committed by Jérémy Rialland
parent 383d9a6085
commit 18359b5a25
6 changed files with 1 additions and 13 deletions

View File

@ -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))
}

View File

@ -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': [

View File

@ -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',
],

View File

@ -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: {

View File

@ -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',

View File

@ -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[]