@silexpert/core 1.0.153 → 1.0.155
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/es/api/resources/Rule.d.ts +4 -2
- package/es/api/resources/Rule.d.ts.map +1 -1
- package/es/api/resources/Rule.js +6 -0
- package/es/api/resources/Rule.js.map +1 -1
- package/es/api/resources/Shine.js +4 -4
- package/es/api/resources/Shine.js.map +1 -1
- package/es/types/Enum/PrestationType.d.ts +5 -2626
- package/es/types/Enum/PrestationType.d.ts.map +1 -1
- package/es/types/Enum/PrestationType.js +1674 -1511
- package/es/types/Enum/PrestationType.js.map +1 -1
- package/es/types/Interface/api/rule/Create.d.ts +10 -0
- package/es/types/Interface/api/rule/Create.d.ts.map +1 -0
- package/es/types/Interface/api/rule/Create.js +46 -0
- package/es/types/Interface/api/rule/Create.js.map +1 -0
- package/es/types/Interface/api/rule/Update.d.ts +4 -0
- package/es/types/Interface/api/rule/Update.d.ts.map +1 -0
- package/es/types/Interface/api/rule/Update.js +21 -0
- package/es/types/Interface/api/rule/Update.js.map +1 -0
- package/es/types/Interface/models/IAccountingTransaction.d.ts +1 -0
- package/es/types/Interface/models/IAccountingTransaction.d.ts.map +1 -1
- package/es/types/Interface/models/IAccountingTransaction.js.map +1 -1
- package/es/types/Interface/models/IExercicePrestation.d.ts +2 -1
- package/es/types/Interface/models/IExercicePrestation.d.ts.map +1 -1
- package/es/types/Interface/models/IExercicePrestation.js.map +1 -1
- package/es/types/Interface/models/IPrestation.d.ts +13 -10
- package/es/types/Interface/models/IPrestation.d.ts.map +1 -1
- package/es/types/Interface/models/IPrestation.js.map +1 -1
- package/es/types/Interface/models/IPrestationList.d.ts +3 -2
- package/es/types/Interface/models/IPrestationList.d.ts.map +1 -1
- package/es/types/Interface/models/IPrestationList.js.map +1 -1
- package/es/types/Interface/models/IRule.d.ts +2 -0
- package/es/types/Interface/models/IRule.d.ts.map +1 -1
- package/es/types/Interface/models/IRule.js.map +1 -1
- package/es/types/Interface/models/ITerminationList.d.ts +7 -4
- package/es/types/Interface/models/ITerminationList.d.ts.map +1 -1
- package/es/types/Interface/models/ITerminationList.js.map +1 -1
- package/es/types/index.d.ts +3 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +3 -0
- package/es/types/index.js.map +1 -1
- package/es/utils/prestation.d.ts +4 -1
- package/es/utils/prestation.d.ts.map +1 -1
- package/es/utils/prestation.js +18 -1
- package/es/utils/prestation.js.map +1 -1
- package/js/api/resources/Rule.js +6 -0
- package/js/api/resources/Rule.js.map +1 -1
- package/js/api/resources/Shine.js +4 -4
- package/js/api/resources/Shine.js.map +1 -1
- package/js/types/Enum/PrestationType.js +1837 -1674
- package/js/types/Enum/PrestationType.js.map +1 -1
- package/js/types/Interface/api/rule/Create.js +29 -0
- package/js/types/Interface/api/rule/Create.js.map +1 -0
- package/js/types/Interface/api/rule/Update.js +23 -0
- package/js/types/Interface/api/rule/Update.js.map +1 -0
- package/js/types/Interface/models/IAccountingTransaction.js.map +1 -1
- package/js/types/Interface/models/IExercicePrestation.js.map +1 -1
- package/js/types/Interface/models/IPrestation.js.map +1 -1
- package/js/types/Interface/models/IPrestationList.js.map +1 -1
- package/js/types/Interface/models/IRule.js.map +1 -1
- package/js/types/Interface/models/ITerminationList.js.map +1 -1
- package/js/types/index.js +30 -0
- package/js/types/index.js.map +1 -1
- package/js/utils/prestation.js +17 -1
- package/js/utils/prestation.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Rule.ts +12 -2
- package/ts/api/resources/Shine.ts +4 -4
- package/ts/types/Enum/PrestationType.ts +1681 -1512
- package/ts/types/Interface/api/rule/Create.ts +29 -0
- package/ts/types/Interface/api/rule/Update.ts +10 -0
- package/ts/types/Interface/models/IAccountingTransaction.ts +1 -0
- package/ts/types/Interface/models/IExercicePrestation.ts +2 -1
- package/ts/types/Interface/models/IPrestation.ts +13 -10
- package/ts/types/Interface/models/IPrestationList.ts +3 -2
- package/ts/types/Interface/models/IRule.ts +2 -0
- package/ts/types/Interface/models/ITerminationList.ts +7 -4
- package/ts/types/index.ts +3 -0
- package/ts/utils/prestation.ts +23 -1
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { IPrestationList } from '../Interface/models/IPrestationList';
|
|
2
|
+
|
|
1
3
|
export enum PrestationType {
|
|
2
4
|
MYFRUCTUCOMPTA = 1,
|
|
3
5
|
FRUCTUCOMPTA = 2,
|
|
@@ -165,2630 +167,2797 @@ export enum PrestationType {
|
|
|
165
167
|
FRAIS_DE_GREFFE = 210,
|
|
166
168
|
}
|
|
167
169
|
|
|
168
|
-
export
|
|
170
|
+
export interface PrestationDetailEnum {
|
|
171
|
+
[key: string]: IPrestationList
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export const PrestationDetail: PrestationDetailEnum = {
|
|
169
175
|
MYFRUCTUCOMPTA: {
|
|
170
176
|
id: 1,
|
|
171
177
|
name: 'MyFructuCompta',
|
|
172
|
-
isComptable:
|
|
173
|
-
isJuridique:
|
|
174
|
-
isSocial:
|
|
175
|
-
isAttestation:
|
|
176
|
-
inAverageCart:
|
|
177
|
-
isBack:
|
|
178
|
+
isComptable: true,
|
|
179
|
+
isJuridique: false,
|
|
180
|
+
isSocial: false,
|
|
181
|
+
isAttestation: false,
|
|
182
|
+
inAverageCart: true,
|
|
183
|
+
isBack: false,
|
|
178
184
|
price: null,
|
|
179
|
-
isCatalog:
|
|
180
|
-
hidden:
|
|
181
|
-
isComplementary:
|
|
185
|
+
isCatalog: false,
|
|
186
|
+
hidden: true,
|
|
187
|
+
isComplementary: false,
|
|
182
188
|
signaturePosition: null,
|
|
183
189
|
signaturePage: null,
|
|
190
|
+
point: 0,
|
|
184
191
|
},
|
|
185
192
|
FRUCTUCOMPTA: {
|
|
186
193
|
id: 2,
|
|
187
194
|
name: 'FructuCompta',
|
|
188
|
-
isComptable:
|
|
189
|
-
isJuridique:
|
|
190
|
-
isSocial:
|
|
191
|
-
isAttestation:
|
|
192
|
-
inAverageCart:
|
|
193
|
-
isBack:
|
|
195
|
+
isComptable: true,
|
|
196
|
+
isJuridique: false,
|
|
197
|
+
isSocial: false,
|
|
198
|
+
isAttestation: false,
|
|
199
|
+
inAverageCart: true,
|
|
200
|
+
isBack: false,
|
|
194
201
|
price: null,
|
|
195
|
-
isCatalog:
|
|
196
|
-
hidden:
|
|
197
|
-
isComplementary:
|
|
202
|
+
isCatalog: false,
|
|
203
|
+
hidden: true,
|
|
204
|
+
isComplementary: false,
|
|
198
205
|
signaturePosition: null,
|
|
199
206
|
signaturePage: null,
|
|
207
|
+
point: 0,
|
|
200
208
|
},
|
|
201
209
|
FRUCTUCOMPTAEXPRESS: {
|
|
202
210
|
id: 3,
|
|
203
211
|
name: 'FructuCompta Express',
|
|
204
|
-
isComptable:
|
|
205
|
-
isJuridique:
|
|
206
|
-
isSocial:
|
|
207
|
-
isAttestation:
|
|
208
|
-
inAverageCart:
|
|
209
|
-
isBack:
|
|
212
|
+
isComptable: true,
|
|
213
|
+
isJuridique: false,
|
|
214
|
+
isSocial: false,
|
|
215
|
+
isAttestation: false,
|
|
216
|
+
inAverageCart: true,
|
|
217
|
+
isBack: true,
|
|
210
218
|
price: null,
|
|
211
|
-
isCatalog:
|
|
212
|
-
hidden:
|
|
213
|
-
isComplementary:
|
|
219
|
+
isCatalog: false,
|
|
220
|
+
hidden: true,
|
|
221
|
+
isComplementary: false,
|
|
214
222
|
signaturePosition: null,
|
|
215
223
|
signaturePage: null,
|
|
224
|
+
point: 0,
|
|
216
225
|
},
|
|
217
226
|
FRUCTUCOMPTA_ASSISTANCE: {
|
|
218
227
|
id: 4,
|
|
219
228
|
name: 'FructuCompta Assistance',
|
|
220
|
-
isComptable:
|
|
221
|
-
isJuridique:
|
|
222
|
-
isSocial:
|
|
223
|
-
isAttestation:
|
|
224
|
-
inAverageCart:
|
|
225
|
-
isBack:
|
|
229
|
+
isComptable: true,
|
|
230
|
+
isJuridique: false,
|
|
231
|
+
isSocial: false,
|
|
232
|
+
isAttestation: false,
|
|
233
|
+
inAverageCart: true,
|
|
234
|
+
isBack: false,
|
|
226
235
|
price: null,
|
|
227
|
-
isCatalog:
|
|
228
|
-
hidden:
|
|
229
|
-
isComplementary:
|
|
236
|
+
isCatalog: false,
|
|
237
|
+
hidden: true,
|
|
238
|
+
isComplementary: false,
|
|
230
239
|
signaturePosition: null,
|
|
231
240
|
signaturePage: null,
|
|
241
|
+
point: 0,
|
|
232
242
|
},
|
|
233
243
|
FRUCTUPAIE: {
|
|
234
244
|
id: 5,
|
|
235
245
|
name: 'FructuPaie',
|
|
236
|
-
isComptable:
|
|
237
|
-
isJuridique:
|
|
238
|
-
isSocial:
|
|
239
|
-
isAttestation:
|
|
240
|
-
inAverageCart:
|
|
241
|
-
isBack:
|
|
242
|
-
price: null,
|
|
243
|
-
isCatalog:
|
|
244
|
-
hidden:
|
|
245
|
-
isComplementary:
|
|
246
|
+
isComptable: false,
|
|
247
|
+
isJuridique: false,
|
|
248
|
+
isSocial: true,
|
|
249
|
+
isAttestation: false,
|
|
250
|
+
inAverageCart: false,
|
|
251
|
+
isBack: false,
|
|
252
|
+
price: null,
|
|
253
|
+
isCatalog: false,
|
|
254
|
+
hidden: true,
|
|
255
|
+
isComplementary: false,
|
|
246
256
|
signaturePosition: '400,54,569,90',
|
|
247
257
|
signaturePage: 5,
|
|
258
|
+
point: 0,
|
|
248
259
|
},
|
|
249
260
|
PREVISIONNEL: {
|
|
250
261
|
id: 6,
|
|
251
262
|
name: 'Prévisionnel',
|
|
252
|
-
isComptable:
|
|
253
|
-
isJuridique:
|
|
254
|
-
isSocial:
|
|
255
|
-
isAttestation:
|
|
256
|
-
inAverageCart:
|
|
257
|
-
isBack:
|
|
263
|
+
isComptable: false,
|
|
264
|
+
isJuridique: false,
|
|
265
|
+
isSocial: false,
|
|
266
|
+
isAttestation: false,
|
|
267
|
+
inAverageCart: false,
|
|
268
|
+
isBack: false,
|
|
258
269
|
price: null,
|
|
259
|
-
isCatalog:
|
|
260
|
-
hidden:
|
|
261
|
-
isComplementary:
|
|
270
|
+
isCatalog: true,
|
|
271
|
+
hidden: true,
|
|
272
|
+
isComplementary: false,
|
|
262
273
|
signaturePosition: null,
|
|
263
274
|
signaturePage: null,
|
|
275
|
+
point: 0,
|
|
264
276
|
},
|
|
265
277
|
STATUTS: {
|
|
266
278
|
id: 7,
|
|
267
279
|
name: 'Statuts',
|
|
268
|
-
isComptable:
|
|
269
|
-
isJuridique:
|
|
270
|
-
isSocial:
|
|
271
|
-
isAttestation:
|
|
272
|
-
inAverageCart:
|
|
273
|
-
isBack:
|
|
280
|
+
isComptable: false,
|
|
281
|
+
isJuridique: true,
|
|
282
|
+
isSocial: false,
|
|
283
|
+
isAttestation: false,
|
|
284
|
+
inAverageCart: false,
|
|
285
|
+
isBack: false,
|
|
274
286
|
price: null,
|
|
275
|
-
isCatalog:
|
|
276
|
-
hidden:
|
|
277
|
-
isComplementary:
|
|
287
|
+
isCatalog: false,
|
|
288
|
+
hidden: true,
|
|
289
|
+
isComplementary: false,
|
|
278
290
|
signaturePosition: null,
|
|
279
291
|
signaturePage: null,
|
|
292
|
+
point: 0,
|
|
280
293
|
},
|
|
281
294
|
PV_AG: {
|
|
282
295
|
id: 8,
|
|
283
296
|
name: 'PV AG',
|
|
284
|
-
isComptable:
|
|
285
|
-
isJuridique:
|
|
286
|
-
isSocial:
|
|
287
|
-
isAttestation:
|
|
288
|
-
inAverageCart:
|
|
289
|
-
isBack:
|
|
297
|
+
isComptable: false,
|
|
298
|
+
isJuridique: true,
|
|
299
|
+
isSocial: false,
|
|
300
|
+
isAttestation: false,
|
|
301
|
+
inAverageCart: false,
|
|
302
|
+
isBack: false,
|
|
290
303
|
price: null,
|
|
291
|
-
isCatalog:
|
|
292
|
-
hidden:
|
|
293
|
-
isComplementary:
|
|
304
|
+
isCatalog: false,
|
|
305
|
+
hidden: true,
|
|
306
|
+
isComplementary: false,
|
|
294
307
|
signaturePosition: null,
|
|
295
308
|
signaturePage: null,
|
|
309
|
+
point: 0,
|
|
296
310
|
},
|
|
297
311
|
BILAN_INTERMEDIAIRE: {
|
|
298
312
|
id: 9,
|
|
299
313
|
name: 'Bilan intermédiaire',
|
|
300
|
-
isComptable:
|
|
301
|
-
isJuridique:
|
|
302
|
-
isSocial:
|
|
303
|
-
isAttestation:
|
|
304
|
-
inAverageCart:
|
|
305
|
-
isBack:
|
|
314
|
+
isComptable: false,
|
|
315
|
+
isJuridique: false,
|
|
316
|
+
isSocial: false,
|
|
317
|
+
isAttestation: false,
|
|
318
|
+
inAverageCart: false,
|
|
319
|
+
isBack: false,
|
|
306
320
|
price: null,
|
|
307
|
-
isCatalog:
|
|
308
|
-
hidden:
|
|
309
|
-
isComplementary:
|
|
321
|
+
isCatalog: true,
|
|
322
|
+
hidden: false,
|
|
323
|
+
isComplementary: false,
|
|
310
324
|
signaturePosition: null,
|
|
311
325
|
signaturePage: null,
|
|
326
|
+
point: 50,
|
|
312
327
|
},
|
|
313
328
|
FRUCTUCOMPTA_ASSISTANCE_EXPRESS: {
|
|
314
329
|
id: 10,
|
|
315
330
|
name: 'FructuComptaAssistance Express',
|
|
316
|
-
isComptable:
|
|
317
|
-
isJuridique:
|
|
318
|
-
isSocial:
|
|
319
|
-
isAttestation:
|
|
320
|
-
inAverageCart:
|
|
321
|
-
isBack:
|
|
331
|
+
isComptable: true,
|
|
332
|
+
isJuridique: false,
|
|
333
|
+
isSocial: false,
|
|
334
|
+
isAttestation: false,
|
|
335
|
+
inAverageCart: true,
|
|
336
|
+
isBack: true,
|
|
322
337
|
price: null,
|
|
323
|
-
isCatalog:
|
|
324
|
-
hidden:
|
|
325
|
-
isComplementary:
|
|
338
|
+
isCatalog: false,
|
|
339
|
+
hidden: true,
|
|
340
|
+
isComplementary: false,
|
|
326
341
|
signaturePosition: null,
|
|
327
342
|
signaturePage: null,
|
|
343
|
+
point: 0,
|
|
328
344
|
},
|
|
329
345
|
MYFRUCTUCOMPTA_EXPRESS: {
|
|
330
346
|
id: 11,
|
|
331
347
|
name: 'MyFructuCompta Express',
|
|
332
|
-
isComptable:
|
|
333
|
-
isJuridique:
|
|
334
|
-
isSocial:
|
|
335
|
-
isAttestation:
|
|
336
|
-
inAverageCart:
|
|
337
|
-
isBack:
|
|
348
|
+
isComptable: true,
|
|
349
|
+
isJuridique: false,
|
|
350
|
+
isSocial: false,
|
|
351
|
+
isAttestation: false,
|
|
352
|
+
inAverageCart: true,
|
|
353
|
+
isBack: true,
|
|
338
354
|
price: null,
|
|
339
|
-
isCatalog:
|
|
340
|
-
hidden:
|
|
341
|
-
isComplementary:
|
|
355
|
+
isCatalog: false,
|
|
356
|
+
hidden: true,
|
|
357
|
+
isComplementary: false,
|
|
342
358
|
signaturePosition: null,
|
|
343
359
|
signaturePage: null,
|
|
360
|
+
point: 0,
|
|
344
361
|
},
|
|
345
362
|
SOCIAL: {
|
|
346
363
|
id: 12,
|
|
347
364
|
name: 'Social',
|
|
348
|
-
isComptable:
|
|
349
|
-
isJuridique:
|
|
350
|
-
isSocial:
|
|
351
|
-
isAttestation:
|
|
352
|
-
inAverageCart:
|
|
353
|
-
isBack:
|
|
354
|
-
price: null,
|
|
355
|
-
isCatalog:
|
|
356
|
-
hidden:
|
|
357
|
-
isComplementary:
|
|
365
|
+
isComptable: false,
|
|
366
|
+
isJuridique: false,
|
|
367
|
+
isSocial: true,
|
|
368
|
+
isAttestation: false,
|
|
369
|
+
inAverageCart: false,
|
|
370
|
+
isBack: false,
|
|
371
|
+
price: null,
|
|
372
|
+
isCatalog: true,
|
|
373
|
+
hidden: false,
|
|
374
|
+
isComplementary: false,
|
|
358
375
|
signaturePosition: '400,54,569,90',
|
|
359
376
|
signaturePage: 5,
|
|
377
|
+
point: 125,
|
|
360
378
|
},
|
|
361
379
|
TELEDECLARATION: {
|
|
362
380
|
id: 13,
|
|
363
381
|
name: 'Télédéclaration',
|
|
364
|
-
isComptable:
|
|
365
|
-
isJuridique:
|
|
366
|
-
isSocial:
|
|
367
|
-
isAttestation:
|
|
368
|
-
inAverageCart:
|
|
369
|
-
isBack:
|
|
382
|
+
isComptable: true,
|
|
383
|
+
isJuridique: false,
|
|
384
|
+
isSocial: false,
|
|
385
|
+
isAttestation: false,
|
|
386
|
+
inAverageCart: false,
|
|
387
|
+
isBack: false,
|
|
370
388
|
price: null,
|
|
371
|
-
isCatalog:
|
|
372
|
-
hidden:
|
|
373
|
-
isComplementary:
|
|
389
|
+
isCatalog: false,
|
|
390
|
+
hidden: true,
|
|
391
|
+
isComplementary: false,
|
|
374
392
|
signaturePosition: null,
|
|
375
393
|
signaturePage: null,
|
|
394
|
+
point: 0,
|
|
376
395
|
},
|
|
377
396
|
CREATION_SOCIETE: {
|
|
378
397
|
id: 15,
|
|
379
398
|
name: 'Création de société',
|
|
380
|
-
isComptable:
|
|
381
|
-
isJuridique:
|
|
382
|
-
isSocial:
|
|
383
|
-
isAttestation:
|
|
384
|
-
inAverageCart:
|
|
385
|
-
isBack:
|
|
399
|
+
isComptable: false,
|
|
400
|
+
isJuridique: true,
|
|
401
|
+
isSocial: false,
|
|
402
|
+
isAttestation: false,
|
|
403
|
+
inAverageCart: false,
|
|
404
|
+
isBack: false,
|
|
386
405
|
price: 149,
|
|
387
|
-
isCatalog:
|
|
388
|
-
hidden:
|
|
389
|
-
isComplementary:
|
|
406
|
+
isCatalog: false,
|
|
407
|
+
hidden: false,
|
|
408
|
+
isComplementary: false,
|
|
390
409
|
signaturePosition: '400,54,569,90',
|
|
391
410
|
signaturePage: 6,
|
|
411
|
+
point: 125,
|
|
392
412
|
},
|
|
393
413
|
JURIDIQUE: {
|
|
394
414
|
id: 16,
|
|
395
415
|
name: 'Juridique',
|
|
396
|
-
isComptable:
|
|
397
|
-
isJuridique:
|
|
398
|
-
isSocial:
|
|
399
|
-
isAttestation:
|
|
400
|
-
inAverageCart:
|
|
401
|
-
isBack:
|
|
416
|
+
isComptable: false,
|
|
417
|
+
isJuridique: true,
|
|
418
|
+
isSocial: false,
|
|
419
|
+
isAttestation: false,
|
|
420
|
+
inAverageCart: false,
|
|
421
|
+
isBack: false,
|
|
402
422
|
price: null,
|
|
403
|
-
isCatalog:
|
|
404
|
-
hidden:
|
|
405
|
-
isComplementary:
|
|
423
|
+
isCatalog: false,
|
|
424
|
+
hidden: true,
|
|
425
|
+
isComplementary: false,
|
|
406
426
|
signaturePosition: null,
|
|
407
427
|
signaturePage: null,
|
|
428
|
+
point: 0,
|
|
408
429
|
},
|
|
409
430
|
MYFRUCTUCOMPTA_STATUT_EXPRESS: {
|
|
410
431
|
id: 17,
|
|
411
432
|
name: 'MyFructucompta statut-express',
|
|
412
|
-
isComptable:
|
|
413
|
-
isJuridique:
|
|
414
|
-
isSocial:
|
|
415
|
-
isAttestation:
|
|
416
|
-
inAverageCart:
|
|
417
|
-
isBack:
|
|
433
|
+
isComptable: false,
|
|
434
|
+
isJuridique: true,
|
|
435
|
+
isSocial: false,
|
|
436
|
+
isAttestation: false,
|
|
437
|
+
inAverageCart: true,
|
|
438
|
+
isBack: false,
|
|
418
439
|
price: null,
|
|
419
|
-
isCatalog:
|
|
420
|
-
hidden:
|
|
421
|
-
isComplementary:
|
|
440
|
+
isCatalog: false,
|
|
441
|
+
hidden: true,
|
|
442
|
+
isComplementary: false,
|
|
422
443
|
signaturePosition: null,
|
|
423
444
|
signaturePage: null,
|
|
445
|
+
point: 0,
|
|
424
446
|
},
|
|
425
447
|
MYFRUCTUCOMPTA_SOCIAL: {
|
|
426
448
|
id: 19,
|
|
427
449
|
name: 'MyFructuCompta + Social',
|
|
428
|
-
isComptable:
|
|
429
|
-
isJuridique:
|
|
430
|
-
isSocial:
|
|
431
|
-
isAttestation:
|
|
432
|
-
inAverageCart:
|
|
433
|
-
isBack:
|
|
450
|
+
isComptable: true,
|
|
451
|
+
isJuridique: false,
|
|
452
|
+
isSocial: true,
|
|
453
|
+
isAttestation: false,
|
|
454
|
+
inAverageCart: true,
|
|
455
|
+
isBack: false,
|
|
434
456
|
price: null,
|
|
435
|
-
isCatalog:
|
|
436
|
-
hidden:
|
|
437
|
-
isComplementary:
|
|
457
|
+
isCatalog: false,
|
|
458
|
+
hidden: true,
|
|
459
|
+
isComplementary: false,
|
|
438
460
|
signaturePosition: null,
|
|
439
461
|
signaturePage: null,
|
|
462
|
+
point: 0,
|
|
440
463
|
},
|
|
441
464
|
FRUCTUCOMPTA_SCI: {
|
|
442
465
|
id: 21,
|
|
443
466
|
name: 'FructuCompta SCI',
|
|
444
|
-
isComptable:
|
|
445
|
-
isJuridique:
|
|
446
|
-
isSocial:
|
|
447
|
-
isAttestation:
|
|
448
|
-
inAverageCart:
|
|
449
|
-
isBack:
|
|
467
|
+
isComptable: true,
|
|
468
|
+
isJuridique: false,
|
|
469
|
+
isSocial: false,
|
|
470
|
+
isAttestation: false,
|
|
471
|
+
inAverageCart: true,
|
|
472
|
+
isBack: false,
|
|
450
473
|
price: null,
|
|
451
|
-
isCatalog:
|
|
452
|
-
hidden:
|
|
453
|
-
isComplementary:
|
|
474
|
+
isCatalog: false,
|
|
475
|
+
hidden: true,
|
|
476
|
+
isComplementary: false,
|
|
454
477
|
signaturePosition: null,
|
|
455
478
|
signaturePage: null,
|
|
479
|
+
point: 0,
|
|
456
480
|
},
|
|
457
481
|
BILAN_LIQUIDATION: {
|
|
458
482
|
id: 22,
|
|
459
483
|
name: 'Bilan de liquidation',
|
|
460
|
-
isComptable:
|
|
461
|
-
isJuridique:
|
|
462
|
-
isSocial:
|
|
463
|
-
isAttestation:
|
|
464
|
-
inAverageCart:
|
|
465
|
-
isBack:
|
|
484
|
+
isComptable: true,
|
|
485
|
+
isJuridique: false,
|
|
486
|
+
isSocial: false,
|
|
487
|
+
isAttestation: false,
|
|
488
|
+
inAverageCart: false,
|
|
489
|
+
isBack: false,
|
|
466
490
|
price: null,
|
|
467
|
-
isCatalog:
|
|
468
|
-
hidden:
|
|
469
|
-
isComplementary:
|
|
491
|
+
isCatalog: true,
|
|
492
|
+
hidden: false,
|
|
493
|
+
isComplementary: false,
|
|
470
494
|
signaturePosition: null,
|
|
471
495
|
signaturePage: null,
|
|
496
|
+
point: 100,
|
|
472
497
|
},
|
|
473
498
|
CHANGEMENT_PRESTATION: {
|
|
474
499
|
id: 23,
|
|
475
500
|
name: 'Changement de prestation',
|
|
476
|
-
isComptable:
|
|
477
|
-
isJuridique:
|
|
478
|
-
isSocial:
|
|
479
|
-
isAttestation:
|
|
480
|
-
inAverageCart:
|
|
481
|
-
isBack:
|
|
501
|
+
isComptable: false,
|
|
502
|
+
isJuridique: false,
|
|
503
|
+
isSocial: false,
|
|
504
|
+
isAttestation: false,
|
|
505
|
+
inAverageCart: false,
|
|
506
|
+
isBack: false,
|
|
482
507
|
price: null,
|
|
483
|
-
isCatalog:
|
|
484
|
-
hidden:
|
|
485
|
-
isComplementary:
|
|
508
|
+
isCatalog: false,
|
|
509
|
+
hidden: true,
|
|
510
|
+
isComplementary: false,
|
|
486
511
|
signaturePosition: null,
|
|
487
512
|
signaturePage: null,
|
|
513
|
+
point: 0,
|
|
488
514
|
},
|
|
489
515
|
EXCEPTIONNEL: {
|
|
490
516
|
id: 24,
|
|
491
517
|
name: 'Exceptionnel',
|
|
492
|
-
isComptable:
|
|
493
|
-
isJuridique:
|
|
494
|
-
isSocial:
|
|
495
|
-
isAttestation:
|
|
496
|
-
inAverageCart:
|
|
497
|
-
isBack:
|
|
498
|
-
price: null,
|
|
499
|
-
isCatalog:
|
|
500
|
-
hidden:
|
|
501
|
-
isComplementary:
|
|
518
|
+
isComptable: false,
|
|
519
|
+
isJuridique: false,
|
|
520
|
+
isSocial: false,
|
|
521
|
+
isAttestation: false,
|
|
522
|
+
inAverageCart: false,
|
|
523
|
+
isBack: false,
|
|
524
|
+
price: null,
|
|
525
|
+
isCatalog: false,
|
|
526
|
+
hidden: false,
|
|
527
|
+
isComplementary: false,
|
|
502
528
|
signaturePosition: '-1,1,1,1',
|
|
503
529
|
signaturePage: null,
|
|
530
|
+
point: 0,
|
|
504
531
|
},
|
|
505
532
|
MYFRUCTUCOMPTA_EXPRESS_SOCIAL: {
|
|
506
533
|
id: 25,
|
|
507
534
|
name: 'MyFructuCompta Express + Social',
|
|
508
|
-
isComptable:
|
|
509
|
-
isJuridique:
|
|
510
|
-
isSocial:
|
|
511
|
-
isAttestation:
|
|
512
|
-
inAverageCart:
|
|
513
|
-
isBack:
|
|
535
|
+
isComptable: true,
|
|
536
|
+
isJuridique: false,
|
|
537
|
+
isSocial: true,
|
|
538
|
+
isAttestation: false,
|
|
539
|
+
inAverageCart: true,
|
|
540
|
+
isBack: true,
|
|
514
541
|
price: null,
|
|
515
|
-
isCatalog:
|
|
516
|
-
hidden:
|
|
517
|
-
isComplementary:
|
|
542
|
+
isCatalog: false,
|
|
543
|
+
hidden: true,
|
|
544
|
+
isComplementary: false,
|
|
518
545
|
signaturePosition: null,
|
|
519
546
|
signaturePage: null,
|
|
547
|
+
point: 0,
|
|
520
548
|
},
|
|
521
549
|
FRUCTUCOMPTA_ASSISTANCE_EXPRESS_SOCIAL: {
|
|
522
550
|
id: 26,
|
|
523
551
|
name: 'FructuCompta Assistance Express + Social',
|
|
524
|
-
isComptable:
|
|
525
|
-
isJuridique:
|
|
526
|
-
isSocial:
|
|
527
|
-
isAttestation:
|
|
528
|
-
inAverageCart:
|
|
529
|
-
isBack:
|
|
552
|
+
isComptable: true,
|
|
553
|
+
isJuridique: false,
|
|
554
|
+
isSocial: true,
|
|
555
|
+
isAttestation: false,
|
|
556
|
+
inAverageCart: true,
|
|
557
|
+
isBack: true,
|
|
530
558
|
price: null,
|
|
531
|
-
isCatalog:
|
|
532
|
-
hidden:
|
|
533
|
-
isComplementary:
|
|
559
|
+
isCatalog: false,
|
|
560
|
+
hidden: true,
|
|
561
|
+
isComplementary: false,
|
|
534
562
|
signaturePosition: null,
|
|
535
563
|
signaturePage: null,
|
|
564
|
+
point: 0,
|
|
536
565
|
},
|
|
537
566
|
FRUCTUCOMPTA_ASSISTANCE_SOCIAL: {
|
|
538
567
|
id: 27,
|
|
539
568
|
name: 'FructuCompta Assistance + Social',
|
|
540
|
-
isComptable:
|
|
541
|
-
isJuridique:
|
|
542
|
-
isSocial:
|
|
543
|
-
isAttestation:
|
|
544
|
-
inAverageCart:
|
|
545
|
-
isBack:
|
|
569
|
+
isComptable: true,
|
|
570
|
+
isJuridique: false,
|
|
571
|
+
isSocial: true,
|
|
572
|
+
isAttestation: false,
|
|
573
|
+
inAverageCart: true,
|
|
574
|
+
isBack: false,
|
|
546
575
|
price: null,
|
|
547
|
-
isCatalog:
|
|
548
|
-
hidden:
|
|
549
|
-
isComplementary:
|
|
576
|
+
isCatalog: false,
|
|
577
|
+
hidden: true,
|
|
578
|
+
isComplementary: false,
|
|
550
579
|
signaturePosition: null,
|
|
551
580
|
signaturePage: null,
|
|
581
|
+
point: 0,
|
|
552
582
|
},
|
|
553
583
|
FRUCTUCOMPTA_EXPRESS_SOCIAL: {
|
|
554
584
|
id: 28,
|
|
555
585
|
name: 'FructuCompta Express + Social',
|
|
556
|
-
isComptable:
|
|
557
|
-
isJuridique:
|
|
558
|
-
isSocial:
|
|
559
|
-
isAttestation:
|
|
560
|
-
inAverageCart:
|
|
561
|
-
isBack:
|
|
586
|
+
isComptable: true,
|
|
587
|
+
isJuridique: false,
|
|
588
|
+
isSocial: true,
|
|
589
|
+
isAttestation: false,
|
|
590
|
+
inAverageCart: true,
|
|
591
|
+
isBack: true,
|
|
562
592
|
price: null,
|
|
563
|
-
isCatalog:
|
|
564
|
-
hidden:
|
|
565
|
-
isComplementary:
|
|
593
|
+
isCatalog: false,
|
|
594
|
+
hidden: true,
|
|
595
|
+
isComplementary: false,
|
|
566
596
|
signaturePosition: null,
|
|
567
597
|
signaturePage: null,
|
|
598
|
+
point: 0,
|
|
568
599
|
},
|
|
569
600
|
FRUCTUCOMPTA_SOCIAL: {
|
|
570
601
|
id: 29,
|
|
571
602
|
name: 'FructuCompta + Social',
|
|
572
|
-
isComptable:
|
|
573
|
-
isJuridique:
|
|
574
|
-
isSocial:
|
|
575
|
-
isAttestation:
|
|
576
|
-
inAverageCart:
|
|
577
|
-
isBack:
|
|
603
|
+
isComptable: true,
|
|
604
|
+
isJuridique: false,
|
|
605
|
+
isSocial: true,
|
|
606
|
+
isAttestation: false,
|
|
607
|
+
inAverageCart: true,
|
|
608
|
+
isBack: false,
|
|
578
609
|
price: null,
|
|
579
|
-
isCatalog:
|
|
580
|
-
hidden:
|
|
581
|
-
isComplementary:
|
|
610
|
+
isCatalog: false,
|
|
611
|
+
hidden: true,
|
|
612
|
+
isComplementary: false,
|
|
582
613
|
signaturePosition: null,
|
|
583
614
|
signaturePage: null,
|
|
615
|
+
point: 0,
|
|
584
616
|
},
|
|
585
617
|
FRUCTU_WEB: {
|
|
586
618
|
id: 31,
|
|
587
619
|
name: 'FructuWeb',
|
|
588
|
-
isComptable:
|
|
589
|
-
isJuridique:
|
|
590
|
-
isSocial:
|
|
591
|
-
isAttestation:
|
|
592
|
-
inAverageCart:
|
|
593
|
-
isBack:
|
|
620
|
+
isComptable: true,
|
|
621
|
+
isJuridique: false,
|
|
622
|
+
isSocial: false,
|
|
623
|
+
isAttestation: false,
|
|
624
|
+
inAverageCart: false,
|
|
625
|
+
isBack: false,
|
|
594
626
|
price: null,
|
|
595
|
-
isCatalog:
|
|
596
|
-
hidden:
|
|
597
|
-
isComplementary:
|
|
627
|
+
isCatalog: false,
|
|
628
|
+
hidden: true,
|
|
629
|
+
isComplementary: false,
|
|
598
630
|
signaturePosition: null,
|
|
599
631
|
signaturePage: null,
|
|
632
|
+
point: 0,
|
|
600
633
|
},
|
|
601
634
|
FRUCTUCOMPTA_STATUT_EXPRESS: {
|
|
602
635
|
id: 32,
|
|
603
636
|
name: 'Fructucompta statut-express',
|
|
604
|
-
isComptable:
|
|
605
|
-
isJuridique:
|
|
606
|
-
isSocial:
|
|
607
|
-
isAttestation:
|
|
608
|
-
inAverageCart:
|
|
609
|
-
isBack:
|
|
637
|
+
isComptable: false,
|
|
638
|
+
isJuridique: true,
|
|
639
|
+
isSocial: false,
|
|
640
|
+
isAttestation: false,
|
|
641
|
+
inAverageCart: true,
|
|
642
|
+
isBack: false,
|
|
610
643
|
price: null,
|
|
611
|
-
isCatalog:
|
|
612
|
-
hidden:
|
|
613
|
-
isComplementary:
|
|
644
|
+
isCatalog: false,
|
|
645
|
+
hidden: true,
|
|
646
|
+
isComplementary: false,
|
|
614
647
|
signaturePosition: null,
|
|
615
648
|
signaturePage: null,
|
|
649
|
+
point: 0,
|
|
616
650
|
},
|
|
617
651
|
FRUCTU_EXPRESS: {
|
|
618
652
|
id: 33,
|
|
619
653
|
name: 'Fructu Express',
|
|
620
|
-
isComptable:
|
|
621
|
-
isJuridique:
|
|
622
|
-
isSocial:
|
|
623
|
-
isAttestation:
|
|
624
|
-
inAverageCart:
|
|
625
|
-
isBack:
|
|
654
|
+
isComptable: true,
|
|
655
|
+
isJuridique: false,
|
|
656
|
+
isSocial: false,
|
|
657
|
+
isAttestation: false,
|
|
658
|
+
inAverageCart: true,
|
|
659
|
+
isBack: true,
|
|
626
660
|
price: null,
|
|
627
|
-
isCatalog:
|
|
628
|
-
hidden:
|
|
629
|
-
isComplementary:
|
|
661
|
+
isCatalog: false,
|
|
662
|
+
hidden: true,
|
|
663
|
+
isComplementary: false,
|
|
630
664
|
signaturePosition: null,
|
|
631
665
|
signaturePage: null,
|
|
666
|
+
point: 0,
|
|
632
667
|
},
|
|
633
668
|
COMPTA_PRO: {
|
|
634
669
|
id: 34,
|
|
635
670
|
name: 'Compta Pro',
|
|
636
|
-
isComptable:
|
|
637
|
-
isJuridique:
|
|
638
|
-
isSocial:
|
|
639
|
-
isAttestation:
|
|
640
|
-
inAverageCart:
|
|
641
|
-
isBack:
|
|
642
|
-
price: null,
|
|
643
|
-
isCatalog:
|
|
644
|
-
hidden:
|
|
645
|
-
isComplementary:
|
|
671
|
+
isComptable: true,
|
|
672
|
+
isJuridique: false,
|
|
673
|
+
isSocial: false,
|
|
674
|
+
isAttestation: false,
|
|
675
|
+
inAverageCart: true,
|
|
676
|
+
isBack: false,
|
|
677
|
+
price: null,
|
|
678
|
+
isCatalog: false,
|
|
679
|
+
hidden: false,
|
|
680
|
+
isComplementary: false,
|
|
646
681
|
signaturePosition: '400,54,569,90',
|
|
647
682
|
signaturePage: 7,
|
|
683
|
+
point: 0,
|
|
648
684
|
},
|
|
649
685
|
COMPTA_PRO_PAIE: {
|
|
650
686
|
id: 35,
|
|
651
687
|
name: 'Compta Pro + Paie',
|
|
652
|
-
isComptable:
|
|
653
|
-
isJuridique:
|
|
654
|
-
isSocial:
|
|
655
|
-
isAttestation:
|
|
656
|
-
inAverageCart:
|
|
657
|
-
isBack:
|
|
658
|
-
price: null,
|
|
659
|
-
isCatalog:
|
|
660
|
-
hidden:
|
|
661
|
-
isComplementary:
|
|
688
|
+
isComptable: true,
|
|
689
|
+
isJuridique: false,
|
|
690
|
+
isSocial: true,
|
|
691
|
+
isAttestation: false,
|
|
692
|
+
inAverageCart: true,
|
|
693
|
+
isBack: false,
|
|
694
|
+
price: null,
|
|
695
|
+
isCatalog: false,
|
|
696
|
+
hidden: true,
|
|
697
|
+
isComplementary: false,
|
|
662
698
|
signaturePosition: '332,49,517,117',
|
|
663
699
|
signaturePage: 5,
|
|
700
|
+
point: 0,
|
|
664
701
|
},
|
|
665
702
|
COMPTA_PRO_EXPRESS: {
|
|
666
703
|
id: 36,
|
|
667
704
|
name: 'Compta Pro Express',
|
|
668
|
-
isComptable:
|
|
669
|
-
isJuridique:
|
|
670
|
-
isSocial:
|
|
671
|
-
isAttestation:
|
|
672
|
-
inAverageCart:
|
|
673
|
-
isBack:
|
|
674
|
-
price: null,
|
|
675
|
-
isCatalog:
|
|
676
|
-
hidden:
|
|
677
|
-
isComplementary:
|
|
705
|
+
isComptable: true,
|
|
706
|
+
isJuridique: false,
|
|
707
|
+
isSocial: false,
|
|
708
|
+
isAttestation: false,
|
|
709
|
+
inAverageCart: true,
|
|
710
|
+
isBack: true,
|
|
711
|
+
price: null,
|
|
712
|
+
isCatalog: false,
|
|
713
|
+
hidden: false,
|
|
714
|
+
isComplementary: false,
|
|
678
715
|
signaturePosition: '400,54,569,90',
|
|
679
716
|
signaturePage: 7,
|
|
717
|
+
point: 0,
|
|
680
718
|
},
|
|
681
719
|
COMPTA_PRO_EXPRESS_PAIE: {
|
|
682
720
|
id: 37,
|
|
683
721
|
name: 'Compta Pro Express + Paie',
|
|
684
|
-
isComptable:
|
|
685
|
-
isJuridique:
|
|
686
|
-
isSocial:
|
|
687
|
-
isAttestation:
|
|
688
|
-
inAverageCart:
|
|
689
|
-
isBack:
|
|
690
|
-
price: null,
|
|
691
|
-
isCatalog:
|
|
692
|
-
hidden:
|
|
693
|
-
isComplementary:
|
|
722
|
+
isComptable: true,
|
|
723
|
+
isJuridique: false,
|
|
724
|
+
isSocial: true,
|
|
725
|
+
isAttestation: false,
|
|
726
|
+
inAverageCart: true,
|
|
727
|
+
isBack: true,
|
|
728
|
+
price: null,
|
|
729
|
+
isCatalog: false,
|
|
730
|
+
hidden: true,
|
|
731
|
+
isComplementary: false,
|
|
694
732
|
signaturePosition: '318,53,548,204',
|
|
695
733
|
signaturePage: 5,
|
|
734
|
+
point: 0,
|
|
696
735
|
},
|
|
697
736
|
COMPTA_ENTREPRISE: {
|
|
698
737
|
id: 38,
|
|
699
738
|
name: 'Compta Entreprise',
|
|
700
|
-
isComptable:
|
|
701
|
-
isJuridique:
|
|
702
|
-
isSocial:
|
|
703
|
-
isAttestation:
|
|
704
|
-
inAverageCart:
|
|
705
|
-
isBack:
|
|
706
|
-
price: null,
|
|
707
|
-
isCatalog:
|
|
708
|
-
hidden:
|
|
709
|
-
isComplementary:
|
|
739
|
+
isComptable: true,
|
|
740
|
+
isJuridique: false,
|
|
741
|
+
isSocial: false,
|
|
742
|
+
isAttestation: false,
|
|
743
|
+
inAverageCart: true,
|
|
744
|
+
isBack: false,
|
|
745
|
+
price: null,
|
|
746
|
+
isCatalog: false,
|
|
747
|
+
hidden: false,
|
|
748
|
+
isComplementary: false,
|
|
710
749
|
signaturePosition: '400,54,569,90',
|
|
711
750
|
signaturePage: 7,
|
|
751
|
+
point: 0,
|
|
712
752
|
},
|
|
713
753
|
COMPTA_ENTREPRISE_PAIE: {
|
|
714
754
|
id: 39,
|
|
715
755
|
name: 'Compta Entreprise + Paie',
|
|
716
|
-
isComptable:
|
|
717
|
-
isJuridique:
|
|
718
|
-
isSocial:
|
|
719
|
-
isAttestation:
|
|
720
|
-
inAverageCart:
|
|
721
|
-
isBack:
|
|
722
|
-
price: null,
|
|
723
|
-
isCatalog:
|
|
724
|
-
hidden:
|
|
725
|
-
isComplementary:
|
|
756
|
+
isComptable: true,
|
|
757
|
+
isJuridique: false,
|
|
758
|
+
isSocial: true,
|
|
759
|
+
isAttestation: false,
|
|
760
|
+
inAverageCart: true,
|
|
761
|
+
isBack: false,
|
|
762
|
+
price: null,
|
|
763
|
+
isCatalog: false,
|
|
764
|
+
hidden: true,
|
|
765
|
+
isComplementary: false,
|
|
726
766
|
signaturePosition: '336,51,526,107',
|
|
727
767
|
signaturePage: 5,
|
|
768
|
+
point: 0,
|
|
728
769
|
},
|
|
729
770
|
COMPTA_ENTREPRISE_EXPRESS: {
|
|
730
771
|
id: 40,
|
|
731
772
|
name: 'Compta Entreprise Express',
|
|
732
|
-
isComptable:
|
|
733
|
-
isJuridique:
|
|
734
|
-
isSocial:
|
|
735
|
-
isAttestation:
|
|
736
|
-
inAverageCart:
|
|
737
|
-
isBack:
|
|
738
|
-
price: null,
|
|
739
|
-
isCatalog:
|
|
740
|
-
hidden:
|
|
741
|
-
isComplementary:
|
|
773
|
+
isComptable: true,
|
|
774
|
+
isJuridique: false,
|
|
775
|
+
isSocial: false,
|
|
776
|
+
isAttestation: false,
|
|
777
|
+
inAverageCart: true,
|
|
778
|
+
isBack: true,
|
|
779
|
+
price: null,
|
|
780
|
+
isCatalog: false,
|
|
781
|
+
hidden: false,
|
|
782
|
+
isComplementary: false,
|
|
742
783
|
signaturePosition: '400,54,569,90',
|
|
743
784
|
signaturePage: 7,
|
|
785
|
+
point: 0,
|
|
744
786
|
},
|
|
745
787
|
COMPTA_ENTREPRISE_EXPRESS_PAIE: {
|
|
746
788
|
id: 41,
|
|
747
789
|
name: 'Compta Entreprise Express + Paie',
|
|
748
|
-
isComptable:
|
|
749
|
-
isJuridique:
|
|
750
|
-
isSocial:
|
|
751
|
-
isAttestation:
|
|
752
|
-
inAverageCart:
|
|
753
|
-
isBack:
|
|
754
|
-
price: null,
|
|
755
|
-
isCatalog:
|
|
756
|
-
hidden:
|
|
757
|
-
isComplementary:
|
|
790
|
+
isComptable: true,
|
|
791
|
+
isJuridique: false,
|
|
792
|
+
isSocial: true,
|
|
793
|
+
isAttestation: false,
|
|
794
|
+
inAverageCart: true,
|
|
795
|
+
isBack: true,
|
|
796
|
+
price: null,
|
|
797
|
+
isCatalog: false,
|
|
798
|
+
hidden: true,
|
|
799
|
+
isComplementary: false,
|
|
758
800
|
signaturePosition: '318,53,548,204',
|
|
759
801
|
signaturePage: 5,
|
|
802
|
+
point: 0,
|
|
760
803
|
},
|
|
761
804
|
COMPTA_CLASSIQUE: {
|
|
762
805
|
id: 42,
|
|
763
806
|
name: 'Compta Classique',
|
|
764
|
-
isComptable:
|
|
765
|
-
isJuridique:
|
|
766
|
-
isSocial:
|
|
767
|
-
isAttestation:
|
|
768
|
-
inAverageCart:
|
|
769
|
-
isBack:
|
|
770
|
-
price: null,
|
|
771
|
-
isCatalog:
|
|
772
|
-
hidden:
|
|
773
|
-
isComplementary:
|
|
807
|
+
isComptable: true,
|
|
808
|
+
isJuridique: false,
|
|
809
|
+
isSocial: false,
|
|
810
|
+
isAttestation: false,
|
|
811
|
+
inAverageCart: true,
|
|
812
|
+
isBack: false,
|
|
813
|
+
price: null,
|
|
814
|
+
isCatalog: false,
|
|
815
|
+
hidden: true,
|
|
816
|
+
isComplementary: false,
|
|
774
817
|
signaturePosition: '312,53,546,114',
|
|
775
818
|
signaturePage: 5,
|
|
819
|
+
point: 0,
|
|
776
820
|
},
|
|
777
821
|
COMPTA_CLASSIQUE_EXPRESS: {
|
|
778
822
|
id: 43,
|
|
779
823
|
name: 'Compta Classique Express',
|
|
780
|
-
isComptable:
|
|
781
|
-
isJuridique:
|
|
782
|
-
isSocial:
|
|
783
|
-
isAttestation:
|
|
784
|
-
inAverageCart:
|
|
785
|
-
isBack:
|
|
786
|
-
price: null,
|
|
787
|
-
isCatalog:
|
|
788
|
-
hidden:
|
|
789
|
-
isComplementary:
|
|
824
|
+
isComptable: true,
|
|
825
|
+
isJuridique: false,
|
|
826
|
+
isSocial: false,
|
|
827
|
+
isAttestation: false,
|
|
828
|
+
inAverageCart: true,
|
|
829
|
+
isBack: true,
|
|
830
|
+
price: null,
|
|
831
|
+
isCatalog: false,
|
|
832
|
+
hidden: true,
|
|
833
|
+
isComplementary: false,
|
|
790
834
|
signaturePosition: '316,49,538,107',
|
|
791
835
|
signaturePage: 5,
|
|
836
|
+
point: 0,
|
|
792
837
|
},
|
|
793
838
|
GESTION_JURIDIQUE: {
|
|
794
839
|
id: 44,
|
|
795
840
|
name: 'Gestion Juridique',
|
|
796
|
-
isComptable:
|
|
797
|
-
isJuridique:
|
|
798
|
-
isSocial:
|
|
799
|
-
isAttestation:
|
|
800
|
-
inAverageCart:
|
|
801
|
-
isBack:
|
|
802
|
-
price: null,
|
|
803
|
-
isCatalog:
|
|
804
|
-
hidden:
|
|
805
|
-
isComplementary:
|
|
841
|
+
isComptable: false,
|
|
842
|
+
isJuridique: true,
|
|
843
|
+
isSocial: false,
|
|
844
|
+
isAttestation: false,
|
|
845
|
+
inAverageCart: false,
|
|
846
|
+
isBack: false,
|
|
847
|
+
price: null,
|
|
848
|
+
isCatalog: true,
|
|
849
|
+
hidden: false,
|
|
850
|
+
isComplementary: false,
|
|
806
851
|
signaturePosition: '400,54,569,90',
|
|
807
852
|
signaturePage: 5,
|
|
853
|
+
point: 0,
|
|
808
854
|
},
|
|
809
855
|
COMPTA_ASSISTANCE: {
|
|
810
856
|
id: 45,
|
|
811
857
|
name: 'Compta Assistance',
|
|
812
|
-
isComptable:
|
|
813
|
-
isJuridique:
|
|
814
|
-
isSocial:
|
|
815
|
-
isAttestation:
|
|
816
|
-
inAverageCart:
|
|
817
|
-
isBack:
|
|
818
|
-
price: null,
|
|
819
|
-
isCatalog:
|
|
820
|
-
hidden:
|
|
821
|
-
isComplementary:
|
|
858
|
+
isComptable: true,
|
|
859
|
+
isJuridique: false,
|
|
860
|
+
isSocial: false,
|
|
861
|
+
isAttestation: false,
|
|
862
|
+
inAverageCart: true,
|
|
863
|
+
isBack: false,
|
|
864
|
+
price: null,
|
|
865
|
+
isCatalog: false,
|
|
866
|
+
hidden: true,
|
|
867
|
+
isComplementary: false,
|
|
822
868
|
signaturePosition: '1,1,1,1',
|
|
823
869
|
signaturePage: null,
|
|
870
|
+
point: 0,
|
|
824
871
|
},
|
|
825
872
|
AVANCE_OU_ABANDON_COMPTE_COURANT_ASSOCIE: {
|
|
826
873
|
id: 46,
|
|
827
874
|
name: 'Avance ou abandon de compte courant d’associé',
|
|
828
|
-
isComptable:
|
|
829
|
-
isJuridique:
|
|
830
|
-
isSocial:
|
|
831
|
-
isAttestation:
|
|
832
|
-
inAverageCart:
|
|
833
|
-
isBack:
|
|
875
|
+
isComptable: false,
|
|
876
|
+
isJuridique: true,
|
|
877
|
+
isSocial: false,
|
|
878
|
+
isAttestation: false,
|
|
879
|
+
inAverageCart: false,
|
|
880
|
+
isBack: false,
|
|
834
881
|
price: 200,
|
|
835
|
-
isCatalog:
|
|
836
|
-
hidden:
|
|
837
|
-
isComplementary:
|
|
882
|
+
isCatalog: true,
|
|
883
|
+
hidden: false,
|
|
884
|
+
isComplementary: false,
|
|
838
885
|
signaturePosition: null,
|
|
839
886
|
signaturePage: null,
|
|
887
|
+
point: 0,
|
|
840
888
|
},
|
|
841
889
|
ASSISTANCE_JURIDIQUE: {
|
|
842
890
|
id: 47,
|
|
843
891
|
name: 'Assistance juridique',
|
|
844
|
-
isComptable:
|
|
845
|
-
isJuridique:
|
|
846
|
-
isSocial:
|
|
847
|
-
isAttestation:
|
|
848
|
-
inAverageCart:
|
|
849
|
-
isBack:
|
|
892
|
+
isComptable: false,
|
|
893
|
+
isJuridique: true,
|
|
894
|
+
isSocial: false,
|
|
895
|
+
isAttestation: false,
|
|
896
|
+
inAverageCart: false,
|
|
897
|
+
isBack: false,
|
|
850
898
|
price: 249,
|
|
851
|
-
isCatalog:
|
|
852
|
-
hidden:
|
|
853
|
-
isComplementary:
|
|
899
|
+
isCatalog: false,
|
|
900
|
+
hidden: true,
|
|
901
|
+
isComplementary: false,
|
|
854
902
|
signaturePosition: null,
|
|
855
903
|
signaturePage: null,
|
|
904
|
+
point: 0,
|
|
856
905
|
},
|
|
857
906
|
ASSISTANCE_RECOUVREMENT: {
|
|
858
907
|
id: 48,
|
|
859
908
|
name: 'Assistance recouvrement',
|
|
860
|
-
isComptable:
|
|
861
|
-
isJuridique:
|
|
862
|
-
isSocial:
|
|
863
|
-
isAttestation:
|
|
864
|
-
inAverageCart:
|
|
865
|
-
isBack:
|
|
909
|
+
isComptable: false,
|
|
910
|
+
isJuridique: true,
|
|
911
|
+
isSocial: false,
|
|
912
|
+
isAttestation: false,
|
|
913
|
+
inAverageCart: false,
|
|
914
|
+
isBack: false,
|
|
866
915
|
price: 39,
|
|
867
|
-
isCatalog:
|
|
868
|
-
hidden:
|
|
869
|
-
isComplementary:
|
|
916
|
+
isCatalog: false,
|
|
917
|
+
hidden: true,
|
|
918
|
+
isComplementary: false,
|
|
870
919
|
signaturePosition: null,
|
|
871
920
|
signaturePage: null,
|
|
872
921
|
},
|
|
873
922
|
AUGMENTATION_CAPITAL: {
|
|
874
923
|
id: 49,
|
|
875
924
|
name: 'Augmentation de capital',
|
|
876
|
-
isComptable:
|
|
877
|
-
isJuridique:
|
|
878
|
-
isSocial:
|
|
879
|
-
isAttestation:
|
|
880
|
-
inAverageCart:
|
|
881
|
-
isBack:
|
|
925
|
+
isComptable: false,
|
|
926
|
+
isJuridique: true,
|
|
927
|
+
isSocial: false,
|
|
928
|
+
isAttestation: false,
|
|
929
|
+
inAverageCart: false,
|
|
930
|
+
isBack: false,
|
|
882
931
|
price: 449,
|
|
883
|
-
isCatalog:
|
|
884
|
-
hidden:
|
|
885
|
-
isComplementary:
|
|
932
|
+
isCatalog: false,
|
|
933
|
+
hidden: true,
|
|
934
|
+
isComplementary: false,
|
|
886
935
|
signaturePosition: null,
|
|
887
936
|
signaturePage: null,
|
|
937
|
+
point: 0,
|
|
888
938
|
},
|
|
889
939
|
BAIL_COMMERCIAL: {
|
|
890
940
|
id: 50,
|
|
891
941
|
name: 'Bail commercial',
|
|
892
|
-
isComptable:
|
|
893
|
-
isJuridique:
|
|
894
|
-
isSocial:
|
|
895
|
-
isAttestation:
|
|
896
|
-
inAverageCart:
|
|
897
|
-
isBack:
|
|
942
|
+
isComptable: false,
|
|
943
|
+
isJuridique: true,
|
|
944
|
+
isSocial: false,
|
|
945
|
+
isAttestation: false,
|
|
946
|
+
inAverageCart: false,
|
|
947
|
+
isBack: false,
|
|
898
948
|
price: 200,
|
|
899
|
-
isCatalog:
|
|
900
|
-
hidden:
|
|
901
|
-
isComplementary:
|
|
949
|
+
isCatalog: true,
|
|
950
|
+
hidden: false,
|
|
951
|
+
isComplementary: false,
|
|
902
952
|
signaturePosition: null,
|
|
903
953
|
signaturePage: null,
|
|
954
|
+
point: 0,
|
|
904
955
|
},
|
|
905
956
|
CESSION_ACTIONS: {
|
|
906
957
|
id: 51,
|
|
907
958
|
name: 'Cession d\'actions',
|
|
908
|
-
isComptable:
|
|
909
|
-
isJuridique:
|
|
910
|
-
isSocial:
|
|
911
|
-
isAttestation:
|
|
912
|
-
inAverageCart:
|
|
913
|
-
isBack:
|
|
959
|
+
isComptable: false,
|
|
960
|
+
isJuridique: true,
|
|
961
|
+
isSocial: false,
|
|
962
|
+
isAttestation: false,
|
|
963
|
+
inAverageCart: false,
|
|
964
|
+
isBack: false,
|
|
914
965
|
price: 200,
|
|
915
|
-
isCatalog:
|
|
916
|
-
hidden:
|
|
917
|
-
isComplementary:
|
|
966
|
+
isCatalog: true,
|
|
967
|
+
hidden: false,
|
|
968
|
+
isComplementary: false,
|
|
918
969
|
signaturePosition: null,
|
|
919
970
|
signaturePage: null,
|
|
971
|
+
point: 0,
|
|
920
972
|
},
|
|
921
973
|
MODIFICATION_DATE_CLOTURE_EURL_SASU: {
|
|
922
974
|
id: 52,
|
|
923
975
|
name: 'Modification de la date de clôture (EURL/SASU)',
|
|
924
|
-
isComptable:
|
|
925
|
-
isJuridique:
|
|
926
|
-
isSocial:
|
|
927
|
-
isAttestation:
|
|
928
|
-
inAverageCart:
|
|
929
|
-
isBack:
|
|
976
|
+
isComptable: false,
|
|
977
|
+
isJuridique: true,
|
|
978
|
+
isSocial: false,
|
|
979
|
+
isAttestation: false,
|
|
980
|
+
inAverageCart: false,
|
|
981
|
+
isBack: false,
|
|
930
982
|
price: 249,
|
|
931
|
-
isCatalog:
|
|
932
|
-
hidden:
|
|
933
|
-
isComplementary:
|
|
983
|
+
isCatalog: true,
|
|
984
|
+
hidden: false,
|
|
985
|
+
isComplementary: false,
|
|
934
986
|
signaturePosition: null,
|
|
935
987
|
signaturePage: null,
|
|
988
|
+
point: 0,
|
|
936
989
|
},
|
|
937
990
|
MODIFICATION_DENOMINATION_SOCIALE_EURL_SASU: {
|
|
938
991
|
id: 53,
|
|
939
992
|
name: 'Modification de la dénomination sociale (EURL/SASU)',
|
|
940
|
-
isComptable:
|
|
941
|
-
isJuridique:
|
|
942
|
-
isSocial:
|
|
943
|
-
isAttestation:
|
|
944
|
-
inAverageCart:
|
|
945
|
-
isBack:
|
|
993
|
+
isComptable: false,
|
|
994
|
+
isJuridique: true,
|
|
995
|
+
isSocial: false,
|
|
996
|
+
isAttestation: false,
|
|
997
|
+
inAverageCart: false,
|
|
998
|
+
isBack: false,
|
|
946
999
|
price: 249,
|
|
947
|
-
isCatalog:
|
|
948
|
-
hidden:
|
|
949
|
-
isComplementary:
|
|
1000
|
+
isCatalog: true,
|
|
1001
|
+
hidden: false,
|
|
1002
|
+
isComplementary: false,
|
|
950
1003
|
signaturePosition: null,
|
|
951
1004
|
signaturePage: null,
|
|
1005
|
+
point: 0,
|
|
952
1006
|
},
|
|
953
1007
|
MODIFICATION_DIRIGEANT_OU_COMMISSAIRE_AU_COMPTE_SASU_EURL: {
|
|
954
1008
|
id: 54,
|
|
955
1009
|
name: 'Modification d\'un dirigeant ou d\'un commissaire aux compte (SASU / EURL)',
|
|
956
|
-
isComptable:
|
|
957
|
-
isJuridique:
|
|
958
|
-
isSocial:
|
|
959
|
-
isAttestation:
|
|
960
|
-
inAverageCart:
|
|
961
|
-
isBack:
|
|
1010
|
+
isComptable: false,
|
|
1011
|
+
isJuridique: true,
|
|
1012
|
+
isSocial: false,
|
|
1013
|
+
isAttestation: false,
|
|
1014
|
+
inAverageCart: false,
|
|
1015
|
+
isBack: false,
|
|
962
1016
|
price: 249,
|
|
963
|
-
isCatalog:
|
|
964
|
-
hidden:
|
|
965
|
-
isComplementary:
|
|
1017
|
+
isCatalog: true,
|
|
1018
|
+
hidden: false,
|
|
1019
|
+
isComplementary: false,
|
|
966
1020
|
signaturePosition: null,
|
|
967
1021
|
signaturePage: null,
|
|
1022
|
+
point: 0,
|
|
968
1023
|
},
|
|
969
1024
|
CONSEIL_JURIDIQUE_CONSEIL: {
|
|
970
1025
|
id: 55,
|
|
971
1026
|
name: 'Conseil juridique et conseil',
|
|
972
|
-
isComptable:
|
|
973
|
-
isJuridique:
|
|
974
|
-
isSocial:
|
|
975
|
-
isAttestation:
|
|
976
|
-
inAverageCart:
|
|
977
|
-
isBack:
|
|
1027
|
+
isComptable: false,
|
|
1028
|
+
isJuridique: true,
|
|
1029
|
+
isSocial: false,
|
|
1030
|
+
isAttestation: false,
|
|
1031
|
+
inAverageCart: false,
|
|
1032
|
+
isBack: false,
|
|
978
1033
|
price: 79,
|
|
979
|
-
isCatalog:
|
|
980
|
-
hidden:
|
|
981
|
-
isComplementary:
|
|
1034
|
+
isCatalog: false,
|
|
1035
|
+
hidden: true,
|
|
1036
|
+
isComplementary: false,
|
|
982
1037
|
signaturePosition: null,
|
|
983
1038
|
signaturePage: null,
|
|
1039
|
+
point: 0,
|
|
984
1040
|
},
|
|
985
1041
|
CONSTITUTION_SOCIETE: {
|
|
986
1042
|
id: 56,
|
|
987
1043
|
name: 'Constitution de société',
|
|
988
|
-
isComptable:
|
|
989
|
-
isJuridique:
|
|
990
|
-
isSocial:
|
|
991
|
-
isAttestation:
|
|
992
|
-
inAverageCart:
|
|
993
|
-
isBack:
|
|
1044
|
+
isComptable: false,
|
|
1045
|
+
isJuridique: true,
|
|
1046
|
+
isSocial: false,
|
|
1047
|
+
isAttestation: false,
|
|
1048
|
+
inAverageCart: false,
|
|
1049
|
+
isBack: false,
|
|
994
1050
|
price: 299,
|
|
995
|
-
isCatalog:
|
|
996
|
-
hidden:
|
|
997
|
-
isComplementary:
|
|
1051
|
+
isCatalog: false,
|
|
1052
|
+
hidden: true,
|
|
1053
|
+
isComplementary: false,
|
|
998
1054
|
signaturePosition: null,
|
|
999
1055
|
signaturePage: null,
|
|
1056
|
+
point: 0,
|
|
1000
1057
|
},
|
|
1001
1058
|
CONVENTION_DE_MISE_A_DISPOSITION_A_TITRE_GRATUIT: {
|
|
1002
1059
|
id: 57,
|
|
1003
1060
|
name: 'Convention de mise à disposition à titre gratuit',
|
|
1004
|
-
isComptable:
|
|
1005
|
-
isJuridique:
|
|
1006
|
-
isSocial:
|
|
1007
|
-
isAttestation:
|
|
1008
|
-
inAverageCart:
|
|
1009
|
-
isBack:
|
|
1061
|
+
isComptable: false,
|
|
1062
|
+
isJuridique: true,
|
|
1063
|
+
isSocial: false,
|
|
1064
|
+
isAttestation: false,
|
|
1065
|
+
inAverageCart: false,
|
|
1066
|
+
isBack: false,
|
|
1010
1067
|
price: 99,
|
|
1011
|
-
isCatalog:
|
|
1012
|
-
hidden:
|
|
1013
|
-
isComplementary:
|
|
1068
|
+
isCatalog: true,
|
|
1069
|
+
hidden: false,
|
|
1070
|
+
isComplementary: false,
|
|
1014
1071
|
signaturePosition: null,
|
|
1015
1072
|
signaturePage: null,
|
|
1073
|
+
point: 0,
|
|
1016
1074
|
},
|
|
1017
1075
|
CONVENTION_COMPTE_COURANT: {
|
|
1018
1076
|
id: 58,
|
|
1019
1077
|
name: 'Convention compte courant',
|
|
1020
|
-
isComptable:
|
|
1021
|
-
isJuridique:
|
|
1022
|
-
isSocial:
|
|
1023
|
-
isAttestation:
|
|
1024
|
-
inAverageCart:
|
|
1025
|
-
isBack:
|
|
1078
|
+
isComptable: false,
|
|
1079
|
+
isJuridique: true,
|
|
1080
|
+
isSocial: false,
|
|
1081
|
+
isAttestation: false,
|
|
1082
|
+
inAverageCart: false,
|
|
1083
|
+
isBack: false,
|
|
1026
1084
|
price: 200,
|
|
1027
|
-
isCatalog:
|
|
1028
|
-
hidden:
|
|
1029
|
-
isComplementary:
|
|
1085
|
+
isCatalog: true,
|
|
1086
|
+
hidden: false,
|
|
1087
|
+
isComplementary: false,
|
|
1030
1088
|
signaturePosition: null,
|
|
1031
1089
|
signaturePage: null,
|
|
1090
|
+
point: 0,
|
|
1032
1091
|
},
|
|
1033
1092
|
CREATION_FERMETURE_ETABLISSEMENT_SECONDAIRE_COMPLEMENTAIRE: {
|
|
1034
1093
|
id: 59,
|
|
1035
1094
|
name: 'Création / fermeture établissement secondaire / complémentaire',
|
|
1036
|
-
isComptable:
|
|
1037
|
-
isJuridique:
|
|
1038
|
-
isSocial:
|
|
1039
|
-
isAttestation:
|
|
1040
|
-
inAverageCart:
|
|
1041
|
-
isBack:
|
|
1095
|
+
isComptable: false,
|
|
1096
|
+
isJuridique: true,
|
|
1097
|
+
isSocial: false,
|
|
1098
|
+
isAttestation: false,
|
|
1099
|
+
inAverageCart: false,
|
|
1100
|
+
isBack: false,
|
|
1042
1101
|
price: 149,
|
|
1043
|
-
isCatalog:
|
|
1044
|
-
hidden:
|
|
1045
|
-
isComplementary:
|
|
1102
|
+
isCatalog: true,
|
|
1103
|
+
hidden: false,
|
|
1104
|
+
isComplementary: false,
|
|
1046
1105
|
signaturePosition: null,
|
|
1047
1106
|
signaturePage: null,
|
|
1107
|
+
point: 0,
|
|
1048
1108
|
},
|
|
1049
1109
|
DECLARATION_NOM_COMMERCIAL_ENSEIGNE_NOM_DE_DOMAINE: {
|
|
1050
1110
|
id: 60,
|
|
1051
1111
|
name: 'Déclaration Nom commercial / Enseigne / Nom de domaine',
|
|
1052
|
-
isComptable:
|
|
1053
|
-
isJuridique:
|
|
1054
|
-
isSocial:
|
|
1055
|
-
isAttestation:
|
|
1056
|
-
inAverageCart:
|
|
1057
|
-
isBack:
|
|
1112
|
+
isComptable: false,
|
|
1113
|
+
isJuridique: true,
|
|
1114
|
+
isSocial: false,
|
|
1115
|
+
isAttestation: false,
|
|
1116
|
+
inAverageCart: false,
|
|
1117
|
+
isBack: false,
|
|
1058
1118
|
price: 149,
|
|
1059
|
-
isCatalog:
|
|
1060
|
-
hidden:
|
|
1061
|
-
isComplementary:
|
|
1119
|
+
isCatalog: true,
|
|
1120
|
+
hidden: false,
|
|
1121
|
+
isComplementary: false,
|
|
1062
1122
|
signaturePosition: null,
|
|
1063
1123
|
signaturePage: null,
|
|
1124
|
+
point: 0,
|
|
1064
1125
|
},
|
|
1065
1126
|
DISSOLUTION_LIQUIDATION_A_DATE_CLOTURE: {
|
|
1066
1127
|
id: 61,
|
|
1067
1128
|
name: 'Dissolution Liquidation à date de clôture (y compris bilan de liquidation)',
|
|
1068
|
-
isComptable:
|
|
1069
|
-
isJuridique:
|
|
1070
|
-
isSocial:
|
|
1071
|
-
isAttestation:
|
|
1072
|
-
inAverageCart:
|
|
1073
|
-
isBack:
|
|
1129
|
+
isComptable: false,
|
|
1130
|
+
isJuridique: true,
|
|
1131
|
+
isSocial: false,
|
|
1132
|
+
isAttestation: false,
|
|
1133
|
+
inAverageCart: false,
|
|
1134
|
+
isBack: false,
|
|
1074
1135
|
price: 589,
|
|
1075
|
-
isCatalog:
|
|
1076
|
-
hidden:
|
|
1077
|
-
isComplementary:
|
|
1136
|
+
isCatalog: true,
|
|
1137
|
+
hidden: false,
|
|
1138
|
+
isComplementary: false,
|
|
1078
1139
|
signaturePosition: null,
|
|
1079
1140
|
signaturePage: null,
|
|
1141
|
+
point: 0,
|
|
1080
1142
|
},
|
|
1081
1143
|
MODIFICATION_OBJET_SOCIAL_EURL_SASU: {
|
|
1082
1144
|
id: 62,
|
|
1083
1145
|
name: 'Modification de l\'objet social (EURL/SASU)',
|
|
1084
|
-
isComptable:
|
|
1085
|
-
isJuridique:
|
|
1086
|
-
isSocial:
|
|
1087
|
-
isAttestation:
|
|
1088
|
-
inAverageCart:
|
|
1089
|
-
isBack:
|
|
1146
|
+
isComptable: false,
|
|
1147
|
+
isJuridique: true,
|
|
1148
|
+
isSocial: false,
|
|
1149
|
+
isAttestation: false,
|
|
1150
|
+
inAverageCart: false,
|
|
1151
|
+
isBack: false,
|
|
1090
1152
|
price: 249,
|
|
1091
|
-
isCatalog:
|
|
1092
|
-
hidden:
|
|
1093
|
-
isComplementary:
|
|
1153
|
+
isCatalog: true,
|
|
1154
|
+
hidden: false,
|
|
1155
|
+
isComplementary: false,
|
|
1094
1156
|
signaturePosition: null,
|
|
1095
1157
|
signaturePage: null,
|
|
1158
|
+
point: 0,
|
|
1096
1159
|
},
|
|
1097
1160
|
IMMATRICULATION_EI: {
|
|
1098
1161
|
id: 63,
|
|
1099
1162
|
name: 'Immatriculation EI',
|
|
1100
|
-
isComptable:
|
|
1101
|
-
isJuridique:
|
|
1102
|
-
isSocial:
|
|
1103
|
-
isAttestation:
|
|
1104
|
-
inAverageCart:
|
|
1105
|
-
isBack:
|
|
1163
|
+
isComptable: false,
|
|
1164
|
+
isJuridique: true,
|
|
1165
|
+
isSocial: false,
|
|
1166
|
+
isAttestation: false,
|
|
1167
|
+
inAverageCart: false,
|
|
1168
|
+
isBack: false,
|
|
1106
1169
|
price: 99,
|
|
1107
|
-
isCatalog:
|
|
1108
|
-
hidden:
|
|
1109
|
-
isComplementary:
|
|
1170
|
+
isCatalog: true,
|
|
1171
|
+
hidden: false,
|
|
1172
|
+
isComplementary: false,
|
|
1110
1173
|
signaturePosition: null,
|
|
1111
1174
|
signaturePage: null,
|
|
1175
|
+
point: 0,
|
|
1112
1176
|
},
|
|
1113
1177
|
INTEGRATION_FISCALE: {
|
|
1114
1178
|
id: 64,
|
|
1115
1179
|
name: 'Intégration fiscale',
|
|
1116
|
-
isComptable:
|
|
1117
|
-
isJuridique:
|
|
1118
|
-
isSocial:
|
|
1119
|
-
isAttestation:
|
|
1120
|
-
inAverageCart:
|
|
1121
|
-
isBack:
|
|
1180
|
+
isComptable: false,
|
|
1181
|
+
isJuridique: true,
|
|
1182
|
+
isSocial: false,
|
|
1183
|
+
isAttestation: false,
|
|
1184
|
+
inAverageCart: false,
|
|
1185
|
+
isBack: false,
|
|
1122
1186
|
price: 149,
|
|
1123
|
-
isCatalog:
|
|
1124
|
-
hidden:
|
|
1125
|
-
isComplementary:
|
|
1187
|
+
isCatalog: true,
|
|
1188
|
+
hidden: false,
|
|
1189
|
+
isComplementary: false,
|
|
1126
1190
|
signaturePosition: null,
|
|
1127
1191
|
signaturePage: null,
|
|
1192
|
+
point: 0,
|
|
1128
1193
|
},
|
|
1129
1194
|
LIBERATION_CAPITAL: {
|
|
1130
1195
|
id: 65,
|
|
1131
1196
|
name: 'Libération du capital',
|
|
1132
|
-
isComptable:
|
|
1133
|
-
isJuridique:
|
|
1134
|
-
isSocial:
|
|
1135
|
-
isAttestation:
|
|
1136
|
-
inAverageCart:
|
|
1137
|
-
isBack:
|
|
1197
|
+
isComptable: false,
|
|
1198
|
+
isJuridique: true,
|
|
1199
|
+
isSocial: false,
|
|
1200
|
+
isAttestation: false,
|
|
1201
|
+
inAverageCart: false,
|
|
1202
|
+
isBack: false,
|
|
1138
1203
|
price: 149,
|
|
1139
|
-
isCatalog:
|
|
1140
|
-
hidden:
|
|
1141
|
-
isComplementary:
|
|
1204
|
+
isCatalog: true,
|
|
1205
|
+
hidden: false,
|
|
1206
|
+
isComplementary: false,
|
|
1142
1207
|
signaturePosition: null,
|
|
1143
1208
|
signaturePage: null,
|
|
1209
|
+
point: 0,
|
|
1144
1210
|
},
|
|
1145
1211
|
DISTRIBUTION_DIVIDENDES_SUR_RESERVE: {
|
|
1146
1212
|
id: 66,
|
|
1147
1213
|
name: 'Distribution de dividendes sur réserves',
|
|
1148
|
-
isComptable:
|
|
1149
|
-
isJuridique:
|
|
1150
|
-
isSocial:
|
|
1151
|
-
isAttestation:
|
|
1152
|
-
inAverageCart:
|
|
1153
|
-
isBack:
|
|
1214
|
+
isComptable: false,
|
|
1215
|
+
isJuridique: true,
|
|
1216
|
+
isSocial: false,
|
|
1217
|
+
isAttestation: false,
|
|
1218
|
+
inAverageCart: false,
|
|
1219
|
+
isBack: false,
|
|
1154
1220
|
price: 149,
|
|
1155
|
-
isCatalog:
|
|
1156
|
-
hidden:
|
|
1157
|
-
isComplementary:
|
|
1221
|
+
isCatalog: true,
|
|
1222
|
+
hidden: false,
|
|
1223
|
+
isComplementary: false,
|
|
1158
1224
|
signaturePosition: null,
|
|
1159
1225
|
signaturePage: null,
|
|
1226
|
+
point: 0,
|
|
1160
1227
|
},
|
|
1161
1228
|
MISE_EN_SOMMEIL: {
|
|
1162
1229
|
id: 67,
|
|
1163
1230
|
name: 'Mise en sommeil',
|
|
1164
|
-
isComptable:
|
|
1165
|
-
isJuridique:
|
|
1166
|
-
isSocial:
|
|
1167
|
-
isAttestation:
|
|
1168
|
-
inAverageCart:
|
|
1169
|
-
isBack:
|
|
1231
|
+
isComptable: false,
|
|
1232
|
+
isJuridique: true,
|
|
1233
|
+
isSocial: false,
|
|
1234
|
+
isAttestation: false,
|
|
1235
|
+
inAverageCart: false,
|
|
1236
|
+
isBack: false,
|
|
1170
1237
|
price: 149,
|
|
1171
|
-
isCatalog:
|
|
1172
|
-
hidden:
|
|
1173
|
-
isComplementary:
|
|
1238
|
+
isCatalog: true,
|
|
1239
|
+
hidden: false,
|
|
1240
|
+
isComplementary: false,
|
|
1174
1241
|
signaturePosition: null,
|
|
1175
1242
|
signaturePage: null,
|
|
1243
|
+
point: 0,
|
|
1176
1244
|
},
|
|
1177
1245
|
MODIFICATION_EIRL: {
|
|
1178
1246
|
id: 68,
|
|
1179
1247
|
name: 'Modification EIRL',
|
|
1180
|
-
isComptable:
|
|
1181
|
-
isJuridique:
|
|
1182
|
-
isSocial:
|
|
1183
|
-
isAttestation:
|
|
1184
|
-
inAverageCart:
|
|
1185
|
-
isBack:
|
|
1248
|
+
isComptable: false,
|
|
1249
|
+
isJuridique: true,
|
|
1250
|
+
isSocial: false,
|
|
1251
|
+
isAttestation: false,
|
|
1252
|
+
inAverageCart: false,
|
|
1253
|
+
isBack: false,
|
|
1186
1254
|
price: 199,
|
|
1187
|
-
isCatalog:
|
|
1188
|
-
hidden:
|
|
1189
|
-
isComplementary:
|
|
1255
|
+
isCatalog: true,
|
|
1256
|
+
hidden: false,
|
|
1257
|
+
isComplementary: false,
|
|
1190
1258
|
signaturePosition: null,
|
|
1191
1259
|
signaturePage: null,
|
|
1260
|
+
point: 0,
|
|
1192
1261
|
},
|
|
1193
1262
|
PERTE_MOITIE_DU_CAPITAL: {
|
|
1194
1263
|
id: 69,
|
|
1195
1264
|
name: 'Perte moitié du capital',
|
|
1196
|
-
isComptable:
|
|
1197
|
-
isJuridique:
|
|
1198
|
-
isSocial:
|
|
1199
|
-
isAttestation:
|
|
1200
|
-
inAverageCart:
|
|
1201
|
-
isBack:
|
|
1265
|
+
isComptable: false,
|
|
1266
|
+
isJuridique: true,
|
|
1267
|
+
isSocial: false,
|
|
1268
|
+
isAttestation: false,
|
|
1269
|
+
inAverageCart: false,
|
|
1270
|
+
isBack: false,
|
|
1202
1271
|
price: 199,
|
|
1203
|
-
isCatalog:
|
|
1204
|
-
hidden:
|
|
1205
|
-
isComplementary:
|
|
1272
|
+
isCatalog: false,
|
|
1273
|
+
hidden: true,
|
|
1274
|
+
isComplementary: false,
|
|
1206
1275
|
signaturePosition: null,
|
|
1207
1276
|
signaturePage: null,
|
|
1277
|
+
point: 0,
|
|
1208
1278
|
},
|
|
1209
1279
|
REDUCTION_DU_CAPITAL: {
|
|
1210
1280
|
id: 70,
|
|
1211
1281
|
name: 'Réduction de capital',
|
|
1212
|
-
isComptable:
|
|
1213
|
-
isJuridique:
|
|
1214
|
-
isSocial:
|
|
1215
|
-
isAttestation:
|
|
1216
|
-
inAverageCart:
|
|
1217
|
-
isBack:
|
|
1282
|
+
isComptable: false,
|
|
1283
|
+
isJuridique: true,
|
|
1284
|
+
isSocial: false,
|
|
1285
|
+
isAttestation: false,
|
|
1286
|
+
inAverageCart: false,
|
|
1287
|
+
isBack: false,
|
|
1218
1288
|
price: 499,
|
|
1219
|
-
isCatalog:
|
|
1220
|
-
hidden:
|
|
1221
|
-
isComplementary:
|
|
1289
|
+
isCatalog: true,
|
|
1290
|
+
hidden: false,
|
|
1291
|
+
isComplementary: false,
|
|
1222
1292
|
signaturePosition: null,
|
|
1223
1293
|
signaturePage: null,
|
|
1294
|
+
point: 0,
|
|
1224
1295
|
},
|
|
1225
1296
|
TRANSFORMATION_SARL_EN_SAS: {
|
|
1226
1297
|
id: 71,
|
|
1227
1298
|
name: 'Transformation SARL en SAS',
|
|
1228
|
-
isComptable:
|
|
1229
|
-
isJuridique:
|
|
1230
|
-
isSocial:
|
|
1231
|
-
isAttestation:
|
|
1232
|
-
inAverageCart:
|
|
1233
|
-
isBack:
|
|
1299
|
+
isComptable: false,
|
|
1300
|
+
isJuridique: true,
|
|
1301
|
+
isSocial: false,
|
|
1302
|
+
isAttestation: false,
|
|
1303
|
+
inAverageCart: false,
|
|
1304
|
+
isBack: false,
|
|
1234
1305
|
price: 796,
|
|
1235
|
-
isCatalog:
|
|
1236
|
-
hidden:
|
|
1237
|
-
isComplementary:
|
|
1306
|
+
isCatalog: true,
|
|
1307
|
+
hidden: false,
|
|
1308
|
+
isComplementary: false,
|
|
1238
1309
|
signaturePosition: null,
|
|
1239
1310
|
signaturePage: null,
|
|
1311
|
+
point: 0,
|
|
1240
1312
|
},
|
|
1241
1313
|
TRANSFORMATION_SAS_EN_SARL: {
|
|
1242
1314
|
id: 72,
|
|
1243
1315
|
name: 'Transformation SAS en SARL',
|
|
1244
|
-
isComptable:
|
|
1245
|
-
isJuridique:
|
|
1246
|
-
isSocial:
|
|
1247
|
-
isAttestation:
|
|
1248
|
-
inAverageCart:
|
|
1249
|
-
isBack:
|
|
1316
|
+
isComptable: false,
|
|
1317
|
+
isJuridique: true,
|
|
1318
|
+
isSocial: false,
|
|
1319
|
+
isAttestation: false,
|
|
1320
|
+
inAverageCart: false,
|
|
1321
|
+
isBack: false,
|
|
1250
1322
|
price: 596,
|
|
1251
|
-
isCatalog:
|
|
1252
|
-
hidden:
|
|
1253
|
-
isComplementary:
|
|
1323
|
+
isCatalog: true,
|
|
1324
|
+
hidden: false,
|
|
1325
|
+
isComplementary: false,
|
|
1254
1326
|
signaturePosition: null,
|
|
1255
1327
|
signaturePage: null,
|
|
1328
|
+
point: 0,
|
|
1256
1329
|
},
|
|
1257
1330
|
DECLARATION_MARQUE_INPI: {
|
|
1258
1331
|
id: 73,
|
|
1259
1332
|
name: 'Déclaration marque INPI',
|
|
1260
|
-
isComptable:
|
|
1261
|
-
isJuridique:
|
|
1262
|
-
isSocial:
|
|
1263
|
-
isAttestation:
|
|
1264
|
-
inAverageCart:
|
|
1265
|
-
isBack:
|
|
1333
|
+
isComptable: false,
|
|
1334
|
+
isJuridique: true,
|
|
1335
|
+
isSocial: false,
|
|
1336
|
+
isAttestation: false,
|
|
1337
|
+
inAverageCart: false,
|
|
1338
|
+
isBack: false,
|
|
1266
1339
|
price: 200,
|
|
1267
|
-
isCatalog:
|
|
1268
|
-
hidden:
|
|
1269
|
-
isComplementary:
|
|
1340
|
+
isCatalog: true,
|
|
1341
|
+
hidden: false,
|
|
1342
|
+
isComplementary: false,
|
|
1270
1343
|
signaturePosition: null,
|
|
1271
1344
|
signaturePage: null,
|
|
1345
|
+
point: 0,
|
|
1272
1346
|
},
|
|
1273
1347
|
FORMALITES: {
|
|
1274
1348
|
id: 74,
|
|
1275
1349
|
name: 'Formalités',
|
|
1276
|
-
isComptable:
|
|
1277
|
-
isJuridique:
|
|
1278
|
-
isSocial:
|
|
1279
|
-
isAttestation:
|
|
1280
|
-
inAverageCart:
|
|
1281
|
-
isBack:
|
|
1350
|
+
isComptable: false,
|
|
1351
|
+
isJuridique: true,
|
|
1352
|
+
isSocial: false,
|
|
1353
|
+
isAttestation: false,
|
|
1354
|
+
inAverageCart: false,
|
|
1355
|
+
isBack: false,
|
|
1282
1356
|
price: 59,
|
|
1283
|
-
isCatalog:
|
|
1284
|
-
hidden:
|
|
1285
|
-
isComplementary:
|
|
1357
|
+
isCatalog: true,
|
|
1358
|
+
hidden: false,
|
|
1359
|
+
isComplementary: false,
|
|
1286
1360
|
signaturePosition: null,
|
|
1287
1361
|
signaturePage: null,
|
|
1362
|
+
point: 0,
|
|
1288
1363
|
},
|
|
1289
1364
|
TRANSFERT_SIEGE_SOCIAL_SASU_EURL: {
|
|
1290
1365
|
id: 75,
|
|
1291
1366
|
name: 'Transfert de siège social (SASU / EURL)',
|
|
1292
|
-
isComptable:
|
|
1293
|
-
isJuridique:
|
|
1294
|
-
isSocial:
|
|
1295
|
-
isAttestation:
|
|
1296
|
-
inAverageCart:
|
|
1297
|
-
isBack:
|
|
1367
|
+
isComptable: false,
|
|
1368
|
+
isJuridique: true,
|
|
1369
|
+
isSocial: false,
|
|
1370
|
+
isAttestation: false,
|
|
1371
|
+
inAverageCart: false,
|
|
1372
|
+
isBack: false,
|
|
1298
1373
|
price: 249,
|
|
1299
|
-
isCatalog:
|
|
1300
|
-
hidden:
|
|
1301
|
-
isComplementary:
|
|
1374
|
+
isCatalog: true,
|
|
1375
|
+
hidden: false,
|
|
1376
|
+
isComplementary: false,
|
|
1302
1377
|
signaturePosition: null,
|
|
1303
1378
|
signaturePage: null,
|
|
1379
|
+
point: 0,
|
|
1304
1380
|
},
|
|
1305
1381
|
REDUCTION_CAPITAL_NON_MOTIVEE_PAR_LES_PERTES: {
|
|
1306
1382
|
id: 76,
|
|
1307
1383
|
name: 'Réduction de capital non motivée par les pertes',
|
|
1308
|
-
isComptable:
|
|
1309
|
-
isJuridique:
|
|
1310
|
-
isSocial:
|
|
1311
|
-
isAttestation:
|
|
1312
|
-
inAverageCart:
|
|
1313
|
-
isBack:
|
|
1384
|
+
isComptable: false,
|
|
1385
|
+
isJuridique: true,
|
|
1386
|
+
isSocial: false,
|
|
1387
|
+
isAttestation: false,
|
|
1388
|
+
inAverageCart: false,
|
|
1389
|
+
isBack: false,
|
|
1314
1390
|
price: 499,
|
|
1315
|
-
isCatalog:
|
|
1316
|
-
hidden:
|
|
1317
|
-
isComplementary:
|
|
1391
|
+
isCatalog: true,
|
|
1392
|
+
hidden: false,
|
|
1393
|
+
isComplementary: false,
|
|
1318
1394
|
signaturePosition: null,
|
|
1319
1395
|
signaturePage: null,
|
|
1396
|
+
point: 0,
|
|
1320
1397
|
},
|
|
1321
1398
|
TRANSMISSION_UNIVERSELLE_PATRIMOINE_ASSOCIE_UNIQUE_EURL_SASU: {
|
|
1322
1399
|
id: 77,
|
|
1323
1400
|
name: 'Transmission universelle du patrimoine (si associé unique personne morale - EURL/SASU)',
|
|
1324
|
-
isComptable:
|
|
1325
|
-
isJuridique:
|
|
1326
|
-
isSocial:
|
|
1327
|
-
isAttestation:
|
|
1328
|
-
inAverageCart:
|
|
1329
|
-
isBack:
|
|
1401
|
+
isComptable: false,
|
|
1402
|
+
isJuridique: true,
|
|
1403
|
+
isSocial: false,
|
|
1404
|
+
isAttestation: false,
|
|
1405
|
+
inAverageCart: false,
|
|
1406
|
+
isBack: false,
|
|
1330
1407
|
price: 399,
|
|
1331
|
-
isCatalog:
|
|
1332
|
-
hidden:
|
|
1333
|
-
isComplementary:
|
|
1408
|
+
isCatalog: false,
|
|
1409
|
+
hidden: true,
|
|
1410
|
+
isComplementary: false,
|
|
1334
1411
|
signaturePosition: null,
|
|
1335
1412
|
signaturePage: null,
|
|
1413
|
+
point: 0,
|
|
1336
1414
|
},
|
|
1337
1415
|
BULLETIONS_SALAIRE: {
|
|
1338
1416
|
id: 78,
|
|
1339
1417
|
name: 'Bulletins de salaires',
|
|
1340
|
-
isComptable:
|
|
1341
|
-
isJuridique:
|
|
1342
|
-
isSocial:
|
|
1343
|
-
isAttestation:
|
|
1344
|
-
inAverageCart:
|
|
1345
|
-
isBack:
|
|
1418
|
+
isComptable: false,
|
|
1419
|
+
isJuridique: false,
|
|
1420
|
+
isSocial: true,
|
|
1421
|
+
isAttestation: false,
|
|
1422
|
+
inAverageCart: false,
|
|
1423
|
+
isBack: false,
|
|
1346
1424
|
price: 15.9,
|
|
1347
|
-
isCatalog:
|
|
1348
|
-
hidden:
|
|
1349
|
-
isComplementary:
|
|
1425
|
+
isCatalog: true,
|
|
1426
|
+
hidden: false,
|
|
1427
|
+
isComplementary: false,
|
|
1350
1428
|
signaturePosition: null,
|
|
1351
1429
|
signaturePage: null,
|
|
1430
|
+
point: 0,
|
|
1352
1431
|
},
|
|
1353
1432
|
DSN: {
|
|
1354
1433
|
id: 79,
|
|
1355
1434
|
name: 'DSN',
|
|
1356
|
-
isComptable:
|
|
1357
|
-
isJuridique:
|
|
1358
|
-
isSocial:
|
|
1359
|
-
isAttestation:
|
|
1360
|
-
inAverageCart:
|
|
1361
|
-
isBack:
|
|
1435
|
+
isComptable: false,
|
|
1436
|
+
isJuridique: false,
|
|
1437
|
+
isSocial: true,
|
|
1438
|
+
isAttestation: false,
|
|
1439
|
+
inAverageCart: false,
|
|
1440
|
+
isBack: false,
|
|
1362
1441
|
price: 15,
|
|
1363
|
-
isCatalog:
|
|
1364
|
-
hidden:
|
|
1365
|
-
isComplementary:
|
|
1442
|
+
isCatalog: true,
|
|
1443
|
+
hidden: false,
|
|
1444
|
+
isComplementary: false,
|
|
1366
1445
|
signaturePosition: null,
|
|
1367
1446
|
signaturePage: null,
|
|
1447
|
+
point: 0,
|
|
1368
1448
|
},
|
|
1369
1449
|
CREATION_DOSSIER_INFORMATIQUE_PAR_SALARIE: {
|
|
1370
1450
|
id: 80,
|
|
1371
1451
|
name: 'Création d\'un dossier informatique par salarié',
|
|
1372
|
-
isComptable:
|
|
1373
|
-
isJuridique:
|
|
1374
|
-
isSocial:
|
|
1375
|
-
isAttestation:
|
|
1376
|
-
inAverageCart:
|
|
1377
|
-
isBack:
|
|
1452
|
+
isComptable: false,
|
|
1453
|
+
isJuridique: false,
|
|
1454
|
+
isSocial: true,
|
|
1455
|
+
isAttestation: false,
|
|
1456
|
+
inAverageCart: false,
|
|
1457
|
+
isBack: false,
|
|
1378
1458
|
price: 20,
|
|
1379
|
-
isCatalog:
|
|
1380
|
-
hidden:
|
|
1381
|
-
isComplementary:
|
|
1459
|
+
isCatalog: true,
|
|
1460
|
+
hidden: false,
|
|
1461
|
+
isComplementary: false,
|
|
1382
1462
|
signaturePosition: null,
|
|
1383
1463
|
signaturePage: null,
|
|
1464
|
+
point: 0,
|
|
1384
1465
|
},
|
|
1385
1466
|
ETABLISSEMENT_CONTRAT_TRAVAIL: {
|
|
1386
1467
|
id: 81,
|
|
1387
1468
|
name: 'Etablissement d\'un contrat de travail',
|
|
1388
|
-
isComptable:
|
|
1389
|
-
isJuridique:
|
|
1390
|
-
isSocial:
|
|
1391
|
-
isAttestation:
|
|
1392
|
-
inAverageCart:
|
|
1393
|
-
isBack:
|
|
1469
|
+
isComptable: false,
|
|
1470
|
+
isJuridique: false,
|
|
1471
|
+
isSocial: true,
|
|
1472
|
+
isAttestation: false,
|
|
1473
|
+
inAverageCart: false,
|
|
1474
|
+
isBack: false,
|
|
1394
1475
|
price: 78,
|
|
1395
|
-
isCatalog:
|
|
1396
|
-
hidden:
|
|
1397
|
-
isComplementary:
|
|
1476
|
+
isCatalog: true,
|
|
1477
|
+
hidden: false,
|
|
1478
|
+
isComplementary: false,
|
|
1398
1479
|
signaturePosition: null,
|
|
1399
1480
|
signaturePage: null,
|
|
1481
|
+
point: 0,
|
|
1400
1482
|
},
|
|
1401
1483
|
ATTESTATION_SALAIRE: {
|
|
1402
1484
|
id: 82,
|
|
1403
1485
|
name: 'Attestation de salaire',
|
|
1404
|
-
isComptable:
|
|
1405
|
-
isJuridique:
|
|
1406
|
-
isSocial:
|
|
1407
|
-
isAttestation:
|
|
1408
|
-
inAverageCart:
|
|
1409
|
-
isBack:
|
|
1486
|
+
isComptable: false,
|
|
1487
|
+
isJuridique: false,
|
|
1488
|
+
isSocial: true,
|
|
1489
|
+
isAttestation: false,
|
|
1490
|
+
inAverageCart: false,
|
|
1491
|
+
isBack: false,
|
|
1410
1492
|
price: 18,
|
|
1411
|
-
isCatalog:
|
|
1412
|
-
hidden:
|
|
1413
|
-
isComplementary:
|
|
1493
|
+
isCatalog: true,
|
|
1494
|
+
hidden: false,
|
|
1495
|
+
isComplementary: false,
|
|
1414
1496
|
signaturePosition: null,
|
|
1415
1497
|
signaturePage: null,
|
|
1498
|
+
point: 0,
|
|
1416
1499
|
},
|
|
1417
1500
|
ADHESION_ORGANISMES_COTISATIONS_OBLIGATOIRES: {
|
|
1418
1501
|
id: 83,
|
|
1419
1502
|
name: 'Adhésion aux organismes de cotisations obligatoires',
|
|
1420
|
-
isComptable:
|
|
1421
|
-
isJuridique:
|
|
1422
|
-
isSocial:
|
|
1423
|
-
isAttestation:
|
|
1424
|
-
inAverageCart:
|
|
1425
|
-
isBack:
|
|
1503
|
+
isComptable: false,
|
|
1504
|
+
isJuridique: false,
|
|
1505
|
+
isSocial: true,
|
|
1506
|
+
isAttestation: false,
|
|
1507
|
+
inAverageCart: false,
|
|
1508
|
+
isBack: false,
|
|
1426
1509
|
price: 56,
|
|
1427
|
-
isCatalog:
|
|
1428
|
-
hidden:
|
|
1429
|
-
isComplementary:
|
|
1510
|
+
isCatalog: true,
|
|
1511
|
+
hidden: false,
|
|
1512
|
+
isComplementary: false,
|
|
1430
1513
|
signaturePosition: null,
|
|
1431
1514
|
signaturePage: null,
|
|
1515
|
+
point: 0,
|
|
1432
1516
|
},
|
|
1433
1517
|
TAXE_APPRENTISSAGE_ET_FORMATION_CONTINUE: {
|
|
1434
1518
|
id: 84,
|
|
1435
1519
|
name: 'Taxe d\'apprentissage et formation continue',
|
|
1436
|
-
isComptable:
|
|
1437
|
-
isJuridique:
|
|
1438
|
-
isSocial:
|
|
1439
|
-
isAttestation:
|
|
1440
|
-
inAverageCart:
|
|
1441
|
-
isBack:
|
|
1520
|
+
isComptable: false,
|
|
1521
|
+
isJuridique: false,
|
|
1522
|
+
isSocial: true,
|
|
1523
|
+
isAttestation: false,
|
|
1524
|
+
inAverageCart: false,
|
|
1525
|
+
isBack: false,
|
|
1442
1526
|
price: 48,
|
|
1443
|
-
isCatalog:
|
|
1444
|
-
hidden:
|
|
1445
|
-
isComplementary:
|
|
1527
|
+
isCatalog: true,
|
|
1528
|
+
hidden: false,
|
|
1529
|
+
isComplementary: false,
|
|
1446
1530
|
signaturePosition: null,
|
|
1447
1531
|
signaturePage: null,
|
|
1532
|
+
point: 0,
|
|
1448
1533
|
},
|
|
1449
1534
|
DISSOLUTION_LIQUIDATION_HORS_DATE_CLOTURE: {
|
|
1450
1535
|
id: 85,
|
|
1451
1536
|
name: 'Dissolution Liquidation hors date de clôture (y compris bilan de liquidation)',
|
|
1452
|
-
isComptable:
|
|
1453
|
-
isJuridique:
|
|
1454
|
-
isSocial:
|
|
1455
|
-
isAttestation:
|
|
1456
|
-
inAverageCart:
|
|
1457
|
-
isBack:
|
|
1537
|
+
isComptable: false,
|
|
1538
|
+
isJuridique: true,
|
|
1539
|
+
isSocial: false,
|
|
1540
|
+
isAttestation: false,
|
|
1541
|
+
inAverageCart: false,
|
|
1542
|
+
isBack: false,
|
|
1458
1543
|
price: 889,
|
|
1459
|
-
isCatalog:
|
|
1460
|
-
hidden:
|
|
1461
|
-
isComplementary:
|
|
1544
|
+
isCatalog: true,
|
|
1545
|
+
hidden: false,
|
|
1546
|
+
isComplementary: false,
|
|
1462
1547
|
signaturePosition: null,
|
|
1463
1548
|
signaturePage: null,
|
|
1549
|
+
point: 0,
|
|
1464
1550
|
},
|
|
1465
1551
|
AUGMENTATION_CAPITAL_VARIABLE: {
|
|
1466
1552
|
id: 86,
|
|
1467
1553
|
name: 'Augmentation de capital variable',
|
|
1468
|
-
isComptable:
|
|
1469
|
-
isJuridique:
|
|
1470
|
-
isSocial:
|
|
1471
|
-
isAttestation:
|
|
1472
|
-
inAverageCart:
|
|
1473
|
-
isBack:
|
|
1554
|
+
isComptable: false,
|
|
1555
|
+
isJuridique: true,
|
|
1556
|
+
isSocial: false,
|
|
1557
|
+
isAttestation: false,
|
|
1558
|
+
inAverageCart: false,
|
|
1559
|
+
isBack: false,
|
|
1474
1560
|
price: 149,
|
|
1475
|
-
isCatalog:
|
|
1476
|
-
hidden:
|
|
1477
|
-
isComplementary:
|
|
1561
|
+
isCatalog: true,
|
|
1562
|
+
hidden: false,
|
|
1563
|
+
isComplementary: false,
|
|
1478
1564
|
signaturePosition: null,
|
|
1479
1565
|
signaturePage: null,
|
|
1566
|
+
point: 0,
|
|
1480
1567
|
},
|
|
1481
1568
|
CESSION_PARTS_SOCIALES_EURL: {
|
|
1482
1569
|
id: 87,
|
|
1483
1570
|
name: 'Cession de parts sociales (EURL)',
|
|
1484
|
-
isComptable:
|
|
1485
|
-
isJuridique:
|
|
1486
|
-
isSocial:
|
|
1487
|
-
isAttestation:
|
|
1488
|
-
inAverageCart:
|
|
1489
|
-
isBack:
|
|
1571
|
+
isComptable: false,
|
|
1572
|
+
isJuridique: true,
|
|
1573
|
+
isSocial: false,
|
|
1574
|
+
isAttestation: false,
|
|
1575
|
+
inAverageCart: false,
|
|
1576
|
+
isBack: false,
|
|
1490
1577
|
price: 399,
|
|
1491
|
-
isCatalog:
|
|
1492
|
-
hidden:
|
|
1493
|
-
isComplementary:
|
|
1578
|
+
isCatalog: true,
|
|
1579
|
+
hidden: false,
|
|
1580
|
+
isComplementary: false,
|
|
1494
1581
|
signaturePosition: null,
|
|
1495
1582
|
signaturePage: null,
|
|
1583
|
+
point: 0,
|
|
1496
1584
|
},
|
|
1497
1585
|
DECLARATION_BENEFICES_EFFECTIFS: {
|
|
1498
1586
|
id: 88,
|
|
1499
1587
|
name: 'Déclaration des bénéficiaires effectifs',
|
|
1500
|
-
isComptable:
|
|
1501
|
-
isJuridique:
|
|
1502
|
-
isSocial:
|
|
1503
|
-
isAttestation:
|
|
1504
|
-
inAverageCart:
|
|
1505
|
-
isBack:
|
|
1588
|
+
isComptable: false,
|
|
1589
|
+
isJuridique: true,
|
|
1590
|
+
isSocial: false,
|
|
1591
|
+
isAttestation: false,
|
|
1592
|
+
inAverageCart: false,
|
|
1593
|
+
isBack: false,
|
|
1506
1594
|
price: 39,
|
|
1507
|
-
isCatalog:
|
|
1508
|
-
hidden:
|
|
1509
|
-
isComplementary:
|
|
1595
|
+
isCatalog: true,
|
|
1596
|
+
hidden: false,
|
|
1597
|
+
isComplementary: false,
|
|
1510
1598
|
signaturePosition: null,
|
|
1511
1599
|
signaturePage: null,
|
|
1600
|
+
point: 0,
|
|
1512
1601
|
},
|
|
1513
1602
|
IRPP: {
|
|
1514
1603
|
id: 89,
|
|
1515
1604
|
name: 'IRPP',
|
|
1516
|
-
isComptable:
|
|
1517
|
-
isJuridique:
|
|
1518
|
-
isSocial:
|
|
1519
|
-
isAttestation:
|
|
1520
|
-
inAverageCart:
|
|
1521
|
-
isBack:
|
|
1605
|
+
isComptable: true,
|
|
1606
|
+
isJuridique: false,
|
|
1607
|
+
isSocial: false,
|
|
1608
|
+
isAttestation: false,
|
|
1609
|
+
inAverageCart: false,
|
|
1610
|
+
isBack: false,
|
|
1522
1611
|
price: null,
|
|
1523
|
-
isCatalog:
|
|
1524
|
-
hidden:
|
|
1525
|
-
isComplementary:
|
|
1612
|
+
isCatalog: true,
|
|
1613
|
+
hidden: false,
|
|
1614
|
+
isComplementary: true,
|
|
1526
1615
|
signaturePosition: null,
|
|
1527
1616
|
signaturePage: null,
|
|
1617
|
+
point: 0,
|
|
1528
1618
|
},
|
|
1529
1619
|
EVALUATION: {
|
|
1530
1620
|
id: 90,
|
|
1531
1621
|
name: 'Evaluation',
|
|
1532
|
-
isComptable:
|
|
1533
|
-
isJuridique:
|
|
1534
|
-
isSocial:
|
|
1535
|
-
isAttestation:
|
|
1536
|
-
inAverageCart:
|
|
1537
|
-
isBack:
|
|
1622
|
+
isComptable: true,
|
|
1623
|
+
isJuridique: false,
|
|
1624
|
+
isSocial: false,
|
|
1625
|
+
isAttestation: false,
|
|
1626
|
+
inAverageCart: false,
|
|
1627
|
+
isBack: false,
|
|
1538
1628
|
price: null,
|
|
1539
|
-
isCatalog:
|
|
1540
|
-
hidden:
|
|
1541
|
-
isComplementary:
|
|
1629
|
+
isCatalog: true,
|
|
1630
|
+
hidden: false,
|
|
1631
|
+
isComplementary: true,
|
|
1542
1632
|
signaturePosition: null,
|
|
1543
1633
|
signaturePage: null,
|
|
1634
|
+
point: 0,
|
|
1544
1635
|
},
|
|
1545
1636
|
ATTESTATIONS_NON_REMUNERATION: {
|
|
1546
1637
|
id: 91,
|
|
1547
1638
|
name: 'Attestations de non-rémunération',
|
|
1548
|
-
isComptable:
|
|
1549
|
-
isJuridique:
|
|
1550
|
-
isSocial:
|
|
1551
|
-
isAttestation:
|
|
1552
|
-
inAverageCart:
|
|
1553
|
-
isBack:
|
|
1639
|
+
isComptable: true,
|
|
1640
|
+
isJuridique: false,
|
|
1641
|
+
isSocial: false,
|
|
1642
|
+
isAttestation: false,
|
|
1643
|
+
inAverageCart: false,
|
|
1644
|
+
isBack: false,
|
|
1554
1645
|
price: null,
|
|
1555
|
-
isCatalog:
|
|
1556
|
-
hidden:
|
|
1557
|
-
isComplementary:
|
|
1646
|
+
isCatalog: true,
|
|
1647
|
+
hidden: false,
|
|
1648
|
+
isComplementary: false,
|
|
1558
1649
|
signaturePosition: null,
|
|
1559
1650
|
signaturePage: null,
|
|
1651
|
+
point: 0,
|
|
1560
1652
|
},
|
|
1561
1653
|
AUTRE_MISSION_COMPTABLE: {
|
|
1562
1654
|
id: 93,
|
|
1563
1655
|
name: 'Autre mission comptable',
|
|
1564
|
-
isComptable:
|
|
1565
|
-
isJuridique:
|
|
1566
|
-
isSocial:
|
|
1567
|
-
isAttestation:
|
|
1568
|
-
inAverageCart:
|
|
1569
|
-
isBack:
|
|
1656
|
+
isComptable: true,
|
|
1657
|
+
isJuridique: false,
|
|
1658
|
+
isSocial: false,
|
|
1659
|
+
isAttestation: false,
|
|
1660
|
+
inAverageCart: false,
|
|
1661
|
+
isBack: false,
|
|
1570
1662
|
price: null,
|
|
1571
|
-
isCatalog:
|
|
1572
|
-
hidden:
|
|
1573
|
-
isComplementary:
|
|
1663
|
+
isCatalog: true,
|
|
1664
|
+
hidden: false,
|
|
1665
|
+
isComplementary: false,
|
|
1574
1666
|
signaturePosition: null,
|
|
1575
1667
|
signaturePage: null,
|
|
1668
|
+
point: 0,
|
|
1576
1669
|
},
|
|
1577
1670
|
COMPTA_FREEMIUM: {
|
|
1578
1671
|
id: 94,
|
|
1579
1672
|
name: 'Compta Freemium',
|
|
1580
|
-
isComptable:
|
|
1581
|
-
isJuridique:
|
|
1582
|
-
isSocial:
|
|
1583
|
-
isAttestation:
|
|
1584
|
-
inAverageCart:
|
|
1585
|
-
isBack:
|
|
1673
|
+
isComptable: true,
|
|
1674
|
+
isJuridique: false,
|
|
1675
|
+
isSocial: false,
|
|
1676
|
+
isAttestation: false,
|
|
1677
|
+
inAverageCart: false,
|
|
1678
|
+
isBack: false,
|
|
1586
1679
|
price: 0,
|
|
1587
|
-
isCatalog:
|
|
1588
|
-
hidden:
|
|
1589
|
-
isComplementary:
|
|
1680
|
+
isCatalog: false,
|
|
1681
|
+
hidden: true,
|
|
1682
|
+
isComplementary: false,
|
|
1590
1683
|
signaturePosition: null,
|
|
1591
1684
|
signaturePage: null,
|
|
1685
|
+
point: 0,
|
|
1592
1686
|
},
|
|
1593
1687
|
ATTESTATION_REMUNERATION: {
|
|
1594
1688
|
id: 95,
|
|
1595
1689
|
name: 'Attestation de rémunération',
|
|
1596
|
-
isComptable:
|
|
1597
|
-
isJuridique:
|
|
1598
|
-
isSocial:
|
|
1599
|
-
isAttestation:
|
|
1600
|
-
inAverageCart:
|
|
1601
|
-
isBack:
|
|
1690
|
+
isComptable: true,
|
|
1691
|
+
isJuridique: false,
|
|
1692
|
+
isSocial: false,
|
|
1693
|
+
isAttestation: true,
|
|
1694
|
+
inAverageCart: false,
|
|
1695
|
+
isBack: false,
|
|
1602
1696
|
price: null,
|
|
1603
|
-
isCatalog:
|
|
1604
|
-
hidden:
|
|
1605
|
-
isComplementary:
|
|
1697
|
+
isCatalog: true,
|
|
1698
|
+
hidden: false,
|
|
1699
|
+
isComplementary: false,
|
|
1606
1700
|
signaturePosition: null,
|
|
1607
1701
|
signaturePage: null,
|
|
1702
|
+
point: 0,
|
|
1608
1703
|
},
|
|
1609
1704
|
// FIXME: Doublon ?
|
|
1610
1705
|
ATTESTATION_NON_REMUNERATION: {
|
|
1611
1706
|
id: 96,
|
|
1612
1707
|
name: 'Attestation de non-rémunération',
|
|
1613
|
-
isComptable:
|
|
1614
|
-
isJuridique:
|
|
1615
|
-
isSocial:
|
|
1616
|
-
isAttestation:
|
|
1617
|
-
inAverageCart:
|
|
1618
|
-
isBack:
|
|
1708
|
+
isComptable: true,
|
|
1709
|
+
isJuridique: false,
|
|
1710
|
+
isSocial: false,
|
|
1711
|
+
isAttestation: true,
|
|
1712
|
+
inAverageCart: false,
|
|
1713
|
+
isBack: false,
|
|
1619
1714
|
price: null,
|
|
1620
|
-
isCatalog:
|
|
1621
|
-
hidden:
|
|
1622
|
-
isComplementary:
|
|
1715
|
+
isCatalog: true,
|
|
1716
|
+
hidden: false,
|
|
1717
|
+
isComplementary: false,
|
|
1623
1718
|
signaturePosition: null,
|
|
1624
1719
|
signaturePage: null,
|
|
1720
|
+
point: 0,
|
|
1625
1721
|
},
|
|
1626
1722
|
ATTESTATION_CA: {
|
|
1627
1723
|
id: 97,
|
|
1628
1724
|
name: 'Attestation de chiffre d\'affaires',
|
|
1629
|
-
isComptable:
|
|
1630
|
-
isJuridique:
|
|
1631
|
-
isSocial:
|
|
1632
|
-
isAttestation:
|
|
1633
|
-
inAverageCart:
|
|
1634
|
-
isBack:
|
|
1725
|
+
isComptable: true,
|
|
1726
|
+
isJuridique: false,
|
|
1727
|
+
isSocial: false,
|
|
1728
|
+
isAttestation: true,
|
|
1729
|
+
inAverageCart: false,
|
|
1730
|
+
isBack: false,
|
|
1635
1731
|
price: null,
|
|
1636
|
-
isCatalog:
|
|
1637
|
-
hidden:
|
|
1638
|
-
isComplementary:
|
|
1732
|
+
isCatalog: true,
|
|
1733
|
+
hidden: false,
|
|
1734
|
+
isComplementary: false,
|
|
1639
1735
|
signaturePosition: null,
|
|
1640
1736
|
signaturePage: null,
|
|
1737
|
+
point: 0,
|
|
1641
1738
|
},
|
|
1642
1739
|
ATTESTATION_COMPTE_COURANT: {
|
|
1643
1740
|
id: 98,
|
|
1644
1741
|
name: 'Attestation de compte-courant',
|
|
1645
|
-
isComptable:
|
|
1646
|
-
isJuridique:
|
|
1647
|
-
isSocial:
|
|
1648
|
-
isAttestation:
|
|
1649
|
-
inAverageCart:
|
|
1650
|
-
isBack:
|
|
1742
|
+
isComptable: true,
|
|
1743
|
+
isJuridique: false,
|
|
1744
|
+
isSocial: false,
|
|
1745
|
+
isAttestation: true,
|
|
1746
|
+
inAverageCart: false,
|
|
1747
|
+
isBack: false,
|
|
1651
1748
|
price: null,
|
|
1652
|
-
isCatalog:
|
|
1653
|
-
hidden:
|
|
1654
|
-
isComplementary:
|
|
1749
|
+
isCatalog: true,
|
|
1750
|
+
hidden: false,
|
|
1751
|
+
isComplementary: false,
|
|
1655
1752
|
signaturePosition: null,
|
|
1656
1753
|
signaturePage: null,
|
|
1754
|
+
point: 0,
|
|
1657
1755
|
},
|
|
1658
1756
|
MAJ_ADRESSE_PERSONNELLE_DIRIGEANT_SUR_KBIS: {
|
|
1659
1757
|
id: 99,
|
|
1660
1758
|
name: 'Mise à jour de l\'adresse personnelle du dirigeant sur le Kbis',
|
|
1661
|
-
isComptable:
|
|
1662
|
-
isJuridique:
|
|
1663
|
-
isSocial:
|
|
1664
|
-
isAttestation:
|
|
1665
|
-
inAverageCart:
|
|
1666
|
-
isBack:
|
|
1759
|
+
isComptable: false,
|
|
1760
|
+
isJuridique: true,
|
|
1761
|
+
isSocial: false,
|
|
1762
|
+
isAttestation: false,
|
|
1763
|
+
inAverageCart: false,
|
|
1764
|
+
isBack: false,
|
|
1667
1765
|
price: 149,
|
|
1668
|
-
isCatalog:
|
|
1669
|
-
hidden:
|
|
1670
|
-
isComplementary:
|
|
1766
|
+
isCatalog: true,
|
|
1767
|
+
hidden: false,
|
|
1768
|
+
isComplementary: false,
|
|
1671
1769
|
signaturePosition: null,
|
|
1672
1770
|
signaturePage: null,
|
|
1771
|
+
point: 0,
|
|
1673
1772
|
},
|
|
1674
1773
|
MODIFICATION_DENOMINATION_SOCIALE_SARL_SAS_SCI: {
|
|
1675
1774
|
id: 102,
|
|
1676
1775
|
name: 'Modification de la dénomination sociale (SARL/SAS/SCI)',
|
|
1677
|
-
isComptable:
|
|
1678
|
-
isJuridique:
|
|
1679
|
-
isSocial:
|
|
1680
|
-
isAttestation:
|
|
1681
|
-
inAverageCart:
|
|
1682
|
-
isBack:
|
|
1776
|
+
isComptable: false,
|
|
1777
|
+
isJuridique: true,
|
|
1778
|
+
isSocial: false,
|
|
1779
|
+
isAttestation: false,
|
|
1780
|
+
inAverageCart: false,
|
|
1781
|
+
isBack: false,
|
|
1683
1782
|
price: 349,
|
|
1684
|
-
isCatalog:
|
|
1685
|
-
hidden:
|
|
1686
|
-
isComplementary:
|
|
1783
|
+
isCatalog: true,
|
|
1784
|
+
hidden: false,
|
|
1785
|
+
isComplementary: false,
|
|
1687
1786
|
signaturePosition: null,
|
|
1688
1787
|
signaturePage: null,
|
|
1788
|
+
point: 0,
|
|
1689
1789
|
},
|
|
1690
1790
|
MODIFICATION_OBJET_SOCIAL_SARL_SAS_SCI: {
|
|
1691
1791
|
id: 103,
|
|
1692
1792
|
name: 'Modification de l\'objet social (SARL/SAS/SCI)',
|
|
1693
|
-
isComptable:
|
|
1694
|
-
isJuridique:
|
|
1695
|
-
isSocial:
|
|
1696
|
-
isAttestation:
|
|
1697
|
-
inAverageCart:
|
|
1698
|
-
isBack:
|
|
1793
|
+
isComptable: false,
|
|
1794
|
+
isJuridique: true,
|
|
1795
|
+
isSocial: false,
|
|
1796
|
+
isAttestation: false,
|
|
1797
|
+
inAverageCart: false,
|
|
1798
|
+
isBack: false,
|
|
1699
1799
|
price: 349,
|
|
1700
|
-
isCatalog:
|
|
1701
|
-
hidden:
|
|
1702
|
-
isComplementary:
|
|
1800
|
+
isCatalog: true,
|
|
1801
|
+
hidden: false,
|
|
1802
|
+
isComplementary: false,
|
|
1703
1803
|
signaturePosition: null,
|
|
1704
1804
|
signaturePage: null,
|
|
1805
|
+
point: 0,
|
|
1705
1806
|
},
|
|
1706
1807
|
TRANSFERT_SIEGE_SOCIAL_SAS_SARL_SCI: {
|
|
1707
1808
|
id: 104,
|
|
1708
1809
|
name: 'Transfert de siège social (SAS / SARL / SCI)',
|
|
1709
|
-
isComptable:
|
|
1710
|
-
isJuridique:
|
|
1711
|
-
isSocial:
|
|
1712
|
-
isAttestation:
|
|
1713
|
-
inAverageCart:
|
|
1714
|
-
isBack:
|
|
1810
|
+
isComptable: false,
|
|
1811
|
+
isJuridique: true,
|
|
1812
|
+
isSocial: false,
|
|
1813
|
+
isAttestation: false,
|
|
1814
|
+
inAverageCart: false,
|
|
1815
|
+
isBack: false,
|
|
1715
1816
|
price: 349,
|
|
1716
|
-
isCatalog:
|
|
1717
|
-
hidden:
|
|
1718
|
-
isComplementary:
|
|
1817
|
+
isCatalog: true,
|
|
1818
|
+
hidden: false,
|
|
1819
|
+
isComplementary: false,
|
|
1719
1820
|
signaturePosition: null,
|
|
1720
1821
|
signaturePage: null,
|
|
1822
|
+
point: 0,
|
|
1721
1823
|
},
|
|
1722
1824
|
MODIFICATION_DATE_CLOTURE_SARL_SAS_SCI: {
|
|
1723
1825
|
id: 105,
|
|
1724
1826
|
name: 'Modification de la date de clôture (SARL/SAS/SCI)',
|
|
1725
|
-
isComptable:
|
|
1726
|
-
isJuridique:
|
|
1727
|
-
isSocial:
|
|
1728
|
-
isAttestation:
|
|
1729
|
-
inAverageCart:
|
|
1730
|
-
isBack:
|
|
1827
|
+
isComptable: false,
|
|
1828
|
+
isJuridique: true,
|
|
1829
|
+
isSocial: false,
|
|
1830
|
+
isAttestation: false,
|
|
1831
|
+
inAverageCart: false,
|
|
1832
|
+
isBack: false,
|
|
1731
1833
|
price: 349,
|
|
1732
|
-
isCatalog:
|
|
1733
|
-
hidden:
|
|
1734
|
-
isComplementary:
|
|
1834
|
+
isCatalog: true,
|
|
1835
|
+
hidden: false,
|
|
1836
|
+
isComplementary: false,
|
|
1735
1837
|
signaturePosition: null,
|
|
1736
1838
|
signaturePage: null,
|
|
1839
|
+
point: 0,
|
|
1737
1840
|
},
|
|
1738
1841
|
MODIFICATION_DIRIGEANT_OU_COMMISSAIRE_AU_COMPTE_SAS_SARL_SCI: {
|
|
1739
1842
|
id: 106,
|
|
1740
1843
|
name: 'Modification d’un dirigeant ou d\'un commissaire aux compte (SAS / SARL / SCI)',
|
|
1741
|
-
isComptable:
|
|
1742
|
-
isJuridique:
|
|
1743
|
-
isSocial:
|
|
1744
|
-
isAttestation:
|
|
1745
|
-
inAverageCart:
|
|
1746
|
-
isBack:
|
|
1844
|
+
isComptable: false,
|
|
1845
|
+
isJuridique: true,
|
|
1846
|
+
isSocial: false,
|
|
1847
|
+
isAttestation: false,
|
|
1848
|
+
inAverageCart: false,
|
|
1849
|
+
isBack: false,
|
|
1747
1850
|
price: 349,
|
|
1748
|
-
isCatalog:
|
|
1749
|
-
hidden:
|
|
1750
|
-
isComplementary:
|
|
1851
|
+
isCatalog: true,
|
|
1852
|
+
hidden: false,
|
|
1853
|
+
isComplementary: false,
|
|
1751
1854
|
signaturePosition: null,
|
|
1752
1855
|
signaturePage: null,
|
|
1856
|
+
point: 0,
|
|
1753
1857
|
},
|
|
1754
1858
|
FORMALITE_PERTE_CAPITAUX_PROPRES_EURL_SASU: {
|
|
1755
1859
|
id: 107,
|
|
1756
1860
|
name: 'Formalité perte des capitaux propres (EURL/SASU)',
|
|
1757
|
-
isComptable:
|
|
1758
|
-
isJuridique:
|
|
1759
|
-
isSocial:
|
|
1760
|
-
isAttestation:
|
|
1761
|
-
inAverageCart:
|
|
1762
|
-
isBack:
|
|
1861
|
+
isComptable: false,
|
|
1862
|
+
isJuridique: true,
|
|
1863
|
+
isSocial: false,
|
|
1864
|
+
isAttestation: false,
|
|
1865
|
+
inAverageCart: false,
|
|
1866
|
+
isBack: false,
|
|
1763
1867
|
price: 249,
|
|
1764
|
-
isCatalog:
|
|
1765
|
-
hidden:
|
|
1766
|
-
isComplementary:
|
|
1868
|
+
isCatalog: true,
|
|
1869
|
+
hidden: false,
|
|
1870
|
+
isComplementary: false,
|
|
1767
1871
|
signaturePosition: null,
|
|
1768
1872
|
signaturePage: null,
|
|
1873
|
+
point: 0,
|
|
1769
1874
|
},
|
|
1770
1875
|
FORMALITE_PERTE_CAPITAUX_PROPRES_SARL_SAS_SCI: {
|
|
1771
1876
|
id: 108,
|
|
1772
1877
|
name: 'Formalité perte des capitaux propres (SARL/SAS/SCI)',
|
|
1773
|
-
isComptable:
|
|
1774
|
-
isJuridique:
|
|
1775
|
-
isSocial:
|
|
1776
|
-
isAttestation:
|
|
1777
|
-
inAverageCart:
|
|
1778
|
-
isBack:
|
|
1878
|
+
isComptable: false,
|
|
1879
|
+
isJuridique: true,
|
|
1880
|
+
isSocial: false,
|
|
1881
|
+
isAttestation: false,
|
|
1882
|
+
inAverageCart: false,
|
|
1883
|
+
isBack: false,
|
|
1779
1884
|
price: 349,
|
|
1780
|
-
isCatalog:
|
|
1781
|
-
hidden:
|
|
1782
|
-
isComplementary:
|
|
1885
|
+
isCatalog: true,
|
|
1886
|
+
hidden: false,
|
|
1887
|
+
isComplementary: false,
|
|
1783
1888
|
signaturePosition: null,
|
|
1784
1889
|
signaturePage: null,
|
|
1890
|
+
point: 0,
|
|
1785
1891
|
},
|
|
1786
1892
|
TRANSFORMATION_SOCIETE_EURL_SASU: {
|
|
1787
1893
|
id: 109,
|
|
1788
1894
|
name: 'Transformation de la société (EURL/SASU)',
|
|
1789
|
-
isComptable:
|
|
1790
|
-
isJuridique:
|
|
1791
|
-
isSocial:
|
|
1792
|
-
isAttestation:
|
|
1793
|
-
inAverageCart:
|
|
1794
|
-
isBack:
|
|
1895
|
+
isComptable: false,
|
|
1896
|
+
isJuridique: true,
|
|
1897
|
+
isSocial: false,
|
|
1898
|
+
isAttestation: false,
|
|
1899
|
+
inAverageCart: false,
|
|
1900
|
+
isBack: false,
|
|
1795
1901
|
price: 399,
|
|
1796
|
-
isCatalog:
|
|
1797
|
-
hidden:
|
|
1798
|
-
isComplementary:
|
|
1902
|
+
isCatalog: true,
|
|
1903
|
+
hidden: false,
|
|
1904
|
+
isComplementary: false,
|
|
1799
1905
|
signaturePosition: null,
|
|
1800
1906
|
signaturePage: null,
|
|
1907
|
+
point: 0,
|
|
1801
1908
|
},
|
|
1802
1909
|
TRANSFORMATION_SOCIETE_SARL_SAS_SCI: {
|
|
1803
1910
|
id: 110,
|
|
1804
1911
|
name: 'Transformation de la société (SARL/SAS/SCI)',
|
|
1805
|
-
isComptable:
|
|
1806
|
-
isJuridique:
|
|
1807
|
-
isSocial:
|
|
1808
|
-
isAttestation:
|
|
1809
|
-
inAverageCart:
|
|
1810
|
-
isBack:
|
|
1912
|
+
isComptable: false,
|
|
1913
|
+
isJuridique: true,
|
|
1914
|
+
isSocial: false,
|
|
1915
|
+
isAttestation: false,
|
|
1916
|
+
inAverageCart: false,
|
|
1917
|
+
isBack: false,
|
|
1811
1918
|
price: 499,
|
|
1812
|
-
isCatalog:
|
|
1813
|
-
hidden:
|
|
1814
|
-
isComplementary:
|
|
1919
|
+
isCatalog: true,
|
|
1920
|
+
hidden: false,
|
|
1921
|
+
isComplementary: false,
|
|
1815
1922
|
signaturePosition: null,
|
|
1816
1923
|
signaturePage: null,
|
|
1924
|
+
point: 0,
|
|
1817
1925
|
},
|
|
1818
1926
|
TRANSMISSION_UNIVERSELLE_PATRIMOINE_ASSOCIE_UNIQUE_SARL_SAS_SCI: {
|
|
1819
1927
|
id: 111,
|
|
1820
1928
|
name: 'Transmission universelle du patrimoine (si associé unique personne morale - SARL/SAS/SCI)',
|
|
1821
|
-
isComptable:
|
|
1822
|
-
isJuridique:
|
|
1823
|
-
isSocial:
|
|
1824
|
-
isAttestation:
|
|
1825
|
-
inAverageCart:
|
|
1826
|
-
isBack:
|
|
1929
|
+
isComptable: false,
|
|
1930
|
+
isJuridique: true,
|
|
1931
|
+
isSocial: false,
|
|
1932
|
+
isAttestation: false,
|
|
1933
|
+
inAverageCart: false,
|
|
1934
|
+
isBack: false,
|
|
1827
1935
|
price: 499,
|
|
1828
|
-
isCatalog:
|
|
1829
|
-
hidden:
|
|
1830
|
-
isComplementary:
|
|
1936
|
+
isCatalog: true,
|
|
1937
|
+
hidden: false,
|
|
1938
|
+
isComplementary: false,
|
|
1831
1939
|
signaturePosition: null,
|
|
1832
1940
|
signaturePage: null,
|
|
1941
|
+
point: 0,
|
|
1833
1942
|
},
|
|
1834
1943
|
CESSION_PARTS_SOCIALES_SARL_SCI: {
|
|
1835
1944
|
id: 112,
|
|
1836
1945
|
name: 'Cession de parts sociales (SARL/SCI)',
|
|
1837
|
-
isComptable:
|
|
1838
|
-
isJuridique:
|
|
1839
|
-
isSocial:
|
|
1840
|
-
isAttestation:
|
|
1841
|
-
inAverageCart:
|
|
1842
|
-
isBack:
|
|
1946
|
+
isComptable: false,
|
|
1947
|
+
isJuridique: true,
|
|
1948
|
+
isSocial: false,
|
|
1949
|
+
isAttestation: false,
|
|
1950
|
+
inAverageCart: false,
|
|
1951
|
+
isBack: false,
|
|
1843
1952
|
price: 499,
|
|
1844
|
-
isCatalog:
|
|
1845
|
-
hidden:
|
|
1846
|
-
isComplementary:
|
|
1953
|
+
isCatalog: true,
|
|
1954
|
+
hidden: false,
|
|
1955
|
+
isComplementary: false,
|
|
1847
1956
|
signaturePosition: null,
|
|
1848
1957
|
signaturePage: null,
|
|
1958
|
+
point: 0,
|
|
1849
1959
|
},
|
|
1850
1960
|
AUGMENTATION_CAPITAL_SOCIAL_EURL_SASU: {
|
|
1851
1961
|
id: 113,
|
|
1852
1962
|
name: 'Augmentation du capital social (EURL/SASU)',
|
|
1853
|
-
isComptable:
|
|
1854
|
-
isJuridique:
|
|
1855
|
-
isSocial:
|
|
1856
|
-
isAttestation:
|
|
1857
|
-
inAverageCart:
|
|
1858
|
-
isBack:
|
|
1963
|
+
isComptable: false,
|
|
1964
|
+
isJuridique: true,
|
|
1965
|
+
isSocial: false,
|
|
1966
|
+
isAttestation: false,
|
|
1967
|
+
inAverageCart: false,
|
|
1968
|
+
isBack: false,
|
|
1859
1969
|
price: 399,
|
|
1860
|
-
isCatalog:
|
|
1861
|
-
hidden:
|
|
1862
|
-
isComplementary:
|
|
1970
|
+
isCatalog: true,
|
|
1971
|
+
hidden: false,
|
|
1972
|
+
isComplementary: false,
|
|
1863
1973
|
signaturePosition: null,
|
|
1864
1974
|
signaturePage: null,
|
|
1975
|
+
point: 0,
|
|
1865
1976
|
},
|
|
1866
1977
|
AUGMENTATION_CAPITAL_SOCIAL_SARL_SAS_SCI: {
|
|
1867
1978
|
id: 114,
|
|
1868
1979
|
name: 'Augmentation du capital social (SARL/SAS/SCI)',
|
|
1869
|
-
isComptable:
|
|
1870
|
-
isJuridique:
|
|
1871
|
-
isSocial:
|
|
1872
|
-
isAttestation:
|
|
1873
|
-
inAverageCart:
|
|
1874
|
-
isBack:
|
|
1980
|
+
isComptable: false,
|
|
1981
|
+
isJuridique: true,
|
|
1982
|
+
isSocial: false,
|
|
1983
|
+
isAttestation: false,
|
|
1984
|
+
inAverageCart: false,
|
|
1985
|
+
isBack: false,
|
|
1875
1986
|
price: 499,
|
|
1876
|
-
isCatalog:
|
|
1877
|
-
hidden:
|
|
1878
|
-
isComplementary:
|
|
1987
|
+
isCatalog: true,
|
|
1988
|
+
hidden: false,
|
|
1989
|
+
isComplementary: false,
|
|
1879
1990
|
signaturePosition: null,
|
|
1880
1991
|
signaturePage: null,
|
|
1992
|
+
point: 0,
|
|
1881
1993
|
},
|
|
1882
1994
|
ATTESTATION_DE_SALAIRE_MALADIE: {
|
|
1883
1995
|
id: 116,
|
|
1884
1996
|
name: 'Attestation de salaire maladie',
|
|
1885
|
-
isComptable:
|
|
1886
|
-
isJuridique:
|
|
1887
|
-
isSocial:
|
|
1888
|
-
isAttestation:
|
|
1889
|
-
inAverageCart:
|
|
1890
|
-
isBack:
|
|
1997
|
+
isComptable: true,
|
|
1998
|
+
isJuridique: false,
|
|
1999
|
+
isSocial: false,
|
|
2000
|
+
isAttestation: false,
|
|
2001
|
+
inAverageCart: false,
|
|
2002
|
+
isBack: false,
|
|
1891
2003
|
price: 18,
|
|
1892
|
-
isCatalog:
|
|
1893
|
-
hidden:
|
|
1894
|
-
isComplementary:
|
|
2004
|
+
isCatalog: true,
|
|
2005
|
+
hidden: false,
|
|
2006
|
+
isComplementary: false,
|
|
1895
2007
|
signaturePosition: null,
|
|
1896
2008
|
signaturePage: null,
|
|
2009
|
+
point: 0,
|
|
1897
2010
|
},
|
|
1898
2011
|
DOCUMENTS_DE_SORTIE: {
|
|
1899
2012
|
id: 117,
|
|
1900
2013
|
name: 'Documents de Sortie',
|
|
1901
|
-
isComptable:
|
|
1902
|
-
isJuridique:
|
|
1903
|
-
isSocial:
|
|
1904
|
-
isAttestation:
|
|
1905
|
-
inAverageCart:
|
|
1906
|
-
isBack:
|
|
2014
|
+
isComptable: false,
|
|
2015
|
+
isJuridique: true,
|
|
2016
|
+
isSocial: false,
|
|
2017
|
+
isAttestation: false,
|
|
2018
|
+
inAverageCart: false,
|
|
2019
|
+
isBack: false,
|
|
1907
2020
|
price: 41,
|
|
1908
|
-
isCatalog:
|
|
1909
|
-
hidden:
|
|
1910
|
-
isComplementary:
|
|
2021
|
+
isCatalog: true,
|
|
2022
|
+
hidden: false,
|
|
2023
|
+
isComplementary: false,
|
|
1911
2024
|
signaturePosition: null,
|
|
1912
2025
|
signaturePage: null,
|
|
2026
|
+
point: 0,
|
|
1913
2027
|
},
|
|
1914
2028
|
DPAE: {
|
|
1915
2029
|
id: 118,
|
|
1916
2030
|
name: 'DPAE',
|
|
1917
|
-
isComptable:
|
|
1918
|
-
isJuridique:
|
|
1919
|
-
isSocial:
|
|
1920
|
-
isAttestation:
|
|
1921
|
-
inAverageCart:
|
|
1922
|
-
isBack:
|
|
2031
|
+
isComptable: false,
|
|
2032
|
+
isJuridique: true,
|
|
2033
|
+
isSocial: false,
|
|
2034
|
+
isAttestation: false,
|
|
2035
|
+
inAverageCart: false,
|
|
2036
|
+
isBack: false,
|
|
1923
2037
|
price: 28,
|
|
1924
|
-
isCatalog:
|
|
1925
|
-
hidden:
|
|
1926
|
-
isComplementary:
|
|
2038
|
+
isCatalog: true,
|
|
2039
|
+
hidden: false,
|
|
2040
|
+
isComplementary: false,
|
|
1927
2041
|
signaturePosition: null,
|
|
1928
2042
|
signaturePage: null,
|
|
2043
|
+
point: 0,
|
|
1929
2044
|
},
|
|
1930
2045
|
ADHESION_AUX_ORGANISMES_OBLIGATOIRES: {
|
|
1931
2046
|
id: 119,
|
|
1932
2047
|
name: 'Adhésion aux organismes obligatoires',
|
|
1933
|
-
isComptable:
|
|
1934
|
-
isJuridique:
|
|
1935
|
-
isSocial:
|
|
1936
|
-
isAttestation:
|
|
1937
|
-
inAverageCart:
|
|
1938
|
-
isBack:
|
|
2048
|
+
isComptable: false,
|
|
2049
|
+
isJuridique: true,
|
|
2050
|
+
isSocial: false,
|
|
2051
|
+
isAttestation: false,
|
|
2052
|
+
inAverageCart: false,
|
|
2053
|
+
isBack: false,
|
|
1939
2054
|
price: 56,
|
|
1940
|
-
isCatalog:
|
|
1941
|
-
hidden:
|
|
1942
|
-
isComplementary:
|
|
2055
|
+
isCatalog: true,
|
|
2056
|
+
hidden: false,
|
|
2057
|
+
isComplementary: false,
|
|
1943
2058
|
signaturePosition: null,
|
|
1944
2059
|
signaturePage: null,
|
|
2060
|
+
point: 0,
|
|
1945
2061
|
},
|
|
1946
2062
|
AVENANT_CONTRAT_DE_TRAVAIL: {
|
|
1947
2063
|
id: 120,
|
|
1948
2064
|
name: 'Avenant au contrat de travail',
|
|
1949
|
-
isComptable:
|
|
1950
|
-
isJuridique:
|
|
1951
|
-
isSocial:
|
|
1952
|
-
isAttestation:
|
|
1953
|
-
inAverageCart:
|
|
1954
|
-
isBack:
|
|
2065
|
+
isComptable: false,
|
|
2066
|
+
isJuridique: true,
|
|
2067
|
+
isSocial: false,
|
|
2068
|
+
isAttestation: false,
|
|
2069
|
+
inAverageCart: false,
|
|
2070
|
+
isBack: false,
|
|
1955
2071
|
price: 56,
|
|
1956
|
-
isCatalog:
|
|
1957
|
-
hidden:
|
|
1958
|
-
isComplementary:
|
|
2072
|
+
isCatalog: true,
|
|
2073
|
+
hidden: false,
|
|
2074
|
+
isComplementary: false,
|
|
1959
2075
|
signaturePosition: null,
|
|
1960
2076
|
signaturePage: null,
|
|
2077
|
+
point: 0,
|
|
1961
2078
|
},
|
|
1962
2079
|
RUPTURE_CONVENTIONNELLE: {
|
|
1963
2080
|
id: 121,
|
|
1964
2081
|
name: 'Rupture conventionnelle',
|
|
1965
|
-
isComptable:
|
|
1966
|
-
isJuridique:
|
|
1967
|
-
isSocial:
|
|
1968
|
-
isAttestation:
|
|
1969
|
-
inAverageCart:
|
|
1970
|
-
isBack:
|
|
2082
|
+
isComptable: false,
|
|
2083
|
+
isJuridique: false,
|
|
2084
|
+
isSocial: true,
|
|
2085
|
+
isAttestation: false,
|
|
2086
|
+
inAverageCart: false,
|
|
2087
|
+
isBack: false,
|
|
1971
2088
|
price: 330,
|
|
1972
|
-
isCatalog:
|
|
1973
|
-
hidden:
|
|
1974
|
-
isComplementary:
|
|
2089
|
+
isCatalog: true,
|
|
2090
|
+
hidden: false,
|
|
2091
|
+
isComplementary: false,
|
|
1975
2092
|
signaturePosition: null,
|
|
1976
2093
|
signaturePage: null,
|
|
2094
|
+
point: 0,
|
|
1977
2095
|
},
|
|
1978
2096
|
EXPERTISE_COMPTABLE: {
|
|
1979
2097
|
id: 122,
|
|
1980
2098
|
name: 'Expertise Comptable',
|
|
1981
|
-
isComptable:
|
|
1982
|
-
isJuridique:
|
|
1983
|
-
isSocial:
|
|
1984
|
-
isAttestation:
|
|
1985
|
-
inAverageCart:
|
|
1986
|
-
isBack:
|
|
1987
|
-
price: null,
|
|
1988
|
-
isCatalog:
|
|
1989
|
-
hidden:
|
|
1990
|
-
isComplementary:
|
|
2099
|
+
isComptable: true,
|
|
2100
|
+
isJuridique: false,
|
|
2101
|
+
isSocial: false,
|
|
2102
|
+
isAttestation: false,
|
|
2103
|
+
inAverageCart: true,
|
|
2104
|
+
isBack: false,
|
|
2105
|
+
price: null,
|
|
2106
|
+
isCatalog: false,
|
|
2107
|
+
hidden: false,
|
|
2108
|
+
isComplementary: false,
|
|
1991
2109
|
signaturePosition: '400,54,569,90',
|
|
1992
2110
|
signaturePage: 5,
|
|
2111
|
+
point: 0,
|
|
1993
2112
|
},
|
|
1994
2113
|
EXPERTISE_COMPTABLE_PLUS: {
|
|
1995
2114
|
id: 123,
|
|
1996
2115
|
name: 'Expertise Comptable +',
|
|
1997
|
-
isComptable:
|
|
1998
|
-
isJuridique:
|
|
1999
|
-
isSocial:
|
|
2000
|
-
isAttestation:
|
|
2001
|
-
inAverageCart:
|
|
2002
|
-
isBack:
|
|
2003
|
-
price: null,
|
|
2004
|
-
isCatalog:
|
|
2005
|
-
hidden:
|
|
2006
|
-
isComplementary:
|
|
2116
|
+
isComptable: true,
|
|
2117
|
+
isJuridique: false,
|
|
2118
|
+
isSocial: false,
|
|
2119
|
+
isAttestation: false,
|
|
2120
|
+
inAverageCart: true,
|
|
2121
|
+
isBack: false,
|
|
2122
|
+
price: null,
|
|
2123
|
+
isCatalog: false,
|
|
2124
|
+
hidden: false,
|
|
2125
|
+
isComplementary: false,
|
|
2007
2126
|
signaturePosition: '400,54,569,90',
|
|
2008
2127
|
signaturePage: 5,
|
|
2128
|
+
point: 0,
|
|
2009
2129
|
},
|
|
2010
2130
|
DEMANDE_CHOMAGE_PARTIEL: {
|
|
2011
2131
|
id: 124,
|
|
2012
2132
|
name: 'Demande chomage partiel',
|
|
2013
|
-
isComptable:
|
|
2014
|
-
isJuridique:
|
|
2015
|
-
isSocial:
|
|
2016
|
-
isAttestation:
|
|
2017
|
-
inAverageCart:
|
|
2018
|
-
isBack:
|
|
2133
|
+
isComptable: false,
|
|
2134
|
+
isJuridique: false,
|
|
2135
|
+
isSocial: true,
|
|
2136
|
+
isAttestation: false,
|
|
2137
|
+
inAverageCart: false,
|
|
2138
|
+
isBack: false,
|
|
2019
2139
|
price: 249,
|
|
2020
|
-
isCatalog:
|
|
2021
|
-
hidden:
|
|
2022
|
-
isComplementary:
|
|
2140
|
+
isCatalog: true,
|
|
2141
|
+
hidden: false,
|
|
2142
|
+
isComplementary: false,
|
|
2023
2143
|
signaturePosition: null,
|
|
2024
2144
|
signaturePage: null,
|
|
2145
|
+
point: 0,
|
|
2025
2146
|
},
|
|
2026
2147
|
DEMANDE_CONGE_PARENTALE: {
|
|
2027
2148
|
id: 125,
|
|
2028
2149
|
name: 'Demande conges parental',
|
|
2029
|
-
isComptable:
|
|
2030
|
-
isJuridique:
|
|
2031
|
-
isSocial:
|
|
2032
|
-
isAttestation:
|
|
2033
|
-
inAverageCart:
|
|
2034
|
-
isBack:
|
|
2150
|
+
isComptable: false,
|
|
2151
|
+
isJuridique: false,
|
|
2152
|
+
isSocial: true,
|
|
2153
|
+
isAttestation: false,
|
|
2154
|
+
inAverageCart: false,
|
|
2155
|
+
isBack: false,
|
|
2035
2156
|
price: 49,
|
|
2036
|
-
isCatalog:
|
|
2037
|
-
hidden:
|
|
2038
|
-
isComplementary:
|
|
2157
|
+
isCatalog: true,
|
|
2158
|
+
hidden: true,
|
|
2159
|
+
isComplementary: false,
|
|
2039
2160
|
signaturePosition: null,
|
|
2040
2161
|
signaturePage: null,
|
|
2162
|
+
point: 0,
|
|
2041
2163
|
},
|
|
2042
2164
|
TVS: {
|
|
2043
2165
|
id: 126,
|
|
2044
2166
|
name: 'TVS',
|
|
2045
|
-
isComptable:
|
|
2046
|
-
isJuridique:
|
|
2047
|
-
isSocial:
|
|
2048
|
-
isAttestation:
|
|
2049
|
-
inAverageCart:
|
|
2050
|
-
isBack:
|
|
2167
|
+
isComptable: true,
|
|
2168
|
+
isJuridique: false,
|
|
2169
|
+
isSocial: false,
|
|
2170
|
+
isAttestation: false,
|
|
2171
|
+
inAverageCart: false,
|
|
2172
|
+
isBack: false,
|
|
2051
2173
|
price: 75,
|
|
2052
|
-
isCatalog:
|
|
2053
|
-
hidden:
|
|
2054
|
-
isComplementary:
|
|
2174
|
+
isCatalog: true,
|
|
2175
|
+
hidden: false,
|
|
2176
|
+
isComplementary: false,
|
|
2055
2177
|
signaturePosition: null,
|
|
2056
2178
|
signaturePage: null,
|
|
2179
|
+
point: 0,
|
|
2057
2180
|
},
|
|
2058
2181
|
ETUDE_FISCALE: {
|
|
2059
2182
|
id: 127,
|
|
2060
2183
|
name: 'Étude fiscale',
|
|
2061
|
-
isComptable:
|
|
2062
|
-
isJuridique:
|
|
2063
|
-
isSocial:
|
|
2064
|
-
isAttestation:
|
|
2065
|
-
inAverageCart:
|
|
2066
|
-
isBack:
|
|
2184
|
+
isComptable: false,
|
|
2185
|
+
isJuridique: true,
|
|
2186
|
+
isSocial: false,
|
|
2187
|
+
isAttestation: false,
|
|
2188
|
+
inAverageCart: false,
|
|
2189
|
+
isBack: false,
|
|
2067
2190
|
price: 149,
|
|
2068
|
-
isCatalog:
|
|
2069
|
-
hidden:
|
|
2070
|
-
isComplementary:
|
|
2191
|
+
isCatalog: true,
|
|
2192
|
+
hidden: false,
|
|
2193
|
+
isComplementary: false,
|
|
2071
2194
|
signaturePosition: null,
|
|
2072
2195
|
signaturePage: null,
|
|
2196
|
+
point: 0,
|
|
2073
2197
|
},
|
|
2074
2198
|
ATTESTATION_MASSE_SALARIALE: {
|
|
2075
2199
|
id: 128,
|
|
2076
2200
|
name: 'Attestation de masse salariale',
|
|
2077
|
-
isComptable:
|
|
2078
|
-
isJuridique:
|
|
2079
|
-
isSocial:
|
|
2080
|
-
isAttestation:
|
|
2081
|
-
inAverageCart:
|
|
2082
|
-
isBack:
|
|
2201
|
+
isComptable: true,
|
|
2202
|
+
isJuridique: false,
|
|
2203
|
+
isSocial: false,
|
|
2204
|
+
isAttestation: true,
|
|
2205
|
+
inAverageCart: false,
|
|
2206
|
+
isBack: false,
|
|
2083
2207
|
price: null,
|
|
2084
|
-
isCatalog:
|
|
2085
|
-
hidden:
|
|
2086
|
-
isComplementary:
|
|
2208
|
+
isCatalog: true,
|
|
2209
|
+
hidden: false,
|
|
2210
|
+
isComplementary: false,
|
|
2087
2211
|
signaturePosition: null,
|
|
2088
2212
|
signaturePage: null,
|
|
2213
|
+
point: 0,
|
|
2089
2214
|
},
|
|
2090
2215
|
AUTRE_MISSION_JURIDIQUE: {
|
|
2091
2216
|
id: 130,
|
|
2092
2217
|
name: 'Autre mission juridique',
|
|
2093
|
-
isComptable:
|
|
2094
|
-
isJuridique:
|
|
2095
|
-
isSocial:
|
|
2096
|
-
isAttestation:
|
|
2097
|
-
inAverageCart:
|
|
2098
|
-
isBack:
|
|
2218
|
+
isComptable: false,
|
|
2219
|
+
isJuridique: true,
|
|
2220
|
+
isSocial: false,
|
|
2221
|
+
isAttestation: false,
|
|
2222
|
+
inAverageCart: false,
|
|
2223
|
+
isBack: false,
|
|
2099
2224
|
price: null,
|
|
2100
|
-
isCatalog:
|
|
2101
|
-
hidden:
|
|
2102
|
-
isComplementary:
|
|
2225
|
+
isCatalog: true,
|
|
2226
|
+
hidden: false,
|
|
2227
|
+
isComplementary: false,
|
|
2103
2228
|
signaturePosition: null,
|
|
2104
2229
|
signaturePage: null,
|
|
2230
|
+
point: 0,
|
|
2105
2231
|
},
|
|
2106
2232
|
AUTRE_MISSION_SOCIALE_HORS_PAIE: {
|
|
2107
2233
|
id: 131,
|
|
2108
2234
|
name: 'Autre mission sociale (hors paie)',
|
|
2109
|
-
isComptable:
|
|
2110
|
-
isJuridique:
|
|
2111
|
-
isSocial:
|
|
2112
|
-
isAttestation:
|
|
2113
|
-
inAverageCart:
|
|
2114
|
-
isBack:
|
|
2235
|
+
isComptable: false,
|
|
2236
|
+
isJuridique: false,
|
|
2237
|
+
isSocial: true,
|
|
2238
|
+
isAttestation: false,
|
|
2239
|
+
inAverageCart: false,
|
|
2240
|
+
isBack: false,
|
|
2115
2241
|
price: null,
|
|
2116
|
-
isCatalog:
|
|
2117
|
-
hidden:
|
|
2118
|
-
isComplementary:
|
|
2242
|
+
isCatalog: true,
|
|
2243
|
+
hidden: false,
|
|
2244
|
+
isComplementary: false,
|
|
2119
2245
|
signaturePosition: null,
|
|
2120
2246
|
signaturePage: null,
|
|
2247
|
+
point: 0,
|
|
2121
2248
|
},
|
|
2122
2249
|
MODIFICATION_ACTIVITE_KBIS: {
|
|
2123
2250
|
id: 132,
|
|
2124
2251
|
name: 'Modification de l’activité exercée sur le KBIS (sans modification de l’objet social)',
|
|
2125
|
-
isComptable:
|
|
2126
|
-
isJuridique:
|
|
2127
|
-
isSocial:
|
|
2128
|
-
isAttestation:
|
|
2129
|
-
inAverageCart:
|
|
2130
|
-
isBack:
|
|
2252
|
+
isComptable: false,
|
|
2253
|
+
isJuridique: true,
|
|
2254
|
+
isSocial: false,
|
|
2255
|
+
isAttestation: false,
|
|
2256
|
+
inAverageCart: false,
|
|
2257
|
+
isBack: false,
|
|
2131
2258
|
price: 149,
|
|
2132
|
-
isCatalog:
|
|
2133
|
-
hidden:
|
|
2134
|
-
isComplementary:
|
|
2259
|
+
isCatalog: true,
|
|
2260
|
+
hidden: false,
|
|
2261
|
+
isComplementary: false,
|
|
2135
2262
|
signaturePosition: null,
|
|
2136
2263
|
signaturePage: null,
|
|
2264
|
+
point: 0,
|
|
2137
2265
|
},
|
|
2138
2266
|
REDUCTION_CAPITAL_SOCIAL_SASU_EURL: {
|
|
2139
2267
|
id: 133,
|
|
2140
2268
|
name: 'Réduction du capital social (SASU / EURL)',
|
|
2141
|
-
isComptable:
|
|
2142
|
-
isJuridique:
|
|
2143
|
-
isSocial:
|
|
2144
|
-
isAttestation:
|
|
2145
|
-
inAverageCart:
|
|
2146
|
-
isBack:
|
|
2269
|
+
isComptable: false,
|
|
2270
|
+
isJuridique: true,
|
|
2271
|
+
isSocial: false,
|
|
2272
|
+
isAttestation: false,
|
|
2273
|
+
inAverageCart: false,
|
|
2274
|
+
isBack: false,
|
|
2147
2275
|
price: 399,
|
|
2148
|
-
isCatalog:
|
|
2149
|
-
hidden:
|
|
2150
|
-
isComplementary:
|
|
2276
|
+
isCatalog: true,
|
|
2277
|
+
hidden: false,
|
|
2278
|
+
isComplementary: false,
|
|
2151
2279
|
signaturePosition: null,
|
|
2152
2280
|
signaturePage: null,
|
|
2281
|
+
point: 0,
|
|
2153
2282
|
},
|
|
2154
2283
|
LIBERATION_CAPITAL_SOCIAL_SAS_SARL_SCI: {
|
|
2155
2284
|
id: 134,
|
|
2156
2285
|
name: 'Réduction du capital social (SAS / SARL / SCI)',
|
|
2157
|
-
isComptable:
|
|
2158
|
-
isJuridique:
|
|
2159
|
-
isSocial:
|
|
2160
|
-
isAttestation:
|
|
2161
|
-
inAverageCart:
|
|
2162
|
-
isBack:
|
|
2286
|
+
isComptable: false,
|
|
2287
|
+
isJuridique: true,
|
|
2288
|
+
isSocial: false,
|
|
2289
|
+
isAttestation: false,
|
|
2290
|
+
inAverageCart: false,
|
|
2291
|
+
isBack: false,
|
|
2163
2292
|
price: 499,
|
|
2164
|
-
isCatalog:
|
|
2165
|
-
hidden:
|
|
2166
|
-
isComplementary:
|
|
2293
|
+
isCatalog: true,
|
|
2294
|
+
hidden: false,
|
|
2295
|
+
isComplementary: false,
|
|
2167
2296
|
signaturePosition: null,
|
|
2168
2297
|
signaturePage: null,
|
|
2298
|
+
point: 0,
|
|
2169
2299
|
},
|
|
2170
2300
|
LIBERATION_CAPITAL_SOCIAL: {
|
|
2171
2301
|
id: 135,
|
|
2172
2302
|
name: 'Libération du capital social',
|
|
2173
|
-
isComptable:
|
|
2174
|
-
isJuridique:
|
|
2175
|
-
isSocial:
|
|
2176
|
-
isAttestation:
|
|
2177
|
-
inAverageCart:
|
|
2178
|
-
isBack:
|
|
2303
|
+
isComptable: false,
|
|
2304
|
+
isJuridique: true,
|
|
2305
|
+
isSocial: false,
|
|
2306
|
+
isAttestation: false,
|
|
2307
|
+
inAverageCart: false,
|
|
2308
|
+
isBack: false,
|
|
2179
2309
|
price: 149,
|
|
2180
|
-
isCatalog:
|
|
2181
|
-
hidden:
|
|
2182
|
-
isComplementary:
|
|
2310
|
+
isCatalog: true,
|
|
2311
|
+
hidden: false,
|
|
2312
|
+
isComplementary: false,
|
|
2183
2313
|
signaturePosition: null,
|
|
2184
2314
|
signaturePage: null,
|
|
2315
|
+
point: 0,
|
|
2185
2316
|
},
|
|
2186
2317
|
AUGMENTATION_OU_REDUCTION_DU_CAPITAL_DANS_LIMITE_CAPITAL_VARIABLE: {
|
|
2187
2318
|
id: 136,
|
|
2188
2319
|
name: 'Augmentation ou réduction du capital dans la limite du capital variable',
|
|
2189
|
-
isComptable:
|
|
2190
|
-
isJuridique:
|
|
2191
|
-
isSocial:
|
|
2192
|
-
isAttestation:
|
|
2193
|
-
inAverageCart:
|
|
2194
|
-
isBack:
|
|
2320
|
+
isComptable: false,
|
|
2321
|
+
isJuridique: true,
|
|
2322
|
+
isSocial: false,
|
|
2323
|
+
isAttestation: false,
|
|
2324
|
+
inAverageCart: false,
|
|
2325
|
+
isBack: false,
|
|
2195
2326
|
price: 149,
|
|
2196
|
-
isCatalog:
|
|
2197
|
-
hidden:
|
|
2198
|
-
isComplementary:
|
|
2327
|
+
isCatalog: true,
|
|
2328
|
+
hidden: false,
|
|
2329
|
+
isComplementary: false,
|
|
2199
2330
|
signaturePosition: null,
|
|
2200
2331
|
signaturePage: null,
|
|
2332
|
+
point: 0,
|
|
2201
2333
|
},
|
|
2202
2334
|
FORMALITE_RECONSTITUTION_DES_CAPITAUX_PROPRES: {
|
|
2203
2335
|
id: 137,
|
|
2204
2336
|
name: 'Formalité Reconstitution des capitaux propres',
|
|
2205
|
-
isComptable:
|
|
2206
|
-
isJuridique:
|
|
2207
|
-
isSocial:
|
|
2208
|
-
isAttestation:
|
|
2209
|
-
inAverageCart:
|
|
2210
|
-
isBack:
|
|
2337
|
+
isComptable: false,
|
|
2338
|
+
isJuridique: true,
|
|
2339
|
+
isSocial: false,
|
|
2340
|
+
isAttestation: false,
|
|
2341
|
+
inAverageCart: false,
|
|
2342
|
+
isBack: false,
|
|
2211
2343
|
price: 149,
|
|
2212
|
-
isCatalog:
|
|
2213
|
-
hidden:
|
|
2214
|
-
isComplementary:
|
|
2344
|
+
isCatalog: true,
|
|
2345
|
+
hidden: false,
|
|
2346
|
+
isComplementary: false,
|
|
2215
2347
|
signaturePosition: null,
|
|
2216
2348
|
signaturePage: null,
|
|
2349
|
+
point: 0,
|
|
2217
2350
|
},
|
|
2218
2351
|
CONTRAT_APPORT_EN_NATURE: {
|
|
2219
2352
|
id: 138,
|
|
2220
2353
|
name: 'Contrat d\'apport en nature',
|
|
2221
|
-
isComptable:
|
|
2222
|
-
isJuridique:
|
|
2223
|
-
isSocial:
|
|
2224
|
-
isAttestation:
|
|
2225
|
-
inAverageCart:
|
|
2226
|
-
isBack:
|
|
2354
|
+
isComptable: false,
|
|
2355
|
+
isJuridique: true,
|
|
2356
|
+
isSocial: false,
|
|
2357
|
+
isAttestation: false,
|
|
2358
|
+
inAverageCart: false,
|
|
2359
|
+
isBack: false,
|
|
2227
2360
|
price: 200,
|
|
2228
|
-
isCatalog:
|
|
2229
|
-
hidden:
|
|
2230
|
-
isComplementary:
|
|
2361
|
+
isCatalog: true,
|
|
2362
|
+
hidden: false,
|
|
2363
|
+
isComplementary: false,
|
|
2231
2364
|
signaturePosition: null,
|
|
2232
2365
|
signaturePage: null,
|
|
2366
|
+
point: 0,
|
|
2233
2367
|
},
|
|
2234
2368
|
REGISTRE_AG: {
|
|
2235
2369
|
id: 139,
|
|
2236
2370
|
name: 'Registre d’assemblées générale',
|
|
2237
|
-
isComptable:
|
|
2238
|
-
isJuridique:
|
|
2239
|
-
isSocial:
|
|
2240
|
-
isAttestation:
|
|
2241
|
-
inAverageCart:
|
|
2242
|
-
isBack:
|
|
2371
|
+
isComptable: false,
|
|
2372
|
+
isJuridique: true,
|
|
2373
|
+
isSocial: false,
|
|
2374
|
+
isAttestation: false,
|
|
2375
|
+
inAverageCart: false,
|
|
2376
|
+
isBack: false,
|
|
2243
2377
|
price: 79,
|
|
2244
|
-
isCatalog:
|
|
2245
|
-
hidden:
|
|
2246
|
-
isComplementary:
|
|
2378
|
+
isCatalog: true,
|
|
2379
|
+
hidden: false,
|
|
2380
|
+
isComplementary: false,
|
|
2247
2381
|
signaturePosition: null,
|
|
2248
2382
|
signaturePage: null,
|
|
2383
|
+
point: 0,
|
|
2249
2384
|
},
|
|
2250
2385
|
REGISTRE_DE_MOUVEMENETS_DE_TITRES: {
|
|
2251
2386
|
id: 140,
|
|
2252
2387
|
name: 'Registre de mouvements de titres',
|
|
2253
|
-
isComptable:
|
|
2254
|
-
isJuridique:
|
|
2255
|
-
isSocial:
|
|
2256
|
-
isAttestation:
|
|
2257
|
-
inAverageCart:
|
|
2258
|
-
isBack:
|
|
2388
|
+
isComptable: false,
|
|
2389
|
+
isJuridique: true,
|
|
2390
|
+
isSocial: false,
|
|
2391
|
+
isAttestation: false,
|
|
2392
|
+
inAverageCart: false,
|
|
2393
|
+
isBack: false,
|
|
2259
2394
|
price: 79,
|
|
2260
|
-
isCatalog:
|
|
2261
|
-
hidden:
|
|
2262
|
-
isComplementary:
|
|
2395
|
+
isCatalog: true,
|
|
2396
|
+
hidden: false,
|
|
2397
|
+
isComplementary: false,
|
|
2263
2398
|
signaturePosition: null,
|
|
2264
2399
|
signaturePage: null,
|
|
2400
|
+
point: 0,
|
|
2265
2401
|
},
|
|
2266
2402
|
MAJ_REGISTRE_DES_BENEFICES_EFFECTIFS: {
|
|
2267
2403
|
id: 141,
|
|
2268
2404
|
name: 'Mise à jour du Registre des bénéfices effectifs',
|
|
2269
|
-
isComptable:
|
|
2270
|
-
isJuridique:
|
|
2271
|
-
isSocial:
|
|
2272
|
-
isAttestation:
|
|
2273
|
-
inAverageCart:
|
|
2274
|
-
isBack:
|
|
2405
|
+
isComptable: false,
|
|
2406
|
+
isJuridique: true,
|
|
2407
|
+
isSocial: false,
|
|
2408
|
+
isAttestation: false,
|
|
2409
|
+
inAverageCart: false,
|
|
2410
|
+
isBack: false,
|
|
2275
2411
|
price: 39,
|
|
2276
|
-
isCatalog:
|
|
2277
|
-
hidden:
|
|
2278
|
-
isComplementary:
|
|
2412
|
+
isCatalog: true,
|
|
2413
|
+
hidden: false,
|
|
2414
|
+
isComplementary: false,
|
|
2279
2415
|
signaturePosition: null,
|
|
2280
2416
|
signaturePage: null,
|
|
2417
|
+
point: 0,
|
|
2281
2418
|
},
|
|
2282
2419
|
CREATION_DOSSIER_JURIDIQUE: {
|
|
2283
2420
|
id: 142,
|
|
2284
2421
|
name: 'Création du dossier juridique',
|
|
2285
|
-
isComptable:
|
|
2286
|
-
isJuridique:
|
|
2287
|
-
isSocial:
|
|
2288
|
-
isAttestation:
|
|
2289
|
-
inAverageCart:
|
|
2290
|
-
isBack:
|
|
2422
|
+
isComptable: false,
|
|
2423
|
+
isJuridique: true,
|
|
2424
|
+
isSocial: false,
|
|
2425
|
+
isAttestation: false,
|
|
2426
|
+
inAverageCart: false,
|
|
2427
|
+
isBack: false,
|
|
2291
2428
|
price: 20,
|
|
2292
|
-
isCatalog:
|
|
2293
|
-
hidden:
|
|
2294
|
-
isComplementary:
|
|
2429
|
+
isCatalog: true,
|
|
2430
|
+
hidden: false,
|
|
2431
|
+
isComplementary: false,
|
|
2295
2432
|
signaturePosition: null,
|
|
2296
2433
|
signaturePage: null,
|
|
2434
|
+
point: 0,
|
|
2297
2435
|
},
|
|
2298
2436
|
DOC_WORD: {
|
|
2299
2437
|
id: 143,
|
|
2300
2438
|
name: 'Doc Word',
|
|
2301
|
-
isComptable:
|
|
2302
|
-
isJuridique:
|
|
2303
|
-
isSocial:
|
|
2304
|
-
isAttestation:
|
|
2305
|
-
inAverageCart:
|
|
2306
|
-
isBack:
|
|
2439
|
+
isComptable: false,
|
|
2440
|
+
isJuridique: true,
|
|
2441
|
+
isSocial: false,
|
|
2442
|
+
isAttestation: false,
|
|
2443
|
+
inAverageCart: false,
|
|
2444
|
+
isBack: false,
|
|
2307
2445
|
price: 29,
|
|
2308
|
-
isCatalog:
|
|
2309
|
-
hidden:
|
|
2310
|
-
isComplementary:
|
|
2446
|
+
isCatalog: true,
|
|
2447
|
+
hidden: false,
|
|
2448
|
+
isComplementary: false,
|
|
2311
2449
|
signaturePosition: null,
|
|
2312
2450
|
signaturePage: null,
|
|
2451
|
+
point: 0,
|
|
2313
2452
|
},
|
|
2314
2453
|
ENVOI_POSTAL: {
|
|
2315
2454
|
id: 144,
|
|
2316
2455
|
name: 'Envoi postal',
|
|
2317
|
-
isComptable:
|
|
2318
|
-
isJuridique:
|
|
2319
|
-
isSocial:
|
|
2320
|
-
isAttestation:
|
|
2321
|
-
inAverageCart:
|
|
2322
|
-
isBack:
|
|
2456
|
+
isComptable: false,
|
|
2457
|
+
isJuridique: true,
|
|
2458
|
+
isSocial: false,
|
|
2459
|
+
isAttestation: false,
|
|
2460
|
+
inAverageCart: false,
|
|
2461
|
+
isBack: false,
|
|
2323
2462
|
price: 19,
|
|
2324
|
-
isCatalog:
|
|
2325
|
-
hidden:
|
|
2326
|
-
isComplementary:
|
|
2463
|
+
isCatalog: true,
|
|
2464
|
+
hidden: false,
|
|
2465
|
+
isComplementary: false,
|
|
2327
2466
|
signaturePosition: null,
|
|
2328
2467
|
signaturePage: null,
|
|
2468
|
+
point: 0,
|
|
2329
2469
|
},
|
|
2330
2470
|
DECLARATION_SOCIALE_NOMINATIVE: {
|
|
2331
2471
|
id: 145,
|
|
2332
2472
|
name: 'Déclaration sociale nominative',
|
|
2333
|
-
isComptable:
|
|
2334
|
-
isJuridique:
|
|
2335
|
-
isSocial:
|
|
2336
|
-
isAttestation:
|
|
2337
|
-
inAverageCart:
|
|
2338
|
-
isBack:
|
|
2473
|
+
isComptable: false,
|
|
2474
|
+
isJuridique: false,
|
|
2475
|
+
isSocial: true,
|
|
2476
|
+
isAttestation: false,
|
|
2477
|
+
inAverageCart: false,
|
|
2478
|
+
isBack: false,
|
|
2339
2479
|
price: 15,
|
|
2340
|
-
isCatalog:
|
|
2341
|
-
hidden:
|
|
2342
|
-
isComplementary:
|
|
2480
|
+
isCatalog: true,
|
|
2481
|
+
hidden: true,
|
|
2482
|
+
isComplementary: false,
|
|
2343
2483
|
signaturePosition: null,
|
|
2344
2484
|
signaturePage: null,
|
|
2485
|
+
point: 0,
|
|
2345
2486
|
},
|
|
2346
2487
|
SOLDE_TOUT_COMPTE_ET_ATTESTATION_ASSEDIC_ET_ATTESTATION_EMPLOI_SALARIE: {
|
|
2347
2488
|
id: 146,
|
|
2348
2489
|
name: 'Solde de tout compte et attestation ASSEDIC et attestation emploi/salarié',
|
|
2349
|
-
isComptable:
|
|
2350
|
-
isJuridique:
|
|
2351
|
-
isSocial:
|
|
2352
|
-
isAttestation:
|
|
2353
|
-
inAverageCart:
|
|
2354
|
-
isBack:
|
|
2490
|
+
isComptable: false,
|
|
2491
|
+
isJuridique: false,
|
|
2492
|
+
isSocial: true,
|
|
2493
|
+
isAttestation: false,
|
|
2494
|
+
inAverageCart: false,
|
|
2495
|
+
isBack: false,
|
|
2355
2496
|
price: 41,
|
|
2356
|
-
isCatalog:
|
|
2357
|
-
hidden:
|
|
2358
|
-
isComplementary:
|
|
2497
|
+
isCatalog: true,
|
|
2498
|
+
hidden: false,
|
|
2499
|
+
isComplementary: false,
|
|
2359
2500
|
signaturePosition: null,
|
|
2360
2501
|
signaturePage: null,
|
|
2502
|
+
point: 0,
|
|
2361
2503
|
},
|
|
2362
2504
|
ETABLISSEMENT_DECLARATION_PREALABLE_A_L_EMBAUCHE: {
|
|
2363
2505
|
id: 147,
|
|
2364
2506
|
name: 'Etablissement de Déclaration Préalable à l’Embauche',
|
|
2365
|
-
isComptable:
|
|
2366
|
-
isJuridique:
|
|
2367
|
-
isSocial:
|
|
2368
|
-
isAttestation:
|
|
2369
|
-
inAverageCart:
|
|
2370
|
-
isBack:
|
|
2507
|
+
isComptable: false,
|
|
2508
|
+
isJuridique: false,
|
|
2509
|
+
isSocial: true,
|
|
2510
|
+
isAttestation: false,
|
|
2511
|
+
inAverageCart: false,
|
|
2512
|
+
isBack: false,
|
|
2371
2513
|
price: 41,
|
|
2372
|
-
isCatalog:
|
|
2373
|
-
hidden:
|
|
2374
|
-
isComplementary:
|
|
2514
|
+
isCatalog: true,
|
|
2515
|
+
hidden: false,
|
|
2516
|
+
isComplementary: false,
|
|
2375
2517
|
signaturePosition: null,
|
|
2376
2518
|
signaturePage: null,
|
|
2519
|
+
point: 0,
|
|
2377
2520
|
},
|
|
2378
2521
|
COMPTA_MICRO: {
|
|
2379
2522
|
id: 185,
|
|
2380
2523
|
name: 'Compta Micro',
|
|
2381
|
-
isComptable:
|
|
2382
|
-
isJuridique:
|
|
2383
|
-
isSocial:
|
|
2384
|
-
isAttestation:
|
|
2385
|
-
inAverageCart:
|
|
2386
|
-
isBack:
|
|
2387
|
-
price: null,
|
|
2388
|
-
isCatalog:
|
|
2389
|
-
hidden:
|
|
2390
|
-
isComplementary:
|
|
2524
|
+
isComptable: true,
|
|
2525
|
+
isJuridique: false,
|
|
2526
|
+
isSocial: false,
|
|
2527
|
+
isAttestation: false,
|
|
2528
|
+
inAverageCart: true,
|
|
2529
|
+
isBack: false,
|
|
2530
|
+
price: null,
|
|
2531
|
+
isCatalog: false,
|
|
2532
|
+
hidden: false,
|
|
2533
|
+
isComplementary: false,
|
|
2391
2534
|
signaturePosition: '400,54,569,90',
|
|
2392
2535
|
signaturePage: 7,
|
|
2536
|
+
point: 0,
|
|
2393
2537
|
},
|
|
2394
2538
|
COMPTA_MICRO_EXPRESS: {
|
|
2395
2539
|
id: 186,
|
|
2396
2540
|
name: 'Compta Micro Express',
|
|
2397
|
-
isComptable:
|
|
2398
|
-
isJuridique:
|
|
2399
|
-
isSocial:
|
|
2400
|
-
isAttestation:
|
|
2401
|
-
inAverageCart:
|
|
2402
|
-
isBack:
|
|
2403
|
-
price: null,
|
|
2404
|
-
isCatalog:
|
|
2405
|
-
hidden:
|
|
2406
|
-
isComplementary:
|
|
2541
|
+
isComptable: true,
|
|
2542
|
+
isJuridique: false,
|
|
2543
|
+
isSocial: false,
|
|
2544
|
+
isAttestation: false,
|
|
2545
|
+
inAverageCart: true,
|
|
2546
|
+
isBack: true,
|
|
2547
|
+
price: null,
|
|
2548
|
+
isCatalog: false,
|
|
2549
|
+
hidden: false,
|
|
2550
|
+
isComplementary: false,
|
|
2407
2551
|
signaturePosition: '400,54,569,90',
|
|
2408
2552
|
signaturePage: 7,
|
|
2553
|
+
point: 0,
|
|
2409
2554
|
},
|
|
2410
2555
|
COMPTA_SCI: {
|
|
2411
2556
|
id: 187,
|
|
2412
2557
|
name: 'Compta SCI',
|
|
2413
|
-
isComptable:
|
|
2414
|
-
isJuridique:
|
|
2415
|
-
isSocial:
|
|
2416
|
-
isAttestation:
|
|
2417
|
-
inAverageCart:
|
|
2418
|
-
isBack:
|
|
2419
|
-
price: null,
|
|
2420
|
-
isCatalog:
|
|
2421
|
-
hidden:
|
|
2422
|
-
isComplementary:
|
|
2558
|
+
isComptable: true,
|
|
2559
|
+
isJuridique: false,
|
|
2560
|
+
isSocial: false,
|
|
2561
|
+
isAttestation: false,
|
|
2562
|
+
inAverageCart: true,
|
|
2563
|
+
isBack: false,
|
|
2564
|
+
price: null,
|
|
2565
|
+
isCatalog: false,
|
|
2566
|
+
hidden: false,
|
|
2567
|
+
isComplementary: false,
|
|
2423
2568
|
signaturePosition: '400,54,569,90',
|
|
2424
2569
|
signaturePage: 6,
|
|
2570
|
+
point: 0,
|
|
2425
2571
|
},
|
|
2426
2572
|
COMPTA_SCI_EXPRESS: {
|
|
2427
2573
|
id: 188,
|
|
2428
2574
|
name: 'Compta SCI Express',
|
|
2429
|
-
isComptable:
|
|
2430
|
-
isJuridique:
|
|
2431
|
-
isSocial:
|
|
2432
|
-
isAttestation:
|
|
2433
|
-
inAverageCart:
|
|
2434
|
-
isBack:
|
|
2435
|
-
price: null,
|
|
2436
|
-
isCatalog:
|
|
2437
|
-
hidden:
|
|
2438
|
-
isComplementary:
|
|
2575
|
+
isComptable: true,
|
|
2576
|
+
isJuridique: false,
|
|
2577
|
+
isSocial: false,
|
|
2578
|
+
isAttestation: false,
|
|
2579
|
+
inAverageCart: true,
|
|
2580
|
+
isBack: true,
|
|
2581
|
+
price: null,
|
|
2582
|
+
isCatalog: false,
|
|
2583
|
+
hidden: false,
|
|
2584
|
+
isComplementary: false,
|
|
2439
2585
|
signaturePosition: '400,54,569,90',
|
|
2440
2586
|
signaturePage: 6,
|
|
2587
|
+
point: 0,
|
|
2441
2588
|
},
|
|
2442
2589
|
BILAN_PREVISIONNEL: {
|
|
2443
2590
|
id: 189,
|
|
2444
2591
|
name: 'Bilan prévisionnel',
|
|
2445
|
-
isComptable:
|
|
2446
|
-
isJuridique:
|
|
2447
|
-
isSocial:
|
|
2448
|
-
isAttestation:
|
|
2449
|
-
inAverageCart:
|
|
2450
|
-
isBack:
|
|
2592
|
+
isComptable: true,
|
|
2593
|
+
isJuridique: false,
|
|
2594
|
+
isSocial: false,
|
|
2595
|
+
isAttestation: false,
|
|
2596
|
+
inAverageCart: true,
|
|
2597
|
+
isBack: false,
|
|
2451
2598
|
price: 239,
|
|
2452
|
-
isCatalog:
|
|
2453
|
-
hidden:
|
|
2454
|
-
isComplementary:
|
|
2599
|
+
isCatalog: true,
|
|
2600
|
+
hidden: false,
|
|
2601
|
+
isComplementary: false,
|
|
2455
2602
|
signaturePosition: '400,54,569,90',
|
|
2456
2603
|
signaturePage: 5,
|
|
2604
|
+
point: 0,
|
|
2457
2605
|
},
|
|
2458
2606
|
ATTESTATION_1: {
|
|
2459
2607
|
id: 190,
|
|
2460
2608
|
name: 'Attestation',
|
|
2461
|
-
isComptable:
|
|
2462
|
-
isJuridique:
|
|
2463
|
-
isSocial:
|
|
2464
|
-
isAttestation:
|
|
2465
|
-
inAverageCart:
|
|
2466
|
-
isBack:
|
|
2609
|
+
isComptable: true,
|
|
2610
|
+
isJuridique: false,
|
|
2611
|
+
isSocial: false,
|
|
2612
|
+
isAttestation: true,
|
|
2613
|
+
inAverageCart: false,
|
|
2614
|
+
isBack: false,
|
|
2467
2615
|
price: null,
|
|
2468
|
-
isCatalog:
|
|
2469
|
-
hidden:
|
|
2470
|
-
isComplementary:
|
|
2616
|
+
isCatalog: true,
|
|
2617
|
+
hidden: false,
|
|
2618
|
+
isComplementary: false,
|
|
2471
2619
|
signaturePosition: null,
|
|
2472
2620
|
signaturePage: null,
|
|
2621
|
+
point: 0,
|
|
2473
2622
|
},
|
|
2474
2623
|
DEMANDE_CREATION_SOCIETE_SUPPLEMENTAIRE: {
|
|
2475
2624
|
id: 191,
|
|
2476
2625
|
name: 'Demande de création de société supplémentaire',
|
|
2477
|
-
isComptable:
|
|
2478
|
-
isJuridique:
|
|
2479
|
-
isSocial:
|
|
2480
|
-
isAttestation:
|
|
2481
|
-
inAverageCart:
|
|
2482
|
-
isBack:
|
|
2626
|
+
isComptable: false,
|
|
2627
|
+
isJuridique: true,
|
|
2628
|
+
isSocial: false,
|
|
2629
|
+
isAttestation: false,
|
|
2630
|
+
inAverageCart: false,
|
|
2631
|
+
isBack: false,
|
|
2483
2632
|
price: null,
|
|
2484
|
-
isCatalog:
|
|
2485
|
-
hidden:
|
|
2486
|
-
isComplementary:
|
|
2633
|
+
isCatalog: false,
|
|
2634
|
+
hidden: false,
|
|
2635
|
+
isComplementary: false,
|
|
2487
2636
|
signaturePosition: null,
|
|
2488
2637
|
signaturePage: null,
|
|
2638
|
+
point: 0,
|
|
2489
2639
|
},
|
|
2490
2640
|
DISSOLUTION_LIQUIDATION: {
|
|
2491
2641
|
id: 192,
|
|
2492
2642
|
name: 'Dissolution Liquidation',
|
|
2493
|
-
isComptable:
|
|
2494
|
-
isJuridique:
|
|
2495
|
-
isSocial:
|
|
2496
|
-
isAttestation:
|
|
2497
|
-
inAverageCart:
|
|
2498
|
-
isBack:
|
|
2643
|
+
isComptable: false,
|
|
2644
|
+
isJuridique: true,
|
|
2645
|
+
isSocial: false,
|
|
2646
|
+
isAttestation: false,
|
|
2647
|
+
inAverageCart: false,
|
|
2648
|
+
isBack: false,
|
|
2499
2649
|
price: null,
|
|
2500
|
-
isCatalog:
|
|
2501
|
-
hidden:
|
|
2502
|
-
isComplementary:
|
|
2650
|
+
isCatalog: false,
|
|
2651
|
+
hidden: false,
|
|
2652
|
+
isComplementary: false,
|
|
2503
2653
|
signaturePosition: null,
|
|
2504
2654
|
signaturePage: null,
|
|
2655
|
+
point: 0,
|
|
2505
2656
|
},
|
|
2506
2657
|
ELIGIBILITE_FONDS_DE_SOLIDARITE: {
|
|
2507
2658
|
id: 193,
|
|
2508
2659
|
name: 'Eligibilité fonds de solidarité',
|
|
2509
|
-
isComptable:
|
|
2510
|
-
isJuridique:
|
|
2511
|
-
isSocial:
|
|
2512
|
-
isAttestation:
|
|
2513
|
-
inAverageCart:
|
|
2514
|
-
isBack:
|
|
2660
|
+
isComptable: false,
|
|
2661
|
+
isJuridique: false,
|
|
2662
|
+
isSocial: true,
|
|
2663
|
+
isAttestation: false,
|
|
2664
|
+
inAverageCart: false,
|
|
2665
|
+
isBack: false,
|
|
2515
2666
|
price: null,
|
|
2516
|
-
isCatalog:
|
|
2517
|
-
hidden:
|
|
2518
|
-
isComplementary:
|
|
2667
|
+
isCatalog: true,
|
|
2668
|
+
hidden: true,
|
|
2669
|
+
isComplementary: false,
|
|
2519
2670
|
signaturePosition: null,
|
|
2520
2671
|
signaturePage: null,
|
|
2672
|
+
point: 0,
|
|
2521
2673
|
},
|
|
2522
2674
|
COMPTA_STARTER_PRO: {
|
|
2523
2675
|
id: 194,
|
|
2524
2676
|
name: 'Compta Starter Pro',
|
|
2525
|
-
isComptable:
|
|
2526
|
-
isJuridique:
|
|
2527
|
-
isSocial:
|
|
2528
|
-
isAttestation:
|
|
2529
|
-
inAverageCart:
|
|
2530
|
-
isBack:
|
|
2531
|
-
price: null,
|
|
2532
|
-
isCatalog:
|
|
2533
|
-
hidden:
|
|
2534
|
-
isComplementary:
|
|
2677
|
+
isComptable: true,
|
|
2678
|
+
isJuridique: false,
|
|
2679
|
+
isSocial: false,
|
|
2680
|
+
isAttestation: false,
|
|
2681
|
+
inAverageCart: true,
|
|
2682
|
+
isBack: false,
|
|
2683
|
+
price: null,
|
|
2684
|
+
isCatalog: false,
|
|
2685
|
+
hidden: false,
|
|
2686
|
+
isComplementary: false,
|
|
2535
2687
|
signaturePosition: '400,54,569,90',
|
|
2536
2688
|
signaturePage: 7,
|
|
2689
|
+
point: 0,
|
|
2537
2690
|
},
|
|
2538
2691
|
COMPTA_STARTER_ENTREPRISE: {
|
|
2539
2692
|
id: 195,
|
|
2540
2693
|
name: 'Compta Starter Entreprise',
|
|
2541
|
-
isComptable:
|
|
2542
|
-
isJuridique:
|
|
2543
|
-
isSocial:
|
|
2544
|
-
isAttestation:
|
|
2545
|
-
inAverageCart:
|
|
2546
|
-
isBack:
|
|
2547
|
-
price: null,
|
|
2548
|
-
isCatalog:
|
|
2549
|
-
hidden:
|
|
2550
|
-
isComplementary:
|
|
2694
|
+
isComptable: true,
|
|
2695
|
+
isJuridique: false,
|
|
2696
|
+
isSocial: false,
|
|
2697
|
+
isAttestation: false,
|
|
2698
|
+
inAverageCart: true,
|
|
2699
|
+
isBack: false,
|
|
2700
|
+
price: null,
|
|
2701
|
+
isCatalog: false,
|
|
2702
|
+
hidden: false,
|
|
2703
|
+
isComplementary: false,
|
|
2551
2704
|
signaturePosition: '400,54,569,90',
|
|
2552
2705
|
signaturePage: 7,
|
|
2706
|
+
point: 0,
|
|
2553
2707
|
},
|
|
2554
2708
|
ABO_STRIPE: {
|
|
2555
2709
|
id: 196,
|
|
2556
2710
|
name: 'Abonnement Stripe',
|
|
2557
|
-
isComptable:
|
|
2558
|
-
isJuridique:
|
|
2559
|
-
isSocial:
|
|
2560
|
-
isAttestation:
|
|
2561
|
-
inAverageCart:
|
|
2562
|
-
isBack:
|
|
2711
|
+
isComptable: true,
|
|
2712
|
+
isJuridique: false,
|
|
2713
|
+
isSocial: false,
|
|
2714
|
+
isAttestation: false,
|
|
2715
|
+
inAverageCart: true,
|
|
2716
|
+
isBack: false,
|
|
2563
2717
|
price: null,
|
|
2564
|
-
isCatalog:
|
|
2565
|
-
hidden:
|
|
2566
|
-
isComplementary:
|
|
2718
|
+
isCatalog: false,
|
|
2719
|
+
hidden: true,
|
|
2720
|
+
isComplementary: false,
|
|
2567
2721
|
signaturePosition: null,
|
|
2568
2722
|
signaturePage: null,
|
|
2723
|
+
point: 0,
|
|
2569
2724
|
},
|
|
2570
2725
|
COMPTA_POURCENTAGE: {
|
|
2571
2726
|
id: 197,
|
|
2572
2727
|
name: 'Compta Pourcentage',
|
|
2573
|
-
isComptable:
|
|
2574
|
-
isJuridique:
|
|
2575
|
-
isSocial:
|
|
2576
|
-
isAttestation:
|
|
2577
|
-
inAverageCart:
|
|
2578
|
-
isBack:
|
|
2579
|
-
price: null,
|
|
2580
|
-
isCatalog:
|
|
2581
|
-
hidden:
|
|
2582
|
-
isComplementary:
|
|
2728
|
+
isComptable: true,
|
|
2729
|
+
isJuridique: false,
|
|
2730
|
+
isSocial: false,
|
|
2731
|
+
isAttestation: false,
|
|
2732
|
+
inAverageCart: true,
|
|
2733
|
+
isBack: false,
|
|
2734
|
+
price: null,
|
|
2735
|
+
isCatalog: false,
|
|
2736
|
+
hidden: false,
|
|
2737
|
+
isComplementary: false,
|
|
2583
2738
|
signaturePosition: '400,54,569,90',
|
|
2584
2739
|
signaturePage: 7,
|
|
2740
|
+
point: 0,
|
|
2585
2741
|
},
|
|
2586
2742
|
COMPTA_PRO_COMPTASTART: {
|
|
2587
2743
|
id: 198,
|
|
2588
2744
|
name: 'Compta Pro Comptastart',
|
|
2589
|
-
isComptable:
|
|
2590
|
-
isJuridique:
|
|
2591
|
-
isSocial:
|
|
2592
|
-
isAttestation:
|
|
2593
|
-
inAverageCart:
|
|
2594
|
-
isBack:
|
|
2595
|
-
price: null,
|
|
2596
|
-
isCatalog:
|
|
2597
|
-
hidden:
|
|
2598
|
-
isComplementary:
|
|
2745
|
+
isComptable: true,
|
|
2746
|
+
isJuridique: false,
|
|
2747
|
+
isSocial: false,
|
|
2748
|
+
isAttestation: false,
|
|
2749
|
+
inAverageCart: true,
|
|
2750
|
+
isBack: false,
|
|
2751
|
+
price: null,
|
|
2752
|
+
isCatalog: false,
|
|
2753
|
+
hidden: false,
|
|
2754
|
+
isComplementary: false,
|
|
2599
2755
|
signaturePosition: '400,54,569,90',
|
|
2600
2756
|
signaturePage: 5,
|
|
2757
|
+
point: 0,
|
|
2601
2758
|
},
|
|
2602
2759
|
COMPTA_PRO_COMPTASTART_EXPRESS: {
|
|
2603
2760
|
id: 199,
|
|
2604
2761
|
name: 'Compta Pro Comptastart Express',
|
|
2605
|
-
isComptable:
|
|
2606
|
-
isJuridique:
|
|
2607
|
-
isSocial:
|
|
2608
|
-
isAttestation:
|
|
2609
|
-
inAverageCart:
|
|
2610
|
-
isBack:
|
|
2611
|
-
price: null,
|
|
2612
|
-
isCatalog:
|
|
2613
|
-
hidden:
|
|
2614
|
-
isComplementary:
|
|
2762
|
+
isComptable: true,
|
|
2763
|
+
isJuridique: false,
|
|
2764
|
+
isSocial: false,
|
|
2765
|
+
isAttestation: false,
|
|
2766
|
+
inAverageCart: true,
|
|
2767
|
+
isBack: true,
|
|
2768
|
+
price: null,
|
|
2769
|
+
isCatalog: false,
|
|
2770
|
+
hidden: false,
|
|
2771
|
+
isComplementary: false,
|
|
2615
2772
|
signaturePosition: '400,54,569,90',
|
|
2616
2773
|
signaturePage: 5,
|
|
2774
|
+
point: 0,
|
|
2617
2775
|
},
|
|
2618
2776
|
ATTESTATION_NON_REMUNERATION_RECURRENTE: {
|
|
2619
2777
|
id: 200,
|
|
2620
2778
|
name: 'Attestation non remunération recurrente',
|
|
2621
|
-
isComptable:
|
|
2622
|
-
isJuridique:
|
|
2623
|
-
isSocial:
|
|
2624
|
-
isAttestation:
|
|
2625
|
-
inAverageCart:
|
|
2626
|
-
isBack:
|
|
2779
|
+
isComptable: true,
|
|
2780
|
+
isJuridique: false,
|
|
2781
|
+
isSocial: false,
|
|
2782
|
+
isAttestation: true,
|
|
2783
|
+
inAverageCart: false,
|
|
2784
|
+
isBack: false,
|
|
2627
2785
|
price: null,
|
|
2628
|
-
isCatalog:
|
|
2629
|
-
hidden:
|
|
2630
|
-
isComplementary:
|
|
2786
|
+
isCatalog: true,
|
|
2787
|
+
hidden: false,
|
|
2788
|
+
isComplementary: false,
|
|
2631
2789
|
signaturePosition: null,
|
|
2632
2790
|
signaturePage: null,
|
|
2791
|
+
point: 0,
|
|
2633
2792
|
},
|
|
2634
2793
|
COMPTA_BASIC: {
|
|
2635
2794
|
id: 201,
|
|
2636
2795
|
name: 'Compta Basic',
|
|
2637
|
-
isComptable:
|
|
2638
|
-
isJuridique:
|
|
2639
|
-
isSocial:
|
|
2640
|
-
isAttestation:
|
|
2641
|
-
inAverageCart:
|
|
2642
|
-
isBack:
|
|
2643
|
-
price: null,
|
|
2644
|
-
isCatalog:
|
|
2645
|
-
hidden:
|
|
2646
|
-
isComplementary:
|
|
2796
|
+
isComptable: true,
|
|
2797
|
+
isJuridique: false,
|
|
2798
|
+
isSocial: false,
|
|
2799
|
+
isAttestation: false,
|
|
2800
|
+
inAverageCart: true,
|
|
2801
|
+
isBack: false,
|
|
2802
|
+
price: null,
|
|
2803
|
+
isCatalog: false,
|
|
2804
|
+
hidden: false,
|
|
2805
|
+
isComplementary: false,
|
|
2647
2806
|
signaturePosition: '400,54,569,90',
|
|
2648
2807
|
signaturePage: 7,
|
|
2808
|
+
point: 0,
|
|
2649
2809
|
},
|
|
2650
2810
|
COMPTA_PREMIUM: {
|
|
2651
2811
|
id: 202,
|
|
2652
2812
|
name: 'Compta Premium',
|
|
2653
|
-
isComptable:
|
|
2654
|
-
isJuridique:
|
|
2655
|
-
isSocial:
|
|
2656
|
-
isAttestation:
|
|
2657
|
-
inAverageCart:
|
|
2658
|
-
isBack:
|
|
2659
|
-
price: null,
|
|
2660
|
-
isCatalog:
|
|
2661
|
-
hidden:
|
|
2662
|
-
isComplementary:
|
|
2813
|
+
isComptable: true,
|
|
2814
|
+
isJuridique: false,
|
|
2815
|
+
isSocial: false,
|
|
2816
|
+
isAttestation: false,
|
|
2817
|
+
inAverageCart: true,
|
|
2818
|
+
isBack: false,
|
|
2819
|
+
price: null,
|
|
2820
|
+
isCatalog: false,
|
|
2821
|
+
hidden: false,
|
|
2822
|
+
isComplementary: false,
|
|
2663
2823
|
signaturePosition: '400,54,569,90',
|
|
2664
2824
|
signaturePage: 7,
|
|
2825
|
+
point: 0,
|
|
2665
2826
|
},
|
|
2666
2827
|
COMPTA_BUSINESS: {
|
|
2667
2828
|
id: 203,
|
|
2668
2829
|
name: 'Compta Business',
|
|
2669
|
-
isComptable:
|
|
2670
|
-
isJuridique:
|
|
2671
|
-
isSocial:
|
|
2672
|
-
isAttestation:
|
|
2673
|
-
inAverageCart:
|
|
2674
|
-
isBack:
|
|
2675
|
-
price: null,
|
|
2676
|
-
isCatalog:
|
|
2677
|
-
hidden:
|
|
2678
|
-
isComplementary:
|
|
2830
|
+
isComptable: true,
|
|
2831
|
+
isJuridique: false,
|
|
2832
|
+
isSocial: false,
|
|
2833
|
+
isAttestation: false,
|
|
2834
|
+
inAverageCart: true,
|
|
2835
|
+
isBack: false,
|
|
2836
|
+
price: null,
|
|
2837
|
+
isCatalog: false,
|
|
2838
|
+
hidden: false,
|
|
2839
|
+
isComplementary: false,
|
|
2679
2840
|
signaturePosition: '400,54,569,90',
|
|
2680
2841
|
signaturePage: 7,
|
|
2842
|
+
point: 0,
|
|
2681
2843
|
},
|
|
2682
2844
|
DOCUMENT_DE_SORTIE: {
|
|
2683
2845
|
id: 204,
|
|
2684
2846
|
name: 'Document de sortie',
|
|
2685
|
-
isComptable:
|
|
2686
|
-
isJuridique:
|
|
2687
|
-
isSocial:
|
|
2688
|
-
isAttestation:
|
|
2689
|
-
inAverageCart:
|
|
2690
|
-
isBack:
|
|
2847
|
+
isComptable: false,
|
|
2848
|
+
isJuridique: false,
|
|
2849
|
+
isSocial: true,
|
|
2850
|
+
isAttestation: false,
|
|
2851
|
+
inAverageCart: false,
|
|
2852
|
+
isBack: false,
|
|
2691
2853
|
price: 0,
|
|
2692
|
-
isCatalog:
|
|
2693
|
-
hidden:
|
|
2694
|
-
isComplementary:
|
|
2854
|
+
isCatalog: true,
|
|
2855
|
+
hidden: false,
|
|
2856
|
+
isComplementary: false,
|
|
2695
2857
|
signaturePosition: null,
|
|
2696
2858
|
signaturePage: null,
|
|
2859
|
+
point: 0,
|
|
2697
2860
|
},
|
|
2698
2861
|
COMPTA_POURCENTAGE_PREMIUM: {
|
|
2699
2862
|
id: 205,
|
|
2700
2863
|
name: 'Compta Pourcentage Premium',
|
|
2701
|
-
isComptable:
|
|
2702
|
-
isJuridique:
|
|
2703
|
-
isSocial:
|
|
2704
|
-
isAttestation:
|
|
2705
|
-
inAverageCart:
|
|
2706
|
-
isBack:
|
|
2707
|
-
price: null,
|
|
2708
|
-
isCatalog:
|
|
2709
|
-
hidden:
|
|
2710
|
-
isComplementary:
|
|
2864
|
+
isComptable: true,
|
|
2865
|
+
isJuridique: false,
|
|
2866
|
+
isSocial: false,
|
|
2867
|
+
isAttestation: false,
|
|
2868
|
+
inAverageCart: true,
|
|
2869
|
+
isBack: false,
|
|
2870
|
+
price: null,
|
|
2871
|
+
isCatalog: false,
|
|
2872
|
+
hidden: false,
|
|
2873
|
+
isComplementary: false,
|
|
2711
2874
|
signaturePosition: '400,54,569,90',
|
|
2712
2875
|
signaturePage: 7,
|
|
2876
|
+
point: 0,
|
|
2713
2877
|
},
|
|
2714
2878
|
DECLARATION_IR: {
|
|
2715
2879
|
id: 206,
|
|
2716
2880
|
name: 'Déclaration d\'IR',
|
|
2717
|
-
isComptable:
|
|
2718
|
-
isJuridique:
|
|
2719
|
-
isSocial:
|
|
2720
|
-
isAttestation:
|
|
2721
|
-
inAverageCart:
|
|
2722
|
-
isBack:
|
|
2723
|
-
price: null,
|
|
2724
|
-
isCatalog:
|
|
2725
|
-
hidden:
|
|
2726
|
-
isComplementary:
|
|
2881
|
+
isComptable: true,
|
|
2882
|
+
isJuridique: false,
|
|
2883
|
+
isSocial: false,
|
|
2884
|
+
isAttestation: false,
|
|
2885
|
+
inAverageCart: false,
|
|
2886
|
+
isBack: false,
|
|
2887
|
+
price: null,
|
|
2888
|
+
isCatalog: true,
|
|
2889
|
+
hidden: false,
|
|
2890
|
+
isComplementary: false,
|
|
2727
2891
|
signaturePosition: '400,54,569,90',
|
|
2728
2892
|
signaturePage: null,
|
|
2893
|
+
point: 0,
|
|
2729
2894
|
},
|
|
2730
2895
|
COMPTA_POURCENTAGE_EXPRESS: {
|
|
2731
2896
|
id: 207,
|
|
2732
2897
|
name: 'Compta Pourcentage Express',
|
|
2733
|
-
isComptable:
|
|
2734
|
-
isJuridique:
|
|
2735
|
-
isSocial:
|
|
2736
|
-
isAttestation:
|
|
2737
|
-
inAverageCart:
|
|
2738
|
-
isBack:
|
|
2739
|
-
price: null,
|
|
2740
|
-
isCatalog:
|
|
2741
|
-
hidden:
|
|
2742
|
-
isComplementary:
|
|
2898
|
+
isComptable: true,
|
|
2899
|
+
isJuridique: false,
|
|
2900
|
+
isSocial: false,
|
|
2901
|
+
isAttestation: false,
|
|
2902
|
+
inAverageCart: true,
|
|
2903
|
+
isBack: true,
|
|
2904
|
+
price: null,
|
|
2905
|
+
isCatalog: false,
|
|
2906
|
+
hidden: false,
|
|
2907
|
+
isComplementary: false,
|
|
2743
2908
|
signaturePosition: '400,54,569,90',
|
|
2744
2909
|
signaturePage: 7,
|
|
2910
|
+
point: 0,
|
|
2745
2911
|
},
|
|
2746
2912
|
COMPTA_POURCENTAGE_PREMIUM_EXPRESS: {
|
|
2747
2913
|
id: 208,
|
|
2748
2914
|
name: 'Compta Pourcentage Premium Express',
|
|
2749
|
-
isComptable:
|
|
2750
|
-
isJuridique:
|
|
2751
|
-
isSocial:
|
|
2752
|
-
isAttestation:
|
|
2753
|
-
inAverageCart:
|
|
2754
|
-
isBack:
|
|
2755
|
-
price: null,
|
|
2756
|
-
isCatalog:
|
|
2757
|
-
hidden:
|
|
2758
|
-
isComplementary:
|
|
2915
|
+
isComptable: true,
|
|
2916
|
+
isJuridique: false,
|
|
2917
|
+
isSocial: false,
|
|
2918
|
+
isAttestation: false,
|
|
2919
|
+
inAverageCart: true,
|
|
2920
|
+
isBack: true,
|
|
2921
|
+
price: null,
|
|
2922
|
+
isCatalog: false,
|
|
2923
|
+
hidden: false,
|
|
2924
|
+
isComplementary: false,
|
|
2759
2925
|
signaturePosition: '400,54,569,90',
|
|
2760
2926
|
signaturePage: 7,
|
|
2927
|
+
point: 0,
|
|
2761
2928
|
},
|
|
2762
2929
|
ANNONCE_LEGALE: {
|
|
2763
2930
|
id: 209,
|
|
2764
2931
|
name: 'Annonces légales',
|
|
2765
|
-
isComptable:
|
|
2766
|
-
isJuridique:
|
|
2767
|
-
isSocial:
|
|
2768
|
-
isAttestation:
|
|
2769
|
-
inAverageCart:
|
|
2770
|
-
isBack:
|
|
2771
|
-
price: null,
|
|
2772
|
-
isCatalog:
|
|
2773
|
-
hidden:
|
|
2774
|
-
isComplementary:
|
|
2932
|
+
isComptable: false,
|
|
2933
|
+
isJuridique: true,
|
|
2934
|
+
isSocial: false,
|
|
2935
|
+
isAttestation: false,
|
|
2936
|
+
inAverageCart: false,
|
|
2937
|
+
isBack: false,
|
|
2938
|
+
price: null,
|
|
2939
|
+
isCatalog: false,
|
|
2940
|
+
hidden: false,
|
|
2941
|
+
isComplementary: false,
|
|
2775
2942
|
signaturePosition: '400,54,569,90',
|
|
2776
2943
|
signaturePage: 7,
|
|
2944
|
+
point: 0,
|
|
2777
2945
|
},
|
|
2778
2946
|
FRAIS_DE_GREFFE: {
|
|
2779
2947
|
id: 210,
|
|
2780
2948
|
name: 'Frais de greffe',
|
|
2781
|
-
isComptable:
|
|
2782
|
-
isJuridique:
|
|
2783
|
-
isSocial:
|
|
2784
|
-
isAttestation:
|
|
2785
|
-
inAverageCart:
|
|
2786
|
-
isBack:
|
|
2787
|
-
price: null,
|
|
2788
|
-
isCatalog:
|
|
2789
|
-
hidden:
|
|
2790
|
-
isComplementary:
|
|
2949
|
+
isComptable: false,
|
|
2950
|
+
isJuridique: true,
|
|
2951
|
+
isSocial: false,
|
|
2952
|
+
isAttestation: false,
|
|
2953
|
+
inAverageCart: false,
|
|
2954
|
+
isBack: false,
|
|
2955
|
+
price: null,
|
|
2956
|
+
isCatalog: false,
|
|
2957
|
+
hidden: false,
|
|
2958
|
+
isComplementary: false,
|
|
2791
2959
|
signaturePosition: '',
|
|
2792
2960
|
signaturePage: 0,
|
|
2961
|
+
point: 0,
|
|
2793
2962
|
},
|
|
2794
2963
|
};
|