@silexpert/core 1.3.201 → 1.3.202
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/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 +235 -240
- 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/types/Interface/api/customerActivity/Query.d.ts +5 -0
- package/dist/cjs/types/Interface/api/customerActivity/Query.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/customerActivity/Query.js +24 -1
- package/dist/cjs/types/Interface/api/customerActivity/Query.js.map +1 -1
- package/dist/cjs/utils/vat/3517/century26.d.ts +8 -0
- package/dist/cjs/utils/vat/3517/century26.d.ts.map +1 -0
- package/dist/cjs/utils/vat/3517/{century23.js → century26.js} +150 -196
- package/dist/cjs/utils/vat/3517/century26.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/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 +235 -240
- 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/types/Interface/api/customerActivity/Query.d.ts +5 -0
- package/dist/mjs/types/Interface/api/customerActivity/Query.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/customerActivity/Query.js +26 -1
- package/dist/mjs/types/Interface/api/customerActivity/Query.js.map +1 -1
- package/dist/mjs/utils/vat/3517/century26.d.ts +8 -0
- package/dist/mjs/utils/vat/3517/century26.d.ts.map +1 -0
- package/dist/mjs/utils/vat/3517/{century23.js → century26.js} +92 -138
- package/dist/mjs/utils/vat/3517/century26.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/Interface/api/cerfa/3514.ts +2 -2
- package/ts/types/Interface/api/cerfa/3517.ts +203 -211
- package/ts/types/Interface/api/cerfa/ReadCerfa.ts +1 -1
- package/ts/types/Interface/api/customerActivity/Query.ts +20 -1
- package/ts/utils/vat/3517/{century23.ts → century26.ts} +98 -152
- package/ts/utils/vat/centuries.ts +21 -21
- package/dist/cjs/utils/vat/3517/century23.d.ts +0 -8
- package/dist/cjs/utils/vat/3517/century23.d.ts.map +0 -1
- package/dist/cjs/utils/vat/3517/century23.js.map +0 -1
- package/dist/mjs/utils/vat/3517/century23.d.ts +0 -8
- package/dist/mjs/utils/vat/3517/century23.d.ts.map +0 -1
- package/dist/mjs/utils/vat/3517/century23.js.map +0 -1
|
@@ -3,7 +3,7 @@ import { isDefined } from 'class-validator';
|
|
|
3
3
|
import { round as _round, uniqBy } from 'lodash';
|
|
4
4
|
import { Vat } from '../../../types/Enum/Vat';
|
|
5
5
|
import { getAmountByAccountNumber, getTaxAmountByAccountNumber, setZeroIfIsNegative, textFormatting } from '../utils';
|
|
6
|
-
export function
|
|
6
|
+
export function getCerfa3517Century26Payload(accountingEntries, payload) {
|
|
7
7
|
const shouldHaveVatCode = isDefined(payload.setting?.tvaCode) && isDefined(payload.society.siret);
|
|
8
8
|
const shouldFillRefund = _round(payload.refund?.asked ?? 0) > 0;
|
|
9
9
|
const isNil = payload.isNil === true;
|
|
@@ -192,21 +192,28 @@ export function getCerfa3517Century23Payload(accountingEntries, payload) {
|
|
|
192
192
|
balanceSurplus: 0, // Calculé plus bas
|
|
193
193
|
},
|
|
194
194
|
tax: {
|
|
195
|
-
|
|
195
|
+
onBoarding: isNil ? 0 : _round(payload.tax?.onBoarding ?? 0),
|
|
196
|
+
ofEmployer: isNil ? 0 : _round(payload.tax?.ofEmployer ?? 0),
|
|
197
|
+
contribution: isNil ? 0 : _round(payload.tax?.contribution ?? 0),
|
|
198
|
+
onRetransmission: {
|
|
199
|
+
base: isNil ? 0 : _round(payload.tax?.onRetransmission ?? 0),
|
|
200
|
+
tax: isNil ? 0 : _round((payload.tax?.onRetransmission ?? 0) * 0.05),
|
|
201
|
+
},
|
|
196
202
|
onResultFarm: isNil ? 0 : _round(payload.tax?.onResultFarm ?? 0),
|
|
197
203
|
payingVideo: {
|
|
198
|
-
reduced:
|
|
199
|
-
|
|
204
|
+
reduced: {
|
|
205
|
+
base: isNil ? 0 : _round(payload.tax?.payingVideo?.reduced ?? 0),
|
|
206
|
+
tax: isNil ? 0 : _round((payload.tax?.payingVideo?.reduced ?? 0) * 0.018025),
|
|
207
|
+
},
|
|
208
|
+
normal: {
|
|
209
|
+
base: isNil ? 0 : _round(payload.tax?.payingVideo?.normal ?? 0),
|
|
210
|
+
tax: isNil ? 0 : _round((payload.tax?.payingVideo?.normal ?? 0) * 0.15),
|
|
211
|
+
},
|
|
200
212
|
},
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
213
|
+
bailiff: {
|
|
214
|
+
tax: isNil ? 0 : _round(payload.tax?.bailiff?.tax ?? 0),
|
|
215
|
+
count: isNil ? 0 : _round(payload.tax?.bailiff?.count ?? 0),
|
|
204
216
|
},
|
|
205
|
-
bailiff: isNil ? 0 : _round(payload.tax?.bailiff ?? 0),
|
|
206
|
-
contribution: isNil ? 0 : _round(payload.tax?.contribution ?? 0),
|
|
207
|
-
ofEmployer: isNil ? 0 : _round(payload.tax?.ofEmployer ?? 0),
|
|
208
|
-
onBoardingCorse: isNil ? 0 : _round(payload.tax?.onBoardingCorse ?? 0),
|
|
209
|
-
onBoarding: isNil ? 0 : _round(payload.tax?.onBoarding ?? 0),
|
|
210
217
|
development: isNil ? 0 : _round(payload.tax?.development ?? 0),
|
|
211
218
|
publicity: isNil ? 0 : _round(payload.tax?.publicity ?? 0),
|
|
212
219
|
onCompanySurplus: isNil ? 0 : _round(payload.tax?.onCompanySurplus ?? 0),
|
|
@@ -302,7 +309,7 @@ export function getCerfa3517Century23Payload(accountingEntries, payload) {
|
|
|
302
309
|
},
|
|
303
310
|
total: 0, // Calculé plus bas
|
|
304
311
|
refund: {
|
|
305
|
-
creditRefundable:
|
|
312
|
+
creditRefundable: 0, // Calculé plus bas
|
|
306
313
|
surplus: 0, // Calculé plus bas
|
|
307
314
|
maximum: 0, // Calculé plus bas
|
|
308
315
|
asked: isNil ? 0 : _round(payload.refund?.asked ?? 0),
|
|
@@ -354,16 +361,12 @@ export function getCerfa3517Century23Payload(accountingEntries, payload) {
|
|
|
354
361
|
data.net.surplus = data.net.advance.total - data.net.due > 0 ? data.net.advance.total - data.net.due : 0;
|
|
355
362
|
data.net.balanceSurplus = data.net.credit + data.net.surplus;
|
|
356
363
|
data.tax.total =
|
|
357
|
-
data.tax.onRetransmission +
|
|
364
|
+
data.tax.onRetransmission.tax +
|
|
358
365
|
data.tax.onResultFarm +
|
|
359
|
-
data.tax.payingVideo.reduced +
|
|
360
|
-
data.tax.payingVideo.normal +
|
|
361
|
-
data.tax.
|
|
362
|
-
data.tax.freeVideo.normal +
|
|
363
|
-
data.tax.bailiff +
|
|
366
|
+
data.tax.payingVideo.reduced.tax +
|
|
367
|
+
data.tax.payingVideo.normal.tax +
|
|
368
|
+
data.tax.bailiff.tax +
|
|
364
369
|
data.tax.contribution +
|
|
365
|
-
data.tax.ofEmployer +
|
|
366
|
-
data.tax.onBoardingCorse +
|
|
367
370
|
data.tax.onBoarding +
|
|
368
371
|
data.tax.development +
|
|
369
372
|
data.tax.publicity +
|
|
@@ -416,6 +419,7 @@ export function getCerfa3517Century23Payload(accountingEntries, payload) {
|
|
|
416
419
|
data.recapitulation.assimiledTax = data.tax.total;
|
|
417
420
|
data.recapitulation.toPay =
|
|
418
421
|
data.recapitulation.vatNetDue + data.recapitulation.assimiledTax + data.recapitulation.consumsion;
|
|
422
|
+
data.refund.creditRefundable = shouldFillRefund ? data.net.credit : 0;
|
|
419
423
|
data.refund.surplus = shouldFillRefund ? data.net.surplus : 0;
|
|
420
424
|
data.refund.maximum = shouldFillRefund ? data.refund.creditRefundable + data.refund.surplus : 0;
|
|
421
425
|
data.refund.reportable =
|
|
@@ -423,7 +427,7 @@ export function getCerfa3517Century23Payload(accountingEntries, payload) {
|
|
|
423
427
|
data.total = setZeroIfIsNegative(data.vat.total.tax - (data.vat.saleOfImmobilization.tax + data.vat.ownDelivery.tax + data.deductible.total1));
|
|
424
428
|
return data;
|
|
425
429
|
}
|
|
426
|
-
export function
|
|
430
|
+
export function getCerfa3517Century26RegistrationField(data) {
|
|
427
431
|
const comment = textFormatting(data.declaration.comment);
|
|
428
432
|
return [
|
|
429
433
|
{
|
|
@@ -510,7 +514,7 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
510
514
|
key: 'BD',
|
|
511
515
|
isMultiple: false,
|
|
512
516
|
tag: 'Valeur',
|
|
513
|
-
description: 'Taxe sur les émissions de polluants atmosphériques
|
|
517
|
+
description: 'Taxe annuelle sur les émissions de polluants atmosphériques des véhicules de tourisme',
|
|
514
518
|
value: data.tax.oldVehicle,
|
|
515
519
|
},
|
|
516
520
|
{
|
|
@@ -573,13 +577,6 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
573
577
|
description: "Taxe spéciale due en cas de non-respect de l'engagement de conserver pendant 5 ans les parts de fonds commun de placement à risques ou de fonds professionnels de capital investissement (art. 209-0-A du CGI) 912234 4M",
|
|
574
578
|
value: data.tax.specialDue,
|
|
575
579
|
},
|
|
576
|
-
{
|
|
577
|
-
key: 'CH',
|
|
578
|
-
isMultiple: false,
|
|
579
|
-
tag: 'Valeur',
|
|
580
|
-
description: 'TICFE - Taxe due 912244 ',
|
|
581
|
-
value: data.tic.ticfe.tax && data.tic.ticfe.tax > 0 ? data.tic.ticfe.tax : null,
|
|
582
|
-
},
|
|
583
580
|
{
|
|
584
581
|
key: 'CJ',
|
|
585
582
|
isMultiple: false,
|
|
@@ -902,13 +899,6 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
902
899
|
description: 'TICCE - crédit imputé sur la TVA 912237 ',
|
|
903
900
|
value: data.tic.ticc.imputed && data.tic.ticc.imputed > 0 ? data.tic.ticc.imputed : null,
|
|
904
901
|
},
|
|
905
|
-
{
|
|
906
|
-
key: 'HH',
|
|
907
|
-
isMultiple: false,
|
|
908
|
-
tag: 'Valeur',
|
|
909
|
-
description: 'TICGN - Taxe due 912245 ',
|
|
910
|
-
value: data.tic.ticgn.tax && data.tic.ticgn.tax > 0 ? data.tic.ticgn.tax : null,
|
|
911
|
-
},
|
|
912
902
|
{
|
|
913
903
|
key: 'JA',
|
|
914
904
|
isMultiple: false,
|
|
@@ -921,7 +911,7 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
921
911
|
isMultiple: false,
|
|
922
912
|
tag: 'Valeur',
|
|
923
913
|
description: "Pourcentage de déduction applicable pour la période s'il est différent de 100% Valeur entière et au plus 2 décimales 100094 25A",
|
|
924
|
-
value: data.deductible.rate !== 100 ? data.deductible.rate : null,
|
|
914
|
+
value: data.deductible.rate !== 100 ? data.deductible.rate : data.isNil ? 100 : null,
|
|
925
915
|
},
|
|
926
916
|
{
|
|
927
917
|
key: 'JE',
|
|
@@ -937,13 +927,6 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
937
927
|
description: 'TOTAL - crédit imputé sur la TVA 912252 ',
|
|
938
928
|
value: data.tic.total.imputed && data.tic.total.imputed > 0 ? data.tic.total.imputed : null,
|
|
939
929
|
},
|
|
940
|
-
{
|
|
941
|
-
key: 'JH',
|
|
942
|
-
isMultiple: false,
|
|
943
|
-
tag: 'Valeur',
|
|
944
|
-
description: 'TICCE - Taxe due 912246 ',
|
|
945
|
-
value: data.tic.ticc.tax && data.tic.ticc.tax > 0 ? data.tic.ticc.tax : null,
|
|
946
|
-
},
|
|
947
930
|
{
|
|
948
931
|
key: 'KA',
|
|
949
932
|
isMultiple: false,
|
|
@@ -1094,25 +1077,25 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
1094
1077
|
value: data.tic.ticfe.refund && data.tic.ticfe.refund > 0 ? data.tic.ticfe.refund : null,
|
|
1095
1078
|
},
|
|
1096
1079
|
{
|
|
1097
|
-
key: '
|
|
1080
|
+
key: 'QA',
|
|
1098
1081
|
isMultiple: false,
|
|
1099
1082
|
tag: 'Valeur',
|
|
1100
|
-
description: '
|
|
1101
|
-
value: data.
|
|
1083
|
+
description: "Taxe sur la cession de droits d'exploitation audiovisuels des manifestations sportives au taux de 5 % (CIBS, art. L455-28)",
|
|
1084
|
+
value: data.tax.onRetransmission.tax,
|
|
1102
1085
|
},
|
|
1103
1086
|
{
|
|
1104
|
-
key: '
|
|
1087
|
+
key: 'ZR',
|
|
1105
1088
|
isMultiple: false,
|
|
1106
1089
|
tag: 'Valeur',
|
|
1107
|
-
description:
|
|
1108
|
-
value: data.tax.onRetransmission,
|
|
1090
|
+
description: "Base imposable sur la taxe sur la cession de droits d'exploitation audiovisuels des manifestations sportives au taux de 5 % (CIBS, art. L455-28)",
|
|
1091
|
+
value: data.tax.onRetransmission.base,
|
|
1109
1092
|
},
|
|
1110
1093
|
{
|
|
1111
1094
|
key: 'QH',
|
|
1112
1095
|
isMultiple: false,
|
|
1113
1096
|
tag: 'Valeur',
|
|
1114
1097
|
description: 'Taxe sur les actes des huissiers de justice 100036 44',
|
|
1115
|
-
value: data.tax.bailiff,
|
|
1098
|
+
value: data.tax.bailiff.tax,
|
|
1116
1099
|
},
|
|
1117
1100
|
{
|
|
1118
1101
|
key: 'QS',
|
|
@@ -1156,20 +1139,6 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
1156
1139
|
description: 'Crédit imputé sur le ou les prochains acomptes 100224 52',
|
|
1157
1140
|
value: data.recapitulation.ticRefunded,
|
|
1158
1141
|
},
|
|
1159
|
-
{
|
|
1160
|
-
key: 'RF',
|
|
1161
|
-
isMultiple: false,
|
|
1162
|
-
tag: 'Valeur',
|
|
1163
|
-
description: 'Taxe sur la diffusion en vidéo physique et en ligne de contenus audiovisuels à titre onéreux au taux de 5,15 % 902441 42',
|
|
1164
|
-
value: data.tax.payingVideo?.reduced,
|
|
1165
|
-
},
|
|
1166
|
-
{
|
|
1167
|
-
key: 'RG',
|
|
1168
|
-
isMultiple: false,
|
|
1169
|
-
tag: 'Valeur',
|
|
1170
|
-
description: 'Taxe sur la diffusion en vidéo physique et en ligne de contenus audiovisuels à titre onéreux au taux de 15 % 902437 43',
|
|
1171
|
-
value: data.tax.payingVideo?.normal,
|
|
1172
|
-
},
|
|
1173
1142
|
{
|
|
1174
1143
|
key: 'RN',
|
|
1175
1144
|
isMultiple: false,
|
|
@@ -1206,25 +1175,18 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
1206
1175
|
value: data.isNil ? 'X' : null,
|
|
1207
1176
|
},
|
|
1208
1177
|
{
|
|
1209
|
-
key: '
|
|
1210
|
-
isMultiple: false,
|
|
1178
|
+
key: 'BK',
|
|
1211
1179
|
tag: 'Valeur',
|
|
1212
|
-
description: "Total des droits de la taxe sur l'exploration d'hydrocarbures (CGI, art 1590) 909352 85",
|
|
1213
|
-
value: data.tax.fuelExploration,
|
|
1214
|
-
},
|
|
1215
|
-
{
|
|
1216
|
-
key: 'SQ',
|
|
1217
1180
|
isMultiple: false,
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
value: data.tax.freeVideo?.reduce ?? 0,
|
|
1181
|
+
description: 'Autres',
|
|
1182
|
+
value: comment && comment.length > 0 ? 'X' : null,
|
|
1221
1183
|
},
|
|
1222
1184
|
{
|
|
1223
|
-
key: '
|
|
1185
|
+
key: 'SH',
|
|
1224
1186
|
isMultiple: false,
|
|
1225
1187
|
tag: 'Valeur',
|
|
1226
|
-
description:
|
|
1227
|
-
value: data.tax.
|
|
1188
|
+
description: "Total des droits de la taxe sur l'exploration d'hydrocarbures (CGI, art 1590) 909352 85",
|
|
1189
|
+
value: data.tax.fuelExploration,
|
|
1228
1190
|
},
|
|
1229
1191
|
{
|
|
1230
1192
|
key: 'SV',
|
|
@@ -1275,13 +1237,6 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
1275
1237
|
description: 'TICGN - Reliquat de crédit à rembourser 912240 ',
|
|
1276
1238
|
value: data.tic.ticgn.refund && data.tic.ticgn.refund > 0 ? data.tic.ticgn.refund : null,
|
|
1277
1239
|
},
|
|
1278
|
-
{
|
|
1279
|
-
key: 'TH',
|
|
1280
|
-
isMultiple: false,
|
|
1281
|
-
tag: 'Valeur',
|
|
1282
|
-
description: 'TICGN - crédit constaté 912249 ',
|
|
1283
|
-
value: data.tic.ticgn.credit && data.tic.ticgn.credit > 0 ? data.tic.ticgn.credit : null,
|
|
1284
|
-
},
|
|
1285
1240
|
{
|
|
1286
1241
|
key: 'UB',
|
|
1287
1242
|
isMultiple: false,
|
|
@@ -1310,13 +1265,6 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
1310
1265
|
description: 'TICCE - Reliquat de crédit à rembourser 912241 ',
|
|
1311
1266
|
value: data.tic.ticc.refund && data.tic.ticc.refund > 0 ? data.tic.ticc.refund : null,
|
|
1312
1267
|
},
|
|
1313
|
-
{
|
|
1314
|
-
key: 'UH',
|
|
1315
|
-
isMultiple: false,
|
|
1316
|
-
tag: 'Valeur',
|
|
1317
|
-
description: 'TICCE - crédit constaté 912250 ',
|
|
1318
|
-
value: data.tic.ticc.credit && data.tic.ticc.credit > 0 ? data.tic.ticc.credit : null,
|
|
1319
|
-
},
|
|
1320
1268
|
{
|
|
1321
1269
|
key: 'VA',
|
|
1322
1270
|
isMultiple: false,
|
|
@@ -1527,13 +1475,6 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
1527
1475
|
description: 'Taxe sur les exploitants de plateformes de mise en relation par voie électronique en vue de fournir certaines prestations de transport (CGI, article 300 bis) - Taxe due 911708 94',
|
|
1528
1476
|
value: data.tax.platform,
|
|
1529
1477
|
},
|
|
1530
|
-
{
|
|
1531
|
-
key: 'XF',
|
|
1532
|
-
isMultiple: false,
|
|
1533
|
-
tag: 'Valeur',
|
|
1534
|
-
description: 'Taxe sur le transport aérien de passagers - Majoration en Corse (CIBS, art. L422-13 et L422-29) - Taxe 912231 45A',
|
|
1535
|
-
value: data.tax.onBoardingCorse,
|
|
1536
|
-
},
|
|
1537
1478
|
{
|
|
1538
1479
|
key: 'XG',
|
|
1539
1480
|
isMultiple: false,
|
|
@@ -1555,11 +1496,46 @@ export function getCerfa3517CenturyRegistrationField(data) {
|
|
|
1555
1496
|
description: 'Taxe sur certaines dépenses de publicité (CGI, art. 302 bis MA) 907826 47',
|
|
1556
1497
|
value: data.tax.publicity,
|
|
1557
1498
|
},
|
|
1499
|
+
{
|
|
1500
|
+
key: 'TL',
|
|
1501
|
+
isMultiple: false,
|
|
1502
|
+
tag: 'Valeur',
|
|
1503
|
+
description: 'Taxe sur les vidéogrammes (CIBS, art. L452-28) au taux de 1,8025 % - Base imposable',
|
|
1504
|
+
value: data.tax.payingVideo?.reduced.base,
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
key: 'NX',
|
|
1508
|
+
isMultiple: false,
|
|
1509
|
+
tag: 'Valeur',
|
|
1510
|
+
description: 'Taxe sur les vidéogrammes (CIBS, art. L452-28) au taux de 1,8025 % - Taxe due',
|
|
1511
|
+
value: data.tax.payingVideo?.reduced.tax,
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
key: 'UL',
|
|
1515
|
+
isMultiple: false,
|
|
1516
|
+
tag: 'Valeur',
|
|
1517
|
+
description: 'Taxe sur les vidéogrammes (CIBS, art. L452-28) au taux de 15 % - Base imposable',
|
|
1518
|
+
value: data.tax.payingVideo?.normal.base,
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
key: 'LL',
|
|
1522
|
+
isMultiple: false,
|
|
1523
|
+
tag: 'Valeur',
|
|
1524
|
+
description: 'Taxe sur les vidéogrammes (CIBS, art. L452-28) au taux de 15 % - Taxe due',
|
|
1525
|
+
value: data.tax.payingVideo?.normal.tax,
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
key: 'ZJ',
|
|
1529
|
+
isMultiple: false,
|
|
1530
|
+
tag: 'Valeur',
|
|
1531
|
+
value: data.tax.bailiff.count,
|
|
1532
|
+
description: 'Base imposable sur la taxe sur les actes des huissiers de justice (CGI, art 302 bis Y)',
|
|
1533
|
+
},
|
|
1558
1534
|
],
|
|
1559
1535
|
},
|
|
1560
1536
|
];
|
|
1561
1537
|
}
|
|
1562
|
-
export function
|
|
1538
|
+
export function getCerfa3517DDRCentury26RegistrationField(data) {
|
|
1563
1539
|
if (data.refund.asked > 0) {
|
|
1564
1540
|
return [
|
|
1565
1541
|
{
|
|
@@ -1610,11 +1586,6 @@ export function getCerfa3517DDRCentury23egistrationField(data) {
|
|
|
1610
1586
|
description: 'NAD Nom et prénom du demandeur 100178 ',
|
|
1611
1587
|
value: textFormatting(data.refund.name, 35),
|
|
1612
1588
|
},
|
|
1613
|
-
// {
|
|
1614
|
-
// tag: 'DesignationSuite1',
|
|
1615
|
-
// description: 'NAD Qualité du demandeur 100179 ',
|
|
1616
|
-
// value: null,
|
|
1617
|
-
// },
|
|
1618
1589
|
{
|
|
1619
1590
|
tag: 'AdresseVille',
|
|
1620
1591
|
description: 'NAD Lieu de dépôt de la demande 100184 ',
|
|
@@ -1717,7 +1688,7 @@ export function getCerfa3517DDRCentury23egistrationField(data) {
|
|
|
1717
1688
|
}
|
|
1718
1689
|
return [];
|
|
1719
1690
|
}
|
|
1720
|
-
export const
|
|
1691
|
+
export const cerfa3517Century26Fields = [
|
|
1721
1692
|
{
|
|
1722
1693
|
sectionName: 'Général',
|
|
1723
1694
|
childrens: [
|
|
@@ -1825,8 +1796,8 @@ export const cerfa3517Century23Fields = [
|
|
|
1825
1796
|
sectionName: 'Décompte des taxes assimilées',
|
|
1826
1797
|
childrens: [
|
|
1827
1798
|
{
|
|
1828
|
-
label: '36 - Taxe sur
|
|
1829
|
-
key: 'tax.onRetransmission',
|
|
1799
|
+
label: '36 - Taxe sur la cession de droits d’exploitation audiovisuelle des manifestations sportives au taux de 5 % (CIBS, art. L455-28) (Base Hors-Taxe)',
|
|
1800
|
+
key: 'tax.onRetransmission.base',
|
|
1830
1801
|
type: 'number',
|
|
1831
1802
|
},
|
|
1832
1803
|
{
|
|
@@ -1835,28 +1806,23 @@ export const cerfa3517Century23Fields = [
|
|
|
1835
1806
|
type: 'number',
|
|
1836
1807
|
},
|
|
1837
1808
|
{
|
|
1838
|
-
label: '
|
|
1839
|
-
key: 'tax.payingVideo.reduced',
|
|
1809
|
+
label: '38A - Taxe sur les vidéogrammes (CIBS, art. L452-28) au taux de 1,8025 % (Base Hors-Taxe)',
|
|
1810
|
+
key: 'tax.payingVideo.reduced.base',
|
|
1840
1811
|
type: 'number',
|
|
1841
1812
|
},
|
|
1842
1813
|
{
|
|
1843
|
-
label: '
|
|
1844
|
-
key: 'tax.payingVideo.normal',
|
|
1814
|
+
label: '38B - Taxe sur les vidéogrammes (CIBS, art. L452-28) au taux de 15 % (Base Hors-Taxe)',
|
|
1815
|
+
key: 'tax.payingVideo.normal.base',
|
|
1845
1816
|
type: 'number',
|
|
1846
1817
|
},
|
|
1847
1818
|
{
|
|
1848
|
-
label:
|
|
1849
|
-
key: 'tax.
|
|
1850
|
-
type: 'number',
|
|
1851
|
-
},
|
|
1852
|
-
{
|
|
1853
|
-
label: '43B - Taxe sur la diffusion en vidéo physique et en ligne de contenus audiovisuels à titre gratuit (CGI, art. 1609 sexdecies B) au taux de 15%',
|
|
1854
|
-
key: 'tax.freeVideo.normal',
|
|
1819
|
+
label: "44 - Taxe sur les actes des huissiers de justice (CGI, art. 302 bis Y) - Nombre d'actes",
|
|
1820
|
+
key: 'tax.bailiff.count',
|
|
1855
1821
|
type: 'number',
|
|
1856
1822
|
},
|
|
1857
1823
|
{
|
|
1858
1824
|
label: '44 - Taxe sur les actes des huissiers de justice (CGI, art. 302 bis Y)',
|
|
1859
|
-
key: 'tax.bailiff',
|
|
1825
|
+
key: 'tax.bailiff.tax',
|
|
1860
1826
|
type: 'number',
|
|
1861
1827
|
},
|
|
1862
1828
|
{
|
|
@@ -1869,11 +1835,6 @@ export const cerfa3517Century23Fields = [
|
|
|
1869
1835
|
key: 'tax.ofEmployer',
|
|
1870
1836
|
type: 'number',
|
|
1871
1837
|
},
|
|
1872
|
-
{
|
|
1873
|
-
label: '45A - Taxe sur le transport aérien de passagers – Majoration en Corse (CIBS, art. L422-13 et L422-29)',
|
|
1874
|
-
key: 'tax.onBoardingCorse',
|
|
1875
|
-
type: 'number',
|
|
1876
|
-
},
|
|
1877
1838
|
{
|
|
1878
1839
|
label: '45B - Taxe sur le transport maritime de passagers dans certains territoires côtiers –Embarquement ou débarquement en Corse (CIBS, art. L423-57 et suivants)',
|
|
1879
1840
|
key: 'tax.onBoarding',
|
|
@@ -1885,7 +1846,7 @@ export const cerfa3517Century23Fields = [
|
|
|
1885
1846
|
type: 'number',
|
|
1886
1847
|
},
|
|
1887
1848
|
{
|
|
1888
|
-
label: '47 - Taxe sur
|
|
1849
|
+
label: '47 - Taxe sur la publicité diffusée au moyen de documents imprimés (CIBS, art. L454-29)',
|
|
1889
1850
|
key: 'tax.publicity',
|
|
1890
1851
|
type: 'number',
|
|
1891
1852
|
},
|
|
@@ -1981,7 +1942,7 @@ export const cerfa3517Century23Fields = [
|
|
|
1981
1942
|
type: 'number',
|
|
1982
1943
|
},
|
|
1983
1944
|
{
|
|
1984
|
-
label: '70C - Taxe annuelle sur
|
|
1945
|
+
label: '70C - Taxe annuelle sur les émissions de polluants atmosphériques des véhicules de tourisme',
|
|
1985
1946
|
key: 'tax.oldVehicle',
|
|
1986
1947
|
type: 'number',
|
|
1987
1948
|
},
|
|
@@ -2081,7 +2042,7 @@ export const cerfa3517Century23Fields = [
|
|
|
2081
2042
|
type: 'number',
|
|
2082
2043
|
},
|
|
2083
2044
|
{
|
|
2084
|
-
label: '94 - Taxe sur
|
|
2045
|
+
label: '94 - Taxe sur la mise en relation par voie électronique en vue de fournir certaines prestations de transport (CIBS, art. L454-35) – Taxe due',
|
|
2085
2046
|
key: 'tax.platform',
|
|
2086
2047
|
type: 'number',
|
|
2087
2048
|
},
|
|
@@ -2095,14 +2056,7 @@ export const cerfa3517Century23Fields = [
|
|
|
2095
2056
|
},
|
|
2096
2057
|
{
|
|
2097
2058
|
sectionName: 'Demande de remboursement',
|
|
2098
|
-
childrens: [
|
|
2099
|
-
{ label: 'Remboursement demandé', key: 'refund.asked', type: 'number' },
|
|
2100
|
-
{
|
|
2101
|
-
label: 'Crédit remboursable dégagé à la clôture de l’année ou de l’exercice',
|
|
2102
|
-
key: 'refund.creditRefundable',
|
|
2103
|
-
type: 'number',
|
|
2104
|
-
},
|
|
2105
|
-
],
|
|
2059
|
+
childrens: [{ label: 'Remboursement demandé', key: 'refund.asked', type: 'number' }],
|
|
2106
2060
|
},
|
|
2107
2061
|
];
|
|
2108
|
-
//# sourceMappingURL=
|
|
2062
|
+
//# sourceMappingURL=century26.js.map
|