@silexpert/core 1.1.43 → 1.1.47
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/Vat.d.ts +2 -2
- package/es/api/resources/Vat.d.ts.map +1 -1
- package/es/api/resources/Vat.js +2 -2
- package/es/api/resources/Vat.js.map +1 -1
- package/es/types/Interface/api/aspone/ReadInterchange.d.ts +1 -1
- package/es/types/Interface/api/aspone/ReadInterchange.d.ts.map +1 -1
- package/es/types/Interface/api/aspone/ReadInterchange.js.map +1 -1
- package/es/types/Interface/api/cerfa/ReadCerfa.d.ts +4 -0
- package/es/types/Interface/api/cerfa/ReadCerfa.d.ts.map +1 -1
- package/es/types/Interface/api/cerfa/ReadCerfa.js.map +1 -1
- package/es/utils/vat/3310/century23.d.ts.map +1 -1
- package/es/utils/vat/3310/century23.js +2 -1
- package/es/utils/vat/3310/century23.js.map +1 -1
- package/es/utils/vat/3517/century23.d.ts +2 -35
- package/es/utils/vat/3517/century23.d.ts.map +1 -1
- package/es/utils/vat/3517/century23.js +167 -165
- package/es/utils/vat/3517/century23.js.map +1 -1
- package/js/api/resources/Vat.js +2 -2
- package/js/api/resources/Vat.js.map +1 -1
- package/js/types/Interface/api/aspone/ReadInterchange.js.map +1 -1
- package/js/types/Interface/api/cerfa/ReadCerfa.js.map +1 -1
- package/js/utils/vat/3310/century23.js +2 -1
- package/js/utils/vat/3310/century23.js.map +1 -1
- package/js/utils/vat/3517/century23.js +144 -140
- package/js/utils/vat/3517/century23.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Vat.ts +3 -3
- package/ts/types/Interface/api/aspone/ReadInterchange.ts +1 -1
- package/ts/types/Interface/api/cerfa/ReadCerfa.ts +2 -1
- package/ts/utils/vat/3310/century23.ts +4 -1
- package/ts/utils/vat/3517/century23.ts +170 -162
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@silexpert/core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.47",
|
|
4
4
|
"description": "Silex Core perform HTTP Request and object binding. Silex core helps developers to retrieve and return formatted object",
|
|
5
5
|
"homepage": "https://gitlab.compta-clementine.fr/dev/silex-api",
|
|
6
6
|
"main": "js/index.js",
|
package/ts/api/resources/Vat.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
-
BasePaginate, CreateRegistrationDetail, IAccountingTransaction, ICustomerVat, QueryCerfa, QueryPaginatedRegistration, QueryPreviousVatDeclaration, QueryVatEntry, QueryVatMigrationEntry, ReadFormattedAccountingTransaction, ReadRegistration, ReadVatDeclarationUpdatedEntry, ReadVatEntry, ReadVatVariousOperations, UpdateOrCreateVatAdvance, UpdateOrCreateVatRegistration, UpdateRegistration,
|
|
2
|
+
BasePaginate, CreateRegistrationDetail, DeclareVatRegistration, IAccountingTransaction, ICustomerVat, QueryCerfa, QueryPaginatedRegistration, QueryPreviousVatDeclaration, QueryVatEntry, QueryVatMigrationEntry, ReadFormattedAccountingTransaction, ReadRegistration, ReadVatDeclarationUpdatedEntry, ReadVatEntry, ReadVatVariousOperations, UpdateOrCreateVatAdvance, UpdateOrCreateVatRegistration, UpdateRegistration,
|
|
3
3
|
} from '../..';
|
|
4
4
|
import { Resource } from '../Resource';
|
|
5
5
|
|
|
@@ -53,8 +53,8 @@ export class Vat extends Resource {
|
|
|
53
53
|
return this.axios.$delete(`/societies/${idSociety}/vat/${idRegistration}`);
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
declare(idSociety: number, idRegistration: number): Promise<ReadRegistration> {
|
|
57
|
-
return this.axios.$post(`/societies/${idSociety}/vat/${idRegistration}/declare
|
|
56
|
+
declare(idSociety: number, idRegistration: number, payload: DeclareVatRegistration): Promise<ReadRegistration> {
|
|
57
|
+
return this.axios.$post(`/societies/${idSociety}/vat/${idRegistration}/declare`, payload);
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
getAllEntries(idSociety: number, query: QueryVatEntry): Promise<ReadVatEntry[]> {
|
|
@@ -58,7 +58,7 @@ export class Redactor {
|
|
|
58
58
|
referenceDossier: string;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
type Tag = 'Valeur' | 'AdresseVille' | 'AdresseVoie' | 'AdresseCodePays' | 'AdresseComplement' | 'AdresseCodePostal' | 'AdresseHameau' | 'Telephone' | 'Designation' | 'DesignationSuite1' | 'DesignationSuite2' | 'Identifiant' | 'TexteLibre1' | 'TexteLibre2' | 'TexteLibre3' | 'TexteLibre4' | 'TexteLibre5' | 'DesignationSuite3' | 'AdresseNumero' | 'Iban' | 'Bic' | 'TitulaireDesignation';
|
|
61
|
+
type Tag = 'Valeur' | 'AdresseVille' | 'AdresseVoie' | 'AdresseCodePays' | 'AdresseComplement' | 'AdresseCodePostal' | 'AdresseHameau' | 'Telephone' | 'Designation' | 'DesignationSuite1' | 'DesignationSuite2' | 'Identifiant' | 'TexteLibre1' | 'TexteLibre2' | 'TexteLibre3' | 'TexteLibre4' | 'TexteLibre5' | 'DesignationSuite3' | 'AdresseNumero' | 'Iban' | 'Bic' | 'TitulaireDesignation' | 'TitulaireDesignationSuite';
|
|
62
62
|
type Tags = Array<{ description: string; tag: Tag; value: any }>;
|
|
63
63
|
|
|
64
64
|
export interface FieldForGeneration {
|
|
@@ -99,4 +99,5 @@ export type Termination = {
|
|
|
99
99
|
date: string | null
|
|
100
100
|
};
|
|
101
101
|
|
|
102
|
-
export type AsponeFormFields = Array<{ name: string; fields: FieldForGeneration[] }>;
|
|
102
|
+
export type AsponeFormFields = Array<{ name: string; fields: FieldForGeneration[] }>;
|
|
103
|
+
export type AsponeFormField = { name: string; fields: FieldForGeneration[] };
|
|
@@ -51,7 +51,10 @@ export function getCerfa3310Century23Payload(accountingEntries: IAccountingEntry
|
|
|
51
51
|
const taxedOther = setZeroIfIsNegative(getAmountByAccountNumber(vatEntries.filter((ae) => withTaxVat.includes(ae.idVat)), ['775'], 0, true));
|
|
52
52
|
const intracommunityServiceAccounts = ['604', '611', '612', '613', '614', '615', '616', '617', '618', '619', '62'];
|
|
53
53
|
const intracommunityServiceEntries = vatEntries.filter((ae) => withTaxVat.includes(ae.idVat) && intracomVat.includes(ae.idVat));
|
|
54
|
-
|
|
54
|
+
|
|
55
|
+
// Case A3
|
|
56
|
+
const taxedPurchaseOfIntracommunityService = 0;/* setZeroIfIsNegative(getAmountByAccountNumber(intracommunityServiceEntries, intracommunityServiceAccounts, 0, true)); */
|
|
57
|
+
|
|
55
58
|
const taxedImportEntries = vatEntries.filter((ae) => importationVat.includes(ae.idVat) && withTaxVat.includes(ae.idVat));
|
|
56
59
|
const taxedImportAccounts = ['6'];
|
|
57
60
|
const taxedImport = setZeroIfIsNegative(getAmountByAccountNumber(taxedImportEntries, taxedImportAccounts, 0, true));
|
|
@@ -7,7 +7,10 @@ import { Vat } from '../../../types/Enum/Vat';
|
|
|
7
7
|
import {
|
|
8
8
|
getAmountByAccountNumber, getTaxAmountByAccountNumber, setZeroIfIsNegative, textFormatting,
|
|
9
9
|
} from '../utils';
|
|
10
|
-
import {
|
|
10
|
+
import {
|
|
11
|
+
AsponeFormField,
|
|
12
|
+
AsponeFormFields, Cerfa3514_2022, CerfaPayloadForm, IRegistration,
|
|
13
|
+
} from '../../../types';
|
|
11
14
|
|
|
12
15
|
export function getCerfa3517Century23Payload(accountingEntries: IAccountingEntry[], payload: PayloadCerfa3517_2023): Cerfa3517_2023 {
|
|
13
16
|
const shouldHaveVatCode = isDefined(payload.setting?.tvaCode) && isDefined(payload.society.siret);
|
|
@@ -345,9 +348,173 @@ export function getCerfa3517Century23Payload(accountingEntries: IAccountingEntry
|
|
|
345
348
|
return data;
|
|
346
349
|
}
|
|
347
350
|
|
|
348
|
-
export function getCerfa3517CenturyRegistrationField(data: Cerfa3517_2023) {
|
|
351
|
+
export function getCerfa3517CenturyRegistrationField(data: Cerfa3517_2023): AsponeFormFields {
|
|
349
352
|
const comment = textFormatting(data.declaration.comment);
|
|
350
353
|
|
|
354
|
+
let refund: AsponeFormField[] = [];
|
|
355
|
+
|
|
356
|
+
if (data.refund.asked > 0) {
|
|
357
|
+
refund = [{
|
|
358
|
+
name: '3517DDR',
|
|
359
|
+
fields: [
|
|
360
|
+
{
|
|
361
|
+
key: 'AA',
|
|
362
|
+
tag: 'Valeur',
|
|
363
|
+
isMultiple: false,
|
|
364
|
+
description: 'MOA Crédit remboursable dégagé à la clôture de lannée ou de lexercice si celui-ci est supérieur ou égal à 150 euros 100173 a',
|
|
365
|
+
value: data.refund.creditRefundable,
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
key: 'AB',
|
|
369
|
+
tag: 'Valeur',
|
|
370
|
+
isMultiple: false,
|
|
371
|
+
description: 'MOA Excédent de versement de TVA dégagé 100174 b',
|
|
372
|
+
value: data.refund.surplus,
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
key: 'AC',
|
|
376
|
+
tag: 'Valeur',
|
|
377
|
+
isMultiple: false,
|
|
378
|
+
description: 'MOA Maximum remboursable 100175 c',
|
|
379
|
+
value: data.refund.maximum,
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
key: 'AD',
|
|
383
|
+
tag: 'Valeur',
|
|
384
|
+
isMultiple: false,
|
|
385
|
+
description: 'MOA Remboursement demandé 100176 d',
|
|
386
|
+
value: data.refund.asked,
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
key: 'AE',
|
|
390
|
+
tag: 'Valeur',
|
|
391
|
+
isMultiple: false,
|
|
392
|
+
description: 'MOA Crédit reportable si le crédit dégagé est inférieur à 150 euros 100177 e',
|
|
393
|
+
value: data.refund.reportable,
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
key: 'AF',
|
|
397
|
+
tag: 'AdresseVille',
|
|
398
|
+
isMultiple: false,
|
|
399
|
+
description: 'NAD Lieu de dépôt de la demande 100184 ',
|
|
400
|
+
value: data.refund.place,
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
key: 'AF',
|
|
404
|
+
tag: 'Designation',
|
|
405
|
+
isMultiple: false,
|
|
406
|
+
description: 'NAD Nom et prénom du demandeur 100178 ',
|
|
407
|
+
value: textFormatting(data.refund.name, 35),
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
key: 'AF',
|
|
411
|
+
tag: 'DesignationSuite1',
|
|
412
|
+
isMultiple: false,
|
|
413
|
+
description: 'NAD Qualité du demandeur 100179 ',
|
|
414
|
+
value: null,
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
key: 'AG',
|
|
418
|
+
tag: 'Valeur',
|
|
419
|
+
isMultiple: false,
|
|
420
|
+
description: 'MOA Montant dont le remboursement est demandé 100180 ',
|
|
421
|
+
value: data.refund.asked,
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
key: 'AH',
|
|
425
|
+
tag: 'Valeur',
|
|
426
|
+
isMultiple: false,
|
|
427
|
+
description: 'CCI Demande de remboursement à créditer au compte désigné Table TBX avec X pour sélectionné, CCI/7037 = CAV/1131 = TBX 100189 ',
|
|
428
|
+
value: data.refund.shouldCredit ? 'X' : null,
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
key: 'AJ',
|
|
432
|
+
tag: 'Valeur',
|
|
433
|
+
isMultiple: false,
|
|
434
|
+
description: 'CCI Demande de remboursement à imputer sur échéance future Table TBX avec X pour sélectionné, CCI/7037 = CAV/1131 = TBX 100186 ',
|
|
435
|
+
value: data.refund.shouldImpute ? 'X' : null,
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
key: 'AK',
|
|
439
|
+
tag: 'TitulaireDesignation',
|
|
440
|
+
isMultiple: false,
|
|
441
|
+
description: 'FII Nom du titulaire du compte 100187 ',
|
|
442
|
+
value: null,
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
key: 'AK',
|
|
446
|
+
tag: 'TitulaireDesignationSuite',
|
|
447
|
+
isMultiple: false,
|
|
448
|
+
description: 'FII Complément de nom du titulaire de compte 100188 ',
|
|
449
|
+
value: null,
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
key: 'AK',
|
|
453
|
+
tag: 'Iban',
|
|
454
|
+
isMultiple: false,
|
|
455
|
+
description: 'FII IBAN IBAN: 34 caractères alphanumériques (INTERNATIONAL BANK ACCOUNT NUMBER) 902429 ',
|
|
456
|
+
value: data.bankAccount.iban ? textFormatting(data.bankAccount.iban.toUpperCase())?.replace(/\s/g, '') : null,
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
key: 'AK',
|
|
460
|
+
tag: 'Bic',
|
|
461
|
+
isMultiple: false,
|
|
462
|
+
description: 'FII BIC BIC : 8 ou 11 caractères alphanumériques (BANK IDENTIFIER CODE) 902409 ',
|
|
463
|
+
value: data.bankAccount.bic ? textFormatting(data.bankAccount.bic.toUpperCase()) : null,
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
key: 'AL',
|
|
467
|
+
tag: 'TexteLibre1',
|
|
468
|
+
isMultiple: false,
|
|
469
|
+
description: 'FTX Commentaires type 1, ligne 1 1° zone de 512 c 100447 ',
|
|
470
|
+
value: null,
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
key: 'AL',
|
|
474
|
+
tag: 'TexteLibre2',
|
|
475
|
+
isMultiple: false,
|
|
476
|
+
description: 'FTX Commentaires type 1, ligne 2 2° zone de 512 c 100547 ',
|
|
477
|
+
value: null,
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
key: 'AL',
|
|
481
|
+
tag: 'TexteLibre3',
|
|
482
|
+
isMultiple: false,
|
|
483
|
+
description: 'FTX Commentaires type 1, ligne 3 3° zone de 512 c 100548 ',
|
|
484
|
+
value: null,
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
key: 'AL',
|
|
488
|
+
tag: 'TexteLibre4',
|
|
489
|
+
isMultiple: false,
|
|
490
|
+
description: 'FTX Commentaires type 1, ligne 4 4° zone de 512 c 100549 ',
|
|
491
|
+
value: null,
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
key: 'AL',
|
|
495
|
+
tag: 'TexteLibre5',
|
|
496
|
+
isMultiple: false,
|
|
497
|
+
description: 'FTX Commentaires type 1, ligne 5 5° zone de 512 c 100550 ',
|
|
498
|
+
value: null,
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
key: 'BA',
|
|
502
|
+
tag: 'Valeur',
|
|
503
|
+
isMultiple: false,
|
|
504
|
+
description: 'DTM Cession ou cessation ou décès ou entrée dans un groupe TVA, date de lévènement Format attendu : yyyyMMdd 905929 ',
|
|
505
|
+
value: null,
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
key: 'BB',
|
|
509
|
+
tag: 'Valeur',
|
|
510
|
+
isMultiple: false,
|
|
511
|
+
description: 'CCI Cession ou cessation ou décès ou entrée dans un groupe TVA 905930 ',
|
|
512
|
+
value: null,
|
|
513
|
+
},
|
|
514
|
+
],
|
|
515
|
+
}];
|
|
516
|
+
}
|
|
517
|
+
|
|
351
518
|
return [{
|
|
352
519
|
name: '3517SCA12',
|
|
353
520
|
fields: [
|
|
@@ -1480,166 +1647,7 @@ export function getCerfa3517CenturyRegistrationField(data: Cerfa3517_2023) {
|
|
|
1480
1647
|
},
|
|
1481
1648
|
],
|
|
1482
1649
|
},
|
|
1483
|
-
|
|
1484
|
-
? {
|
|
1485
|
-
name: '3517DDR',
|
|
1486
|
-
fields: [
|
|
1487
|
-
{
|
|
1488
|
-
key: 'AA',
|
|
1489
|
-
tag: 'Valeur',
|
|
1490
|
-
isMultiple: false,
|
|
1491
|
-
description: 'MOA Crédit remboursable dégagé à la clôture de lannée ou de lexercice si celui-ci est supérieur ou égal à 150 euros 100173 a',
|
|
1492
|
-
value: data.refund.creditRefundable,
|
|
1493
|
-
},
|
|
1494
|
-
{
|
|
1495
|
-
key: 'AB',
|
|
1496
|
-
tag: 'Valeur',
|
|
1497
|
-
isMultiple: false,
|
|
1498
|
-
description: 'MOA Excédent de versement de TVA dégagé 100174 b',
|
|
1499
|
-
value: data.refund.surplus,
|
|
1500
|
-
},
|
|
1501
|
-
{
|
|
1502
|
-
key: 'AC',
|
|
1503
|
-
tag: 'Valeur',
|
|
1504
|
-
isMultiple: false,
|
|
1505
|
-
description: 'MOA Maximum remboursable 100175 c',
|
|
1506
|
-
value: data.refund.maximum,
|
|
1507
|
-
},
|
|
1508
|
-
{
|
|
1509
|
-
key: 'AD',
|
|
1510
|
-
tag: 'Valeur',
|
|
1511
|
-
isMultiple: false,
|
|
1512
|
-
description: 'MOA Remboursement demandé 100176 d',
|
|
1513
|
-
value: data.refund.asked,
|
|
1514
|
-
},
|
|
1515
|
-
{
|
|
1516
|
-
key: 'AE',
|
|
1517
|
-
tag: 'Valeur',
|
|
1518
|
-
isMultiple: false,
|
|
1519
|
-
description: 'MOA Crédit reportable si le crédit dégagé est inférieur à 150 euros 100177 e',
|
|
1520
|
-
value: data.refund.reportable,
|
|
1521
|
-
},
|
|
1522
|
-
{
|
|
1523
|
-
key: 'AF',
|
|
1524
|
-
tag: 'AdresseVille',
|
|
1525
|
-
isMultiple: false,
|
|
1526
|
-
description: 'NAD Lieu de dépôt de la demande 100184 ',
|
|
1527
|
-
value: data.refund.place,
|
|
1528
|
-
},
|
|
1529
|
-
{
|
|
1530
|
-
key: 'AF',
|
|
1531
|
-
tag: 'Designation',
|
|
1532
|
-
isMultiple: false,
|
|
1533
|
-
description: 'NAD Nom et prénom du demandeur 100178 ',
|
|
1534
|
-
value: textFormatting(data.refund.name, 35),
|
|
1535
|
-
},
|
|
1536
|
-
{
|
|
1537
|
-
key: 'AF',
|
|
1538
|
-
tag: 'DesignationSuite1',
|
|
1539
|
-
isMultiple: false,
|
|
1540
|
-
description: 'NAD Qualité du demandeur 100179 ',
|
|
1541
|
-
value: null,
|
|
1542
|
-
},
|
|
1543
|
-
{
|
|
1544
|
-
key: 'AG',
|
|
1545
|
-
tag: 'Valeur',
|
|
1546
|
-
isMultiple: false,
|
|
1547
|
-
description: 'MOA Montant dont le remboursement est demandé 100180 ',
|
|
1548
|
-
value: data.refund.asked,
|
|
1549
|
-
},
|
|
1550
|
-
{
|
|
1551
|
-
key: 'AH',
|
|
1552
|
-
tag: 'Valeur',
|
|
1553
|
-
isMultiple: false,
|
|
1554
|
-
description: 'CCI Demande de remboursement à créditer au compte désigné Table TBX avec X pour sélectionné, CCI/7037 = CAV/1131 = TBX 100189 ',
|
|
1555
|
-
value: data.refund.shouldCredit ? 'X' : null,
|
|
1556
|
-
},
|
|
1557
|
-
{
|
|
1558
|
-
key: 'AJ',
|
|
1559
|
-
tag: 'Valeur',
|
|
1560
|
-
isMultiple: false,
|
|
1561
|
-
description: 'CCI Demande de remboursement à imputer sur échéance future Table TBX avec X pour sélectionné, CCI/7037 = CAV/1131 = TBX 100186 ',
|
|
1562
|
-
value: data.refund.shouldImpute ? 'X' : null,
|
|
1563
|
-
},
|
|
1564
|
-
{
|
|
1565
|
-
key: 'AK',
|
|
1566
|
-
tag: 'TitulaireDesignation',
|
|
1567
|
-
isMultiple: false,
|
|
1568
|
-
description: 'FII Nom du titulaire du compte 100187 ',
|
|
1569
|
-
value: null,
|
|
1570
|
-
},
|
|
1571
|
-
{
|
|
1572
|
-
key: 'AK',
|
|
1573
|
-
tag: 'TitulaireDesignationSuite',
|
|
1574
|
-
isMultiple: false,
|
|
1575
|
-
description: 'FII Complément de nom du titulaire de compte 100188 ',
|
|
1576
|
-
value: null,
|
|
1577
|
-
},
|
|
1578
|
-
{
|
|
1579
|
-
key: 'AK',
|
|
1580
|
-
tag: 'Iban',
|
|
1581
|
-
isMultiple: false,
|
|
1582
|
-
description: 'FII IBAN IBAN: 34 caractères alphanumériques (INTERNATIONAL BANK ACCOUNT NUMBER) 902429 ',
|
|
1583
|
-
value: data.bankAccount.iban ? textFormatting(data.bankAccount.iban.toUpperCase())?.replace(/\s/g, '') : null,
|
|
1584
|
-
},
|
|
1585
|
-
{
|
|
1586
|
-
key: 'AK',
|
|
1587
|
-
tag: 'Bic',
|
|
1588
|
-
isMultiple: false,
|
|
1589
|
-
description: 'FII BIC BIC : 8 ou 11 caractères alphanumériques (BANK IDENTIFIER CODE) 902409 ',
|
|
1590
|
-
value: data.bankAccount.bic ? textFormatting(data.bankAccount.bic.toUpperCase()) : null,
|
|
1591
|
-
},
|
|
1592
|
-
{
|
|
1593
|
-
key: 'AL',
|
|
1594
|
-
tag: 'TexteLibre1',
|
|
1595
|
-
isMultiple: false,
|
|
1596
|
-
description: 'FTX Commentaires type 1, ligne 1 1° zone de 512 c 100447 ',
|
|
1597
|
-
value: null,
|
|
1598
|
-
},
|
|
1599
|
-
{
|
|
1600
|
-
key: 'AL',
|
|
1601
|
-
tag: 'TexteLibre2',
|
|
1602
|
-
isMultiple: false,
|
|
1603
|
-
description: 'FTX Commentaires type 1, ligne 2 2° zone de 512 c 100547 ',
|
|
1604
|
-
value: null,
|
|
1605
|
-
},
|
|
1606
|
-
{
|
|
1607
|
-
key: 'AL',
|
|
1608
|
-
tag: 'TexteLibre3',
|
|
1609
|
-
isMultiple: false,
|
|
1610
|
-
description: 'FTX Commentaires type 1, ligne 3 3° zone de 512 c 100548 ',
|
|
1611
|
-
value: null,
|
|
1612
|
-
},
|
|
1613
|
-
{
|
|
1614
|
-
key: 'AL',
|
|
1615
|
-
tag: 'TexteLibre4',
|
|
1616
|
-
isMultiple: false,
|
|
1617
|
-
description: 'FTX Commentaires type 1, ligne 4 4° zone de 512 c 100549 ',
|
|
1618
|
-
value: null,
|
|
1619
|
-
},
|
|
1620
|
-
{
|
|
1621
|
-
key: 'AL',
|
|
1622
|
-
tag: 'TexteLibre5',
|
|
1623
|
-
isMultiple: false,
|
|
1624
|
-
description: 'FTX Commentaires type 1, ligne 5 5° zone de 512 c 100550 ',
|
|
1625
|
-
value: null,
|
|
1626
|
-
},
|
|
1627
|
-
{
|
|
1628
|
-
key: 'BA',
|
|
1629
|
-
tag: 'Valeur',
|
|
1630
|
-
isMultiple: false,
|
|
1631
|
-
description: 'DTM Cession ou cessation ou décès ou entrée dans un groupe TVA, date de lévènement Format attendu : yyyyMMdd 905929 ',
|
|
1632
|
-
value: null,
|
|
1633
|
-
},
|
|
1634
|
-
{
|
|
1635
|
-
key: 'BB',
|
|
1636
|
-
tag: 'Valeur',
|
|
1637
|
-
isMultiple: false,
|
|
1638
|
-
description: 'CCI Cession ou cessation ou décès ou entrée dans un groupe TVA 905930 ',
|
|
1639
|
-
value: null,
|
|
1640
|
-
},
|
|
1641
|
-
],
|
|
1642
|
-
} : {},
|
|
1650
|
+
...refund,
|
|
1643
1651
|
];
|
|
1644
1652
|
}
|
|
1645
1653
|
|