@silexpert/core 1.3.193-ca12-3 → 1.3.193
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/types/Enum/SocietyApproval.d.ts +0 -19
- package/dist/cjs/types/Enum/SocietyApproval.d.ts.map +1 -1
- package/dist/cjs/types/Enum/SocietyApproval.js +1 -76
- package/dist/cjs/types/Enum/SocietyApproval.js.map +1 -1
- package/dist/cjs/types/Interface/api/cerfa/3514.d.ts +2 -2
- package/dist/cjs/types/Interface/api/cerfa/3514.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/cerfa/3514.js.map +1 -1
- package/dist/cjs/types/Interface/api/cerfa/3517.d.ts +233 -238
- package/dist/cjs/types/Interface/api/cerfa/3517.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/cerfa/3517.js.map +1 -1
- package/dist/cjs/types/Interface/api/cerfa/ReadCerfa.d.ts +1 -1
- package/dist/cjs/types/Interface/api/cerfa/ReadCerfa.js.map +1 -1
- package/dist/cjs/utils/vat/3517/century23.d.ts +8 -0
- package/dist/cjs/utils/vat/3517/century23.d.ts.map +1 -0
- package/dist/cjs/utils/vat/3517/{century26.js → century23.js} +193 -247
- package/dist/cjs/utils/vat/3517/century23.js.map +1 -0
- package/dist/cjs/utils/vat/centuries.js +13 -13
- package/dist/cjs/utils/vat/centuries.js.map +1 -1
- package/dist/mjs/types/Enum/SocietyApproval.d.ts +0 -19
- package/dist/mjs/types/Enum/SocietyApproval.d.ts.map +1 -1
- package/dist/mjs/types/Enum/SocietyApproval.js +0 -75
- package/dist/mjs/types/Enum/SocietyApproval.js.map +1 -1
- package/dist/mjs/types/Interface/api/cerfa/3514.d.ts +2 -2
- package/dist/mjs/types/Interface/api/cerfa/3514.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/cerfa/3514.js.map +1 -1
- package/dist/mjs/types/Interface/api/cerfa/3517.d.ts +233 -238
- package/dist/mjs/types/Interface/api/cerfa/3517.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/cerfa/3517.js.map +1 -1
- package/dist/mjs/types/Interface/api/cerfa/ReadCerfa.d.ts +1 -1
- package/dist/mjs/types/Interface/api/cerfa/ReadCerfa.js.map +1 -1
- package/dist/mjs/utils/vat/3517/century23.d.ts +8 -0
- package/dist/mjs/utils/vat/3517/century23.d.ts.map +1 -0
- package/dist/mjs/utils/vat/3517/{century26.js → century23.js} +135 -189
- package/dist/mjs/utils/vat/3517/century23.js.map +1 -0
- package/dist/mjs/utils/vat/centuries.js +13 -13
- package/dist/mjs/utils/vat/centuries.js.map +1 -1
- package/package.json +1 -1
- package/ts/types/Enum/SocietyApproval.ts +0 -83
- package/ts/types/Interface/api/cerfa/3514.ts +2 -2
- package/ts/types/Interface/api/cerfa/3517.ts +211 -207
- package/ts/types/Interface/api/cerfa/ReadCerfa.ts +1 -1
- package/ts/utils/vat/3517/{century26.ts → century23.ts} +145 -203
- package/ts/utils/vat/centuries.ts +21 -21
- package/dist/cjs/utils/vat/3517/century26.d.ts +0 -8
- package/dist/cjs/utils/vat/3517/century26.d.ts.map +0 -1
- package/dist/cjs/utils/vat/3517/century26.js.map +0 -1
- package/dist/mjs/utils/vat/3517/century26.d.ts +0 -8
- package/dist/mjs/utils/vat/3517/century26.d.ts.map +0 -1
- package/dist/mjs/utils/vat/3517/century26.js.map +0 -1
|
@@ -21,10 +21,10 @@ type ReduceNormalBaseAndTax = {
|
|
|
21
21
|
normal: BaseAndTax;
|
|
22
22
|
};
|
|
23
23
|
|
|
24
|
-
export type AnyCerfa3517Century =
|
|
25
|
-
export type AnyPayloadCerfa3517Century =
|
|
24
|
+
export type AnyCerfa3517Century = Cerfa3517_2023 | Cerfa3517_2025;
|
|
25
|
+
export type AnyPayloadCerfa3517Century = PayloadCerfa3517_2023 | PayloadCerfa3517_2025;
|
|
26
26
|
|
|
27
|
-
export interface
|
|
27
|
+
export interface Cerfa3517_2023 {
|
|
28
28
|
isNil: boolean;
|
|
29
29
|
declaration: {
|
|
30
30
|
comment: string | null;
|
|
@@ -137,18 +137,21 @@ export interface Cerfa3517_2025 {
|
|
|
137
137
|
balanceSurplus: number;
|
|
138
138
|
};
|
|
139
139
|
tax: {
|
|
140
|
-
|
|
141
|
-
onBoarding: number;
|
|
142
|
-
onBoardingCorse: number;
|
|
143
|
-
onRetransmission: BaseAndTax;
|
|
140
|
+
onRetransmission: number;
|
|
144
141
|
onResultFarm: number;
|
|
142
|
+
payingVideo: {
|
|
143
|
+
reduced: number;
|
|
144
|
+
normal: number;
|
|
145
|
+
};
|
|
146
|
+
freeVideo: {
|
|
147
|
+
reduce: number;
|
|
148
|
+
normal: number;
|
|
149
|
+
};
|
|
150
|
+
bailiff: number;
|
|
151
|
+
contribution: number;
|
|
145
152
|
ofEmployer: number;
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
videoOnAsk: ReduceNormalBaseAndTax;
|
|
149
|
-
onAdsFromVideo: ReduceNormalBaseAndTax;
|
|
150
|
-
bailiff: { count: number; tax: number };
|
|
151
|
-
/***/
|
|
153
|
+
onBoardingCorse: number;
|
|
154
|
+
onBoarding: number;
|
|
152
155
|
development: number;
|
|
153
156
|
publicity: number;
|
|
154
157
|
onCompanySurplus: number;
|
|
@@ -238,57 +241,131 @@ export interface Cerfa3517_2025 {
|
|
|
238
241
|
};
|
|
239
242
|
}
|
|
240
243
|
|
|
241
|
-
export
|
|
242
|
-
startDate: string;
|
|
243
|
-
endDate: string;
|
|
244
|
-
society: ISociety;
|
|
245
|
-
setting: ISocietyGescom | null;
|
|
246
|
-
details: IVatDeclarationSocietyDetail | null;
|
|
247
|
-
owner: IUser | null;
|
|
244
|
+
export interface Cerfa3517_2025 {
|
|
248
245
|
isNil: boolean;
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
246
|
+
declaration: {
|
|
247
|
+
comment: string | null;
|
|
248
|
+
period: {
|
|
249
|
+
start: {
|
|
250
|
+
day: string;
|
|
251
|
+
month: string;
|
|
252
|
+
year: string;
|
|
253
|
+
};
|
|
254
|
+
end: {
|
|
255
|
+
day: string;
|
|
256
|
+
month: string;
|
|
257
|
+
year: string;
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
recipient: {
|
|
261
|
+
name?: string | null;
|
|
262
|
+
address: { full: string };
|
|
263
|
+
};
|
|
264
|
+
numbers: {
|
|
265
|
+
SIE: string | null;
|
|
266
|
+
folder: string | null;
|
|
267
|
+
key: string | null;
|
|
268
|
+
period: string | null;
|
|
269
|
+
CM: string | null;
|
|
270
|
+
OPT: string | null;
|
|
271
|
+
service: string | null;
|
|
272
|
+
system: string | null;
|
|
273
|
+
};
|
|
274
|
+
intracommunityVat: {
|
|
275
|
+
first: string | null;
|
|
276
|
+
second: string | null;
|
|
277
|
+
third: string | null;
|
|
278
|
+
};
|
|
279
|
+
siret: {
|
|
280
|
+
first: string | null;
|
|
281
|
+
second: string | null;
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
payment: {
|
|
285
|
+
date: string;
|
|
286
|
+
phone: string | null;
|
|
287
|
+
byImputation: boolean;
|
|
288
|
+
isPayment: boolean;
|
|
289
|
+
};
|
|
290
|
+
untaxedOperation: {
|
|
291
|
+
buy: number;
|
|
292
|
+
exported: number;
|
|
293
|
+
distance?: number;
|
|
294
|
+
other: number;
|
|
295
|
+
petrol: number;
|
|
296
|
+
intracomunauty: number;
|
|
297
|
+
salesGoodsOrServices: number;
|
|
298
|
+
delivery: number;
|
|
299
|
+
};
|
|
252
300
|
vat: {
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
301
|
+
normalRate20: BaseAndTax;
|
|
302
|
+
reduceRate5Dot5: BaseAndTax;
|
|
303
|
+
reduceRate10: BaseAndTax;
|
|
304
|
+
normalRate20OnPetrol: BaseAndTax;
|
|
305
|
+
reduceRate8Dot5: BaseAndTax;
|
|
306
|
+
reduceRate2Dot1: BaseAndTax;
|
|
307
|
+
particularRate: BaseAndTax;
|
|
308
|
+
reducedRateOnPetrol: BaseAndTax;
|
|
309
|
+
oldRate: BaseAndTax;
|
|
310
|
+
energyBought: BaseAndTax;
|
|
311
|
+
prestation: BaseAndTax;
|
|
312
|
+
prestation2: BaseAndTax;
|
|
313
|
+
saleOfImmobilization: BaseAndTax;
|
|
314
|
+
ownDelivery: BaseAndTax;
|
|
315
|
+
other: BaseAndTax;
|
|
316
|
+
total: { tax: number };
|
|
259
317
|
};
|
|
260
318
|
other: {
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
319
|
+
sum: number;
|
|
320
|
+
refund: number;
|
|
321
|
+
previousDeducted: number;
|
|
322
|
+
total: number;
|
|
264
323
|
};
|
|
265
324
|
deductible: {
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
325
|
+
onInvoice: number;
|
|
326
|
+
onFlatRate: number;
|
|
327
|
+
onImmobilization: number;
|
|
328
|
+
total1: number;
|
|
329
|
+
previousCredit: number;
|
|
330
|
+
rate: number;
|
|
331
|
+
forget: number;
|
|
332
|
+
sumToImpute: number;
|
|
333
|
+
total: number;
|
|
334
|
+
vatDeductible: number;
|
|
272
335
|
};
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
336
|
+
net: {
|
|
337
|
+
due: number;
|
|
338
|
+
credit: number;
|
|
339
|
+
advance: {
|
|
340
|
+
toPay: number;
|
|
341
|
+
paid: number;
|
|
342
|
+
total: number;
|
|
343
|
+
};
|
|
344
|
+
advance1: {
|
|
345
|
+
paid: number;
|
|
346
|
+
toPay: number;
|
|
347
|
+
};
|
|
348
|
+
advance2: {
|
|
349
|
+
paid: number;
|
|
350
|
+
toPay: number;
|
|
351
|
+
};
|
|
352
|
+
balance: number;
|
|
353
|
+
surplus: number;
|
|
354
|
+
balanceSurplus: number;
|
|
278
355
|
};
|
|
279
|
-
advance1: { toPay: number };
|
|
280
|
-
advance2: { toPay: number };
|
|
281
356
|
tax: {
|
|
282
|
-
onRetransmission: number;
|
|
283
|
-
onResultFarm: number;
|
|
284
|
-
payingVideo: { reduced: number; normal: number };
|
|
285
|
-
videoOnAsk: { reduced: number; normal: number };
|
|
286
|
-
onAdsFromVideo: { reduced: number; normal: number };
|
|
287
|
-
bailiff: { count: number; tax: number };
|
|
288
357
|
contribution: number;
|
|
289
|
-
ofEmployer: number;
|
|
290
|
-
onBoardingCorse: number;
|
|
291
358
|
onBoarding: number;
|
|
359
|
+
onBoardingCorse: number;
|
|
360
|
+
onRetransmission: BaseAndTax;
|
|
361
|
+
onResultFarm: number;
|
|
362
|
+
ofEmployer: number;
|
|
363
|
+
/** Updated */
|
|
364
|
+
payingVideo: ReduceNormalBaseAndTax;
|
|
365
|
+
videoOnAsk: ReduceNormalBaseAndTax;
|
|
366
|
+
onAdsFromVideo: ReduceNormalBaseAndTax;
|
|
367
|
+
bailiff: { count: number; tax: number };
|
|
368
|
+
/***/
|
|
292
369
|
development: number;
|
|
293
370
|
publicity: number;
|
|
294
371
|
onCompanySurplus: number;
|
|
@@ -310,7 +387,6 @@ export type PayloadCerfa3517_2025 = {
|
|
|
310
387
|
normalRate: number;
|
|
311
388
|
reduceRate: number;
|
|
312
389
|
};
|
|
313
|
-
total: number;
|
|
314
390
|
onContribution: number;
|
|
315
391
|
onSaleAntiquity: number;
|
|
316
392
|
onYearly: number;
|
|
@@ -335,18 +411,51 @@ export type PayloadCerfa3517_2025 = {
|
|
|
335
411
|
nonAlcoolWithEdul: number;
|
|
336
412
|
mineralWater: number;
|
|
337
413
|
numericalService: number;
|
|
414
|
+
total: number;
|
|
338
415
|
platform: number;
|
|
339
416
|
};
|
|
417
|
+
tic: {
|
|
418
|
+
ticfe: TicType;
|
|
419
|
+
ticgn: TicType;
|
|
420
|
+
ticc: TicType;
|
|
421
|
+
total: TicType;
|
|
422
|
+
};
|
|
340
423
|
recapitulation: {
|
|
424
|
+
refund: number;
|
|
425
|
+
creditToReport: number;
|
|
341
426
|
imputedCredit: number;
|
|
427
|
+
ticRefunded: number;
|
|
428
|
+
balance: number;
|
|
429
|
+
imputeOnVat: number;
|
|
430
|
+
vatNetDue: number;
|
|
431
|
+
assimiledTax: number;
|
|
432
|
+
consumsion: number;
|
|
433
|
+
toPay: number;
|
|
342
434
|
};
|
|
435
|
+
advances: {
|
|
436
|
+
july: { year: string | null; has: boolean };
|
|
437
|
+
december: { year: string | null; has: boolean };
|
|
438
|
+
};
|
|
439
|
+
total: number;
|
|
343
440
|
refund: {
|
|
344
|
-
asked: number;
|
|
345
441
|
creditRefundable: number;
|
|
442
|
+
surplus: number;
|
|
443
|
+
maximum: number;
|
|
444
|
+
asked: number;
|
|
445
|
+
reportable: number;
|
|
446
|
+
place?: string | null;
|
|
447
|
+
date: string | null;
|
|
448
|
+
shouldCredit: boolean;
|
|
449
|
+
shouldImpute: boolean;
|
|
450
|
+
name: string | null;
|
|
346
451
|
};
|
|
347
|
-
|
|
452
|
+
bankAccount: {
|
|
453
|
+
iban: string | null;
|
|
454
|
+
bic: string | null;
|
|
455
|
+
};
|
|
456
|
+
}
|
|
348
457
|
|
|
349
|
-
export type
|
|
458
|
+
export type PayloadCerfa3517_2023 = {
|
|
350
459
|
startDate: string;
|
|
351
460
|
endDate: string;
|
|
352
461
|
society: ISociety;
|
|
@@ -390,11 +499,11 @@ export type PayloadCerfa3517_2026 = {
|
|
|
390
499
|
onRetransmission: number;
|
|
391
500
|
onResultFarm: number;
|
|
392
501
|
payingVideo: { reduced: number; normal: number };
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
bailiff: { count: number; tax: number };
|
|
502
|
+
freeVideo: { reduced: number; normal: number };
|
|
503
|
+
bailiff: number;
|
|
396
504
|
contribution: number;
|
|
397
505
|
ofEmployer: number;
|
|
506
|
+
onBoardingCorse: number;
|
|
398
507
|
onBoarding: number;
|
|
399
508
|
development: number;
|
|
400
509
|
publicity: number;
|
|
@@ -453,130 +562,57 @@ export type PayloadCerfa3517_2026 = {
|
|
|
453
562
|
};
|
|
454
563
|
};
|
|
455
564
|
|
|
456
|
-
export type
|
|
565
|
+
export type PayloadCerfa3517_2025 = {
|
|
566
|
+
startDate: string;
|
|
567
|
+
endDate: string;
|
|
568
|
+
society: ISociety;
|
|
569
|
+
setting: ISocietyGescom | null;
|
|
570
|
+
details: IVatDeclarationSocietyDetail | null;
|
|
571
|
+
owner: IUser | null;
|
|
457
572
|
isNil: boolean;
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
start: {
|
|
462
|
-
day: string;
|
|
463
|
-
month: string;
|
|
464
|
-
year: string;
|
|
465
|
-
};
|
|
466
|
-
end: {
|
|
467
|
-
day: string;
|
|
468
|
-
month: string;
|
|
469
|
-
year: string;
|
|
470
|
-
};
|
|
471
|
-
};
|
|
472
|
-
recipient: {
|
|
473
|
-
name?: string | null;
|
|
474
|
-
address: { full: string };
|
|
475
|
-
};
|
|
476
|
-
numbers: {
|
|
477
|
-
SIE: string | null;
|
|
478
|
-
folder: string | null;
|
|
479
|
-
key: string | null;
|
|
480
|
-
period: string | null;
|
|
481
|
-
CM: string | null;
|
|
482
|
-
OPT: string | null;
|
|
483
|
-
service: string | null;
|
|
484
|
-
system: string | null;
|
|
485
|
-
};
|
|
486
|
-
intracommunityVat: {
|
|
487
|
-
first: string | null;
|
|
488
|
-
second: string | null;
|
|
489
|
-
third: string | null;
|
|
490
|
-
};
|
|
491
|
-
siret: {
|
|
492
|
-
first: string | null;
|
|
493
|
-
second: string | null;
|
|
494
|
-
};
|
|
495
|
-
};
|
|
496
|
-
payment: {
|
|
497
|
-
date: string;
|
|
498
|
-
phone: string | null;
|
|
499
|
-
byImputation: boolean;
|
|
500
|
-
isPayment: boolean;
|
|
501
|
-
};
|
|
502
|
-
untaxedOperation: {
|
|
503
|
-
buy: number;
|
|
504
|
-
exported: number;
|
|
505
|
-
distance?: number;
|
|
506
|
-
other: number;
|
|
507
|
-
petrol: number;
|
|
508
|
-
intracomunauty: number;
|
|
509
|
-
salesGoodsOrServices: number;
|
|
510
|
-
delivery: number;
|
|
511
|
-
};
|
|
573
|
+
exerciceAdvanceRegistrations: IRegistration[];
|
|
574
|
+
sie: ServiceOfTax | null;
|
|
575
|
+
comment?: string;
|
|
512
576
|
vat: {
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
particularRate: BaseAndTax;
|
|
520
|
-
reducedRateOnPetrol: BaseAndTax;
|
|
521
|
-
oldRate: BaseAndTax;
|
|
522
|
-
energyBought: BaseAndTax;
|
|
523
|
-
prestation: BaseAndTax;
|
|
524
|
-
prestation2: BaseAndTax;
|
|
525
|
-
saleOfImmobilization: BaseAndTax;
|
|
526
|
-
ownDelivery: BaseAndTax;
|
|
527
|
-
other: BaseAndTax;
|
|
528
|
-
total: { tax: number };
|
|
577
|
+
normalRate20OnPetrol: number | null;
|
|
578
|
+
particularRate: { base: number | null; tax: number | null };
|
|
579
|
+
oldRate: { base: number | null; tax: number | null };
|
|
580
|
+
reducedRateOnPetrol: number | null;
|
|
581
|
+
energyBought: { base: number | null; tax: number | null };
|
|
582
|
+
prestation: { base: number | null; tax: number | null };
|
|
529
583
|
};
|
|
530
584
|
other: {
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
total: number;
|
|
585
|
+
refund: number | null;
|
|
586
|
+
previousDeducted: number | null;
|
|
587
|
+
sum: number | null;
|
|
535
588
|
};
|
|
536
589
|
deductible: {
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
forget: number;
|
|
544
|
-
sumToImpute: number;
|
|
545
|
-
total: number;
|
|
546
|
-
vatDeductible: number;
|
|
590
|
+
onFlatRate: number | null;
|
|
591
|
+
previousCredit: number | null;
|
|
592
|
+
forget: number | null;
|
|
593
|
+
rate: number | null;
|
|
594
|
+
sumToImpute: number | null;
|
|
595
|
+
vatDeductible: number | null;
|
|
547
596
|
};
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
paid: number;
|
|
554
|
-
total: number;
|
|
555
|
-
};
|
|
556
|
-
advance1: {
|
|
557
|
-
paid: number;
|
|
558
|
-
toPay: number;
|
|
559
|
-
};
|
|
560
|
-
advance2: {
|
|
561
|
-
paid: number;
|
|
562
|
-
toPay: number;
|
|
563
|
-
};
|
|
564
|
-
balance: number;
|
|
565
|
-
surplus: number;
|
|
566
|
-
balanceSurplus: number;
|
|
597
|
+
untaxedOperation?: {
|
|
598
|
+
distance?: number | null;
|
|
599
|
+
petrol?: number | null;
|
|
600
|
+
salesGoodsOrServices?: number | null;
|
|
601
|
+
delivery?: number | null;
|
|
567
602
|
};
|
|
603
|
+
advance1: { toPay: number };
|
|
604
|
+
advance2: { toPay: number };
|
|
568
605
|
tax: {
|
|
569
|
-
|
|
570
|
-
onBoarding: number;
|
|
571
|
-
onRetransmission: BaseAndTax;
|
|
606
|
+
onRetransmission: number;
|
|
572
607
|
onResultFarm: number;
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
videoOnAsk: ReduceNormalBaseAndTax;
|
|
577
|
-
onAdsFromVideo: ReduceNormalBaseAndTax;
|
|
608
|
+
payingVideo: { reduced: number; normal: number };
|
|
609
|
+
videoOnAsk: { reduced: number; normal: number };
|
|
610
|
+
onAdsFromVideo: { reduced: number; normal: number };
|
|
578
611
|
bailiff: { count: number; tax: number };
|
|
579
|
-
|
|
612
|
+
contribution: number;
|
|
613
|
+
ofEmployer: number;
|
|
614
|
+
onBoardingCorse: number;
|
|
615
|
+
onBoarding: number;
|
|
580
616
|
development: number;
|
|
581
617
|
publicity: number;
|
|
582
618
|
onCompanySurplus: number;
|
|
@@ -598,6 +634,7 @@ export type Cerfa3517_2026 = {
|
|
|
598
634
|
normalRate: number;
|
|
599
635
|
reduceRate: number;
|
|
600
636
|
};
|
|
637
|
+
total: number;
|
|
601
638
|
onContribution: number;
|
|
602
639
|
onSaleAntiquity: number;
|
|
603
640
|
onYearly: number;
|
|
@@ -622,46 +659,13 @@ export type Cerfa3517_2026 = {
|
|
|
622
659
|
nonAlcoolWithEdul: number;
|
|
623
660
|
mineralWater: number;
|
|
624
661
|
numericalService: number;
|
|
625
|
-
total: number;
|
|
626
662
|
platform: number;
|
|
627
663
|
};
|
|
628
|
-
tic: {
|
|
629
|
-
ticfe: TicType;
|
|
630
|
-
ticgn: TicType;
|
|
631
|
-
ticc: TicType;
|
|
632
|
-
total: TicType;
|
|
633
|
-
};
|
|
634
664
|
recapitulation: {
|
|
635
|
-
refund: number;
|
|
636
|
-
creditToReport: number;
|
|
637
665
|
imputedCredit: number;
|
|
638
|
-
ticRefunded: number;
|
|
639
|
-
balance: number;
|
|
640
|
-
imputeOnVat: number;
|
|
641
|
-
vatNetDue: number;
|
|
642
|
-
assimiledTax: number;
|
|
643
|
-
consumsion: number;
|
|
644
|
-
toPay: number;
|
|
645
666
|
};
|
|
646
|
-
advances: {
|
|
647
|
-
july: { year: string | null; has: boolean };
|
|
648
|
-
december: { year: string | null; has: boolean };
|
|
649
|
-
};
|
|
650
|
-
total: number;
|
|
651
667
|
refund: {
|
|
652
|
-
creditRefundable: number;
|
|
653
|
-
surplus: number;
|
|
654
|
-
maximum: number;
|
|
655
668
|
asked: number;
|
|
656
|
-
|
|
657
|
-
place?: string | null;
|
|
658
|
-
date: string | null;
|
|
659
|
-
shouldCredit: boolean;
|
|
660
|
-
shouldImpute: boolean;
|
|
661
|
-
name: string | null;
|
|
662
|
-
};
|
|
663
|
-
bankAccount: {
|
|
664
|
-
iban: string | null;
|
|
665
|
-
bic: string | null;
|
|
669
|
+
creditRefundable: number;
|
|
666
670
|
};
|
|
667
671
|
};
|
|
@@ -56,7 +56,7 @@ export type VatDocument = {
|
|
|
56
56
|
payload: (...args: any[]) => any;
|
|
57
57
|
asponePayload: (...args: any[]) => any;
|
|
58
58
|
fields: Array<CerfaPayloadForm>;
|
|
59
|
-
fileName: '3310-2023' | '3514-2022' | '
|
|
59
|
+
fileName: '3310-2023' | '3514-2022' | '3517-2023' | '3310-2024' | '3517-2025' | '3310-2025';
|
|
60
60
|
annex?: AnnexVatDocument;
|
|
61
61
|
annexFields?: (data: any) => AsponeFormFields;
|
|
62
62
|
};
|