@silexpert/core 2.0.21 → 2.0.22
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.
- package/dist/types/Enum/AIPrompt.d.ts +1 -0
- package/dist/types/Enum/AIPrompt.d.ts.map +1 -1
- package/dist/types/Enum/AIPrompt.js +10 -0
- package/dist/types/Enum/AIPrompt.js.map +1 -1
- package/dist/types/Enum/CommercialManagement.d.ts +4 -0
- package/dist/types/Enum/CommercialManagement.d.ts.map +1 -1
- package/dist/types/Enum/CommercialManagement.js +23 -0
- package/dist/types/Enum/CommercialManagement.js.map +1 -1
- package/dist/types/Enum/Ged.d.ts.map +1 -1
- package/dist/types/Enum/Ged.js +18 -18
- package/dist/types/Enum/Ged.js.map +1 -1
- package/dist/types/Interface/models/IRefund.d.ts +4 -0
- package/dist/types/Interface/models/IRefund.d.ts.map +1 -1
- package/dist/types/Interface/models/IRefund.js +4 -0
- package/dist/types/Interface/models/IRefund.js.map +1 -1
- package/package.json +1 -1
- package/ts/types/Enum/AIPrompt.ts +11 -0
- package/ts/types/Enum/CommercialManagement.ts +27 -0
- package/ts/types/Enum/Ged.ts +226 -226
- package/ts/types/Interface/models/IRefund.ts +4 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare enum AIPromptKey {
|
|
2
2
|
BANK_STATEMENT = "bank_statement",
|
|
3
|
+
BANK_STATEMENT_WITH_SCHEMA = "bank_statement_with_schema",
|
|
3
4
|
BANK_STATEMENT_PERIOD = "bank_statement_period",
|
|
4
5
|
BANK_STATEMENT_FILE_NAME = "bank_statement_file_name",
|
|
5
6
|
BANK_STATEMENT_INFOS = "bank_statement_infos",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AIPrompt.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/AIPrompt.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW;IACrB,cAAc,mBAAmB;IACjC,qBAAqB,0BAA0B;IAC/C,wBAAwB,6BAA6B;IACrD,oBAAoB,yBAAyB;IAC7C,gBAAgB,qBAAqB;CACtC;AAED,UAAU,YAAY;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,GAAG,CAAC,CAAC,GAAG,GAAG,EAAE,GAAG,EAAE,KAAK,MAAM,CAAC,CAAC;CACpD;AAED,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,YAAY,
|
|
1
|
+
{"version":3,"file":"AIPrompt.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/AIPrompt.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW;IACrB,cAAc,mBAAmB;IACjC,0BAA0B,+BAA+B;IACzD,qBAAqB,0BAA0B;IAC/C,wBAAwB,6BAA6B;IACrD,oBAAoB,yBAAyB;IAC7C,gBAAgB,qBAAqB;CACtC;AAED,UAAU,YAAY;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,GAAG,CAAC,CAAC,GAAG,GAAG,EAAE,GAAG,EAAE,KAAK,MAAM,CAAC,CAAC;CACpD;AAED,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE,YAAY,CAgF7C,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export var AIPromptKey;
|
|
2
2
|
(function (AIPromptKey) {
|
|
3
3
|
AIPromptKey["BANK_STATEMENT"] = "bank_statement";
|
|
4
|
+
AIPromptKey["BANK_STATEMENT_WITH_SCHEMA"] = "bank_statement_with_schema";
|
|
4
5
|
AIPromptKey["BANK_STATEMENT_PERIOD"] = "bank_statement_period";
|
|
5
6
|
AIPromptKey["BANK_STATEMENT_FILE_NAME"] = "bank_statement_file_name";
|
|
6
7
|
AIPromptKey["BANK_STATEMENT_INFOS"] = "bank_statement_infos";
|
|
@@ -26,6 +27,15 @@ export const AIPrompt = {
|
|
|
26
27
|
Assurez-vous que le JSON soit strictement conforme à ce format, sans aucun commentaire ou texte supplémentaire.
|
|
27
28
|
`,
|
|
28
29
|
},
|
|
30
|
+
[AIPromptKey.BANK_STATEMENT_WITH_SCHEMA]: {
|
|
31
|
+
userPrompt: 'Voici des lignes issues d’un relevé de compte bancaire (cela peut être un relevé français). Pouvez-vous extraire toutes les transactions présentes dans ce document ?',
|
|
32
|
+
systemPrompt: `
|
|
33
|
+
Analysez ce relevé de compte bancaire et extrayez toutes les transactions sous forme d'un objet JSON structuré.
|
|
34
|
+
Le relevé peut contenir des informations telles que la date de la transaction, le libellé (il faut conserver exactement le même texte que dans le relevé, sans modification, traduction ou altération), le montant débité et le montant crédité (ou alors un montant en positif pour le crédit et un montant en négatif pour le débit).
|
|
35
|
+
Garder exactement le même ordre de transaction que dans le relevé.
|
|
36
|
+
Assurez-vous que le JSON soit strictement conforme au format attendu, sans aucun commentaire ou texte supplémentaire.
|
|
37
|
+
`,
|
|
38
|
+
},
|
|
29
39
|
[AIPromptKey.BANK_STATEMENT_INFOS]: {
|
|
30
40
|
userPrompt: 'Voici des lignes issues d’un relevé de compte bancaire (cela peut être un relevé français). Pouvez-vous extraire les données concernant le solde précédent, la date de début et la date de fin du compte bancaire?',
|
|
31
41
|
systemPrompt: (bankAccountName) => `
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AIPrompt.js","sourceRoot":"","sources":["../../../ts/types/Enum/AIPrompt.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,
|
|
1
|
+
{"version":3,"file":"AIPrompt.js","sourceRoot":"","sources":["../../../ts/types/Enum/AIPrompt.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,WAOX;AAPD,WAAY,WAAW;IACrB,gDAAiC,CAAA;IACjC,wEAAyD,CAAA;IACzD,8DAA+C,CAAA;IAC/C,oEAAqD,CAAA;IACrD,4DAA6C,CAAA;IAC7C,oDAAqC,CAAA;AACvC,CAAC,EAPW,WAAW,KAAX,WAAW,QAOtB;AAOD,MAAM,CAAC,MAAM,QAAQ,GAAsC;IACzD,CAAC,WAAW,CAAC,cAAc,CAAC,EAAE;QAC5B,UAAU,EACR,uKAAuK;QACzK,YAAY,EAAE;;;;;;;;;;;;;;;KAeb;KACF;IACD,CAAC,WAAW,CAAC,0BAA0B,CAAC,EAAE;QACxC,UAAU,EACR,uKAAuK;QACzK,YAAY,EAAE;;;;;KAKb;KACF;IACD,CAAC,WAAW,CAAC,oBAAoB,CAAC,EAAE;QAClC,UAAU,EACR,oNAAoN;QACtN,YAAY,EAAE,CAAC,eAAe,EAAE,EAAE,CAChC;;;;;;;;;;;;;;;;;;;6EAmBuE,eAAe;+KACmF;KAC5K;IACD,CAAC,WAAW,CAAC,qBAAqB,CAAC,EAAE;QACnC,UAAU,EAAE,EAAE;QACd,YAAY,EACV,8TAA8T;KACjU;IACD,CAAC,WAAW,CAAC,wBAAwB,CAAC,EAAE;QACtC,UAAU,EAAE,EAAE;QACd,YAAY,EACV,0dAA0d;KAC7d;IACD,CAAC,WAAW,CAAC,gBAAgB,CAAC,EAAE;QAC9B,UAAU,EAAE,EAAE,EAAE,mBAAmB;QACnC,YAAY,EAAE;;;;;;;;;KASb;KACF;CACO,CAAC","sourcesContent":["export enum AIPromptKey {\n BANK_STATEMENT = 'bank_statement',\n BANK_STATEMENT_WITH_SCHEMA = 'bank_statement_with_schema',\n BANK_STATEMENT_PERIOD = 'bank_statement_period',\n BANK_STATEMENT_FILE_NAME = 'bank_statement_file_name',\n BANK_STATEMENT_INFOS = 'bank_statement_infos',\n ASK_COLLABORATOR = 'ask_collaborator',\n}\n\ninterface AIPromptInfo {\n userPrompt: string;\n systemPrompt: string | ((...arg: any[]) => string);\n}\n\nexport const AIPrompt: Record<AIPromptKey, AIPromptInfo> = {\n [AIPromptKey.BANK_STATEMENT]: {\n userPrompt:\n 'Voici des lignes issues d’un relevé de compte bancaire (cela peut être un relevé français). Pouvez-vous extraire toutes les transactions présentes dans ce document ?',\n systemPrompt: `\n Analysez ce relevé de compte bancaire et extrayez toutes les transactions sous forme d'un objet JSON structuré.\n Le relevé peut contenir des informations telles que la date de la transaction, le libellé, le montant débité et le montant crédité (ou alors un montant en positif pour le crédit et un montant en négatif pour le débit).\n Garder exactement le même ordre de transaction que dans le relevé.\n Le format attendu est le suivant:\n transactions: [\n {\n \"dateValue\": string (format : YYYY-MM-DD correspondant à la date de la transaction),\n \"label\": string | null (correspond à la description de la transaction, à conserver intacte sans modification, traduction ou altération),\n \"debit\": number,\n \"credit\": number\n },\n ...\n ]\n Assurez-vous que le JSON soit strictement conforme à ce format, sans aucun commentaire ou texte supplémentaire.\n `,\n },\n [AIPromptKey.BANK_STATEMENT_WITH_SCHEMA]: {\n userPrompt:\n 'Voici des lignes issues d’un relevé de compte bancaire (cela peut être un relevé français). Pouvez-vous extraire toutes les transactions présentes dans ce document ?',\n systemPrompt: `\n Analysez ce relevé de compte bancaire et extrayez toutes les transactions sous forme d'un objet JSON structuré.\n Le relevé peut contenir des informations telles que la date de la transaction, le libellé (il faut conserver exactement le même texte que dans le relevé, sans modification, traduction ou altération), le montant débité et le montant crédité (ou alors un montant en positif pour le crédit et un montant en négatif pour le débit).\n Garder exactement le même ordre de transaction que dans le relevé.\n Assurez-vous que le JSON soit strictement conforme au format attendu, sans aucun commentaire ou texte supplémentaire.\n `,\n },\n [AIPromptKey.BANK_STATEMENT_INFOS]: {\n userPrompt:\n 'Voici des lignes issues d’un relevé de compte bancaire (cela peut être un relevé français). Pouvez-vous extraire les données concernant le solde précédent, la date de début et la date de fin du compte bancaire?',\n systemPrompt: (bankAccountName) =>\n `\n Analysez ce relevé de compte bancaire et extrayez toutes les infos concernant le montant des solde précédents du compte bancaire, les dates de début et de fin du relevé sous forme d'un objet JSON structuré.\n Le relevé peut contenir des informations telles que la date du solde précédent et le montant du solde qui doit être un nombre. La date de début et de fin doivent être retourné en string. Si aucune date de début ou de fin trouvé, renvoyé null\n\n Garder exactement le même ordre des différentes dates que dans le relevé.\n Si plusieurs solde sont trouvés, les retourner tous.\n De plus, il faut également retourné un nom de fichier formatté.\n Le format attendu est le suivant :\n soldes: [\n {\n \"dateValue\": string (format : YYYY-MM-DD correspondant à la date du ou des soldes précédents),\n \"amount\": number,\n },\n ...\n ],\n period: {\n \"startDate\": string (format : YYYY-MM-DD correspondant a la date de début du relevé),\n \"endDate\": string (format : YYYY-MM-DD correspondant a la date de fin du relevé),\n },\n formattedFileName: string (nom du fichier au format 'releve_bancaire_${bankAccountName}_du_DD-MM-YYYY_au_DD-MM-YYYY.pdf (l'extension pdf ici est un exemple, il faut reprender la même extension que celle du fichier), si aucune date de début ou de fin, remplacer par le début du mois courant et la fin du mois courant)\n Assurez-vous que le JSON soit strictement conforme à ce format, sans aucun commentaire ou texte supplémentaire. Si Aucune date n'est trouvée, retourner un tableau vide,`,\n },\n [AIPromptKey.BANK_STATEMENT_PERIOD]: {\n userPrompt: '',\n systemPrompt:\n 'Analysez le titre de ce fichier et retournez la période du relevé de compte bancaire au format { startDate: \"YYYY-MM-DD\", endDate: \"YYYY-MM-DD\" } si il y a deux dates qui ressort, si une seule, retourner au format { startDate: \"YYYY-MM-DD\" }. Si le titre ne contient pas d’information sur la période, retournez null.',\n },\n [AIPromptKey.BANK_STATEMENT_FILE_NAME]: {\n userPrompt: '',\n systemPrompt:\n 'Analysez l\\'objet envoyé sous la forme { startDate: string, endDate: string } et retournez le nom du fichier au format { fileName: \"releve_bancaire_du_DD-MM-YYYY_au_DD-MM-YYYY.pdf\" }. Si le l\\'objet ne contient que startDate, retournez le nom du fichier au format { fileName: \"releve_bancaire_du_DD-MM-YYYY.pdf\" }. Si le l\\'objet ne contient pas de date, retournez le nom du fichier au format { fileName: \"releve_bancaire_du_DD-MM-YYYY.pdf\" } avec la date d\\'aujourd\\'hui.',\n },\n [AIPromptKey.ASK_COLLABORATOR]: {\n userPrompt: '', // this is not used\n systemPrompt: `\n Vous êtes un spécialiste reconnu en comptabilité française, droit fiscal, droit des entreprises et droit social.\n Vous êtes parfaitement à jour des dernières lois, réglementations et jurisprudences en vigueur.\n Votre mission est de fournir des réponses précises et professionnelles basées sur le contexte fourni,\n dans un français irréprochable et un style concis.\n Si le contexte ne contient pas les informations pertinentes pour répondre à la question, veuillez l'indiquer clairement plutôt que d'inventer des informations.\n Si la question est en dehors de votre domaine d'expertise, indiquez-le clairement et indiquez que la catégorie et sous-catégorie sont \"hors sujet\".\n Utilisez toujours la recherche web pour trouver des informations pertinentes et à jour.\n Citez vos sources de manière précise et professionnelle, en fournissant uniquement des liens URL séparés par des points-virgules.\n `,\n },\n} as const;\n"]}
|
|
@@ -83,4 +83,8 @@ export declare const emailTypeList: Array<{
|
|
|
83
83
|
id: EmailType;
|
|
84
84
|
}>;
|
|
85
85
|
export declare const DefaultEmailTemplateList: Array<Omit<ISaleEmail, 'idSociety'>>;
|
|
86
|
+
export declare const CommercialDiscountsList: string[];
|
|
87
|
+
export declare const CommercialPenaltiesList: string[];
|
|
88
|
+
export declare const CommercialVatMentionList: string[];
|
|
89
|
+
export declare const CommercialRecoveryCostList: string[];
|
|
86
90
|
//# sourceMappingURL=CommercialManagement.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CommercialManagement.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/CommercialManagement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,+CAA+C,CAAC;AAC9E,OAAO,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AAE/D,oBAAY,OAAO;IACjB,YAAY,IAAI;IAChB,MAAM,IAAI;IACV,OAAO,IAAI;IACX,OAAO,IAAI;IACX,KAAK,IAAI;CACV;AAED,eAAO,MAAM,QAAQ;;;;GAMpB,CAAC;AAEF,oBAAY,aAAa;IACvB,IAAI,SAAS;IACb,KAAK,UAAU;CAChB;AAED,oBAAY,aAAa;IACvB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,IAAI,SAAS;CACd;AAED,oBAAY,cAAc;IACxB,QAAQ,aAAa;IACrB,OAAO,qBAAqB;IAC5B,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,OAAO,YAAY;CACpB;AAED,oBAAY,YAAY;IACtB,OAAO,IAAI;IACX,MAAM,IAAI;CACX;AAED,oBAAY,mBAAmB;IAC7B,MAAM,IAAI;IACV,WAAW,IAAI;IACf,GAAG,IAAI;IACP,SAAS,IAAI;CACd;AAED,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,mBAAmB,CAAA;CAAE,CAiBjF,CAAC;AAEF,oBAAY,oBAAoB;IAC9B,OAAO,IAAI;IACX,gBAAgB,IAAI;IACpB,gBAAgB,IAAI;IACpB,gBAAgB,IAAI;CACrB;AAED,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,oBAAoB,CAAA;CAAE,CAarF,CAAC;AAEF,oBAAY,eAAe;IACzB,EAAE,OAAO;IACT,EAAE,OAAO;CACV;AAED,oBAAY,qBAAqB;IAE/B,WAAW,eAAe;IAC1B,kBAAkB,uBAAuB;IACzC,8BAA8B,yBAAyB;IACvD,cAAc,mBAAmB;IACjC,kBAAkB,mBAAmB;CACtC;AAED,eAAO,MAAM,yBAAyB,UAUrC,CAAC;AACF,eAAO,MAAM,mCAAmC,EAAE,KAAK,CAAC;IACtD,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,KAAK,CAAC,MAAM,aAAa,CAAC,CAAC;IACjC,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAsBA,CAAC;AAEF,oBAAY,SAAS;IACnB,QAAQ,IAAI;IACZ,OAAO,IAAI;IACX,UAAU,IAAI;IACd,iBAAiB,IAAI;IACrB,KAAK,IAAI;CACV;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,YAAY,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,SAAS,CAAA;CAAE,CA0BvF,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,KAAK,CAAC,IAAI,CAAC,UAAU,EAAE,WAAW,CAAC,CA8CzE,CAAC"}
|
|
1
|
+
{"version":3,"file":"CommercialManagement.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/CommercialManagement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,+CAA+C,CAAC;AAC9E,OAAO,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AAE/D,oBAAY,OAAO;IACjB,YAAY,IAAI;IAChB,MAAM,IAAI;IACV,OAAO,IAAI;IACX,OAAO,IAAI;IACX,KAAK,IAAI;CACV;AAED,eAAO,MAAM,QAAQ;;;;GAMpB,CAAC;AAEF,oBAAY,aAAa;IACvB,IAAI,SAAS;IACb,KAAK,UAAU;CAChB;AAED,oBAAY,aAAa;IACvB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,IAAI,SAAS;CACd;AAED,oBAAY,cAAc;IACxB,QAAQ,aAAa;IACrB,OAAO,qBAAqB;IAC5B,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,OAAO,YAAY;CACpB;AAED,oBAAY,YAAY;IACtB,OAAO,IAAI;IACX,MAAM,IAAI;CACX;AAED,oBAAY,mBAAmB;IAC7B,MAAM,IAAI;IACV,WAAW,IAAI;IACf,GAAG,IAAI;IACP,SAAS,IAAI;CACd;AAED,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,mBAAmB,CAAA;CAAE,CAiBjF,CAAC;AAEF,oBAAY,oBAAoB;IAC9B,OAAO,IAAI;IACX,gBAAgB,IAAI;IACpB,gBAAgB,IAAI;IACpB,gBAAgB,IAAI;CACrB;AAED,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,oBAAoB,CAAA;CAAE,CAarF,CAAC;AAEF,oBAAY,eAAe;IACzB,EAAE,OAAO;IACT,EAAE,OAAO;CACV;AAED,oBAAY,qBAAqB;IAE/B,WAAW,eAAe;IAC1B,kBAAkB,uBAAuB;IACzC,8BAA8B,yBAAyB;IACvD,cAAc,mBAAmB;IACjC,kBAAkB,mBAAmB;CACtC;AAED,eAAO,MAAM,yBAAyB,UAUrC,CAAC;AACF,eAAO,MAAM,mCAAmC,EAAE,KAAK,CAAC;IACtD,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,KAAK,CAAC,MAAM,aAAa,CAAC,CAAC;IACjC,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAsBA,CAAC;AAEF,oBAAY,SAAS;IACnB,QAAQ,IAAI;IACZ,OAAO,IAAI;IACX,UAAU,IAAI;IACd,iBAAiB,IAAI;IACrB,KAAK,IAAI;CACV;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,YAAY,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,SAAS,CAAA;CAAE,CA0BvF,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,KAAK,CAAC,IAAI,CAAC,UAAU,EAAE,WAAW,CAAC,CA8CzE,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,MAAM,EAAqE,CAAC;AAElH,eAAO,MAAM,uBAAuB,EAAE,MAAM,EAI3C,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,MAAM,EAe5C,CAAC;AAEF,eAAO,MAAM,0BAA0B,UAA4B,CAAC"}
|
|
@@ -208,4 +208,27 @@ export const DefaultEmailTemplateList = [
|
|
|
208
208
|
isDefault: false,
|
|
209
209
|
},
|
|
210
210
|
];
|
|
211
|
+
export const CommercialDiscountsList = ['Non applicable', 'Aucun escompte en cas de paiement anticipé'];
|
|
212
|
+
export const CommercialPenaltiesList = [
|
|
213
|
+
'Non applicable',
|
|
214
|
+
'3 fois le taux légal',
|
|
215
|
+
'Taux directeur de la BCE + 10 points',
|
|
216
|
+
];
|
|
217
|
+
export const CommercialVatMentionList = [
|
|
218
|
+
'TVA: Non concerné',
|
|
219
|
+
'TVA: Non applicable',
|
|
220
|
+
'TVA non applicable, art. 293 B du CGI',
|
|
221
|
+
'TVA non applicable - Exportation hors UE - Art. 259-1 du CGI',
|
|
222
|
+
"Non soumis à TVA selon l'article 261C du CGI",
|
|
223
|
+
'Article 261 D du code général des impôts (CGI)',
|
|
224
|
+
'Exonération de TVA, article 283-2 du Code général des impôts',
|
|
225
|
+
'Exonération de la TVA : Article 262 ter I du CGI',
|
|
226
|
+
'Mention de TVA 261.4.4 1 du CGI',
|
|
227
|
+
"Régime particulier – Biens d'occasion - article 297 A du CGI et directive communautaire 2006/112/CE",
|
|
228
|
+
"Régime particulier – Objets d'art - article 297 A du CGI et directive communautaire 2006/112/CE",
|
|
229
|
+
"Régime particulier – Objets de collection ou d'antiquité - article 297 A du CGI et directive communautaire 2006/112/CE",
|
|
230
|
+
'Régime particulier – Agences de voyage - article 297 A du CGI et directive communautaire 2006/112/CE',
|
|
231
|
+
'Facture soumise au régime de l’auto-liquidation de la TVA',
|
|
232
|
+
];
|
|
233
|
+
export const CommercialRecoveryCostList = ['Non applicable', '40€'];
|
|
211
234
|
//# sourceMappingURL=CommercialManagement.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CommercialManagement.js","sourceRoot":"","sources":["../../../ts/types/Enum/CommercialManagement.ts"],"names":[],"mappings":"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","sourcesContent":["import { InfoToUseType } from '../../utils/commercialManagement/saleEmail.js';\nimport { ISaleEmail } from '../Interface/models/ISaleEmail.js';\n\nexport enum FontIds {\n CIRCULAR_STD = 1,\n ROBOTO = 2,\n POPPINS = 3,\n RALEWAY = 4,\n ZILLA = 5,\n}\n\nexport const fontList = [\n { id: FontIds.CIRCULAR_STD, link: 'https://fonts.cdnfonts.com/css/circular-std', name: 'Circular Std' },\n { id: FontIds.ROBOTO, link: 'https://fonts.cdnfonts.com/css/roboto', name: 'Roboto' },\n { id: FontIds.POPPINS, link: 'https://fonts.cdnfonts.com/css/poppins', name: 'Poppins' },\n { id: FontIds.RALEWAY, link: 'https://fonts.cdnfonts.com/css/raleway-5', name: 'Raleway' },\n { id: FontIds.ZILLA, link: 'https://fonts.cdnfonts.com/css/zilla-slab', name: 'Zilla Slab' },\n];\n\nexport enum LogoAlignment {\n LEFT = 'left',\n RIGHT = 'right',\n}\n\nexport enum InvoiceStatus {\n WAITING = 'waiting',\n UNPAID = 'unpaid',\n CANCELED = 'canceled',\n PAID = 'paid',\n}\n\nexport enum EstimateStatus {\n ACCEPTED = 'accepted',\n WAITING = 'waiting_estimate',\n REFUSED = 'refused',\n BILLED = 'billed',\n EXPIRED = 'expired',\n}\n\nexport enum DiscountType {\n PERCENT = 1,\n AMOUNT = 2,\n}\n\nexport enum VatMarginCategoryId {\n TRAVEL = 2,\n SECOND_HAND = 3,\n ART = 4,\n ANTIQUITY = 5,\n}\n\nexport const VatMarginCategyList: Array<{ label: string; id: VatMarginCategoryId }> = [\n {\n label: 'Agences de voyage',\n id: VatMarginCategoryId.TRAVEL,\n },\n {\n label: \"Bien d'occasion\",\n id: VatMarginCategoryId.SECOND_HAND,\n },\n {\n label: \"Objet d'art\",\n id: VatMarginCategoryId.ART,\n },\n {\n label: \"Objet de collection et d'antiquité\",\n id: VatMarginCategoryId.ANTIQUITY,\n },\n];\n\nexport enum AccountingCategoryId {\n DEFAULT = 0,\n DELIVERY_OF_GOOD = 1,\n SERVICE_DELIVERY = 2,\n GOOD_AND_SERVICE = 3,\n}\n\nexport const AccountingCategoryList: Array<{ label: string; id: AccountingCategoryId }> = [\n {\n label: 'Livraison de biens',\n id: AccountingCategoryId.DELIVERY_OF_GOOD,\n },\n {\n label: 'Prestation de services',\n id: AccountingCategoryId.SERVICE_DELIVERY,\n },\n {\n label: 'Prestation de services et livraison de biens',\n id: AccountingCategoryId.GOOD_AND_SERVICE,\n },\n];\n\nexport enum InvoiceLanguage {\n FR = 'fr',\n EN = 'en',\n}\n\nexport enum EmailTemplateVariable {\n // CLIENT_FIRST_NAME = 'prenom_client',\n CLIENT_NAME = 'nom_client',\n DOCUMENT_REFERENCE = 'reference_document',\n DOCUMENT_TOTAL_INCLUDED_AMOUNT = 'montant_ttc_document',\n DOCUMENT_TITLE = 'titre_document',\n OWNER_SOCIETY_NAME = 'raison_sociale',\n}\n\nexport const emailTemplateVariableList = [\n 'nom_client',\n 'reference_document',\n 'montant_ttc_document',\n 'titre_document',\n 'raison_sociale',\n\n // not used for now\n // 'lien_google',\n // 'lien_trustpilot',\n];\nexport const emailTemplateVariableAffiliatedData: Array<{\n name: string;\n data: Array<keyof InfoToUseType>;\n formatType?: string;\n}> = [\n {\n name: 'nom_client',\n data: ['fullname', 'company'],\n },\n {\n name: 'reference_document',\n data: ['reference'],\n },\n {\n name: 'montant_ttc_document',\n data: ['totalIncludedAmount'],\n formatType: 'amount',\n },\n {\n name: 'titre_document',\n data: ['title'],\n },\n {\n name: 'raison_sociale',\n data: ['societyName'],\n },\n];\n\nexport enum EmailType {\n ESTIMATE = 1,\n INVOICE = 2,\n ORDER_FORM = 3,\n CUSTOMER_REMINDER = 4,\n ASSET = 5,\n}\n\nexport const emailTypeList: Array<{ label: string; nameDocument: string; id: EmailType }> = [\n {\n label: 'Envoi de devis',\n nameDocument: 'devis',\n id: EmailType.ESTIMATE,\n },\n {\n label: 'Envoi de facture',\n nameDocument: 'facture',\n id: EmailType.INVOICE,\n },\n {\n label: 'Envoi de bons de commande',\n nameDocument: 'bon de commande',\n id: EmailType.ORDER_FORM,\n },\n {\n label: 'Relance client',\n nameDocument: 'relance',\n id: EmailType.CUSTOMER_REMINDER,\n },\n {\n label: 'Avoir',\n nameDocument: 'avoir',\n id: EmailType.ASSET,\n },\n];\n\nexport const DefaultEmailTemplateList: Array<Omit<ISaleEmail, 'idSociety'>> = [\n {\n id: -1,\n name: 'modèle devis par défaut',\n subject: 'Votre devis',\n content:\n '<p>Bonjour <span style=\"color: rgb(131, 131, 132);\">[nom_client]</span>, </p> <p>Vous trouverez ci-joint votre devis N°<span style=\"color: rgb(131, 131, 132);\">[reference_document]</span> d’un montant de <span style=\"color: rgb(131, 131, 132);\">[montant_ttc_document]</span>. </p> <p>Vous en souhaitant bonne réception. </p> <p>Cordialement,</p><p><span style=\"color: rgb(131, 131, 132);\">[raison_sociale]</span></p>',\n type: EmailType.ESTIMATE,\n isDefault: false,\n },\n {\n id: -2,\n name: 'modèle facture par défaut',\n subject: 'Votre facture',\n content:\n '<p>Bonjour <span style=\"color: rgb(131, 131, 132);\">[nom_client]</span>, </p> <p>Vous trouverez ci-joint votre facture N°<span style=\"color: rgb(131, 131, 132);\">[reference_document]</span> d’un montant de <span style=\"color: rgb(131, 131, 132);\">[montant_ttc_document]</span>.</p> <p>Vous en souhaitant bonne réception.</p> <p>Cordialement,</p><p><span style=\"color: rgb(131, 131, 132);\">[raison_sociale]</span></p>',\n type: EmailType.INVOICE,\n isDefault: false,\n },\n {\n id: -3,\n name: 'modèle bon de commande par défaut',\n subject: 'Votre bon de commande',\n content:\n '<p>Bonjour <span style=\"color: rgb(131, 131, 132);\">[nom_client]</span>, </p> <p>Vous trouverez ci-joint votre bon de commande N°<span style=\"color: rgb(131, 131, 132);\">[reference_document]</span> d’un montant de <span style=\"color: rgb(131, 131, 132);\">[montant_ttc_document]</span>. </p> <p>Vous en souhaitant bonne réception.</p> <p>Cordialement,</p><p><span style=\"color: rgb(131, 131, 132);\">[raison_sociale]</span></p>',\n type: EmailType.ORDER_FORM,\n isDefault: false,\n },\n {\n id: -4,\n name: 'modèle relance par défaut',\n subject: 'Votre facture',\n content:\n '<p>Bonjour <span style=\"color: rgb(131, 131, 132);\">[nom_client]</span>, </p> <p>Je me permets de revenir vers vous concernant la facture N°<span style=\"color: rgb(131, 131, 132);\">[reference_document]</span> d’un montant de <span style=\"color: rgb(131, 131, 132);\">[montant_ttc_document]</span> pour laquelle le paiement est toujours en attente. </p> <p>Je vous joins à nouveau le document en pièce jointe en cas de besoin.</p> <p>Vous en souhaitant bonne réception.</p> <p>Cordialement,</p><p><span style=\"color: rgb(131, 131, 132);\">[raison_sociale]</span></p>',\n type: EmailType.CUSTOMER_REMINDER,\n isDefault: false,\n },\n {\n id: -5,\n name: 'modèle avoir par défaut',\n subject: 'Votre avoir',\n content:\n '<p>Bonjour <span style=\"color: rgb(131, 131, 132);\">[nom_client]</span>, </p> <p>Vous trouverez ci-joint votre facture N°<span style=\"color: rgb(131, 131, 132);\">[reference_document]</span> d’un montant de <span style=\"color: rgb(131, 131, 132);\">[montant_ttc_document]</span>. </p> <p>Vous en souhaitant bonne réception.</p> <p>Cordialement,</p><p><span style=\"color: rgb(131, 131, 132);\">[raison_sociale]</span></p>',\n type: EmailType.ASSET,\n isDefault: false,\n },\n];\n"]}
|
|
1
|
+
{"version":3,"file":"CommercialManagement.js","sourceRoot":"","sources":["../../../ts/types/Enum/CommercialManagement.ts"],"names":[],"mappings":"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","sourcesContent":["import { InfoToUseType } from '../../utils/commercialManagement/saleEmail.js';\nimport { ISaleEmail } from '../Interface/models/ISaleEmail.js';\n\nexport enum FontIds {\n CIRCULAR_STD = 1,\n ROBOTO = 2,\n POPPINS = 3,\n RALEWAY = 4,\n ZILLA = 5,\n}\n\nexport const fontList = [\n { id: FontIds.CIRCULAR_STD, link: 'https://fonts.cdnfonts.com/css/circular-std', name: 'Circular Std' },\n { id: FontIds.ROBOTO, link: 'https://fonts.cdnfonts.com/css/roboto', name: 'Roboto' },\n { id: FontIds.POPPINS, link: 'https://fonts.cdnfonts.com/css/poppins', name: 'Poppins' },\n { id: FontIds.RALEWAY, link: 'https://fonts.cdnfonts.com/css/raleway-5', name: 'Raleway' },\n { id: FontIds.ZILLA, link: 'https://fonts.cdnfonts.com/css/zilla-slab', name: 'Zilla Slab' },\n];\n\nexport enum LogoAlignment {\n LEFT = 'left',\n RIGHT = 'right',\n}\n\nexport enum InvoiceStatus {\n WAITING = 'waiting',\n UNPAID = 'unpaid',\n CANCELED = 'canceled',\n PAID = 'paid',\n}\n\nexport enum EstimateStatus {\n ACCEPTED = 'accepted',\n WAITING = 'waiting_estimate',\n REFUSED = 'refused',\n BILLED = 'billed',\n EXPIRED = 'expired',\n}\n\nexport enum DiscountType {\n PERCENT = 1,\n AMOUNT = 2,\n}\n\nexport enum VatMarginCategoryId {\n TRAVEL = 2,\n SECOND_HAND = 3,\n ART = 4,\n ANTIQUITY = 5,\n}\n\nexport const VatMarginCategyList: Array<{ label: string; id: VatMarginCategoryId }> = [\n {\n label: 'Agences de voyage',\n id: VatMarginCategoryId.TRAVEL,\n },\n {\n label: \"Bien d'occasion\",\n id: VatMarginCategoryId.SECOND_HAND,\n },\n {\n label: \"Objet d'art\",\n id: VatMarginCategoryId.ART,\n },\n {\n label: \"Objet de collection et d'antiquité\",\n id: VatMarginCategoryId.ANTIQUITY,\n },\n];\n\nexport enum AccountingCategoryId {\n DEFAULT = 0,\n DELIVERY_OF_GOOD = 1,\n SERVICE_DELIVERY = 2,\n GOOD_AND_SERVICE = 3,\n}\n\nexport const AccountingCategoryList: Array<{ label: string; id: AccountingCategoryId }> = [\n {\n label: 'Livraison de biens',\n id: AccountingCategoryId.DELIVERY_OF_GOOD,\n },\n {\n label: 'Prestation de services',\n id: AccountingCategoryId.SERVICE_DELIVERY,\n },\n {\n label: 'Prestation de services et livraison de biens',\n id: AccountingCategoryId.GOOD_AND_SERVICE,\n },\n];\n\nexport enum InvoiceLanguage {\n FR = 'fr',\n EN = 'en',\n}\n\nexport enum EmailTemplateVariable {\n // CLIENT_FIRST_NAME = 'prenom_client',\n CLIENT_NAME = 'nom_client',\n DOCUMENT_REFERENCE = 'reference_document',\n DOCUMENT_TOTAL_INCLUDED_AMOUNT = 'montant_ttc_document',\n DOCUMENT_TITLE = 'titre_document',\n OWNER_SOCIETY_NAME = 'raison_sociale',\n}\n\nexport const emailTemplateVariableList = [\n 'nom_client',\n 'reference_document',\n 'montant_ttc_document',\n 'titre_document',\n 'raison_sociale',\n\n // not used for now\n // 'lien_google',\n // 'lien_trustpilot',\n];\nexport const emailTemplateVariableAffiliatedData: Array<{\n name: string;\n data: Array<keyof InfoToUseType>;\n formatType?: string;\n}> = [\n {\n name: 'nom_client',\n data: ['fullname', 'company'],\n },\n {\n name: 'reference_document',\n data: ['reference'],\n },\n {\n name: 'montant_ttc_document',\n data: ['totalIncludedAmount'],\n formatType: 'amount',\n },\n {\n name: 'titre_document',\n data: ['title'],\n },\n {\n name: 'raison_sociale',\n data: ['societyName'],\n },\n];\n\nexport enum EmailType {\n ESTIMATE = 1,\n INVOICE = 2,\n ORDER_FORM = 3,\n CUSTOMER_REMINDER = 4,\n ASSET = 5,\n}\n\nexport const emailTypeList: Array<{ label: string; nameDocument: string; id: EmailType }> = [\n {\n label: 'Envoi de devis',\n nameDocument: 'devis',\n id: EmailType.ESTIMATE,\n },\n {\n label: 'Envoi de facture',\n nameDocument: 'facture',\n id: EmailType.INVOICE,\n },\n {\n label: 'Envoi de bons de commande',\n nameDocument: 'bon de commande',\n id: EmailType.ORDER_FORM,\n },\n {\n label: 'Relance client',\n nameDocument: 'relance',\n id: EmailType.CUSTOMER_REMINDER,\n },\n {\n label: 'Avoir',\n nameDocument: 'avoir',\n id: EmailType.ASSET,\n },\n];\n\nexport const DefaultEmailTemplateList: Array<Omit<ISaleEmail, 'idSociety'>> = [\n {\n id: -1,\n name: 'modèle devis par défaut',\n subject: 'Votre devis',\n content:\n '<p>Bonjour <span style=\"color: rgb(131, 131, 132);\">[nom_client]</span>, </p> <p>Vous trouverez ci-joint votre devis N°<span style=\"color: rgb(131, 131, 132);\">[reference_document]</span> d’un montant de <span style=\"color: rgb(131, 131, 132);\">[montant_ttc_document]</span>. </p> <p>Vous en souhaitant bonne réception. </p> <p>Cordialement,</p><p><span style=\"color: rgb(131, 131, 132);\">[raison_sociale]</span></p>',\n type: EmailType.ESTIMATE,\n isDefault: false,\n },\n {\n id: -2,\n name: 'modèle facture par défaut',\n subject: 'Votre facture',\n content:\n '<p>Bonjour <span style=\"color: rgb(131, 131, 132);\">[nom_client]</span>, </p> <p>Vous trouverez ci-joint votre facture N°<span style=\"color: rgb(131, 131, 132);\">[reference_document]</span> d’un montant de <span style=\"color: rgb(131, 131, 132);\">[montant_ttc_document]</span>.</p> <p>Vous en souhaitant bonne réception.</p> <p>Cordialement,</p><p><span style=\"color: rgb(131, 131, 132);\">[raison_sociale]</span></p>',\n type: EmailType.INVOICE,\n isDefault: false,\n },\n {\n id: -3,\n name: 'modèle bon de commande par défaut',\n subject: 'Votre bon de commande',\n content:\n '<p>Bonjour <span style=\"color: rgb(131, 131, 132);\">[nom_client]</span>, </p> <p>Vous trouverez ci-joint votre bon de commande N°<span style=\"color: rgb(131, 131, 132);\">[reference_document]</span> d’un montant de <span style=\"color: rgb(131, 131, 132);\">[montant_ttc_document]</span>. </p> <p>Vous en souhaitant bonne réception.</p> <p>Cordialement,</p><p><span style=\"color: rgb(131, 131, 132);\">[raison_sociale]</span></p>',\n type: EmailType.ORDER_FORM,\n isDefault: false,\n },\n {\n id: -4,\n name: 'modèle relance par défaut',\n subject: 'Votre facture',\n content:\n '<p>Bonjour <span style=\"color: rgb(131, 131, 132);\">[nom_client]</span>, </p> <p>Je me permets de revenir vers vous concernant la facture N°<span style=\"color: rgb(131, 131, 132);\">[reference_document]</span> d’un montant de <span style=\"color: rgb(131, 131, 132);\">[montant_ttc_document]</span> pour laquelle le paiement est toujours en attente. </p> <p>Je vous joins à nouveau le document en pièce jointe en cas de besoin.</p> <p>Vous en souhaitant bonne réception.</p> <p>Cordialement,</p><p><span style=\"color: rgb(131, 131, 132);\">[raison_sociale]</span></p>',\n type: EmailType.CUSTOMER_REMINDER,\n isDefault: false,\n },\n {\n id: -5,\n name: 'modèle avoir par défaut',\n subject: 'Votre avoir',\n content:\n '<p>Bonjour <span style=\"color: rgb(131, 131, 132);\">[nom_client]</span>, </p> <p>Vous trouverez ci-joint votre facture N°<span style=\"color: rgb(131, 131, 132);\">[reference_document]</span> d’un montant de <span style=\"color: rgb(131, 131, 132);\">[montant_ttc_document]</span>. </p> <p>Vous en souhaitant bonne réception.</p> <p>Cordialement,</p><p><span style=\"color: rgb(131, 131, 132);\">[raison_sociale]</span></p>',\n type: EmailType.ASSET,\n isDefault: false,\n },\n];\n\nexport const CommercialDiscountsList: string[] = ['Non applicable', 'Aucun escompte en cas de paiement anticipé'];\n\nexport const CommercialPenaltiesList: string[] = [\n 'Non applicable',\n '3 fois le taux légal',\n 'Taux directeur de la BCE + 10 points',\n];\n\nexport const CommercialVatMentionList: string[] = [\n 'TVA: Non concerné',\n 'TVA: Non applicable',\n 'TVA non applicable, art. 293 B du CGI',\n 'TVA non applicable - Exportation hors UE - Art. 259-1 du CGI',\n \"Non soumis à TVA selon l'article 261C du CGI\",\n 'Article 261 D du code général des impôts (CGI)',\n 'Exonération de TVA, article 283-2 du Code général des impôts',\n 'Exonération de la TVA : Article 262 ter I du CGI',\n 'Mention de TVA 261.4.4 1 du CGI',\n \"Régime particulier – Biens d'occasion - article 297 A du CGI et directive communautaire 2006/112/CE\",\n \"Régime particulier – Objets d'art - article 297 A du CGI et directive communautaire 2006/112/CE\",\n \"Régime particulier – Objets de collection ou d'antiquité - article 297 A du CGI et directive communautaire 2006/112/CE\",\n 'Régime particulier – Agences de voyage - article 297 A du CGI et directive communautaire 2006/112/CE',\n 'Facture soumise au régime de l’auto-liquidation de la TVA',\n];\n\nexport const CommercialRecoveryCostList = ['Non applicable', '40€'];\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Ged.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/Ged.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"Ged.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/Ged.ts"],"names":[],"mappings":"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"}
|
package/dist/types/Enum/Ged.js
CHANGED
|
@@ -285,7 +285,7 @@ export const GedFileTypeDetail = {
|
|
|
285
285
|
},
|
|
286
286
|
IDENTITY_CARD: {
|
|
287
287
|
id: GedFileType.IDENTITY_CARD,
|
|
288
|
-
name:
|
|
288
|
+
name: 'Carte d\'identité',
|
|
289
289
|
idGedFolder: GedFolder.KBIS,
|
|
290
290
|
typeFile: TypeFile.IDENTITY_CARD_RECTO,
|
|
291
291
|
},
|
|
@@ -415,7 +415,7 @@ export const GedFileTypeDetail = {
|
|
|
415
415
|
export const GedFolderList = [
|
|
416
416
|
{
|
|
417
417
|
id: GedFolder.KBIS,
|
|
418
|
-
name:
|
|
418
|
+
name: 'K-bis & Carte d\'identité & Mémento fiscal',
|
|
419
419
|
isVisibleForClient: true,
|
|
420
420
|
idGedCategory: GedCategory.COMPANY,
|
|
421
421
|
},
|
|
@@ -441,7 +441,7 @@ export const GedFolderList = [
|
|
|
441
441
|
},
|
|
442
442
|
{
|
|
443
443
|
id: GedFolder.IS_DECLARATIONS,
|
|
444
|
-
name:
|
|
444
|
+
name: 'Déclarations d\'IS',
|
|
445
445
|
isVisibleForClient: true,
|
|
446
446
|
idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
|
|
447
447
|
},
|
|
@@ -461,7 +461,7 @@ export const GedFolderList = [
|
|
|
461
461
|
idGedCategory: GedCategory.SOCIAL,
|
|
462
462
|
},
|
|
463
463
|
{ id: GedFolder.TNS, name: 'TNS', isVisibleForClient: true, idGedCategory: GedCategory.SOCIAL },
|
|
464
|
-
{ id: GedFolder.AGM, name:
|
|
464
|
+
{ id: GedFolder.AGM, name: 'PV d\'AG', isVisibleForClient: true, idGedCategory: GedCategory.JURIDIC },
|
|
465
465
|
{
|
|
466
466
|
id: GedFolder.CONTRACTS_LEASES,
|
|
467
467
|
name: 'Contrats & Baux',
|
|
@@ -634,7 +634,7 @@ export const TypeFileDetail = {
|
|
|
634
634
|
},
|
|
635
635
|
[TypeFile.IDENTITY_CARD_RECTO]: {
|
|
636
636
|
typeFile: TypeFile.IDENTITY_CARD_RECTO,
|
|
637
|
-
name:
|
|
637
|
+
name: 'Carte d\'identité',
|
|
638
638
|
idGedFolder: GedFolder.KBIS,
|
|
639
639
|
idGedFileType: GedFileType.IDENTITY_CARD,
|
|
640
640
|
},
|
|
@@ -748,14 +748,14 @@ export const TypeFileDetail = {
|
|
|
748
748
|
},
|
|
749
749
|
[TypeFile.INSURANCE_CONTRACT]: {
|
|
750
750
|
typeFile: TypeFile.INSURANCE_CONTRACT,
|
|
751
|
-
name:
|
|
751
|
+
name: 'Contrat d\'assurance',
|
|
752
752
|
idGedFolder: GedFolder.INSURANCES,
|
|
753
753
|
},
|
|
754
754
|
[TypeFile.COMPANY_CONTRIBUTION_PROOF]: {
|
|
755
755
|
typeFile: TypeFile.COMPANY_CONTRIBUTION_PROOF,
|
|
756
756
|
name: 'Justificatif des apports faits à la société',
|
|
757
757
|
idGedFolder: GedFolder.JURIDICAL,
|
|
758
|
-
helpText:
|
|
758
|
+
helpText: 'Vos relevés bancaires personnels indiquant le montant d’épargne disponible, votre avis d\'imposition personnel',
|
|
759
759
|
},
|
|
760
760
|
[TypeFile.NOTARY_STATEMENT]: {
|
|
761
761
|
typeFile: TypeFile.NOTARY_STATEMENT,
|
|
@@ -765,12 +765,12 @@ export const TypeFileDetail = {
|
|
|
765
765
|
},
|
|
766
766
|
[TypeFile.PURCHASE_DEED]: {
|
|
767
767
|
typeFile: TypeFile.PURCHASE_DEED,
|
|
768
|
-
name:
|
|
768
|
+
name: 'Acte d\'achat',
|
|
769
769
|
idGedFolder: GedFolder.JURIDICAL,
|
|
770
770
|
},
|
|
771
771
|
[TypeFile.PV_RESULT_ALLOCATION]: {
|
|
772
772
|
typeFile: TypeFile.PV_RESULT_ALLOCATION,
|
|
773
|
-
name:
|
|
773
|
+
name: 'PV d\'AG d\'affectation du résultat',
|
|
774
774
|
idGedFolder: GedFolder.AGM,
|
|
775
775
|
},
|
|
776
776
|
[TypeFile.SUBSIDY_PROOF]: {
|
|
@@ -780,7 +780,7 @@ export const TypeFileDetail = {
|
|
|
780
780
|
},
|
|
781
781
|
[TypeFile.LOAN_AMORTIZATION_TABLE]: {
|
|
782
782
|
typeFile: TypeFile.LOAN_AMORTIZATION_TABLE,
|
|
783
|
-
name:
|
|
783
|
+
name: 'Tableau d\'amortissement des emprunts',
|
|
784
784
|
idGedFolder: GedFolder.BORROWING_TABLES,
|
|
785
785
|
},
|
|
786
786
|
[TypeFile.COMMERCIAL_OR_RENTAL_LEASE]: {
|
|
@@ -800,7 +800,7 @@ export const TypeFileDetail = {
|
|
|
800
800
|
},
|
|
801
801
|
[TypeFile.LIVESTOCK_REGISTER]: {
|
|
802
802
|
typeFile: TypeFile.LIVESTOCK_REGISTER,
|
|
803
|
-
name:
|
|
803
|
+
name: 'Registre d\'élevage',
|
|
804
804
|
idGedFolder: GedFolder.OTHER,
|
|
805
805
|
},
|
|
806
806
|
[TypeFile.LIVESTOCK_INVENTORY]: {
|
|
@@ -830,7 +830,7 @@ export const TypeFileDetail = {
|
|
|
830
830
|
},
|
|
831
831
|
[TypeFile.AGRICULTURAL_TAX_CREDIT_PROOF]: {
|
|
832
832
|
typeFile: TypeFile.AGRICULTURAL_TAX_CREDIT_PROOF,
|
|
833
|
-
name:
|
|
833
|
+
name: 'Justificatifs de crédits d\'impôt agricoles',
|
|
834
834
|
idGedFolder: GedFolder.MISCELLANEOUS,
|
|
835
835
|
},
|
|
836
836
|
[TypeFile.LOAN_REPAYMENT_PROOF]: {
|
|
@@ -855,17 +855,17 @@ export const TypeFileDetail = {
|
|
|
855
855
|
},
|
|
856
856
|
[TypeFile.CONDOMINIUM_AGM_MINUTES]: {
|
|
857
857
|
typeFile: TypeFile.CONDOMINIUM_AGM_MINUTES,
|
|
858
|
-
name:
|
|
858
|
+
name: 'Procès-verbaux d\'AG de copropriété',
|
|
859
859
|
idGedFolder: GedFolder.AGM,
|
|
860
860
|
},
|
|
861
861
|
[TypeFile.TAX_NOTICE]: {
|
|
862
862
|
typeFile: TypeFile.TAX_NOTICE,
|
|
863
|
-
name:
|
|
863
|
+
name: 'Avis d\'imposition (CFE, taxe foncière)',
|
|
864
864
|
idGedFolder: GedFolder.SLIPS_CFE,
|
|
865
865
|
},
|
|
866
866
|
[TypeFile.SUBSIDY_ALLOCATION_NOTIFICATION]: {
|
|
867
867
|
typeFile: TypeFile.SUBSIDY_ALLOCATION_NOTIFICATION,
|
|
868
|
-
name:
|
|
868
|
+
name: 'Notifications d\'attribution de subventions publiques',
|
|
869
869
|
idGedFolder: GedFolder.SUBVENTION,
|
|
870
870
|
},
|
|
871
871
|
[TypeFile.FINANCING_CONTRACTS_OR_SUBSIDY_AGREEMENTS]: {
|
|
@@ -881,7 +881,7 @@ export const TypeFileDetail = {
|
|
|
881
881
|
},
|
|
882
882
|
[TypeFile.STOCK]: {
|
|
883
883
|
typeFile: TypeFile.STOCK,
|
|
884
|
-
name:
|
|
884
|
+
name: 'L\'état de vos stocks à la date de clôture',
|
|
885
885
|
idGedFolder: GedFolder.STOCK,
|
|
886
886
|
helpText: 'L’état des stocks doit recenser l’ensemble des produits disponibles à la date de clôture. Chaque article doit être identifié précisément, classé par catégorie (matières premières, marchandises, produits finis, consommables...), et valorisé au prix d’achat hors taxes (HT). Ce document doit impérativement être daté et signé.',
|
|
887
887
|
},
|
|
@@ -889,7 +889,7 @@ export const TypeFileDetail = {
|
|
|
889
889
|
typeFile: TypeFile.RECIPROCITY,
|
|
890
890
|
name: 'Le grand livre de réciprocité des comptes',
|
|
891
891
|
idGedFolder: GedFolder.BALANCE_GL,
|
|
892
|
-
helpText:
|
|
892
|
+
helpText: 'Votre société détient ou a cédé des actions à une autre entité, ce qui établit un lien capitalistique entre les deux sociétés. En conséquence, des mouvements comptables peuvent exister entre elles. Afin d\'assurer la cohérence des écritures comptables, nous vous demandons de nous transmettre les grands livres des opérations enregistrées dans la comptabilité de l’autre société. Cela nous permettra de rapprocher et cadrer les flux entre les deux entités.',
|
|
893
893
|
},
|
|
894
894
|
[TypeFile.SUPPLIER_DEBTS]: {
|
|
895
895
|
typeFile: TypeFile.SUPPLIER_DEBTS,
|
|
@@ -937,7 +937,7 @@ Paypal : relevés mensuels à télécharger sur le site → Activité → Icône
|
|
|
937
937
|
},
|
|
938
938
|
[TypeFile.INVOICING_SOFTWARE_SUMMARY]: {
|
|
939
939
|
typeFile: TypeFile.INVOICING_SOFTWARE_SUMMARY,
|
|
940
|
-
name:
|
|
940
|
+
name: 'Un récapitulatif de votre logiciel de facturation détaille par type d\'encaissement et par taux de TVA',
|
|
941
941
|
idGedFolder: GedFolder.SUMMARY,
|
|
942
942
|
helpText: 'Il doit provenir de votre logiciel de facturation et détailler le total des ventes par mode de paiement (carte, virement, espèces, etc.) et par taux de TVA (20%, 10%, 5,5%).',
|
|
943
943
|
},
|