@silexpert/core 1.0.158 → 1.0.161

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/es/types/Enum/GeneralThirdParty.d.ts.map +1 -1
  2. package/es/types/Enum/GeneralThirdParty.js +611 -234
  3. package/es/types/Enum/GeneralThirdParty.js.map +1 -1
  4. package/es/types/Enum/Holidays.d.ts +2 -0
  5. package/es/types/Enum/Holidays.d.ts.map +1 -0
  6. package/es/types/Enum/Holidays.js +2 -0
  7. package/es/types/Enum/Holidays.js.map +1 -0
  8. package/es/types/Enum/PrestationType.js +1 -1
  9. package/es/types/Enum/PrestationType.js.map +1 -1
  10. package/es/types/Interface/models/IPrestation.d.ts +1 -1
  11. package/es/types/Interface/models/IPrestation.d.ts.map +1 -1
  12. package/es/types/Interface/models/IPrestation.js.map +1 -1
  13. package/es/types/index.d.ts +1 -0
  14. package/es/types/index.d.ts.map +1 -1
  15. package/es/types/index.js +1 -0
  16. package/es/types/index.js.map +1 -1
  17. package/es/utils/prestation.js +9 -10
  18. package/es/utils/prestation.js.map +1 -1
  19. package/js/types/Enum/GeneralThirdParty.js +1567 -436
  20. package/js/types/Enum/GeneralThirdParty.js.map +1 -1
  21. package/js/types/Enum/Holidays.js +7 -0
  22. package/js/types/Enum/Holidays.js.map +1 -0
  23. package/js/types/Enum/PrestationType.js +1 -1
  24. package/js/types/Enum/PrestationType.js.map +1 -1
  25. package/js/types/Interface/models/IPrestation.js.map +1 -1
  26. package/js/types/index.js +10 -0
  27. package/js/types/index.js.map +1 -1
  28. package/js/utils/prestation.js +8 -8
  29. package/js/utils/prestation.js.map +1 -1
  30. package/package.json +1 -1
  31. package/ts/types/Enum/GeneralThirdParty.ts +611 -234
  32. package/ts/types/Enum/Holidays.ts +1 -0
  33. package/ts/types/Enum/PrestationType.ts +1 -1
  34. package/ts/types/Interface/models/IPrestation.ts +1 -1
  35. package/ts/types/index.ts +1 -0
  36. package/ts/utils/prestation.ts +9 -9
@@ -19,19 +19,19 @@ const isExpress = idPrestationList => {
19
19
  return !!prestaList.isBack;
20
20
  };
21
21
  const calculateScoringOfPrestation = (idPrestationType, prestations) => {
22
+ const prestationsSignedPaid = prestations.filter(prestation => prestation.paid && prestation.signed && prestation.terminationList === null);
22
23
  // Get the list of prestations that are half price
23
24
  const prestationHalfPriceList = Object.values(_PrestationType.PrestationDetail).filter(p => p.isComptable && !p.isCatalog);
24
25
  const prestationHalfPriceIds = prestationHalfPriceList.map(t => t.id);
25
- // Get the number of points for the prestation
26
+ // Get the number of points for the new prestation
26
27
  const prestaDetails = Object.values(_PrestationType.PrestationDetail).find(prestaDetail => prestaDetail.id === idPrestationType);
27
28
  const numberPoint = (prestaDetails === null || prestaDetails === void 0 ? void 0 : prestaDetails.point) || 0;
28
- // Find the prestation with the same idPrestationList and they need to be paid and signed
29
- const samePrestation = prestations.filter(prestation => prestation.idPrestationList === idPrestationType && prestation.paid === true && prestation.signed === true && prestation.terminationsList === null);
30
- // If there is no prestation with the same idPrestationList, return 100% of points
31
- if (samePrestation.length === 0) return numberPoint;
32
- // If the prestation is in the list of half price prestation, return 50% of points
33
- if (prestationHalfPriceIds.includes(idPrestationType)) return numberPoint * 0.5;
34
- return 0;
29
+ // Get list of prestations that are already done and check if one of them is in the list of prestations that are half price
30
+ const prestationsExistIds = prestationsSignedPaid.map(prestation => prestation.idPrestationList);
31
+ const prestationHalfPriceAlreadyDoneIds = prestationsExistIds.filter(id => prestationHalfPriceIds.includes(id));
32
+ // If one of the prestations already done is in the list of prestations that are half price and if the idPrestationType is in prestationHalfPriceIds, return 50% of points
33
+ if (prestationHalfPriceAlreadyDoneIds.length && prestationHalfPriceIds.includes(idPrestationType)) return Math.floor(numberPoint * 0.5);
34
+ return numberPoint;
35
35
  };
36
36
  exports.isOtherAccountingMissions = isOtherAccountingMissions;
37
37
  exports.isOtherJuridicalMissions = isOtherJuridicalMissions;
@@ -1 +1 @@
1
- {"version":3,"file":"prestation.js","names":["_PrestationType","require","isOtherAccountingMissions","idPrestationList","PrestationType","PREVISIONNEL","BILAN_INTERMEDIAIRE","AVANCE_OU_ABANDON_COMPTE_COURANT_ASSOCIE","AUTRE_MISSION_COMPTABLE","TVS","ETUDE_FISCALE","BILAN_PREVISIONNEL","includes","isOtherJuridicalMissions","isJuridique","isCatalog","GESTION_JURIDIQUE","isOtherSocialMission","AUTRE_MISSION_SOCIALE_HORS_PAIE","isAdditionalPresta","hidden","isOnlyPrevi","filter","idPL","PV_AG","length","isOnlySocial","FRUCTUPAIE","SOCIAL","isOnlyJuridic","isCreation","CREATION_SOCIETE","isExpress","prestationDetailValues","Object","values","PrestationDetail","prestaList","find","pr","id","isBack","calculateScoringOfPrestation","idPrestationType","prestations","prestationHalfPriceList","p","isComptable","prestationHalfPriceIds","map","t","prestaDetails","prestaDetail","numberPoint","point","samePrestation","prestation","paid","signed","terminationsList","exports"],"sources":["../../ts/utils/prestation.ts"],"sourcesContent":["import { IPrestation } from '../types';\nimport { PrestationDetail, PrestationType } from '../types/Enum/PrestationType';\n\nconst isOtherAccountingMissions = (idPrestationList: number): boolean => [\n PrestationType.PREVISIONNEL,\n PrestationType.BILAN_INTERMEDIAIRE,\n PrestationType.AVANCE_OU_ABANDON_COMPTE_COURANT_ASSOCIE,\n PrestationType.AUTRE_MISSION_COMPTABLE,\n PrestationType.TVS,\n PrestationType.ETUDE_FISCALE,\n PrestationType.BILAN_PREVISIONNEL].includes(idPrestationList);\n\nconst isOtherJuridicalMissions = (isJuridique:boolean, isCatalog:boolean, idPrestationList: number): boolean => idPrestationList !== PrestationType.GESTION_JURIDIQUE && isCatalog && isJuridique;\n\nconst isOtherSocialMission = (idPrestationList: number): boolean => idPrestationList === PrestationType.AUTRE_MISSION_SOCIALE_HORS_PAIE;\n\nconst isAdditionalPresta = (hidden:boolean, isCatalog:boolean): boolean => !hidden && isCatalog;\n\nconst isOnlyPrevi = (idPrestationList: number[]):boolean => !idPrestationList.filter((idPL:number) => ![PrestationType.PREVISIONNEL, PrestationType.BILAN_PREVISIONNEL, PrestationType.PV_AG].includes(idPL)).length;\n\nconst isOnlySocial = (idPrestationList: number[]):boolean => !idPrestationList.filter((idPL:number) => ![PrestationType.FRUCTUPAIE, PrestationType.SOCIAL].includes(idPL)).length;\n\nconst isOnlyJuridic = (idPrestationList: number[]):boolean => !idPrestationList.filter((idPL:number) => ![PrestationType.GESTION_JURIDIQUE].includes(idPL)).length;\n\nconst isCreation = (idPrestationList: number[]):boolean => idPrestationList.includes(PrestationType.CREATION_SOCIETE);\n\nconst isExpress = (idPrestationList: number):boolean => {\n const prestationDetailValues = Object.values(PrestationDetail) as any;\n const prestaList = prestationDetailValues.find((pr:any) => pr.id === idPrestationList);\n return !!prestaList.isBack;\n};\n\nconst calculateScoringOfPrestation = (idPrestationType: PrestationType, prestations: IPrestation[]): number => {\n // Get the list of prestations that are half price\n const prestationHalfPriceList = Object.values(PrestationDetail).filter((p) => p.isComptable && !p.isCatalog);\n const prestationHalfPriceIds = prestationHalfPriceList.map((t) => t.id);\n\n // Get the number of points for the prestation\n const prestaDetails = Object.values(PrestationDetail).find((prestaDetail) => prestaDetail.id === idPrestationType);\n const numberPoint = prestaDetails?.point || 0;\n\n // Find the prestation with the same idPrestationList and they need to be paid and signed\n const samePrestation = prestations.filter((prestation) => (prestation.idPrestationList === idPrestationType) && (prestation.paid === true && prestation.signed === true && prestation.terminationsList === null));\n\n // If there is no prestation with the same idPrestationList, return 100% of points\n if (samePrestation.length === 0) return numberPoint;\n\n // If the prestation is in the list of half price prestation, return 50% of points\n if (prestationHalfPriceIds.includes(idPrestationType)) return numberPoint * 0.5;\n\n return 0;\n};\n\nexport {\n isOtherAccountingMissions, isOtherJuridicalMissions, isAdditionalPresta, isOtherSocialMission, isOnlyPrevi, isOnlySocial, isOnlyJuridic, isCreation, isExpress, calculateScoringOfPrestation,\n};"],"mappings":"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"}
1
+ {"version":3,"file":"prestation.js","names":["_PrestationType","require","isOtherAccountingMissions","idPrestationList","PrestationType","PREVISIONNEL","BILAN_INTERMEDIAIRE","AVANCE_OU_ABANDON_COMPTE_COURANT_ASSOCIE","AUTRE_MISSION_COMPTABLE","TVS","ETUDE_FISCALE","BILAN_PREVISIONNEL","includes","isOtherJuridicalMissions","isJuridique","isCatalog","GESTION_JURIDIQUE","isOtherSocialMission","AUTRE_MISSION_SOCIALE_HORS_PAIE","isAdditionalPresta","hidden","isOnlyPrevi","filter","idPL","PV_AG","length","isOnlySocial","FRUCTUPAIE","SOCIAL","isOnlyJuridic","isCreation","CREATION_SOCIETE","isExpress","prestationDetailValues","Object","values","PrestationDetail","prestaList","find","pr","id","isBack","calculateScoringOfPrestation","idPrestationType","prestations","prestationsSignedPaid","prestation","paid","signed","terminationList","prestationHalfPriceList","p","isComptable","prestationHalfPriceIds","map","t","prestaDetails","prestaDetail","numberPoint","point","prestationsExistIds","prestationHalfPriceAlreadyDoneIds","Math","floor","exports"],"sources":["../../ts/utils/prestation.ts"],"sourcesContent":["import { IPrestation } from '../types';\nimport { PrestationDetail, PrestationType } from '../types/Enum/PrestationType';\n\nconst isOtherAccountingMissions = (idPrestationList: number): boolean => [\n PrestationType.PREVISIONNEL,\n PrestationType.BILAN_INTERMEDIAIRE,\n PrestationType.AVANCE_OU_ABANDON_COMPTE_COURANT_ASSOCIE,\n PrestationType.AUTRE_MISSION_COMPTABLE,\n PrestationType.TVS,\n PrestationType.ETUDE_FISCALE,\n PrestationType.BILAN_PREVISIONNEL].includes(idPrestationList);\n\nconst isOtherJuridicalMissions = (isJuridique:boolean, isCatalog:boolean, idPrestationList: number): boolean => idPrestationList !== PrestationType.GESTION_JURIDIQUE && isCatalog && isJuridique;\n\nconst isOtherSocialMission = (idPrestationList: number): boolean => idPrestationList === PrestationType.AUTRE_MISSION_SOCIALE_HORS_PAIE;\n\nconst isAdditionalPresta = (hidden:boolean, isCatalog:boolean): boolean => !hidden && isCatalog;\n\nconst isOnlyPrevi = (idPrestationList: number[]):boolean => !idPrestationList.filter((idPL:number) => ![PrestationType.PREVISIONNEL, PrestationType.BILAN_PREVISIONNEL, PrestationType.PV_AG].includes(idPL)).length;\n\nconst isOnlySocial = (idPrestationList: number[]):boolean => !idPrestationList.filter((idPL:number) => ![PrestationType.FRUCTUPAIE, PrestationType.SOCIAL].includes(idPL)).length;\n\nconst isOnlyJuridic = (idPrestationList: number[]):boolean => !idPrestationList.filter((idPL:number) => ![PrestationType.GESTION_JURIDIQUE].includes(idPL)).length;\n\nconst isCreation = (idPrestationList: number[]):boolean => idPrestationList.includes(PrestationType.CREATION_SOCIETE);\n\nconst isExpress = (idPrestationList: number):boolean => {\n const prestationDetailValues = Object.values(PrestationDetail) as any;\n const prestaList = prestationDetailValues.find((pr:any) => pr.id === idPrestationList);\n return !!prestaList.isBack;\n};\n\nconst calculateScoringOfPrestation = (idPrestationType: PrestationType, prestations: IPrestation[]): number => {\n const prestationsSignedPaid = prestations.filter((prestation) => prestation.paid && prestation.signed && prestation.terminationList === null);\n\n // Get the list of prestations that are half price\n const prestationHalfPriceList = Object.values(PrestationDetail).filter((p) => p.isComptable && !p.isCatalog);\n const prestationHalfPriceIds = prestationHalfPriceList.map((t) => t.id);\n\n // Get the number of points for the new prestation\n const prestaDetails = Object.values(PrestationDetail).find((prestaDetail) => prestaDetail.id === idPrestationType);\n const numberPoint = prestaDetails?.point || 0;\n\n // Get list of prestations that are already done and check if one of them is in the list of prestations that are half price\n const prestationsExistIds = prestationsSignedPaid.map((prestation) => prestation.idPrestationList);\n const prestationHalfPriceAlreadyDoneIds = prestationsExistIds.filter((id) => prestationHalfPriceIds.includes(id));\n\n // If one of the prestations already done is in the list of prestations that are half price and if the idPrestationType is in prestationHalfPriceIds, return 50% of points\n if (prestationHalfPriceAlreadyDoneIds.length && prestationHalfPriceIds.includes(idPrestationType)) return Math.floor(numberPoint * 0.5);\n\n return numberPoint;\n};\n\nexport {\n isOtherAccountingMissions, isOtherJuridicalMissions, isAdditionalPresta, isOtherSocialMission, isOnlyPrevi, isOnlySocial, isOnlyJuridic, isCreation, isExpress, calculateScoringOfPrestation,\n};"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@silexpert/core",
3
- "version": "1.0.158",
3
+ "version": "1.0.161",
4
4
  "description": "Silex Core perform HTTP Request and object binding. Silex core helps developers to retrieve and return formatted object",
5
5
  "homepage": "https://gitlab.compta-clementine.fr/dev/silex-api",
6
6
  "main": "js/index.js",