@silexpert/core 1.2.41 → 1.2.43
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/cjs/api/resources/BalanceSheet.d.ts +2 -1
- package/dist/cjs/api/resources/BalanceSheet.d.ts.map +1 -1
- package/dist/cjs/api/resources/BalanceSheet.js +3 -0
- package/dist/cjs/api/resources/BalanceSheet.js.map +1 -1
- package/dist/cjs/types/Enum/BalanceSheet.d.ts +4 -4
- package/dist/cjs/types/Enum/BalanceSheet.d.ts.map +1 -1
- package/dist/cjs/types/Enum/BalanceSheet.js +104 -21
- package/dist/cjs/types/Enum/BalanceSheet.js.map +1 -1
- package/dist/cjs/types/Enum/BankCollectingState.d.ts +2 -1
- package/dist/cjs/types/Enum/BankCollectingState.d.ts.map +1 -1
- package/dist/cjs/types/Enum/BankCollectingState.js +7 -0
- package/dist/cjs/types/Enum/BankCollectingState.js.map +1 -1
- package/dist/cjs/types/Enum/BrandClementine.d.ts.map +1 -1
- package/dist/cjs/types/Enum/BrandClementine.js +6 -0
- package/dist/cjs/types/Enum/BrandClementine.js.map +1 -1
- package/dist/cjs/types/Enum/ReasonNotSubscribed.d.ts +12 -0
- package/dist/cjs/types/Enum/ReasonNotSubscribed.d.ts.map +1 -0
- package/dist/cjs/types/Enum/ReasonNotSubscribed.js +216 -0
- package/dist/cjs/types/Enum/ReasonNotSubscribed.js.map +1 -0
- package/dist/cjs/types/Interface/api/balanceSheet/Query.d.ts +4 -0
- package/dist/cjs/types/Interface/api/balanceSheet/Query.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/balanceSheet/Query.js +14 -1
- package/dist/cjs/types/Interface/api/balanceSheet/Query.js.map +1 -1
- package/dist/cjs/types/Interface/models/IUser.d.ts +2 -0
- package/dist/cjs/types/Interface/models/IUser.d.ts.map +1 -1
- package/dist/cjs/types/Interface/models/IUser.js.map +1 -1
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/index.d.ts.map +1 -1
- package/dist/cjs/types/index.js +1 -0
- package/dist/cjs/types/index.js.map +1 -1
- package/dist/mjs/api/resources/BalanceSheet.d.ts +2 -1
- package/dist/mjs/api/resources/BalanceSheet.d.ts.map +1 -1
- package/dist/mjs/api/resources/BalanceSheet.js +6 -0
- package/dist/mjs/api/resources/BalanceSheet.js.map +1 -1
- package/dist/mjs/types/Enum/BalanceSheet.d.ts +4 -4
- package/dist/mjs/types/Enum/BalanceSheet.d.ts.map +1 -1
- package/dist/mjs/types/Enum/BalanceSheet.js +104 -21
- package/dist/mjs/types/Enum/BalanceSheet.js.map +1 -1
- package/dist/mjs/types/Enum/BankCollectingState.d.ts +2 -1
- package/dist/mjs/types/Enum/BankCollectingState.d.ts.map +1 -1
- package/dist/mjs/types/Enum/BankCollectingState.js +7 -0
- package/dist/mjs/types/Enum/BankCollectingState.js.map +1 -1
- package/dist/mjs/types/Enum/BrandClementine.d.ts.map +1 -1
- package/dist/mjs/types/Enum/BrandClementine.js +6 -0
- package/dist/mjs/types/Enum/BrandClementine.js.map +1 -1
- package/dist/mjs/types/Enum/ReasonNotSubscribed.d.ts +12 -0
- package/dist/mjs/types/Enum/ReasonNotSubscribed.d.ts.map +1 -0
- package/dist/mjs/types/Enum/ReasonNotSubscribed.js +213 -0
- package/dist/mjs/types/Enum/ReasonNotSubscribed.js.map +1 -0
- package/dist/mjs/types/Interface/api/balanceSheet/Query.d.ts +4 -0
- package/dist/mjs/types/Interface/api/balanceSheet/Query.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/balanceSheet/Query.js +15 -1
- package/dist/mjs/types/Interface/api/balanceSheet/Query.js.map +1 -1
- package/dist/mjs/types/Interface/models/IUser.d.ts +2 -0
- package/dist/mjs/types/Interface/models/IUser.d.ts.map +1 -1
- package/dist/mjs/types/Interface/models/IUser.js.map +1 -1
- package/dist/mjs/types/index.d.ts +1 -0
- package/dist/mjs/types/index.d.ts.map +1 -1
- package/dist/mjs/types/index.js +1 -0
- package/dist/mjs/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/BalanceSheet.ts +24 -2
- package/ts/types/Enum/BalanceSheet.ts +106 -23
- package/ts/types/Enum/BankCollectingState.ts +8 -1
- package/ts/types/Enum/BrandClementine.ts +6 -0
- package/ts/types/Enum/ReasonNotSubscribed.ts +212 -0
- package/ts/types/Interface/api/balanceSheet/Query.ts +33 -26
- package/ts/types/Interface/models/IUser.ts +4 -2
- package/ts/types/index.ts +1 -0
|
@@ -44,14 +44,14 @@ export declare const BalanceSheetDetails: readonly [{
|
|
|
44
44
|
readonly alias: "ENC";
|
|
45
45
|
readonly color: "grey";
|
|
46
46
|
readonly textColor: "grey--text ";
|
|
47
|
-
readonly forRoles: readonly [readonly ["front_office"], readonly ["expert"]];
|
|
47
|
+
readonly forRoles: readonly [readonly ["front_office"], readonly ["expert"], readonly ["customer_success"]];
|
|
48
48
|
}, {
|
|
49
49
|
readonly text: "Att. retour client";
|
|
50
50
|
readonly value: BalanceSheetState.WAITING_CLIENT;
|
|
51
51
|
readonly alias: "ARC";
|
|
52
52
|
readonly color: "cyan";
|
|
53
53
|
readonly textColor: "cyan--text";
|
|
54
|
-
readonly forRoles: readonly [readonly ["front_office"], readonly ["expert"]];
|
|
54
|
+
readonly forRoles: readonly [readonly ["front_office"], readonly ["expert"], readonly ["customer_success"]];
|
|
55
55
|
}, {
|
|
56
56
|
readonly text: "À réviser";
|
|
57
57
|
readonly value: BalanceSheetState.TO_REVISE;
|
|
@@ -82,14 +82,14 @@ export declare const BalanceSheetDetails: readonly [{
|
|
|
82
82
|
readonly value: BalanceSheetState.SENDED_TO_CLIENT;
|
|
83
83
|
readonly color: "blue";
|
|
84
84
|
readonly textColor: "blue--text";
|
|
85
|
-
readonly forRoles: readonly [readonly ["front_office"], readonly ["expert"]];
|
|
85
|
+
readonly forRoles: readonly [readonly ["front_office"], readonly ["expert"], readonly ["customer_success"]];
|
|
86
86
|
}, {
|
|
87
87
|
readonly text: "Accepté par le client";
|
|
88
88
|
readonly value: BalanceSheetState.ACCEPTED_BY_CLIENT;
|
|
89
89
|
readonly color: "blue darken-2";
|
|
90
90
|
readonly textColor: "blue--text ";
|
|
91
91
|
readonly alias: "APC";
|
|
92
|
-
readonly forRoles: readonly [readonly ["front_office"], readonly ["expert"]];
|
|
92
|
+
readonly forRoles: readonly [readonly ["front_office"], readonly ["expert"], readonly ["customer_success"]];
|
|
93
93
|
}, {
|
|
94
94
|
readonly text: "Refusé par le client";
|
|
95
95
|
readonly value: BalanceSheetState.REFUSED_BY_CLIENT;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BalanceSheet.d.ts","sourceRoot":"","sources":["../../../../ts/types/Enum/BalanceSheet.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAE1C,oBAAY,iBAAiB;IAC3B,KAAK,IAAI;IACT,eAAe,IAAI;IACnB,cAAc,IAAI;IAClB,gBAAgB,IAAI;IACpB,aAAa,IAAI;IACjB,cAAc,IAAI;IAClB,YAAY,IAAI;IAChB,kBAAkB,IAAI;IACtB,YAAY,IAAI;IAChB,OAAO,IAAI;IACX,SAAS,KAAK;IACd,UAAU,KAAK;IACf,cAAc,KAAK;IACnB,2BAA2B,KAAK;IAChC,MAAM,KAAK;IACX,kBAAkB,KAAK;IACvB,qBAAqB,KAAK;IAC1B,iBAAiB,KAAK;IACtB,iBAAiB,KAAK;IACtB,0BAA0B,KAAK;IAC/B,uBAAuB,KAAK;IAC5B,qBAAqB,KAAK;IAC1B,sBAAsB,KAAK;IAC3B,eAAe,KAAK;IACpB,wBAAwB,KAAK;IAC7B,qBAAqB,KAAK;IAC1B,sBAAsB,KAAK;IAC3B,4BAA4B,KAAK;IACjC,kBAAkB,KAAK;IACvB,iBAAiB,KAAK;CACvB;AAED,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"BalanceSheet.d.ts","sourceRoot":"","sources":["../../../../ts/types/Enum/BalanceSheet.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAE1C,oBAAY,iBAAiB;IAC3B,KAAK,IAAI;IACT,eAAe,IAAI;IACnB,cAAc,IAAI;IAClB,gBAAgB,IAAI;IACpB,aAAa,IAAI;IACjB,cAAc,IAAI;IAClB,YAAY,IAAI;IAChB,kBAAkB,IAAI;IACtB,YAAY,IAAI;IAChB,OAAO,IAAI;IACX,SAAS,KAAK;IACd,UAAU,KAAK;IACf,cAAc,KAAK;IACnB,2BAA2B,KAAK;IAChC,MAAM,KAAK;IACX,kBAAkB,KAAK;IACvB,qBAAqB,KAAK;IAC1B,iBAAiB,KAAK;IACtB,iBAAiB,KAAK;IACtB,0BAA0B,KAAK;IAC/B,uBAAuB,KAAK;IAC5B,qBAAqB,KAAK;IAC1B,sBAAsB,KAAK;IAC3B,eAAe,KAAK;IACpB,wBAAwB,KAAK;IAC7B,qBAAqB,KAAK;IAC1B,sBAAsB,KAAK;IAC3B,4BAA4B,KAAK;IACjC,kBAAkB,KAAK;IACvB,iBAAiB,KAAK;CACvB;AAED,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2MtB,CAAC;AAEX,eAAO,MAAM,2BAA2B;;;;;;GA6BvC,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG,SAAS,CAAC;AAEpD,MAAM,MAAM,iBAAiB,GAAG;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAE7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAE5B,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAC;IACjC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAE5B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAE1B,IAAI,CAAC,EAAE,gBAAgB,CAAC;IACxB,qBAAqB,CAAC,EAAE,CAAC,cAAc,EAAE,gBAAgB,CAAC,CAAC;CAC5D,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,iBAAiB,EAAE,CAAC;AAEnD,eAAO,MAAM,yBAAyB,EAAE,gBAmUvC,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,gBAsQxC,CAAC;AAEF,eAAO,MAAM,kCAAkC,EAAE,iBAAiB,EAajE,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;EAyB1B,CAAC"}
|
|
@@ -39,7 +39,15 @@ export const BalanceSheetDetails = [
|
|
|
39
39
|
text: 'À faire',
|
|
40
40
|
color: 'grey',
|
|
41
41
|
textColor: 'grey--text',
|
|
42
|
-
forRoles: [
|
|
42
|
+
forRoles: [
|
|
43
|
+
['front_office'],
|
|
44
|
+
['expert'],
|
|
45
|
+
['customer_success'],
|
|
46
|
+
['on_boarder'],
|
|
47
|
+
['termination'],
|
|
48
|
+
['litige'],
|
|
49
|
+
['facturation'],
|
|
50
|
+
],
|
|
43
51
|
},
|
|
44
52
|
{
|
|
45
53
|
text: 'En cours de prod.',
|
|
@@ -47,7 +55,7 @@ export const BalanceSheetDetails = [
|
|
|
47
55
|
alias: 'ENC',
|
|
48
56
|
color: 'grey',
|
|
49
57
|
textColor: 'grey--text ',
|
|
50
|
-
forRoles: [['front_office'], ['expert']],
|
|
58
|
+
forRoles: [['front_office'], ['expert'], ['customer_success']],
|
|
51
59
|
},
|
|
52
60
|
{
|
|
53
61
|
text: 'Att. retour client',
|
|
@@ -55,7 +63,7 @@ export const BalanceSheetDetails = [
|
|
|
55
63
|
alias: 'ARC',
|
|
56
64
|
color: 'cyan',
|
|
57
65
|
textColor: 'cyan--text',
|
|
58
|
-
forRoles: [['front_office'], ['expert']],
|
|
66
|
+
forRoles: [['front_office'], ['expert'], ['customer_success']],
|
|
59
67
|
},
|
|
60
68
|
{
|
|
61
69
|
text: 'À réviser',
|
|
@@ -91,7 +99,7 @@ export const BalanceSheetDetails = [
|
|
|
91
99
|
value: BalanceSheetState.SENDED_TO_CLIENT,
|
|
92
100
|
color: 'blue',
|
|
93
101
|
textColor: 'blue--text',
|
|
94
|
-
forRoles: [['front_office'], ['expert']],
|
|
102
|
+
forRoles: [['front_office'], ['expert'], ['customer_success']],
|
|
95
103
|
},
|
|
96
104
|
{
|
|
97
105
|
text: 'Accepté par le client',
|
|
@@ -99,7 +107,7 @@ export const BalanceSheetDetails = [
|
|
|
99
107
|
color: 'blue darken-2',
|
|
100
108
|
textColor: 'blue--text ',
|
|
101
109
|
alias: 'APC',
|
|
102
|
-
forRoles: [['front_office'], ['expert']],
|
|
110
|
+
forRoles: [['front_office'], ['expert'], ['customer_success']],
|
|
103
111
|
},
|
|
104
112
|
{
|
|
105
113
|
text: 'Refusé par le client',
|
|
@@ -141,7 +149,13 @@ export const BalanceSheetDetails = [
|
|
|
141
149
|
text: 'N/A',
|
|
142
150
|
color: 'grey lighten-2',
|
|
143
151
|
textColor: 'grey--text',
|
|
144
|
-
forRoles: [
|
|
152
|
+
forRoles: [
|
|
153
|
+
['customer_success', 'manager'],
|
|
154
|
+
['on_boarder', 'manager'],
|
|
155
|
+
['termination', 'manager'],
|
|
156
|
+
['litige', 'manager'],
|
|
157
|
+
['facturation', 'manager'],
|
|
158
|
+
],
|
|
145
159
|
},
|
|
146
160
|
{
|
|
147
161
|
text: 'Impayé',
|
|
@@ -149,7 +163,15 @@ export const BalanceSheetDetails = [
|
|
|
149
163
|
color: 'error darken-2',
|
|
150
164
|
textColor: 'error--text text--darken-2',
|
|
151
165
|
key: 'unpaid',
|
|
152
|
-
forRoles: [
|
|
166
|
+
forRoles: [
|
|
167
|
+
['front_office', 'manager'],
|
|
168
|
+
['front_office_express', 'manager'],
|
|
169
|
+
['customer_success'],
|
|
170
|
+
['on_boarder'],
|
|
171
|
+
['termination'],
|
|
172
|
+
['litige'],
|
|
173
|
+
['facturation'],
|
|
174
|
+
],
|
|
153
175
|
},
|
|
154
176
|
{
|
|
155
177
|
text: 'Facturation en cours',
|
|
@@ -201,14 +223,14 @@ export const BalanceSheetDetails = [
|
|
|
201
223
|
forRoles: [['front_office'], ['expert']],
|
|
202
224
|
},
|
|
203
225
|
{
|
|
204
|
-
text:
|
|
226
|
+
text: "Accepté SIE en l'état",
|
|
205
227
|
value: BalanceSheetState.ACCEPTED_BY_SIE_IN_STATE,
|
|
206
228
|
color: 'green darken-3',
|
|
207
229
|
colorText: 'green--text',
|
|
208
230
|
forRoles: [['front_office'], ['expert']],
|
|
209
231
|
},
|
|
210
232
|
{
|
|
211
|
-
text:
|
|
233
|
+
text: "Refus d'établir",
|
|
212
234
|
value: BalanceSheetState.ESTABLISH_REFUSED,
|
|
213
235
|
color: 'orange darken-1',
|
|
214
236
|
colorText: 'orange--text text--darken-1',
|
|
@@ -266,7 +288,7 @@ export const BALANCE_SHEET_LIST_ACTIVE = [
|
|
|
266
288
|
isSubcategory: true,
|
|
267
289
|
fields: [
|
|
268
290
|
{
|
|
269
|
-
name:
|
|
291
|
+
name: "Frais d'établissement",
|
|
270
292
|
accounts: ['201'],
|
|
271
293
|
accountsDeducted: ['2801'],
|
|
272
294
|
total: 0,
|
|
@@ -355,7 +377,7 @@ export const BALANCE_SHEET_LIST_ACTIVE = [
|
|
|
355
377
|
accountsDeducted: ['2967', '2968'],
|
|
356
378
|
},
|
|
357
379
|
{
|
|
358
|
-
name:
|
|
380
|
+
name: "Titres immobilisés de l'activité de portefeuille",
|
|
359
381
|
accounts: ['273'],
|
|
360
382
|
accountsDeducted: ['2973'],
|
|
361
383
|
},
|
|
@@ -441,7 +463,36 @@ export const BALANCE_SHEET_LIST_ACTIVE = [
|
|
|
441
463
|
{
|
|
442
464
|
// autres = lorsque les fournisseurs te doivent de l'argent = somme débit > crédit
|
|
443
465
|
name: 'Autres',
|
|
444
|
-
accounts: [
|
|
466
|
+
accounts: [
|
|
467
|
+
'401',
|
|
468
|
+
'408',
|
|
469
|
+
'4096',
|
|
470
|
+
'4097',
|
|
471
|
+
'4098',
|
|
472
|
+
'42',
|
|
473
|
+
'43',
|
|
474
|
+
'44',
|
|
475
|
+
'451',
|
|
476
|
+
'452',
|
|
477
|
+
'453',
|
|
478
|
+
'454',
|
|
479
|
+
'455',
|
|
480
|
+
'4561',
|
|
481
|
+
'4563',
|
|
482
|
+
'4564',
|
|
483
|
+
'4565',
|
|
484
|
+
'4566',
|
|
485
|
+
'4567',
|
|
486
|
+
'4568',
|
|
487
|
+
'4569',
|
|
488
|
+
'457',
|
|
489
|
+
'458',
|
|
490
|
+
'459',
|
|
491
|
+
'46',
|
|
492
|
+
'471',
|
|
493
|
+
'472',
|
|
494
|
+
'481',
|
|
495
|
+
],
|
|
445
496
|
idThirdPartyTypeToAdd: [ThirdPartyType.PROVIDER, MathematicalSign.PLUS],
|
|
446
497
|
accountsDeducted: ['495', '496'], // Actif : On compte dedans que ceux qui sont positifs que 4
|
|
447
498
|
type: 'active',
|
|
@@ -482,7 +533,7 @@ export const BALANCE_SHEET_LIST_ACTIVE = [
|
|
|
482
533
|
type: 'active',
|
|
483
534
|
},
|
|
484
535
|
{
|
|
485
|
-
name:
|
|
536
|
+
name: "Charges constatées d'avance",
|
|
486
537
|
key: 'establishedInAdvance',
|
|
487
538
|
accounts: ['486'],
|
|
488
539
|
},
|
|
@@ -527,7 +578,16 @@ export const BALANCE_SHEET_LIST_ACTIVE = [
|
|
|
527
578
|
total: 0,
|
|
528
579
|
totalDeducted: 0,
|
|
529
580
|
calculation: true,
|
|
530
|
-
calculationAdd: [
|
|
581
|
+
calculationAdd: [
|
|
582
|
+
'fixedAsset',
|
|
583
|
+
'subscribedCapital',
|
|
584
|
+
'circulatingActive',
|
|
585
|
+
'total3',
|
|
586
|
+
'total4',
|
|
587
|
+
'total3',
|
|
588
|
+
'total4',
|
|
589
|
+
'total5',
|
|
590
|
+
],
|
|
531
591
|
isTotal: true,
|
|
532
592
|
},
|
|
533
593
|
];
|
|
@@ -540,7 +600,7 @@ export const BALANCE_SHEET_LIST_PASSIVE = [
|
|
|
540
600
|
total: 0,
|
|
541
601
|
},
|
|
542
602
|
{
|
|
543
|
-
name:
|
|
603
|
+
name: "Primes d'émission, de fusion, d'apport",
|
|
544
604
|
key: 'issuePremiums',
|
|
545
605
|
accounts: ['104'],
|
|
546
606
|
isSubcategory: true,
|
|
@@ -554,7 +614,7 @@ export const BALANCE_SHEET_LIST_PASSIVE = [
|
|
|
554
614
|
total: 0,
|
|
555
615
|
},
|
|
556
616
|
{
|
|
557
|
-
name:
|
|
617
|
+
name: "Ecart d'équivalence",
|
|
558
618
|
key: 'equivalenceGap',
|
|
559
619
|
accounts: ['107'],
|
|
560
620
|
isSubcategory: true,
|
|
@@ -594,14 +654,14 @@ export const BALANCE_SHEET_LIST_PASSIVE = [
|
|
|
594
654
|
total: 0,
|
|
595
655
|
},
|
|
596
656
|
{
|
|
597
|
-
name:
|
|
657
|
+
name: "Résultat de l'exercice (bénéfice ou perte)",
|
|
598
658
|
key: 'resultExercice',
|
|
599
659
|
accounts: ['12'], // comptes 6 - 7
|
|
600
660
|
isSubcategory: true,
|
|
601
661
|
total: 0,
|
|
602
662
|
},
|
|
603
663
|
{
|
|
604
|
-
name:
|
|
664
|
+
name: "Subventions d'investissement",
|
|
605
665
|
key: 'subsidies',
|
|
606
666
|
accounts: ['13'],
|
|
607
667
|
isSubcategory: true,
|
|
@@ -618,7 +678,17 @@ export const BALANCE_SHEET_LIST_PASSIVE = [
|
|
|
618
678
|
name: 'Total (I)',
|
|
619
679
|
key: 'total1',
|
|
620
680
|
calculation: true,
|
|
621
|
-
calculationAdd: [
|
|
681
|
+
calculationAdd: [
|
|
682
|
+
'subscribedCapital',
|
|
683
|
+
'issuePremiums',
|
|
684
|
+
'equivalenceGap',
|
|
685
|
+
'revaluationGap',
|
|
686
|
+
'reservations',
|
|
687
|
+
'postponement',
|
|
688
|
+
'resultExercice',
|
|
689
|
+
'subsidies',
|
|
690
|
+
'subsidiesRegulated',
|
|
691
|
+
],
|
|
622
692
|
isTotal: true,
|
|
623
693
|
total: 0,
|
|
624
694
|
},
|
|
@@ -739,7 +809,7 @@ export const BALANCE_SHEET_LIST_PASSIVE = [
|
|
|
739
809
|
type: 'passive',
|
|
740
810
|
},
|
|
741
811
|
{
|
|
742
|
-
name:
|
|
812
|
+
name: "Produits constatés d'avance",
|
|
743
813
|
key: 'advanceProducts',
|
|
744
814
|
accounts: ['487', '489'],
|
|
745
815
|
isSubcategory: true,
|
|
@@ -767,7 +837,20 @@ export const BALANCE_SHEET_LIST_PASSIVE = [
|
|
|
767
837
|
key: 'total5',
|
|
768
838
|
total: 0,
|
|
769
839
|
calculation: true,
|
|
770
|
-
calculationAdd: [
|
|
840
|
+
calculationAdd: [
|
|
841
|
+
'subscribedCapital',
|
|
842
|
+
'issuePremiums',
|
|
843
|
+
'equivalenceGap',
|
|
844
|
+
'revaluationGap',
|
|
845
|
+
'reservations',
|
|
846
|
+
'postponement',
|
|
847
|
+
'resultExercice',
|
|
848
|
+
'subsidies',
|
|
849
|
+
'subsidiesRegulated',
|
|
850
|
+
'provisions',
|
|
851
|
+
'debts',
|
|
852
|
+
'total4',
|
|
853
|
+
],
|
|
771
854
|
isTotal: true,
|
|
772
855
|
},
|
|
773
856
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BalanceSheet.js","sourceRoot":"","sources":["../../../../ts/types/Enum/BalanceSheet.ts"],"names":[],"mappings":"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","sourcesContent":["import { ThirdPartyType } from './ThirdPartyType';\nimport { MathematicalSign } from './Util';\n\nexport enum BalanceSheetState {\n TO_DO = 0,\n ACCEPTED_BY_SIE = 1,\n NOT_SUBJECT_TO = 2,\n SENDED_TO_CLIENT = 3,\n SENDED_TO_SIE = 4,\n WAITING_CLIENT = 5,\n TO_SUPERVISE = 6,\n ACCEPTED_BY_CLIENT = 7,\n IN_PRODUCING = 8,\n TO_SEND = 9,\n TO_REVISE = 10,\n TO_CORRECT = 11,\n REFUSED_BY_SIE = 12,\n SENDED_PROVISIONALLY_TO_SIE = 13,\n UNPAID = 14,\n INVOICING_ACCEPTED = 15,\n INVOICING_IN_PROGRESS = 16,\n INVOICING_REFUSED = 17,\n REFUSED_BY_CLIENT = 18,\n ACCEPTED_BY_CLIENT_DEFAULT = 19,\n ACCEPTED_BY_SIE_DEFAULT = 20,\n SENDED_TO_SIE_DEFAULT = 21,\n REFUSED_BY_SIE_DEFAULT = 22,\n FIX_IN_PROGRESS = 23,\n ACCEPTED_BY_SIE_IN_STATE = 24,\n SENDING_QUESTIONNAIRE = 25,\n COMPLETE_QUESTIONNAIRE = 26,\n PROCESSING_ITEMS_IN_PROGRESS = 27,\n ABANDONED_FORECAST = 28,\n ESTABLISH_REFUSED = 29,\n}\n\nexport const BalanceSheetDetails = [\n {\n value: BalanceSheetState.TO_DO,\n text: 'À faire',\n color: 'grey',\n textColor: 'grey--text',\n forRoles: [['front_office'], ['expert'], ['customer_success'], ['on_boarder'], ['termination'], ['litige'], ['facturation']],\n },\n {\n text: 'En cours de prod.',\n value: BalanceSheetState.IN_PRODUCING,\n alias: 'ENC',\n color: 'grey',\n textColor: 'grey--text ',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Att. retour client',\n value: BalanceSheetState.WAITING_CLIENT,\n alias: 'ARC',\n color: 'cyan',\n textColor: 'cyan--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'À réviser',\n value: BalanceSheetState.TO_REVISE,\n color: 'purple lighten-2',\n textColor: 'purple--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'À revoir',\n value: BalanceSheetState.TO_CORRECT,\n icon: 'close',\n color: 'red lighten-2',\n textColor: 'red--text red--lighten-3',\n forRoles: [['front_office', 'manager'], ['front_office_express', 'manager'], ['expert']],\n },\n {\n text: 'À superviser',\n value: BalanceSheetState.TO_SUPERVISE,\n color: 'teal',\n textColor: 'teal--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'À envoyer au client',\n value: BalanceSheetState.TO_SEND,\n color: 'blue lighten-3',\n textColor: 'blue--text text--lighten-3',\n forRoles: [['expert'], ['facturation']],\n },\n {\n text: 'Envoyé au client',\n value: BalanceSheetState.SENDED_TO_CLIENT,\n color: 'blue',\n textColor: 'blue--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Accepté par le client',\n value: BalanceSheetState.ACCEPTED_BY_CLIENT,\n color: 'blue darken-2',\n textColor: 'blue--text ',\n alias: 'APC',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Refusé par le client',\n value: BalanceSheetState.REFUSED_BY_CLIENT,\n color: 'red darken-3',\n textColor: 'error--text text--darken-2',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Envoyé au SIE',\n value: BalanceSheetState.SENDED_TO_SIE,\n color: 'blue darken-4',\n textColor: 'blue--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n value: BalanceSheetState.ACCEPTED_BY_SIE,\n text: 'Accepté au SIE',\n color: 'green darken-1',\n textColor: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Refus SIE',\n value: BalanceSheetState.REFUSED_BY_SIE,\n color: 'red darken-3',\n textColor: 'green--text ',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Envoi provisoire SIE',\n value: BalanceSheetState.SENDED_PROVISIONALLY_TO_SIE,\n color: 'green darken-4',\n textColor: 'green--text ',\n forRoles: [['front_office'], ['expert']],\n },\n {\n value: BalanceSheetState.NOT_SUBJECT_TO,\n text: 'N/A',\n color: 'grey lighten-2',\n textColor: 'grey--text',\n forRoles: [['customer_success', 'manager'], ['on_boarder', 'manager'], ['termination', 'manager'], ['litige', 'manager'], ['facturation', 'manager']],\n },\n {\n text: 'Impayé',\n value: BalanceSheetState.UNPAID,\n color: 'error darken-2',\n textColor: 'error--text text--darken-2',\n key: 'unpaid',\n forRoles: [['front_office', 'manager'], ['front_office_express', 'manager'], ['customer_success'], ['on_boarder'], ['termination'], ['litige'], ['facturation']],\n },\n {\n text: 'Facturation en cours',\n value: BalanceSheetState.INVOICING_IN_PROGRESS,\n color: 'blue lighten-3',\n textColor: 'blue--text text--lighten-3',\n forRoles: [['facturation']],\n },\n {\n text: 'Revalorisation Refusée',\n value: BalanceSheetState.INVOICING_REFUSED,\n color: 'error darken-2',\n textColor: 'error--text text--darken-2',\n forRoles: [['facturation']],\n },\n {\n text: 'Accepté client par défaut',\n value: BalanceSheetState.ACCEPTED_BY_CLIENT_DEFAULT,\n color: 'green darken-2',\n textColor: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Accepté SIE par défaut',\n value: BalanceSheetState.ACCEPTED_BY_SIE_DEFAULT,\n color: 'green darken-2',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Envoyé SIE par défaut',\n value: BalanceSheetState.SENDED_TO_SIE_DEFAULT,\n color: 'blue lighten-3',\n textColor: 'blue--text text--lighten-3',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Refus SIE par défaut',\n value: BalanceSheetState.REFUSED_BY_SIE_DEFAULT,\n color: 'error darken-2',\n colorText: 'error--text text--darken-2',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Correctif en cours',\n value: BalanceSheetState.FIX_IN_PROGRESS,\n color: 'blue darken-4',\n textColor: 'blue--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Accepté SIE en l\\'état',\n value: BalanceSheetState.ACCEPTED_BY_SIE_IN_STATE,\n color: 'green darken-3',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Refus d\\'établir',\n value: BalanceSheetState.ESTABLISH_REFUSED,\n color: 'orange darken-1',\n colorText: 'orange--text text--darken-1',\n forRoles: [['super_admin'], ['controle_interne']],\n },\n] as const;\n\nexport const ForecastBalanceSheetDetails = [\n {\n text: 'Envoi du questionnaire',\n value: BalanceSheetState.SENDING_QUESTIONNAIRE,\n color: 'green darken-3',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Questionnaire complet',\n value: BalanceSheetState.COMPLETE_QUESTIONNAIRE,\n color: 'green darken-3',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Traitement éléments en cours',\n value: BalanceSheetState.PROCESSING_ITEMS_IN_PROGRESS,\n color: 'green darken-3',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Prévisionnel abandonné',\n value: BalanceSheetState.ABANDONED_FORECAST,\n color: 'green darken-3',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n];\n\nexport type BalanceSheetType = 'active' | 'passive';\n\nexport type BalanceSheetField = {\n name: string;\n key?: string;\n fields?: BalanceSheetField[];\n\n total?: number;\n totalDeducted?: number;\n\n accounts?: string[];\n accountsDeducted?: string[]; // Liste des comptes pour la colonne \"Amortissements et provisions\"\n\n accountsForceToDeduce?: string[]; // Liste des comptes qui doivent être déduit par rapport aux autres comptes\n totalValueToDeduce?: number; // Liste des comptes qui doivent être déduit par rapport aux autres comptes\n\n isCategory?: boolean; // Ne calcule pas le total, affiché en gras sur le PDF\n isSubcategory?: boolean; // Ne calcule pas de montant\n isTotal?: boolean; // Affiche le total, affiché comme une catégorie\n\n calculation?: boolean; // Doit être calculé avec calculationAdd & calculationSubtract\n calculationAdd?: string[]; // Tableau des keys à additionner pour obtenir le total\n\n type?: BalanceSheetType; // Permet de calculer par somme de compte, créditeur ou débiteur\n idThirdPartyTypeToAdd?: [ThirdPartyType, MathematicalSign] // Type de tiers à additionner, uniquement au crédit / débit / tous\n};\n\nexport type BalanceSheetList = BalanceSheetField[];\n\nexport const BALANCE_SHEET_LIST_ACTIVE: BalanceSheetList = [\n {\n name: 'Capital souscrit - non appelé',\n key: 'subscribedCapital',\n accounts: ['109'],\n isSubcategory: true,\n total: 0,\n totalDeducted: 0,\n },\n {\n name: 'Actif immobilisé',\n key: 'fixedAsset',\n total: 0,\n totalDeducted: 0,\n isCategory: true,\n fields: [\n {\n name: 'Immobilisations incorporelles',\n isSubcategory: true,\n fields: [\n {\n name: 'Frais d\\'établissement',\n accounts: ['201'],\n accountsDeducted: ['2801'],\n total: 0,\n totalDeducted: 0,\n },\n {\n name: 'Frais de recherche et de développement',\n accounts: ['203'],\n accountsDeducted: ['2803'],\n },\n {\n name: 'Concessions, brevets, licences, marques, procédés, logiciels, droits et valeurs similaires',\n accounts: ['205'],\n accountsDeducted: ['2805', '2905'],\n },\n {\n name: 'Fonds commercial',\n accounts: ['206', '207'],\n accountsDeducted: ['2806', '2807', '2906', '2907'],\n },\n {\n name: 'Autres',\n accounts: ['200', '208'],\n accountsDeducted: ['2808', '2908'],\n },\n {\n name: 'Immobilisations incorporelles en cours',\n accounts: ['232'],\n accountsDeducted: ['2932'],\n },\n {\n name: 'Avances et acomptes',\n accounts: ['237'],\n },\n ],\n },\n {\n name: 'Immobilisations corporelles',\n key: 'tangibleFixedAssets',\n isSubcategory: true,\n fields: [\n {\n name: 'Terrains',\n accounts: ['211', '212'],\n accountsDeducted: ['2811', '2812', '2911'],\n },\n {\n name: 'Constructions',\n accounts: ['213', '214'],\n accountsDeducted: ['2813', '2814'],\n },\n {\n name: 'Installations techniques, matériels, et outillage industriels',\n accounts: ['215'],\n accountsDeducted: ['2815'],\n },\n {\n name: 'Autres',\n accounts: ['218', '22'],\n accountsDeducted: ['2818', '282', '292'],\n },\n {\n name: 'Immobilisations corporelles en cours',\n accounts: ['231'],\n accountsDeducted: ['2931'],\n },\n {\n name: 'Avances et acomptes',\n accounts: ['238'],\n },\n ],\n },\n {\n name: 'Immobilisations financières',\n key: 'financialFixedAssets',\n isSubcategory: true,\n fields: [\n {\n name: 'Participations',\n accounts: ['261', '266'],\n accountsDeducted: ['2691', '2966'],\n },\n {\n name: 'Créances rattachées à des participations',\n accounts: ['267', '268'],\n accountsDeducted: ['2967', '2968'],\n },\n {\n name: 'Titres immobilisés de l\\'activité de portefeuille',\n accounts: ['273'],\n accountsDeducted: ['2973'],\n },\n {\n name: 'Autres titres immobilisés',\n accounts: ['271', '272'],\n accountsDeducted: ['2971', '2972'],\n },\n {\n name: 'Prêts',\n accounts: ['274'],\n accountsDeducted: ['2974'],\n },\n {\n name: 'Autres',\n accounts: ['236', '275', '276', '277'],\n accountsDeducted: ['2975', '2976'],\n },\n ],\n },\n ],\n },\n {\n name: 'Total (I)',\n key: 'total1',\n total: 0,\n totalDeducted: 0,\n calculation: true,\n calculationAdd: ['fixedAsset'],\n isTotal: true,\n },\n {\n name: 'Actif circulant',\n key: 'circulatingActive',\n total: 0,\n totalDeducted: 0,\n isCategory: true,\n fields: [\n {\n name: 'Stocks et en-cours',\n isSubcategory: true,\n fields: [\n {\n name: 'Matières premières et autres approvisionnements',\n accounts: ['31', '32'],\n accountsDeducted: ['391', '392'],\n },\n {\n name: 'En cours de production (biens et services)',\n accounts: ['33', '34'],\n accountsDeducted: ['393', '394'],\n },\n {\n name: 'Produits intermédiaires et finis',\n accounts: ['35', '36'],\n accountsDeducted: ['395', '396'],\n },\n {\n name: 'Marchandises',\n accounts: ['37'],\n accountsDeducted: ['397'],\n },\n ],\n },\n {\n name: 'Avances et acomptes versés sur commandes',\n key: 'advancesAndDeposits',\n accounts: ['4091'],\n },\n {\n name: 'Créances',\n key: 'financialFixedAssets',\n isSubcategory: true,\n fields: [\n {\n // créance client = lorsque les clients te doivent de l'argent = somme débit > crédit\n name: 'Créances clients et comptes rattachés',\n accounts: ['411', '413', '416', '418'],\n idThirdPartyTypeToAdd: [ThirdPartyType.CUSTOMER, MathematicalSign.PLUS],\n accountsDeducted: ['491'],\n type: 'active',\n },\n {\n // autres = lorsque les fournisseurs te doivent de l'argent = somme débit > crédit\n name: 'Autres',\n accounts: ['401', '408', '4096', '4097', '4098', '42', '43', '44', '451', '452', '453', '454', '455', '4561', '4563', '4564', '4565', '4566', '4567', '4568', '4569', '457', '458', '459', '46', '471', '472', '481'],\n idThirdPartyTypeToAdd: [ThirdPartyType.PROVIDER, MathematicalSign.PLUS],\n accountsDeducted: ['495', '496'], // Actif : On compte dedans que ceux qui sont positifs que 4\n type: 'active',\n },\n {\n name: 'Capital souscrit - appelé, non versé',\n accounts: ['4562'],\n },\n ],\n },\n {\n name: 'Valeurs mobilières de placement',\n key: 'securities',\n isSubcategory: true,\n fields: [\n {\n name: 'Actions propres',\n accounts: ['502'],\n accountsDeducted: ['5902'],\n },\n {\n name: 'Autres titres',\n accounts: ['503', '504', '505', '506', '507', '508'],\n accountsDeducted: ['5903', '5904', '5905', '5906', '5907', '5908'],\n },\n ],\n },\n {\n name: 'Instruments de trésorerie',\n key: 'treasuryInstruments',\n accounts: ['52'],\n type: 'active',\n },\n {\n name: 'Disponibilités',\n key: 'availabilities',\n accounts: ['511', '512', '514', '515', '516', '517', '5181', '5187', '53', '54', '58'],\n type: 'active',\n },\n {\n name: 'Charges constatées d\\'avance',\n key: 'establishedInAdvance',\n accounts: ['486'],\n },\n ],\n },\n {\n name: 'Total (II)',\n key: 'total2',\n total: 0,\n totalDeducted: 0,\n calculation: true,\n isTotal: true,\n calculationAdd: ['circulatingActive'],\n },\n {\n name: 'Charges à répartir sur plusieurs exercices (III)',\n key: 'total3',\n accounts: ['481'],\n isTotal: true,\n total: 0,\n totalDeducted: 0,\n },\n {\n name: 'Primes de remboursement des emprunts (IV)',\n key: 'total4',\n accounts: ['169'],\n isTotal: true,\n total: 0,\n totalDeducted: 0,\n },\n {\n name: 'Ecarts de conversion Actif (V)',\n key: 'total5',\n total: 0,\n totalDeducted: 0,\n accounts: ['476'],\n isTotal: true,\n },\n {\n name: 'Total général (I+II+III+IV+V)',\n key: 'total6',\n total: 0,\n totalDeducted: 0,\n calculation: true,\n calculationAdd: ['fixedAsset', 'subscribedCapital', 'circulatingActive', 'total3', 'total4', 'total3', 'total4', 'total5'],\n isTotal: true,\n },\n];\n\nexport const BALANCE_SHEET_LIST_PASSIVE: BalanceSheetList = [\n {\n name: 'Capital (dont versé...)',\n key: 'subscribedCapital',\n accounts: ['101', '108'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Primes d\\'émission, de fusion, d\\'apport',\n key: 'issuePremiums',\n accounts: ['104'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Ecart de réévaluation',\n key: 'revaluationGap',\n accounts: ['105'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Ecart d\\'équivalence',\n key: 'equivalenceGap',\n accounts: ['107'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Réserves',\n key: 'reservations',\n total: 0,\n isCategory: true,\n fields: [\n {\n name: 'Réserve légale',\n accounts: ['1061'],\n total: 0,\n totalDeducted: 0,\n },\n {\n name: 'Réserves statutaires ou contractuelles',\n accounts: ['1063'],\n },\n {\n name: 'Réserves réglementées',\n accounts: ['1062', '1064'],\n },\n {\n name: 'Autres',\n accounts: ['1068'],\n },\n ],\n },\n {\n name: 'Report à nouveau',\n key: 'postponement',\n accounts: ['11', '12'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Résultat de l\\'exercice (bénéfice ou perte)',\n key: 'resultExercice',\n accounts: ['12'], // comptes 6 - 7\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Subventions d\\'investissement',\n key: 'subsidies',\n accounts: ['13'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Provisions réglementées',\n key: 'subsidiesRegulated',\n accounts: ['14'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Total (I)',\n key: 'total1',\n calculation: true,\n calculationAdd: ['subscribedCapital', 'issuePremiums', 'equivalenceGap', 'revaluationGap', 'reservations', 'postponement', 'resultExercice', 'subsidies', 'subsidiesRegulated'],\n isTotal: true,\n total: 0,\n },\n {\n name: 'Provisions pour risques et charges',\n key: 'provisions',\n isCategory: true,\n fields: [\n {\n name: 'Provisions pour risques',\n accounts: ['151'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Provisions pour charges',\n accounts: ['153', '155', '156', '157', '158'],\n isSubcategory: true,\n total: 0,\n },\n ],\n },\n {\n name: 'Total (II)',\n key: 'total2',\n total: 0,\n calculation: true,\n calculationAdd: ['provisions'],\n isTotal: true,\n },\n {\n name: 'Dettes',\n isCategory: true,\n key: 'debts',\n fields: [\n {\n name: 'Emprunts obligataires convertibles',\n key: 'convertibleBonds',\n accounts: ['161', '16881'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Autres emprunts obligataires',\n key: 'convertibleBonds',\n accounts: ['163', '16883'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Emprunts et dettes auprès établissements de crédits (1)',\n key: 'loansCredits',\n accounts: ['164', '512', '514', '517', '5186', '519', '53', '58'], // Ben.P. 10/12/24 suppression 16884 car déjà pris en dessous\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Emprunts et dettes financières diverses (2)',\n key: 'loans',\n // accounts: ['165', '166', '167', '168', '16885', '16886', '16887', '16888', '17', '426', '451', '455', '4563', '4564', '4567', '457', '458'],\n accounts: ['165', '166', '167', '168', '17', '426', '451', '455', '4563', '4564', '4567', '457', '458'],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Avances et acomptes reçues sur commandes en cours',\n key: 'advancesAndDeposits',\n accounts: ['4191'],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Dettes Fournisseurs et Comptes rattachés',\n key: 'payables',\n accounts: ['401', '403', '4081', '4083', '4088'],\n // PASSIF dette fournisseurs = lorsque l'entreprise doit de l'argent au fournisseurs = somme crédit > débit\n idThirdPartyTypeToAdd: [ThirdPartyType.PROVIDER, MathematicalSign.LESS],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Dettes fiscales et sociales',\n key: 'taxDebts',\n accounts: ['42', '43', '44'],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Dettes sur immobilisations et Comptes rattachés',\n key: 'immobilizationDebts',\n accounts: ['269', '279', '404', '405', '4084'],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Autres dettes',\n key: 'OtherDebts',\n accounts: ['411', '418', '4196', '4197', '464', '467', '4686', '471', '472', '478', '509'],\n accountsForceToDeduce: ['4198'],\n // PASSIF Autres = lorsque l'entreprise doit de l'argent au client = somme débit > crédit (modifié)\n idThirdPartyTypeToAdd: [ThirdPartyType.CUSTOMER, MathematicalSign.LESS],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Instruments de trésorerie',\n key: 'treasuryInstruments',\n accounts: ['52'],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Produits constatés d\\'avance',\n key: 'advanceProducts',\n accounts: ['487', '489'],\n isSubcategory: true,\n total: 0,\n },\n ],\n },\n {\n name: 'Total (III)',\n key: 'total3',\n total: 0,\n calculation: true,\n calculationAdd: ['debts'],\n isTotal: true,\n },\n {\n name: 'Ecarts de conversion passif (IV)',\n key: 'total4',\n total: 0,\n accounts: ['477'],\n isTotal: true,\n },\n {\n name: 'Total général (I+II+III+IV)',\n key: 'total5',\n total: 0,\n calculation: true,\n calculationAdd: ['subscribedCapital', 'issuePremiums', 'equivalenceGap', 'revaluationGap', 'reservations', 'postponement', 'resultExercice', 'subsidies', 'subsidiesRegulated', 'provisions', 'debts', 'total4'],\n isTotal: true,\n },\n];\n\nexport const BALANCE_SHEET_LIST_PASSIVE_DETAILS: BalanceSheetField[] = [\n {\n name: '(1) Dont concours bancaires courants et soldes créditeurs de banques',\n accounts: ['51'],\n total: 0,\n type: 'passive',\n },\n {\n name: '(2) Dont emprunts participatifs',\n accounts: ['1675'],\n total: 0,\n type: 'passive',\n },\n];\n\nexport const balanceSheetTotalRanges = [\n {\n id: 1,\n label: '< 80k €',\n lowValue: 0,\n highValue: 80000,\n },\n {\n id: 2,\n label: '81k - 160k €',\n lowValue: 80000,\n highValue: 160000,\n },\n {\n id: 3,\n label: '161k - 250k €',\n lowValue: 160000,\n highValue: 250000,\n },\n {\n id: 4,\n label: '> 251k €',\n lowValue: 250000,\n highValue: 10000000,\n },\n] as const;"]}
|
|
1
|
+
{"version":3,"file":"BalanceSheet.js","sourceRoot":"","sources":["../../../../ts/types/Enum/BalanceSheet.ts"],"names":[],"mappings":"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","sourcesContent":["import { ThirdPartyType } from './ThirdPartyType';\nimport { MathematicalSign } from './Util';\n\nexport enum BalanceSheetState {\n TO_DO = 0,\n ACCEPTED_BY_SIE = 1,\n NOT_SUBJECT_TO = 2,\n SENDED_TO_CLIENT = 3,\n SENDED_TO_SIE = 4,\n WAITING_CLIENT = 5,\n TO_SUPERVISE = 6,\n ACCEPTED_BY_CLIENT = 7,\n IN_PRODUCING = 8,\n TO_SEND = 9,\n TO_REVISE = 10,\n TO_CORRECT = 11,\n REFUSED_BY_SIE = 12,\n SENDED_PROVISIONALLY_TO_SIE = 13,\n UNPAID = 14,\n INVOICING_ACCEPTED = 15,\n INVOICING_IN_PROGRESS = 16,\n INVOICING_REFUSED = 17,\n REFUSED_BY_CLIENT = 18,\n ACCEPTED_BY_CLIENT_DEFAULT = 19,\n ACCEPTED_BY_SIE_DEFAULT = 20,\n SENDED_TO_SIE_DEFAULT = 21,\n REFUSED_BY_SIE_DEFAULT = 22,\n FIX_IN_PROGRESS = 23,\n ACCEPTED_BY_SIE_IN_STATE = 24,\n SENDING_QUESTIONNAIRE = 25,\n COMPLETE_QUESTIONNAIRE = 26,\n PROCESSING_ITEMS_IN_PROGRESS = 27,\n ABANDONED_FORECAST = 28,\n ESTABLISH_REFUSED = 29,\n}\n\nexport const BalanceSheetDetails = [\n {\n value: BalanceSheetState.TO_DO,\n text: 'À faire',\n color: 'grey',\n textColor: 'grey--text',\n forRoles: [\n ['front_office'],\n ['expert'],\n ['customer_success'],\n ['on_boarder'],\n ['termination'],\n ['litige'],\n ['facturation'],\n ],\n },\n {\n text: 'En cours de prod.',\n value: BalanceSheetState.IN_PRODUCING,\n alias: 'ENC',\n color: 'grey',\n textColor: 'grey--text ',\n forRoles: [['front_office'], ['expert'], ['customer_success']],\n },\n {\n text: 'Att. retour client',\n value: BalanceSheetState.WAITING_CLIENT,\n alias: 'ARC',\n color: 'cyan',\n textColor: 'cyan--text',\n forRoles: [['front_office'], ['expert'], ['customer_success']],\n },\n {\n text: 'À réviser',\n value: BalanceSheetState.TO_REVISE,\n color: 'purple lighten-2',\n textColor: 'purple--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'À revoir',\n value: BalanceSheetState.TO_CORRECT,\n icon: 'close',\n color: 'red lighten-2',\n textColor: 'red--text red--lighten-3',\n forRoles: [['front_office', 'manager'], ['front_office_express', 'manager'], ['expert']],\n },\n {\n text: 'À superviser',\n value: BalanceSheetState.TO_SUPERVISE,\n color: 'teal',\n textColor: 'teal--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'À envoyer au client',\n value: BalanceSheetState.TO_SEND,\n color: 'blue lighten-3',\n textColor: 'blue--text text--lighten-3',\n forRoles: [['expert'], ['facturation']],\n },\n {\n text: 'Envoyé au client',\n value: BalanceSheetState.SENDED_TO_CLIENT,\n color: 'blue',\n textColor: 'blue--text',\n forRoles: [['front_office'], ['expert'], ['customer_success']],\n },\n {\n text: 'Accepté par le client',\n value: BalanceSheetState.ACCEPTED_BY_CLIENT,\n color: 'blue darken-2',\n textColor: 'blue--text ',\n alias: 'APC',\n forRoles: [['front_office'], ['expert'], ['customer_success']],\n },\n {\n text: 'Refusé par le client',\n value: BalanceSheetState.REFUSED_BY_CLIENT,\n color: 'red darken-3',\n textColor: 'error--text text--darken-2',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Envoyé au SIE',\n value: BalanceSheetState.SENDED_TO_SIE,\n color: 'blue darken-4',\n textColor: 'blue--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n value: BalanceSheetState.ACCEPTED_BY_SIE,\n text: 'Accepté au SIE',\n color: 'green darken-1',\n textColor: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Refus SIE',\n value: BalanceSheetState.REFUSED_BY_SIE,\n color: 'red darken-3',\n textColor: 'green--text ',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Envoi provisoire SIE',\n value: BalanceSheetState.SENDED_PROVISIONALLY_TO_SIE,\n color: 'green darken-4',\n textColor: 'green--text ',\n forRoles: [['front_office'], ['expert']],\n },\n {\n value: BalanceSheetState.NOT_SUBJECT_TO,\n text: 'N/A',\n color: 'grey lighten-2',\n textColor: 'grey--text',\n forRoles: [\n ['customer_success', 'manager'],\n ['on_boarder', 'manager'],\n ['termination', 'manager'],\n ['litige', 'manager'],\n ['facturation', 'manager'],\n ],\n },\n {\n text: 'Impayé',\n value: BalanceSheetState.UNPAID,\n color: 'error darken-2',\n textColor: 'error--text text--darken-2',\n key: 'unpaid',\n forRoles: [\n ['front_office', 'manager'],\n ['front_office_express', 'manager'],\n ['customer_success'],\n ['on_boarder'],\n ['termination'],\n ['litige'],\n ['facturation'],\n ],\n },\n {\n text: 'Facturation en cours',\n value: BalanceSheetState.INVOICING_IN_PROGRESS,\n color: 'blue lighten-3',\n textColor: 'blue--text text--lighten-3',\n forRoles: [['facturation']],\n },\n {\n text: 'Revalorisation Refusée',\n value: BalanceSheetState.INVOICING_REFUSED,\n color: 'error darken-2',\n textColor: 'error--text text--darken-2',\n forRoles: [['facturation']],\n },\n {\n text: 'Accepté client par défaut',\n value: BalanceSheetState.ACCEPTED_BY_CLIENT_DEFAULT,\n color: 'green darken-2',\n textColor: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Accepté SIE par défaut',\n value: BalanceSheetState.ACCEPTED_BY_SIE_DEFAULT,\n color: 'green darken-2',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Envoyé SIE par défaut',\n value: BalanceSheetState.SENDED_TO_SIE_DEFAULT,\n color: 'blue lighten-3',\n textColor: 'blue--text text--lighten-3',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Refus SIE par défaut',\n value: BalanceSheetState.REFUSED_BY_SIE_DEFAULT,\n color: 'error darken-2',\n colorText: 'error--text text--darken-2',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Correctif en cours',\n value: BalanceSheetState.FIX_IN_PROGRESS,\n color: 'blue darken-4',\n textColor: 'blue--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: \"Accepté SIE en l'état\",\n value: BalanceSheetState.ACCEPTED_BY_SIE_IN_STATE,\n color: 'green darken-3',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: \"Refus d'établir\",\n value: BalanceSheetState.ESTABLISH_REFUSED,\n color: 'orange darken-1',\n colorText: 'orange--text text--darken-1',\n forRoles: [['super_admin'], ['controle_interne']],\n },\n] as const;\n\nexport const ForecastBalanceSheetDetails = [\n {\n text: 'Envoi du questionnaire',\n value: BalanceSheetState.SENDING_QUESTIONNAIRE,\n color: 'green darken-3',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Questionnaire complet',\n value: BalanceSheetState.COMPLETE_QUESTIONNAIRE,\n color: 'green darken-3',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Traitement éléments en cours',\n value: BalanceSheetState.PROCESSING_ITEMS_IN_PROGRESS,\n color: 'green darken-3',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n {\n text: 'Prévisionnel abandonné',\n value: BalanceSheetState.ABANDONED_FORECAST,\n color: 'green darken-3',\n colorText: 'green--text',\n forRoles: [['front_office'], ['expert']],\n },\n];\n\nexport type BalanceSheetType = 'active' | 'passive';\n\nexport type BalanceSheetField = {\n name: string;\n key?: string;\n fields?: BalanceSheetField[];\n\n total?: number;\n totalDeducted?: number;\n\n accounts?: string[];\n accountsDeducted?: string[]; // Liste des comptes pour la colonne \"Amortissements et provisions\"\n\n accountsForceToDeduce?: string[]; // Liste des comptes qui doivent être déduit par rapport aux autres comptes\n totalValueToDeduce?: number; // Liste des comptes qui doivent être déduit par rapport aux autres comptes\n\n isCategory?: boolean; // Ne calcule pas le total, affiché en gras sur le PDF\n isSubcategory?: boolean; // Ne calcule pas de montant\n isTotal?: boolean; // Affiche le total, affiché comme une catégorie\n\n calculation?: boolean; // Doit être calculé avec calculationAdd & calculationSubtract\n calculationAdd?: string[]; // Tableau des keys à additionner pour obtenir le total\n\n type?: BalanceSheetType; // Permet de calculer par somme de compte, créditeur ou débiteur\n idThirdPartyTypeToAdd?: [ThirdPartyType, MathematicalSign]; // Type de tiers à additionner, uniquement au crédit / débit / tous\n};\n\nexport type BalanceSheetList = BalanceSheetField[];\n\nexport const BALANCE_SHEET_LIST_ACTIVE: BalanceSheetList = [\n {\n name: 'Capital souscrit - non appelé',\n key: 'subscribedCapital',\n accounts: ['109'],\n isSubcategory: true,\n total: 0,\n totalDeducted: 0,\n },\n {\n name: 'Actif immobilisé',\n key: 'fixedAsset',\n total: 0,\n totalDeducted: 0,\n isCategory: true,\n fields: [\n {\n name: 'Immobilisations incorporelles',\n isSubcategory: true,\n fields: [\n {\n name: \"Frais d'établissement\",\n accounts: ['201'],\n accountsDeducted: ['2801'],\n total: 0,\n totalDeducted: 0,\n },\n {\n name: 'Frais de recherche et de développement',\n accounts: ['203'],\n accountsDeducted: ['2803'],\n },\n {\n name: 'Concessions, brevets, licences, marques, procédés, logiciels, droits et valeurs similaires',\n accounts: ['205'],\n accountsDeducted: ['2805', '2905'],\n },\n {\n name: 'Fonds commercial',\n accounts: ['206', '207'],\n accountsDeducted: ['2806', '2807', '2906', '2907'],\n },\n {\n name: 'Autres',\n accounts: ['200', '208'],\n accountsDeducted: ['2808', '2908'],\n },\n {\n name: 'Immobilisations incorporelles en cours',\n accounts: ['232'],\n accountsDeducted: ['2932'],\n },\n {\n name: 'Avances et acomptes',\n accounts: ['237'],\n },\n ],\n },\n {\n name: 'Immobilisations corporelles',\n key: 'tangibleFixedAssets',\n isSubcategory: true,\n fields: [\n {\n name: 'Terrains',\n accounts: ['211', '212'],\n accountsDeducted: ['2811', '2812', '2911'],\n },\n {\n name: 'Constructions',\n accounts: ['213', '214'],\n accountsDeducted: ['2813', '2814'],\n },\n {\n name: 'Installations techniques, matériels, et outillage industriels',\n accounts: ['215'],\n accountsDeducted: ['2815'],\n },\n {\n name: 'Autres',\n accounts: ['218', '22'],\n accountsDeducted: ['2818', '282', '292'],\n },\n {\n name: 'Immobilisations corporelles en cours',\n accounts: ['231'],\n accountsDeducted: ['2931'],\n },\n {\n name: 'Avances et acomptes',\n accounts: ['238'],\n },\n ],\n },\n {\n name: 'Immobilisations financières',\n key: 'financialFixedAssets',\n isSubcategory: true,\n fields: [\n {\n name: 'Participations',\n accounts: ['261', '266'],\n accountsDeducted: ['2691', '2966'],\n },\n {\n name: 'Créances rattachées à des participations',\n accounts: ['267', '268'],\n accountsDeducted: ['2967', '2968'],\n },\n {\n name: \"Titres immobilisés de l'activité de portefeuille\",\n accounts: ['273'],\n accountsDeducted: ['2973'],\n },\n {\n name: 'Autres titres immobilisés',\n accounts: ['271', '272'],\n accountsDeducted: ['2971', '2972'],\n },\n {\n name: 'Prêts',\n accounts: ['274'],\n accountsDeducted: ['2974'],\n },\n {\n name: 'Autres',\n accounts: ['236', '275', '276', '277'],\n accountsDeducted: ['2975', '2976'],\n },\n ],\n },\n ],\n },\n {\n name: 'Total (I)',\n key: 'total1',\n total: 0,\n totalDeducted: 0,\n calculation: true,\n calculationAdd: ['fixedAsset'],\n isTotal: true,\n },\n {\n name: 'Actif circulant',\n key: 'circulatingActive',\n total: 0,\n totalDeducted: 0,\n isCategory: true,\n fields: [\n {\n name: 'Stocks et en-cours',\n isSubcategory: true,\n fields: [\n {\n name: 'Matières premières et autres approvisionnements',\n accounts: ['31', '32'],\n accountsDeducted: ['391', '392'],\n },\n {\n name: 'En cours de production (biens et services)',\n accounts: ['33', '34'],\n accountsDeducted: ['393', '394'],\n },\n {\n name: 'Produits intermédiaires et finis',\n accounts: ['35', '36'],\n accountsDeducted: ['395', '396'],\n },\n {\n name: 'Marchandises',\n accounts: ['37'],\n accountsDeducted: ['397'],\n },\n ],\n },\n {\n name: 'Avances et acomptes versés sur commandes',\n key: 'advancesAndDeposits',\n accounts: ['4091'],\n },\n {\n name: 'Créances',\n key: 'financialFixedAssets',\n isSubcategory: true,\n fields: [\n {\n // créance client = lorsque les clients te doivent de l'argent = somme débit > crédit\n name: 'Créances clients et comptes rattachés',\n accounts: ['411', '413', '416', '418'],\n idThirdPartyTypeToAdd: [ThirdPartyType.CUSTOMER, MathematicalSign.PLUS],\n accountsDeducted: ['491'],\n type: 'active',\n },\n {\n // autres = lorsque les fournisseurs te doivent de l'argent = somme débit > crédit\n name: 'Autres',\n accounts: [\n '401',\n '408',\n '4096',\n '4097',\n '4098',\n '42',\n '43',\n '44',\n '451',\n '452',\n '453',\n '454',\n '455',\n '4561',\n '4563',\n '4564',\n '4565',\n '4566',\n '4567',\n '4568',\n '4569',\n '457',\n '458',\n '459',\n '46',\n '471',\n '472',\n '481',\n ],\n idThirdPartyTypeToAdd: [ThirdPartyType.PROVIDER, MathematicalSign.PLUS],\n accountsDeducted: ['495', '496'], // Actif : On compte dedans que ceux qui sont positifs que 4\n type: 'active',\n },\n {\n name: 'Capital souscrit - appelé, non versé',\n accounts: ['4562'],\n },\n ],\n },\n {\n name: 'Valeurs mobilières de placement',\n key: 'securities',\n isSubcategory: true,\n fields: [\n {\n name: 'Actions propres',\n accounts: ['502'],\n accountsDeducted: ['5902'],\n },\n {\n name: 'Autres titres',\n accounts: ['503', '504', '505', '506', '507', '508'],\n accountsDeducted: ['5903', '5904', '5905', '5906', '5907', '5908'],\n },\n ],\n },\n {\n name: 'Instruments de trésorerie',\n key: 'treasuryInstruments',\n accounts: ['52'],\n type: 'active',\n },\n {\n name: 'Disponibilités',\n key: 'availabilities',\n accounts: ['511', '512', '514', '515', '516', '517', '5181', '5187', '53', '54', '58'],\n type: 'active',\n },\n {\n name: \"Charges constatées d'avance\",\n key: 'establishedInAdvance',\n accounts: ['486'],\n },\n ],\n },\n {\n name: 'Total (II)',\n key: 'total2',\n total: 0,\n totalDeducted: 0,\n calculation: true,\n isTotal: true,\n calculationAdd: ['circulatingActive'],\n },\n {\n name: 'Charges à répartir sur plusieurs exercices (III)',\n key: 'total3',\n accounts: ['481'],\n isTotal: true,\n total: 0,\n totalDeducted: 0,\n },\n {\n name: 'Primes de remboursement des emprunts (IV)',\n key: 'total4',\n accounts: ['169'],\n isTotal: true,\n total: 0,\n totalDeducted: 0,\n },\n {\n name: 'Ecarts de conversion Actif (V)',\n key: 'total5',\n total: 0,\n totalDeducted: 0,\n accounts: ['476'],\n isTotal: true,\n },\n {\n name: 'Total général (I+II+III+IV+V)',\n key: 'total6',\n total: 0,\n totalDeducted: 0,\n calculation: true,\n calculationAdd: [\n 'fixedAsset',\n 'subscribedCapital',\n 'circulatingActive',\n 'total3',\n 'total4',\n 'total3',\n 'total4',\n 'total5',\n ],\n isTotal: true,\n },\n];\n\nexport const BALANCE_SHEET_LIST_PASSIVE: BalanceSheetList = [\n {\n name: 'Capital (dont versé...)',\n key: 'subscribedCapital',\n accounts: ['101', '108'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: \"Primes d'émission, de fusion, d'apport\",\n key: 'issuePremiums',\n accounts: ['104'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Ecart de réévaluation',\n key: 'revaluationGap',\n accounts: ['105'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: \"Ecart d'équivalence\",\n key: 'equivalenceGap',\n accounts: ['107'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Réserves',\n key: 'reservations',\n total: 0,\n isCategory: true,\n fields: [\n {\n name: 'Réserve légale',\n accounts: ['1061'],\n total: 0,\n totalDeducted: 0,\n },\n {\n name: 'Réserves statutaires ou contractuelles',\n accounts: ['1063'],\n },\n {\n name: 'Réserves réglementées',\n accounts: ['1062', '1064'],\n },\n {\n name: 'Autres',\n accounts: ['1068'],\n },\n ],\n },\n {\n name: 'Report à nouveau',\n key: 'postponement',\n accounts: ['11', '12'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: \"Résultat de l'exercice (bénéfice ou perte)\",\n key: 'resultExercice',\n accounts: ['12'], // comptes 6 - 7\n isSubcategory: true,\n total: 0,\n },\n {\n name: \"Subventions d'investissement\",\n key: 'subsidies',\n accounts: ['13'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Provisions réglementées',\n key: 'subsidiesRegulated',\n accounts: ['14'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Total (I)',\n key: 'total1',\n calculation: true,\n calculationAdd: [\n 'subscribedCapital',\n 'issuePremiums',\n 'equivalenceGap',\n 'revaluationGap',\n 'reservations',\n 'postponement',\n 'resultExercice',\n 'subsidies',\n 'subsidiesRegulated',\n ],\n isTotal: true,\n total: 0,\n },\n {\n name: 'Provisions pour risques et charges',\n key: 'provisions',\n isCategory: true,\n fields: [\n {\n name: 'Provisions pour risques',\n accounts: ['151'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Provisions pour charges',\n accounts: ['153', '155', '156', '157', '158'],\n isSubcategory: true,\n total: 0,\n },\n ],\n },\n {\n name: 'Total (II)',\n key: 'total2',\n total: 0,\n calculation: true,\n calculationAdd: ['provisions'],\n isTotal: true,\n },\n {\n name: 'Dettes',\n isCategory: true,\n key: 'debts',\n fields: [\n {\n name: 'Emprunts obligataires convertibles',\n key: 'convertibleBonds',\n accounts: ['161', '16881'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Autres emprunts obligataires',\n key: 'convertibleBonds',\n accounts: ['163', '16883'],\n isSubcategory: true,\n total: 0,\n },\n {\n name: 'Emprunts et dettes auprès établissements de crédits (1)',\n key: 'loansCredits',\n accounts: ['164', '512', '514', '517', '5186', '519', '53', '58'], // Ben.P. 10/12/24 suppression 16884 car déjà pris en dessous\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Emprunts et dettes financières diverses (2)',\n key: 'loans',\n // accounts: ['165', '166', '167', '168', '16885', '16886', '16887', '16888', '17', '426', '451', '455', '4563', '4564', '4567', '457', '458'],\n accounts: ['165', '166', '167', '168', '17', '426', '451', '455', '4563', '4564', '4567', '457', '458'],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Avances et acomptes reçues sur commandes en cours',\n key: 'advancesAndDeposits',\n accounts: ['4191'],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Dettes Fournisseurs et Comptes rattachés',\n key: 'payables',\n accounts: ['401', '403', '4081', '4083', '4088'],\n // PASSIF dette fournisseurs = lorsque l'entreprise doit de l'argent au fournisseurs = somme crédit > débit\n idThirdPartyTypeToAdd: [ThirdPartyType.PROVIDER, MathematicalSign.LESS],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Dettes fiscales et sociales',\n key: 'taxDebts',\n accounts: ['42', '43', '44'],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Dettes sur immobilisations et Comptes rattachés',\n key: 'immobilizationDebts',\n accounts: ['269', '279', '404', '405', '4084'],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Autres dettes',\n key: 'OtherDebts',\n accounts: ['411', '418', '4196', '4197', '464', '467', '4686', '471', '472', '478', '509'],\n accountsForceToDeduce: ['4198'],\n // PASSIF Autres = lorsque l'entreprise doit de l'argent au client = somme débit > crédit (modifié)\n idThirdPartyTypeToAdd: [ThirdPartyType.CUSTOMER, MathematicalSign.LESS],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: 'Instruments de trésorerie',\n key: 'treasuryInstruments',\n accounts: ['52'],\n isSubcategory: true,\n total: 0,\n type: 'passive',\n },\n {\n name: \"Produits constatés d'avance\",\n key: 'advanceProducts',\n accounts: ['487', '489'],\n isSubcategory: true,\n total: 0,\n },\n ],\n },\n {\n name: 'Total (III)',\n key: 'total3',\n total: 0,\n calculation: true,\n calculationAdd: ['debts'],\n isTotal: true,\n },\n {\n name: 'Ecarts de conversion passif (IV)',\n key: 'total4',\n total: 0,\n accounts: ['477'],\n isTotal: true,\n },\n {\n name: 'Total général (I+II+III+IV)',\n key: 'total5',\n total: 0,\n calculation: true,\n calculationAdd: [\n 'subscribedCapital',\n 'issuePremiums',\n 'equivalenceGap',\n 'revaluationGap',\n 'reservations',\n 'postponement',\n 'resultExercice',\n 'subsidies',\n 'subsidiesRegulated',\n 'provisions',\n 'debts',\n 'total4',\n ],\n isTotal: true,\n },\n];\n\nexport const BALANCE_SHEET_LIST_PASSIVE_DETAILS: BalanceSheetField[] = [\n {\n name: '(1) Dont concours bancaires courants et soldes créditeurs de banques',\n accounts: ['51'],\n total: 0,\n type: 'passive',\n },\n {\n name: '(2) Dont emprunts participatifs',\n accounts: ['1675'],\n total: 0,\n type: 'passive',\n },\n];\n\nexport const balanceSheetTotalRanges = [\n {\n id: 1,\n label: '< 80k €',\n lowValue: 0,\n highValue: 80000,\n },\n {\n id: 2,\n label: '81k - 160k €',\n lowValue: 80000,\n highValue: 160000,\n },\n {\n id: 3,\n label: '161k - 250k €',\n lowValue: 160000,\n highValue: 250000,\n },\n {\n id: 4,\n label: '> 251k €',\n lowValue: 250000,\n highValue: 10000000,\n },\n] as const;\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BankCollectingState.d.ts","sourceRoot":"","sources":["../../../../ts/types/Enum/BankCollectingState.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC7B,mBAAmB,IAAI;IACvB,kBAAkB,IAAI;IACtB,QAAQ,IAAI;IACZ,eAAe,IAAI;IACnB,MAAM,IAAI;
|
|
1
|
+
{"version":3,"file":"BankCollectingState.d.ts","sourceRoot":"","sources":["../../../../ts/types/Enum/BankCollectingState.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC7B,mBAAmB,IAAI;IACvB,kBAAkB,IAAI;IACtB,QAAQ,IAAI;IACZ,eAAe,IAAI;IACnB,MAAM,IAAI;IACV,wBAAwB,IAAI;CAC7B;AAED,eAAO,MAAM,uBAAuB;;;;;GAqCnC,CAAC"}
|
|
@@ -5,6 +5,7 @@ export var BankCollectingState;
|
|
|
5
5
|
BankCollectingState[BankCollectingState["INVOICED"] = 3] = "INVOICED";
|
|
6
6
|
BankCollectingState[BankCollectingState["REFUSED_INVOICE"] = 4] = "REFUSED_INVOICE";
|
|
7
7
|
BankCollectingState[BankCollectingState["UNPAID"] = 5] = "UNPAID";
|
|
8
|
+
BankCollectingState[BankCollectingState["INVOICED_WAITING_PAYMENT"] = 6] = "INVOICED_WAITING_PAYMENT";
|
|
8
9
|
})(BankCollectingState || (BankCollectingState = {}));
|
|
9
10
|
export const BankCollectingStateList = [
|
|
10
11
|
{
|
|
@@ -37,5 +38,11 @@ export const BankCollectingStateList = [
|
|
|
37
38
|
color: 'red lighten-2',
|
|
38
39
|
textColor: 'red--text red--lighten-3',
|
|
39
40
|
},
|
|
41
|
+
{
|
|
42
|
+
id: BankCollectingState.INVOICED_WAITING_PAYMENT,
|
|
43
|
+
label: 'Facturé en attente de paiement',
|
|
44
|
+
color: 'green darken-2',
|
|
45
|
+
textColor: 'red--text red--lighten-3',
|
|
46
|
+
},
|
|
40
47
|
];
|
|
41
48
|
//# sourceMappingURL=BankCollectingState.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BankCollectingState.js","sourceRoot":"","sources":["../../../../ts/types/Enum/BankCollectingState.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,
|
|
1
|
+
{"version":3,"file":"BankCollectingState.js","sourceRoot":"","sources":["../../../../ts/types/Enum/BankCollectingState.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,mBAOX;AAPD,WAAY,mBAAmB;IAC7B,2FAAuB,CAAA;IACvB,yFAAsB,CAAA;IACtB,qEAAY,CAAA;IACZ,mFAAmB,CAAA;IACnB,iEAAU,CAAA;IACV,qGAA4B,CAAA;AAC9B,CAAC,EAPW,mBAAmB,KAAnB,mBAAmB,QAO9B;AAED,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACrC;QACE,EAAE,EAAE,mBAAmB,CAAC,mBAAmB;QAC3C,KAAK,EAAE,sBAAsB;QAC7B,KAAK,EAAE,iBAAiB;QACxB,SAAS,EAAE,6BAA6B;KACzC;IACD;QACE,EAAE,EAAE,mBAAmB,CAAC,kBAAkB;QAC1C,KAAK,EAAE,sBAAsB;QAC7B,KAAK,EAAE,iBAAiB;QACxB,SAAS,EAAE,6BAA6B;KACzC;IACD;QACE,EAAE,EAAE,mBAAmB,CAAC,QAAQ;QAChC,KAAK,EAAE,qBAAqB;QAC5B,KAAK,EAAE,gBAAgB;QACvB,SAAS,EAAE,cAAc;KAC1B;IACD;QACE,EAAE,EAAE,mBAAmB,CAAC,eAAe;QACvC,KAAK,EAAE,qBAAqB;QAC5B,KAAK,EAAE,eAAe;QACtB,SAAS,EAAE,0BAA0B;KACtC;IACD;QACE,EAAE,EAAE,mBAAmB,CAAC,MAAM;QAC9B,KAAK,EAAE,QAAQ;QACf,KAAK,EAAE,eAAe;QACtB,SAAS,EAAE,0BAA0B;KACtC;IACD;QACE,EAAE,EAAE,mBAAmB,CAAC,wBAAwB;QAChD,KAAK,EAAE,gCAAgC;QACvC,KAAK,EAAE,gBAAgB;QACvB,SAAS,EAAE,0BAA0B;KACtC;CACF,CAAC","sourcesContent":["export enum BankCollectingState {\n INVOICE_IN_PROGRESS = 1,\n PENDING_COLLECTION = 2,\n INVOICED = 3,\n REFUSED_INVOICE = 4,\n UNPAID = 5,\n INVOICED_WAITING_PAYMENT = 6,\n}\n\nexport const BankCollectingStateList = [\n {\n id: BankCollectingState.INVOICE_IN_PROGRESS,\n label: 'Facturation en cours',\n color: 'yellow darken-3',\n textColor: 'yellow--text text--darken-1',\n },\n {\n id: BankCollectingState.PENDING_COLLECTION,\n label: 'Encaissement en att.',\n color: 'yellow darken-3',\n textColor: 'yellow--text text--darken-1',\n },\n {\n id: BankCollectingState.INVOICED,\n label: 'Facturé et encaissé',\n color: 'green darken-4',\n textColor: 'green--text ',\n },\n {\n id: BankCollectingState.REFUSED_INVOICE,\n label: 'Facturation refusée',\n color: 'red lighten-2',\n textColor: 'red--text red--lighten-3',\n },\n {\n id: BankCollectingState.UNPAID,\n label: 'Impayé',\n color: 'red lighten-2',\n textColor: 'red--text red--lighten-3',\n },\n {\n id: BankCollectingState.INVOICED_WAITING_PAYMENT,\n label: 'Facturé en attente de paiement',\n color: 'green darken-2',\n textColor: 'red--text red--lighten-3',\n },\n];\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BrandClementine.d.ts","sourceRoot":"","sources":["../../../../ts/types/Enum/BrandClementine.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAGpC,eAAO,MAAM,eAAe,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"BrandClementine.d.ts","sourceRoot":"","sources":["../../../../ts/types/Enum/BrandClementine.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAGpC,eAAO,MAAM,eAAe,EAAE,KAAK,EA0VzB,CAAC"}
|
|
@@ -338,6 +338,12 @@ export const BrandClementine = [
|
|
|
338
338
|
email: 'facturation@compta-clementine.fr',
|
|
339
339
|
},
|
|
340
340
|
salesContractConfig: SalesContractKlems,
|
|
341
|
+
caarl: {
|
|
342
|
+
subscriptionNumber: {
|
|
343
|
+
sandbox: 'S-2412-3945851',
|
|
344
|
+
production: 'S-2412-5088901',
|
|
345
|
+
},
|
|
346
|
+
},
|
|
341
347
|
},
|
|
342
348
|
];
|
|
343
349
|
//# sourceMappingURL=BrandClementine.js.map
|