-
Notifications
You must be signed in to change notification settings - Fork 3
/
FyPTFicheroAdeudosSepa.pas
2147 lines (1790 loc) · 64.3 KB
/
FyPTFicheroAdeudosSepa.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit FyPTFicheroAdeudosSEPA;
interface
uses
Windows, Classes, ADODB;
type
{CABECERA DE PRESENTADOR}
TCabeceraPresentadorSEPA = class
private
FCodigoRegistro: String; // [2]
FVersionCuaderno: String; // [5]
FNumeroDato: String; // [3]
// CIF
FIdentificadorPresentador: String; // [35]
FNombrePresentador: String; // [70]
FRemesaID: String; // [3]
// FFechaCreacionFichero: String; // [8]
FIdentificacionFichero: String; // [35]
FEntidadReceptora: String; // [4]
FOficinaReceptora: String; // [4]
FTextoLibre: WideString; // [434]
////////////////// Total......... // [600]
// [2]
function GetCodigoRegistro: String;
// procedure SetCodigoRegistro(Value: String);
// [5]
function GetVersionCuaderno: String;
// procedure SetVersionCuaderno(Value: String);
// [3]
function GetNumeroDato: String;
// procedure SetNumeroDato(Value: String);
// [35]
function GetIdentificadorPresentador: String;
procedure SetIdentificadorPresentador(Value: String);
// [70]
function GetNombrePresentador: String;
procedure SetNombrePresentador(Value: String);
// [35]
function GetIdentificacionFichero: String;
// procedure SetIdentificacionFichero(Value: String);
// [8]
function GetFechaCreacionFichero: String;
// procedure SetFechaCreacionFichero(Value: String);
// [4]
function GetEntidadReceptora: String;
// procedure SetEntidadReceptora(Value: String);
// [4]
function GetOficinaReceptora: String;
// procedure SetOficinaReceptora(Value: String);
// [434]
function GetTextoLibre: WideString;
procedure SetTextoLibre(Value: WideString);
// [600]
function GetAllToStringLine: WideString;
protected
public
constructor Create;
published
// [5] RemesaID, Esto es a nivel interno que representa al numero de remesa
// para poder buscarlo en los fichero de Remesas no forma parte
// del fichero SEPA
property CodigoRegistro: String read GetCodigoRegistro; // write SetCodigoRegistro;
property VersionCuaderno: String read GetVersionCuaderno; // write SetVersionCuaderno;
property NumeroDato: String read GetNumeroDato; // write SetNumeroDato;
property IdentificadorPresentador: String read GetIdentificadorPresentador write SetIdentificadorPresentador;
property NombrePresentador: String read GetNombrePresentador write SetNombrePresentador;
property RemesaID: String read FRemesaID write FRemesaID;
property IdentificacionFichero: String read GetIdentificacionFichero; // write SetIdentificacionFichero;
property FechaCreacionFichero: String read GetFechaCreacionFichero; // write SetFechaCreacionFichero;
property EntidadReceptora: String read GetEntidadReceptora; // write SetEntidadReceptora;
property OficinaReceptora: String read GetOficinaReceptora; // write SetOficinaReceptora;
property TextoLibre: WideString read GetTextoLibre write SetTextoLibre;
property TodoTexto: WideString read GetAllToStringLine;
end;
{REGISTRO DE CABECERA DE ACRREDOR POR FECHA DE COBRO}
TCabeceraAcreedorFechaCobroSEPA = class
private
FpCabeceraPresentadorSEPA: TCabeceraPresentadorSEPA;
FCodigoRegistro: String; // [2]
// FVersionCuaderno: String; // [5]
FNumeroDato: String; // [3]
// CIF
FIdentificadorAcreedor: String; // [35]
FFechaCobro: String; // [8]
FNombreAcreedor: String; // [70]
FDireccionAcreedorD1: String; // [50]
FDireccionAcreedorD2: String; // [50]
FDireccionAcreedorD3: String; // [40]
FPaisAcreedor: String; // [2]
FCuentaAcreedor: String; // [34]
FTextoLibre: WideString; // [301]
////////////////// Total......... // [600]
// [2]
function GetCodigoRegistro: String;
// procedure SetCodigoRegistro(Value: String);
// [5]
function GetVersionCuaderno: String;
// procedure SetVersionCuaderno(Value: String);
// [3]
function GetNumeroDato: String;
// procedure SetNumeroDato(Value: String);
// [35]
function GetIdentificadorAcreedor: String;
procedure SetIdentificadorAcreedor(Value: String);
// [8]
function GetFechaCobro: String;
procedure SetFechaCobro(Value: String);
// [70]
function GetNombreAcreedor: String;
procedure SetNombreAcreedor(Value: String);
// [50]
function GetDireccionAcreedorD1: String;
procedure SetDireccionAcreedorD1(Value: String);
// [50]
function GetDireccionAcreedorD2: String;
procedure SetDireccionAcreedorD2(Value: String);
// [40]
function GetDireccionAcreedorD3: String;
procedure SetDireccionAcreedorD3(Value: String);
// [2]
function GetPaisAcreedor: String;
procedure SetPaisAcreedor(Value: String);
// [34]
function GetCuentaAcreedor: String;
procedure SetCuentaAcreedor(Value: String);
// [301]
function GetTextoLibre: WideString;
procedure SetTextoLibre(Value: WideString);
// [600]
function GetAllToStringLine: WideString;
protected
public
constructor Create(lpCabeceraPresentadorSEPA: TCabeceraPresentadorSEPA);
published
property CodigoRegistro: String read GetCodigoRegistro; // write SetCodigoRegistro;
property VersionCuaderno: String read GetVersionCuaderno; // write SetVersionCuaderno;
property NumeroDato: String read GetNumeroDato; // write SetNumeroDato;
property IdentificadorAcreedor: String read GetIdentificadorAcreedor write SetIdentificadorAcreedor;
property FechaCobro: String read GetFechaCobro write SetFechaCobro;
property NombreAcreedor: String read GetNombreAcreedor write SetNombreAcreedor;
property DireccionAcreedorD1: String read GetDireccionAcreedorD1 write SetDireccionAcreedorD1;
property DireccionAcreedorD2: String read GetDireccionAcreedorD2 write SetDireccionAcreedorD2;
property DireccionAcreedorD3: String read GetDireccionAcreedorD3 write SetDireccionAcreedorD3;
property PaisAcreedor: String read GetPaisAcreedor write SetPaisAcreedor;
property CuentaAcreedor: String read GetCuentaAcreedor write SetCuentaAcreedor;
property TextoLibre: WideString read GetTextoLibre write SetTextoLibre;
property TodoTexto: WideString read GetAllToStringLine;
end;
{REGISTROS INDIVIDUALES DE ADEUDOS, REGISTRO 1º INDIVIDUAL OBLIGATORIO}
TRegistroIndividualAdeudoOEMSEPA = class
private
FpCabeceraAcreedorFechaCobroSEPA: TCabeceraAcreedorFechaCobroSEPA;
FCodigoRegistro: String; // [2]
// FVersionCuaderno: String; // [5]
FNumeroDato: String; // [3]
FReferenciaAdeudo: String; // [35]
FReferenciaUnicaMandato: String; // [35]
FTipoAdeudo: String; // [4]
FCategoriaProposito: String; // [4]
FImporteAdeudo: String; // [11]
FFechaFirmaMandato: String; // [8]
FEntidadDeudor: String; // [11]
FNombreDeudor: String; // [70]
FDireccionDeudorD1: String; // [50]
FDireccionDeudorD2: String; // [50]
FDireccionDeudorD3: String; // [40]
FPaisDeudor: String; // [2]
FTipoIdentificacionDeudor: String; // [1]
FIdentificacionDeudor: String; // [36]
FIdentificacionDeudorEmisor: String; // [35]
FIdentificadorCuentaDeudor: String; // [1]
FCuentaDeudor: String; // [34]
FPropositoAdeudo: String; // [4]
FConcepto: String; // [140]
FTextoLibre: String; // [19]
//////////////////// Total......... // [600]
// [2]
function GetCodigoRegistro: String;
// procedure SetCodigoRegistro(Value: String);
// [5]
function GetVersionCuaderno: String;
// procedure SetVersionCuaderno(Value: String);
// [3]
function GetNumeroDato: String;
// procedure SetNumeroDato(Value: String);
// [35]
function GetReferenciaAdeudo: String;
procedure SetReferenciaAdeudo(Value: String);
// [35]
function GetReferenciaUnicaMandato: String;
procedure SetReferenciaUnicaMandato(Value: String);
// [4]
function GetTipoAdeudo: String;
procedure SetTipoAdeudo(Value: String);
// [4]
function GetCategoriaProposito: String;
procedure SetCategoriaProposito(Value: String);
// [11]
function GetImporteAdeudo: String;
procedure SetImporteAdeudo(Value: String);
// [8]
function GetFechaFirmaMandato: String;
procedure SetFechaFirmaMandato(Value: String);
// [11]
function GetEntidadDeudor: String;
procedure SetEntidadDeudor(Value: String);
// [70]
function GetNombreDeudor: String;
procedure SetNombreDeudor(Value: String);
// [50]
function GetDireccionDeudorD1: String;
procedure SetDireccionDeudorD1(Value: String);
// [50]
function GetDireccionDeudorD2: String;
procedure SetDireccionDeudorD2(Value: String);
// [40]
function GetDireccionDeudorD3: String;
procedure SetDireccionDeudorD3(Value: String);
// [2]
function GetPaisDeudor: String;
procedure SetPaisDeudor(Value: String);
// [1]
function GetTipoIdentificacionDeudor: String;
procedure SetTipoIdentificacionDeudor(Value: String);
// [36]
function GetIdentificacionDeudor: String;
procedure SetIdentificacionDeudor(Value: String);
// [35]
function GetIdentificacionDeudorEmisor: String;
procedure SetIdentificacionDeudorEmisor(Value: String);
// [1]
function GetIdentificadorCuentaDeudor: String;
procedure SetIdentificadorCuentaDeudor(Value: String);
// [34]
function GetCuentaDeudor: String;
procedure SetCuentaDeudor(Value: String);
// [4]
function GetPropositoAdeudo: String;
procedure SetPropositoAdeudo(Value: String);
// [140]
function GetConcepto: String;
procedure SetConcepto(Value: String);
// [19]
function GetTextoLibre: String;
procedure SetTextoLibre(Value: String);
// [600]
function GetAllToStringLine: WideString;
protected
public
constructor Create(lpCabeceraAcreedorFechaCobroSEPA: TCabeceraAcreedorFechaCobroSEPA);
published
property CodigoRegistro: String read GetCodigoRegistro; // write SetCodigoRegistro;
property VersionCuaderno: String read GetVersionCuaderno; // write SetVersionCuaderno;
property NumeroDato: String read GetNumeroDato; // write SetNumeroDato;
property ReferenciaAdeudo: String read GetReferenciaAdeudo write SetReferenciaAdeudo;
property ReferenciaUnicaMandato: String read GetReferenciaUnicaMandato write SetReferenciaUnicaMandato;
property TipoAdeudo: String read GetTipoAdeudo write SetTipoAdeudo;
property CategoriaProposito: String read GetCategoriaProposito write SetCategoriaProposito;
property ImporteAdeudo: String read GetImporteAdeudo write SetImporteAdeudo;
property FechaFirmaMandato: String read GetFechaFirmaMandato write SetFechaFirmaMandato;
property EntidadDeudor: String read GetEntidadDeudor write SetEntidadDeudor;
property NombreDeudor: String read GetNombreDeudor write SetNombreDeudor;
property DireccionDeudorD1: String read GetDireccionDeudorD1 write SetDireccionDeudorD1;
property DireccionDeudorD2: String read GetDireccionDeudorD2 write SetDireccionDeudorD2;
property DireccionDeudorD3: String read GetDireccionDeudorD3 write SetDireccionDeudorD3;
property PaisDeudor: String read GetPaisDeudor write SetPaisDeudor;
property TipoIdentificacionDeudor: String read GetTipoIdentificacionDeudor write SetTipoIdentificacionDeudor;
property IdentificacionDeudor: String read GetIdentificacionDeudor write SetIdentificacionDeudor;
property IdentificacionDeudorEmisor: String read GetIdentificacionDeudorEmisor write SetIdentificacionDeudorEmisor;
property IdentificadorCuentaDeudor: String read GetIdentificadorCuentaDeudor write SetIdentificadorCuentaDeudor;
property CuentaDeudor: String read GetCuentaDeudor write SetCuentaDeudor;
property PropositoAdeudo: String read GetPropositoAdeudo write SetPropositoAdeudo;
property Concepto: String read GetConcepto write SetConcepto;
property TextoLibre: String read GetTextoLibre write SetTextoLibre;
property TodoTexto: WideString read GetAllToStringLine;
end;
TRegistroIndividualAdeudoSEPA = class(TRegistroIndividualAdeudoOEMSEPA)
private
FRegistroIndividualAdeudo: TList;
FpCabeceraAcreedorFechaCobroSEPA: TCabeceraAcreedorFechaCobroSEPA;
function GetCount: Integer;
function GetCountToString: String;
function GetTotalAmount: Extended;
function GetTotalAmountToString: String;
function GetAllToStringLine: WideString;
protected
public
constructor Create(lpCabeceraAcreedorFechaCobroSEPA: TCabeceraAcreedorFechaCobroSEPA);
destructor Destroy; override;
function Add: TRegistroIndividualAdeudoOEMSEPA;
procedure Append(ReferenciaAdeudo, ReferenciaUnicaMandato, ImporteAdeudo,
FechaFirmaMandato, EntidadDeudor, NombreDeudor, DireccionDeudorD1,
DireccionDeudorD2, DireccionDeudorD3, IdentificacionDeudor, CuentaDeudor,
Concepto, TextoLibre: String);
published
property Count: Integer read GetCount;
property CountToString: String read GetCountToString;
property TotalAmount: Extended read GetTotalAmount;
property TotalAmountToString: String read GetTotalAmountToString;
property TodoTexto: WideString read GetAllToStringLine;
end;
{REGISTROS DE TOTALES DE ACREEDOR POR FECHA DE COBRO}
TRegistrosTotalesAcreedorFechaCobroSEPA = class
private
FpRegistroIndividualAdeudoSEPA: TRegistroIndividualAdeudoSEPA;
FCodigoRegistro: String; // [2]
// FIdentificadorAcreedor: String; // [35]
// FFechaCobro: String; // [8]
// FTotalImportes: String; // [17]
// FNumeroAdeudos: String; // [8]
// FTotalRegistros: String; // [10]
FTextoLibre: WideString; // [520]
//////////////////// Total......... // [600]
// [2]
function GetCodigoRegistro: String;
// procedure SetCodigoRegistro(Value: String);
// [35]
function GetIdentificadorAcreedor: String;
// procedure SetIdentificadorAcreedor(Value: String);
// [8]
function GetFechaCobro: String;
// procedure SetFechaCobro(Value: String);
// [17]
function GetTotalImportes: String;
// procedure SetTotalImportes(Value: String);
// [8]
function GetNumeroAdeudos: String;
// procedure SetNumeroAdeudos(Value: String);
// [10]
function GetTotalRegistros: String;
// procedure SetTotalRegistros(Value: String);
// [520]
function GetTextoLibre: WideString;
procedure SetTextoLibre(Value: WideString);
// [600]
function GetAllToStringLine: WideString;
protected
public
constructor Create(lpRegistroIndividualAdeudoSEPA: TRegistroIndividualAdeudoSEPA);
published
property CodigoRegistro: String read GetCodigoRegistro; // write SetCodigoRegistro;
property IdentificadorAcreedor: String read GetIdentificadorAcreedor; // write SetIdentificadorAcreedor;
property FechaCobro: String read GetFechaCobro; // write SetFechaCobro;
property TotalImportes: String read GetTotalImportes; // write SetTotalImportes;
property NumeroAdeudos: String read GetNumeroAdeudos; // write SetNumeroAdeudos;
property TotalRegistros: String read GetTotalRegistros; // write SetTotalRegistros;
property TextoLibre: WideString read GetTextoLibre write SetTextoLibre;
property TodoTexto: WideString read GetAllToStringLine;
end;
{REGISTROS DE TOTALES DE ACREEDOR}
TRegistrosTotalesAcreedorSEPA = class
private
FpRegistrosTotalesAcreedorFechaCobro: TRegistrosTotalesAcreedorFechaCobroSEPA;
FCodigoRegistro: String; // [2]
// FIdentificadorAcreedor: String; // [35]
// FTotalImportes: String; // [17]
// FNumeroAdeudos: String; // [8]
// FTotalRegistros: String; // [10]
FTextoLibre: String; // [528]
//////////////// Total......... // [600]
// [2]
function GetCodigoRegistro: String;
// procedure SetCodigoRegistro(Value: String);
// [35]
function GetIdentificadorAcreedor: String;
// procedure SetIdentificadorAcreedor(Value: String);
// [17]
function GetTotalImportes: String;
// procedure SetTotalImportes(Value: String);
// [8]
function GetNumeroAdeudos: String;
// procedure SetNumeroAdeudos(Value: String);
// [10]
function GetTotalRegistros: String;
// procedure SetTotalRegistros(Value: String);
// [528]
function GetTextoLibre: String;
procedure SetTextoLibre(Value: String);
// [600]
function GetAllToStringLine: WideString;
protected
public
constructor Create(lpRegistrosTotalesAcreedorFechaCobro: TRegistrosTotalesAcreedorFechaCobroSEPA);
published
property CodigoRegistro: String read GetCodigoRegistro; // write SetCodigoRegistro;
property IdentificadorAcreedor: String read GetIdentificadorAcreedor; // write SetIdentificadorAcreedor;
property TotalImportes: String read GetTotalImportes; // write SetTotalImportes;
property NumeroAdeudos: String read GetNumeroAdeudos; // write SetNumeroAdeudos;
property TotalRegistros: String read GetTotalRegistros; // write SetTotalRegistros;
property TextoLibre: String read GetTextoLibre write SetTextoLibre;
property TodoTexto: WideString read GetAllToStringLine;
end;
{REGISTRO DE TOTALES GENERAL}
TRegistroTotalesGeneralSEPA = class
private
FpRegistrosTotalesAcreedor: TRegistrosTotalesAcreedorSEPA;
FCodigoRegistro: String; // [2]
// FTotalImportesGeneral: String; // [17]
// FNumeroRegistros: String; // [8]
// FTotalRegistros: String; // [10]
FTextoLibre: WideString; // [563]
//////////////// Total......... // [600]
// [2]
function GetCodigoRegistro: String;
// procedure SetCodigoRegistro(Value: String);
// [17]
function GetTotalImportesGeneral: String;
// procedure SetTotalImportesGeneral(Value: String);
// [8]
function GetNumeroRegistros: String;
// procedure SetNumeroRegistros(Value: String);
// [10]
function GetTotalRegistros: String;
// procedure SetTotalRegistros(Value: String);
// [563]
function GetTextoLibre: WideString;
procedure SetTextoLibre(Value: WideString);
// [600]
function GetAllToStringLine: WideString;
protected
public
constructor Create(lpRegistrosTotalesAcreedor: TRegistrosTotalesAcreedorSEPA);
published
property CodigoRegistro: String read GetCodigoRegistro; // write SetCodigoRegistro;
property TotalImportesGeneral: String read GetTotalImportesGeneral; // write SetTotalImportesGeneral;
property NumeroRegistros: String read GetNumeroRegistros; // write SetNumeroRegistros;
property TotalRegistros: String read GetTotalRegistros; // write SetTotalRegistros;
property TextoLibre: WideString read GetTextoLibre write SetTextoLibre;
property TodoTexto: WideString read GetAllToStringLine;
end;
{FICHERO SEPA OEM}
TFicheroSEPAOEM = class
private
FCabeceraPresentador: TCabeceraPresentadorSEPA;
FCabeceraAcreedorFechaCobro: TCabeceraAcreedorFechaCobroSEPA;
FIndividualAdeudo: TRegistroIndividualAdeudoSEPA;
FTotalesAcreedorFechaCobro: TRegistrosTotalesAcreedorFechaCobroSEPA;
FTotalesAcreedor: TRegistrosTotalesAcreedorSEPA;
FTotalesGeneral: TRegistroTotalesGeneralSEPA;
procedure SetIdentificadorPresentador(Value: String);
procedure SetNombrePresentador(Value: String);
// procedure SetIdentificacionFichero(Value: String);
procedure SetIdentificadorAcreedor(Value: String);
procedure SetNombreAcreedor(Value: String);
procedure SetDireccionAcreedorD1(Value: String);
procedure SetDireccionAcreedorD2(Value: String);
procedure SetDireccionAcreedorD3(Value: String);
procedure SetFechaCobro(Value: String);
procedure SetCuentaAcreedor(Value: String);
protected
public
constructor Create;
destructor Destroy; override;
procedure SaveToFileSEPA(FileName: WideString);
function AddIndividualAdeudo: TRegistroIndividualAdeudoOEMSEPA;
procedure AppendIndividualAdeudo(ReferenciaAdeudo, ReferenciaUnicaMandato,
ImporteAdeudo, FechaFirmaMandato, EntidadDeudor, NombreDeudor,
DireccionDeudorD1, DireccionDeudorD2, DireccionDeudorD3,
IdentificacionDeudor, CuentaDeudor, Concepto, TextoLibre: String);
published
property IdentificadorPresentador: String write SetIdentificadorPresentador;
property NombrePresentador: String write SetNombrePresentador;
property IdentificadorAcreedor: String write SetIdentificadorAcreedor;
property NombreAcreedor: String write SetNombreAcreedor;
property DireccionAcreedorD1: String write SetDireccionAcreedorD1;
property DireccionAcreedorD2: String write SetDireccionAcreedorD2;
property DireccionAcreedorD3: String write SetDireccionAcreedorD3;
property FechaCobro: String write SetFechaCobro;
property CuentaAcreedor: String write SetCuentaAcreedor;
property CabeceraPresentador: TCabeceraPresentadorSEPA read FCabeceraPresentador write FCabeceraPresentador;
property CabeceraAcreedorFechaCobro: TCabeceraAcreedorFechaCobroSEPA read FCabeceraAcreedorFechaCobro write FCabeceraAcreedorFechaCobro;
property IndividualAdeudo: TRegistroIndividualAdeudoSEPA read FIndividualAdeudo write FIndividualAdeudo;
property TotalesAcreedorFechaCobro: TRegistrosTotalesAcreedorFechaCobroSEPA read FTotalesAcreedorFechaCobro write FTotalesAcreedorFechaCobro;
property TotalesAcreedor: TRegistrosTotalesAcreedorSEPA read FTotalesAcreedor write FTotalesAcreedor;
property TotalesGeneral: TRegistroTotalesGeneralSEPA read FTotalesGeneral write FTotalesGeneral;
end;
{FICHERO SEPA OEM}
TFicheroSEPA = class(TFicheroSEPAOEM)
private
protected
public
constructor CreateRemittance(IDRemittance,
IDBankRemittanceSEPA: Integer; ConnectionString: WideString);
published
property IdentificadorPresentador;
property NombrePresentador;
property IdentificadorAcreedor;
property NombreAcreedor;
property DireccionAcreedorD1;
property DireccionAcreedorD2;
property DireccionAcreedorD3;
property FechaCobro;
property CuentaAcreedor;
property CabeceraPresentador;
property CabeceraAcreedorFechaCobro;
property IndividualAdeudo;
property TotalesAcreedorFechaCobro;
property TotalesAcreedor;
property TotalesGeneral;
end;
implementation
uses SysUtils;
function Space(SpcAlign: TAlignment; Spc: SmallInt; const Value: WideString): WideString;
var
nI: SmallInt;
AValue: WideString;
begin
Result := '';
AValue := Value;
if (Length(AValue) > Spc) then
AValue := Copy(AValue, 1, Spc);
for nI := 1 to (Spc - Length(AValue)) do
Result := Result + ' ';
// Espacio a la Derecha
if (SpcAlign = taRightJustify) then
Result := AValue + Result;
// Espacio a la Izquierda
if (SpcAlign = taLeftJustify) then
Result := Result + AValue;
end;
function ZeroLR(ZroAlign: TAlignment; const Zr: Byte; Value: String): String;
var
nI: Byte;
begin
Result := '';
for nI := 1 to (Zr - Length(Value)) do
Result := Result + '0';
// Ceros a la Derecha
if (ZroAlign = taRightJustify) then
Result := Value + Result;
// Ceros a la Izquierda
if (ZroAlign = taLeftJustify) then
Result := Result + Value;
end;
{TCabeceraPresentadorSEPA}
constructor TCabeceraPresentadorSEPA.Create;
begin
inherited Create;
// ALGUNOS DATOS SON FIJOS (SOLO LECTURA) Y OTROS SE PUEDEN MODIFICAR
FCodigoRegistro := '01'; // [2] --> SOLO LECTURA
FVersionCuaderno := '19143'; // [5] --> SOLO LECTURA
FNumeroDato := '001'; // [3] --> SOLO LECTURA
FIdentificadorPresentador := ''; // [35]
FNombrePresentador := ''; // [70]
// el %s contiene el numero de remesa de 5 caracteres.
FIdentificacionFichero := FormatDateTime('"PRE"yyyymmddhhnnss"%sRMS"', now); // [35]
// FFechaCreacionFichero := Copy(FIdentificacionFichero, 4, 8); // [8]
FRemesaID := '';
FEntidadReceptora := ''; // [4]
FOficinaReceptora := ''; // [4]
FTextoLibre := ''; // [434]
end;
// [2]
function TCabeceraPresentadorSEPA.GetCodigoRegistro: String;
begin
Result := FCodigoRegistro;
end;
{
procedure TCabeceraPresentadorSEPA.SetCodigoRegistro(Value: String);
begin
FCodigoRegistro := Value;
end;
}
// [5]
function TCabeceraPresentadorSEPA.GetVersionCuaderno: String;
begin
Result := FVersionCuaderno;
end;
{
procedure TCabeceraPresentadorSEPA.SetVersionCuaderno(Value: String);
begin
FVersionCuaderno := Value;
end;
}
// [3]
function TCabeceraPresentadorSEPA.GetNumeroDato: String;
begin
Result := FNumeroDato;
end;
{
procedure TCabeceraPresentadorSEPA.SetNumeroDato(Value: String);
begin
FNumeroDato := Value;
end;
}
// [35]
function TCabeceraPresentadorSEPA.GetIdentificadorPresentador: String;
var
X, Y, Z: String;
begin
X := FIdentificadorPresentador;
Y := Format('%d%s142800', [(Ord(X[1]) - 55), Copy(X, 2, Length(X))]);
Z := FormatFloat('"ES"00"000"' + QuotedStr(X), (98 - (StrToInt64(Y) mod 97)));
Z := Space(taRightJustify, 35, Z);
Result := Z;
end;
procedure TCabeceraPresentadorSEPA.SetIdentificadorPresentador(Value: String);
begin
FIdentificadorPresentador := Value;
end;
// [70]
function TCabeceraPresentadorSEPA.GetNombrePresentador: String;
begin
Result := Space(taRightJustify, 70, FNombrePresentador);
end;
procedure TCabeceraPresentadorSEPA.SetNombrePresentador(Value: String);
begin
FNombrePresentador := Value;
end;
// [35]
function TCabeceraPresentadorSEPA.GetIdentificacionFichero: String;
var
xRms: String;
xFile: String;
begin
xRms := ZeroLR(taLeftJustify, 5, FRemesaID);
xFile := Format(FIdentificacionFichero, [xRms]);
xFile := Space(taRightJustify, 35, xFile);
Result := xFile;
end;
{
procedure TCabeceraPresentadorSEPA.SetIdentificacionFichero(Value: String);
begin
FIdentificacionFichero := Value;
end;
}
// [8]
function TCabeceraPresentadorSEPA.GetFechaCreacionFichero: String;
begin
Result := Copy(FIdentificacionFichero, 4, 8);
end;
{
procedure TCabeceraPresentadorSEPA.SetFechaCreacionFichero(Value: String);
begin
FFechaCreacionFichero := Value;
end;
}
// [4]
function TCabeceraPresentadorSEPA.GetEntidadReceptora: String;
begin
Result := ZeroLR(taLeftJustify, 4, FEntidadReceptora);
end;
{
procedure TCabeceraPresentadorSEPA.SetEntidadReceptora(Value: String);
begin
FEntidadReceptora := Value;
end;
}
// [4]
function TCabeceraPresentadorSEPA.GetOficinaReceptora: String;
begin
Result := ZeroLR(taLeftJustify, 4, FOficinaReceptora);
end;
{
procedure TCabeceraPresentadorSEPA.SetOficinaReceptora(Value: String);
begin
FOficinaReceptora := Value;
end;
}
// [434]
function TCabeceraPresentadorSEPA.GetTextoLibre: WideString;
begin
if (Length(FTextoLibre) > 0) then
Result := Space(taRightJustify, 434, FTextoLibre)
else
Result := '.' + Space(taRightJustify, 433, FTextoLibre);
end;
procedure TCabeceraPresentadorSEPA.SetTextoLibre(Value: WideString);
begin
FTextoLibre := Value;
end;
// [600]
function TCabeceraPresentadorSEPA.GetAllToStringLine: WideString;
begin
Result :=
CodigoRegistro +
VersionCuaderno +
NumeroDato +
IdentificadorPresentador +
NombrePresentador +
FechaCreacionFichero +
IdentificacionFichero +
EntidadReceptora +
OficinaReceptora +
TextoLibre;
end;
{TCabeceraAcreedorFechaCobroSEPA}
constructor TCabeceraAcreedorFechaCobroSEPA.Create(lpCabeceraPresentadorSEPA: TCabeceraPresentadorSEPA);
begin
Inherited Create;
FpCabeceraPresentadorSEPA := lpCabeceraPresentadorSEPA;
// ALGUNOS DATOS SON FIJOS (SOLO LECTURA) Y OTROS SE PUEDEN MODIFICAR
FCodigoRegistro := '02'; // [2] --> SOLO LECTURA
// FVersionCuaderno := '19143'; // [5] --> SOLO LECTURA
FNumeroDato := '002'; // [3] --> SOLO LECTURA
FIdentificadorAcreedor := ''; // [35]
FFechaCobro := ''; // [8]
FNombreAcreedor := ''; // [70]
FDireccionAcreedorD1 := ''; // [50]
FDireccionAcreedorD2 := ''; // [50]
FDireccionAcreedorD3 := ''; // [40]
FPaisAcreedor := 'ES'; // [2]
FCuentaAcreedor := ''; // [34]
FTextoLibre := ''; // [301]
end;
// [2]
function TCabeceraAcreedorFechaCobroSEPA.GetCodigoRegistro: String;
begin
Result := FCodigoRegistro;
end;
{
procedure TCabeceraAcreedorFechaCobroSEPA.SetCodigoRegistro(Value: String);
begin
FCodigoRegistro := Value;
end;
}
// [5]
function TCabeceraAcreedorFechaCobroSEPA.GetVersionCuaderno: String;
begin
Result := FpCabeceraPresentadorSEPA.VersionCuaderno;
end;
{
procedure TCabeceraAcreedorFechaCobroSEPA.SetVersionCuaderno(Value: String);
begin
FVersionCuaderno := Value;
end;
}
// [3]
function TCabeceraAcreedorFechaCobroSEPA.GetNumeroDato: String;
begin
Result := FNumeroDato;
end;
{
procedure TCabeceraAcreedorFechaCobroSEPA.SetNumeroDato(Value: String);
begin
FNumeroDato := Value;
end;
}
// [35]
function TCabeceraAcreedorFechaCobroSEPA.GetIdentificadorAcreedor: String;
var
X, Y, Z: String;
begin
X := FIdentificadorAcreedor;
Y := Format('%d%s142800', [(Ord(X[1]) - 55), Copy(X, 2, Length(X))]);
Z := FormatFloat('"ES"00"000"' + QuotedStr(X), (98 - (StrToInt64(Y) mod 97)));
Z := Space(taRightJustify, 35, Z);
Result := Z;
end;
procedure TCabeceraAcreedorFechaCobroSEPA.SetIdentificadorAcreedor(Value: String);
begin
FIdentificadorAcreedor := Value;
end;
// [8]
function TCabeceraAcreedorFechaCobroSEPA.GetFechaCobro: String;
begin
Result := FFechaCobro;
end;
procedure TCabeceraAcreedorFechaCobroSEPA.SetFechaCobro(Value: String);
begin
FFechaCobro := Value;
end;
// [70]
function TCabeceraAcreedorFechaCobroSEPA.GetNombreAcreedor: String;
begin
Result := Space(taRightJustify, 70, FNombreAcreedor);
end;
procedure TCabeceraAcreedorFechaCobroSEPA.SetNombreAcreedor(Value: String);
begin
FNombreAcreedor := Value;
end;
// [50]
function TCabeceraAcreedorFechaCobroSEPA.GetDireccionAcreedorD1: String;
begin
Result := Space(taRightJustify, 50, FDireccionAcreedorD1);
end;
procedure TCabeceraAcreedorFechaCobroSEPA.SetDireccionAcreedorD1(Value: String);
begin
FDireccionAcreedorD1 := Value;
end;
// [50]
function TCabeceraAcreedorFechaCobroSEPA.GetDireccionAcreedorD2: String;
begin
Result := Space(taRightJustify, 50, FDireccionAcreedorD2);
end;
procedure TCabeceraAcreedorFechaCobroSEPA.SetDireccionAcreedorD2(Value: String);
begin
FDireccionAcreedorD2 := Value;
end;
// [40]
function TCabeceraAcreedorFechaCobroSEPA.GetDireccionAcreedorD3: String;
begin
Result := Space(taRightJustify, 40, FDireccionAcreedorD3);
end;
procedure TCabeceraAcreedorFechaCobroSEPA.SetDireccionAcreedorD3(Value: String);
begin
FDireccionAcreedorD3 := Value;
end;
// [2]
function TCabeceraAcreedorFechaCobroSEPA.GetPaisAcreedor: String;
begin
Result := FPaisAcreedor;
end;
procedure TCabeceraAcreedorFechaCobroSEPA.SetPaisAcreedor(Value: String);
begin
FPaisAcreedor := Value;
end;
// [34]
function TCabeceraAcreedorFechaCobroSEPA.GetCuentaAcreedor: String;
begin
Result := Space(taRightJustify, 34, FCuentaAcreedor);
end;
procedure TCabeceraAcreedorFechaCobroSEPA.SetCuentaAcreedor(Value: String);
begin
FCuentaAcreedor := Value;