forked from isisedonusum/SampleD2010
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReportInvoiceList.pas
More file actions
2821 lines (2454 loc) · 121 KB
/
ReportInvoiceList.pas
File metadata and controls
2821 lines (2454 loc) · 121 KB
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
// ************************************************************************ //
// The types declared in this file were generated from data read from the
// WSDL File described below:
// WSDL : http://musteritestws.isisbilisim.com.tr/services/einvoice/ReportInvoiceList.svc?wsdl
// >Import : http://musteritestws.isisbilisim.com.tr/Services/einvoice/ReportInvoiceList.svc?wsdl=wsdl0
// >Import : http://musteritestws.isisbilisim.com.tr/services/einvoice/ReportInvoiceList.svc?wsdl>0
// >Import : http://musteritestws.isisbilisim.com.tr/Services/einvoice/ReportInvoiceList.svc?xsd=xsd0
// >Import : http://musteritestws.isisbilisim.com.tr/Services/einvoice/ReportInvoiceList.svc?xsd=xsd2
// >Import : http://musteritestws.isisbilisim.com.tr/Services/einvoice/ReportInvoiceList.svc?xsd=xsd3
// >Import : http://musteritestws.isisbilisim.com.tr/Services/einvoice/ReportInvoiceList.svc?xsd=xsd4
// >Import : http://musteritestws.isisbilisim.com.tr/Services/einvoice/ReportInvoiceList.svc?xsd=xsd1
// >Import : http://musteritestws.isisbilisim.com.tr/Services/einvoice/ReportInvoiceList.svc?xsd=xsd5
// >Import : http://musteritestws.isisbilisim.com.tr/Services/einvoice/ReportInvoiceList.svc?xsd=xsd6
// Encoding : utf-8
// Version : 1.0
// (12/8/2016 9:33:41 AM - - $Rev: 25127 $)
// ************************************************************************ //
unit ReportInvoiceList;
interface
uses InvokeRegistry, SOAPHTTPClient, Types, XSBuiltIns;
const
IS_OPTN = $0001;
IS_UNBD = $0002;
IS_NLBL = $0004;
IS_REF = $0080;
type
// ************************************************************************ //
// The following types, referred to in the WSDL document are not being represented
// in this file. They are either aliases[@] of other types represented or were referred
// to but never[!] declared in the document. The types from the latter category
// typically map to predefined/known XML or Embarcadero types; however, they could also
// indicate incorrect WSDL documents that failed to declare or import a schema type.
// ************************************************************************ //
// !:string - "http://www.w3.org/2001/XMLSchema"[Gbl]
// !:dateTime - "http://www.w3.org/2001/XMLSchema"[Gbl]
// !:boolean - "http://www.w3.org/2001/XMLSchema"[Gbl]
// !:int - "http://www.w3.org/2001/XMLSchema"[Gbl]
// !:decimal - "http://www.w3.org/2001/XMLSchema"[Gbl]
Extension = class; { "http://isisbilisim.com.tr/data/einvoice"[GblCplx] }
InvoiceExtension = class; { "http://isisbilisim.com.tr/data/einvoice"[GblCplx] }
Extension2 = class; { "http://isisbilisim.com.tr/data/einvoice"[GblElm] }
InvoiceExtension2 = class; { "http://isisbilisim.com.tr/data/einvoice"[GblElm] }
OutboxInvoiceHeader = class; { "http://schemas.datacontract.org/2004/07/ISIS.Einvoice.Framework.Data"[GblCplx] }
InboxInvoiceHeader = class; { "http://schemas.datacontract.org/2004/07/ISIS.Einvoice.Framework.Data"[GblCplx] }
OutboxInvoiceHeader2 = class; { "http://schemas.datacontract.org/2004/07/ISIS.Einvoice.Framework.Data"[GblElm] }
InboxInvoiceHeader2 = class; { "http://schemas.datacontract.org/2004/07/ISIS.Einvoice.Framework.Data"[GblElm] }
Contracts_ReportInvoiceListRequest = class; { "http://isisbilisim.com.tr/services/einvoice"[GblCplx] }
Contracts_OutboundInvoiceListRequest = class; { "http://isisbilisim.com.tr/services/einvoice"[GblCplx] }
Contracts_InboundInvoiceListRequest = class; { "http://isisbilisim.com.tr/services/einvoice"[GblCplx] }
Contracts_OutboundInvoiceListRequest2 = class; { "http://isisbilisim.com.tr/services/einvoice"[GblElm] }
Contracts_ReportInvoiceListRequest2 = class; { "http://isisbilisim.com.tr/services/einvoice"[GblElm] }
Contracts_InboundInvoiceListRequest2 = class; { "http://isisbilisim.com.tr/services/einvoice"[GblElm] }
{$SCOPEDENUMS ON}
{ "http://isisbilisim.com.tr/services"[GblSmpl] }
GlobalEnum_Bool = (ALL, TRUE, FALSE);
{ "http://isisbilisim.com.tr/enums/core"[GblSmpl] }
GlobalEnum_OrderByType = (ASC, DESC);
{ "http://isisbilisim.com.tr/services/einvoice"[GblSmpl] }
Enums_OutboundStatus = (
ALL,
TEMPLATE,
CANCELED,
APPROVED,
ERROR,
COMPLATED,
PROCESSING,
NOTRESPONDED,
REJECTED,
ACCEPTED,
COMPLATEDANDACCEPTED,
CANCELEDORERRORORREJECTED
);
{ "http://isisbilisim.com.tr/services/einvoice"[GblSmpl] }
Enums_InvoiceType = (ALL, COMMERCIAL, BASIC);
{ "http://isisbilisim.com.tr/services/einvoice"[GblSmpl] }
Enums_InboundStatus = (ALL, PROCESSING, WAITING_APPROVAL, NOTRESPONDED, REJECTED, ACCEPTED, COMPLATEDANDACCEPTED, ERRORORREJECTED);
{$SCOPEDENUMS OFF}
ArrayOfstring = array of string; { "http://schemas.microsoft.com/2003/10/Serialization/Arrays"[GblCplx] }
ArrayOfExtension = array of Extension; { "http://isisbilisim.com.tr/data/einvoice"[GblCplx] }
// ************************************************************************ //
// XML : Extension, global, <complexType>
// Namespace : http://isisbilisim.com.tr/data/einvoice
// ************************************************************************ //
Extension = class(TRemotable)
private
FStructure: string;
FStructure_Specified: boolean;
FValuePart1: string;
FValuePart1_Specified: boolean;
FValuePart2: string;
FValuePart2_Specified: boolean;
FValuePart3: string;
FValuePart3_Specified: boolean;
FValuePart4: string;
FValuePart4_Specified: boolean;
procedure SetStructure(Index: Integer; const Astring: string);
function Structure_Specified(Index: Integer): boolean;
procedure SetValuePart1(Index: Integer; const Astring: string);
function ValuePart1_Specified(Index: Integer): boolean;
procedure SetValuePart2(Index: Integer; const Astring: string);
function ValuePart2_Specified(Index: Integer): boolean;
procedure SetValuePart3(Index: Integer; const Astring: string);
function ValuePart3_Specified(Index: Integer): boolean;
procedure SetValuePart4(Index: Integer; const Astring: string);
function ValuePart4_Specified(Index: Integer): boolean;
published
property Structure: string Index (IS_OPTN or IS_NLBL) read FStructure write SetStructure stored Structure_Specified;
property ValuePart1: string Index (IS_OPTN or IS_NLBL) read FValuePart1 write SetValuePart1 stored ValuePart1_Specified;
property ValuePart2: string Index (IS_OPTN or IS_NLBL) read FValuePart2 write SetValuePart2 stored ValuePart2_Specified;
property ValuePart3: string Index (IS_OPTN or IS_NLBL) read FValuePart3 write SetValuePart3 stored ValuePart3_Specified;
property ValuePart4: string Index (IS_OPTN or IS_NLBL) read FValuePart4 write SetValuePart4 stored ValuePart4_Specified;
end;
ArrayOfInvoiceExtension = array of InvoiceExtension; { "http://isisbilisim.com.tr/data/einvoice"[GblCplx] }
// ************************************************************************ //
// XML : InvoiceExtension, global, <complexType>
// Namespace : http://isisbilisim.com.tr/data/einvoice
// ************************************************************************ //
InvoiceExtension = class(Extension)
private
FCreateDate: TXSDateTime;
FCreateDate_Specified: boolean;
FETTN: string;
FETTN_Specified: boolean;
FIsActive: Boolean;
FIsActive_Specified: boolean;
FUpdatedDate: TXSDateTime;
FUpdatedDate_Specified: boolean;
FUserCode: Integer;
FUserCode_Specified: boolean;
procedure SetCreateDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function CreateDate_Specified(Index: Integer): boolean;
procedure SetETTN(Index: Integer; const Astring: string);
function ETTN_Specified(Index: Integer): boolean;
procedure SetIsActive(Index: Integer; const ABoolean: Boolean);
function IsActive_Specified(Index: Integer): boolean;
procedure SetUpdatedDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function UpdatedDate_Specified(Index: Integer): boolean;
procedure SetUserCode(Index: Integer; const AInteger: Integer);
function UserCode_Specified(Index: Integer): boolean;
public
destructor Destroy; override;
published
property CreateDate: TXSDateTime Index (IS_OPTN) read FCreateDate write SetCreateDate stored CreateDate_Specified;
property ETTN: string Index (IS_OPTN or IS_NLBL) read FETTN write SetETTN stored ETTN_Specified;
property IsActive: Boolean Index (IS_OPTN) read FIsActive write SetIsActive stored IsActive_Specified;
property UpdatedDate: TXSDateTime Index (IS_OPTN or IS_NLBL) read FUpdatedDate write SetUpdatedDate stored UpdatedDate_Specified;
property UserCode: Integer Index (IS_OPTN) read FUserCode write SetUserCode stored UserCode_Specified;
end;
// ************************************************************************ //
// XML : Extension, global, <element>
// Namespace : http://isisbilisim.com.tr/data/einvoice
// ************************************************************************ //
Extension2 = class(Extension)
private
published
end;
// ************************************************************************ //
// XML : InvoiceExtension, global, <element>
// Namespace : http://isisbilisim.com.tr/data/einvoice
// ************************************************************************ //
InvoiceExtension2 = class(InvoiceExtension)
private
published
end;
ArrayOfOutboxInvoiceHeader = array of OutboxInvoiceHeader; { "http://schemas.datacontract.org/2004/07/ISIS.Einvoice.Framework.Data"[GblCplx] }
// ************************************************************************ //
// XML : OutboxInvoiceHeader, global, <complexType>
// Namespace : http://schemas.datacontract.org/2004/07/ISIS.Einvoice.Framework.Data
// ************************************************************************ //
OutboxInvoiceHeader = class(TRemotable)
private
FAllowanceCharge_Amount: TXSDecimal;
FAllowanceCharge_Amount_Specified: boolean;
FAllowanceTotalAmount: TXSDecimal;
FAllowanceTotalAmount_Specified: boolean;
FApprovalHieararcyCode: string;
FApprovalHieararcyCode_Specified: boolean;
FCode: Integer;
FCode_Specified: boolean;
FCompanyCode: string;
FCompanyCode_Specified: boolean;
FConnectionSettingCode: string;
FConnectionSettingCode_Specified: boolean;
FCopyIndicator: Boolean;
FCopyIndicator_Specified: boolean;
FCustomizationID: string;
FCustomizationID_Specified: boolean;
FDespatchDocumentReference_ID: string;
FDespatchDocumentReference_ID_Specified: boolean;
FDespatchDocumentReference_IssueDate: TXSDateTime;
FDespatchDocumentReference_IssueDate_Specified: boolean;
FDocumentCurrencyCode: string;
FDocumentCurrencyCode_Specified: boolean;
FDocumentNo: string;
FDocumentNo_Specified: boolean;
FID: string;
FID_Specified: boolean;
FInstanceIdentifier: string;
FInstanceIdentifier_Specified: boolean;
FInvoiceTypeCode: string;
FInvoiceTypeCode_Specified: boolean;
FIssueDate: TXSDateTime;
FIssueDate_Specified: boolean;
FIssueTime: string;
FIssueTime_Specified: boolean;
FJobPositionCode: string;
FJobPositionCode_Specified: boolean;
FLineCountNumeric: Integer;
FLineCountNumeric_Specified: boolean;
FLineExtensionAmount: TXSDecimal;
FLineExtensionAmount_Specified: boolean;
FNote1: string;
FNote1_Specified: boolean;
FNote2: string;
FNote2_Specified: boolean;
FNote3: string;
FNote3_Specified: boolean;
FNote4: string;
FNote4_Specified: boolean;
FNote5: string;
FNote5_Specified: boolean;
FOrderReference_ID: string;
FOrderReference_ID_Specified: boolean;
FOrderReference_IssueDate: TXSDateTime;
FOrderReference_IssueDate_Specified: boolean;
FPayableAmount: TXSDecimal;
FPayableAmount_Specified: boolean;
FProfileID: string;
FProfileID_Specified: boolean;
FReceiver_CityName: string;
FReceiver_CityName_Specified: boolean;
FReceiver_Country: string;
FReceiver_Country_Specified: boolean;
FReceiver_Country_Code: string;
FReceiver_Country_Code_Specified: boolean;
FReceiver_ElectronicMail: string;
FReceiver_ElectronicMail_Specified: boolean;
FReceiver_PartyName: string;
FReceiver_PartyName_Specified: boolean;
FReceiver_PostalZone: string;
FReceiver_PostalZone_Specified: boolean;
FReceiver_TaxScheme: string;
FReceiver_TaxScheme_Specified: boolean;
FReceiver_Telephone: string;
FReceiver_Telephone_Specified: boolean;
FReceiver_VKN: string;
FReceiver_VKN_Specified: boolean;
FReceiver_WebsiteURI: string;
FReceiver_WebsiteURI_Specified: boolean;
FRecordDate: TXSDateTime;
FRecordDate_Specified: boolean;
FReferenceDocumentTypeCode: string;
FReferenceDocumentTypeCode_Specified: boolean;
FStatusMessage: string;
FStatusMessage_Specified: boolean;
FStatusProcessID: Integer;
FStatusProcessID_Specified: boolean;
FSupplier_CityName: string;
FSupplier_CityName_Specified: boolean;
FSupplier_Country: string;
FSupplier_Country_Specified: boolean;
FSupplier_Country_Code: string;
FSupplier_Country_Code_Specified: boolean;
FSupplier_ElectronicMail: string;
FSupplier_ElectronicMail_Specified: boolean;
FSupplier_PartyName: string;
FSupplier_PartyName_Specified: boolean;
FSupplier_PostalZone: string;
FSupplier_PostalZone_Specified: boolean;
FSupplier_TaxScheme: string;
FSupplier_TaxScheme_Specified: boolean;
FSupplier_Telephone: string;
FSupplier_Telephone_Specified: boolean;
FSupplier_VKN: string;
FSupplier_VKN_Specified: boolean;
FSupplier_WebsiteURI: string;
FSupplier_WebsiteURI_Specified: boolean;
FTaxExclusiveAmount: TXSDecimal;
FTaxExclusiveAmount_Specified: boolean;
FTaxInclusiveAmount: TXSDecimal;
FTaxInclusiveAmount_Specified: boolean;
FTaxTotal_TaxAmount: TXSDecimal;
FTaxTotal_TaxAmount_Specified: boolean;
FUBLVersionID: string;
FUBLVersionID_Specified: boolean;
FUUID: string;
FUUID_Specified: boolean;
procedure SetAllowanceCharge_Amount(Index: Integer; const ATXSDecimal: TXSDecimal);
function AllowanceCharge_Amount_Specified(Index: Integer): boolean;
procedure SetAllowanceTotalAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function AllowanceTotalAmount_Specified(Index: Integer): boolean;
procedure SetApprovalHieararcyCode(Index: Integer; const Astring: string);
function ApprovalHieararcyCode_Specified(Index: Integer): boolean;
procedure SetCode(Index: Integer; const AInteger: Integer);
function Code_Specified(Index: Integer): boolean;
procedure SetCompanyCode(Index: Integer; const Astring: string);
function CompanyCode_Specified(Index: Integer): boolean;
procedure SetConnectionSettingCode(Index: Integer; const Astring: string);
function ConnectionSettingCode_Specified(Index: Integer): boolean;
procedure SetCopyIndicator(Index: Integer; const ABoolean: Boolean);
function CopyIndicator_Specified(Index: Integer): boolean;
procedure SetCustomizationID(Index: Integer; const Astring: string);
function CustomizationID_Specified(Index: Integer): boolean;
procedure SetDespatchDocumentReference_ID(Index: Integer; const Astring: string);
function DespatchDocumentReference_ID_Specified(Index: Integer): boolean;
procedure SetDespatchDocumentReference_IssueDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function DespatchDocumentReference_IssueDate_Specified(Index: Integer): boolean;
procedure SetDocumentCurrencyCode(Index: Integer; const Astring: string);
function DocumentCurrencyCode_Specified(Index: Integer): boolean;
procedure SetDocumentNo(Index: Integer; const Astring: string);
function DocumentNo_Specified(Index: Integer): boolean;
procedure SetID(Index: Integer; const Astring: string);
function ID_Specified(Index: Integer): boolean;
procedure SetInstanceIdentifier(Index: Integer; const Astring: string);
function InstanceIdentifier_Specified(Index: Integer): boolean;
procedure SetInvoiceTypeCode(Index: Integer; const Astring: string);
function InvoiceTypeCode_Specified(Index: Integer): boolean;
procedure SetIssueDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function IssueDate_Specified(Index: Integer): boolean;
procedure SetIssueTime(Index: Integer; const Astring: string);
function IssueTime_Specified(Index: Integer): boolean;
procedure SetJobPositionCode(Index: Integer; const Astring: string);
function JobPositionCode_Specified(Index: Integer): boolean;
procedure SetLineCountNumeric(Index: Integer; const AInteger: Integer);
function LineCountNumeric_Specified(Index: Integer): boolean;
procedure SetLineExtensionAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function LineExtensionAmount_Specified(Index: Integer): boolean;
procedure SetNote1(Index: Integer; const Astring: string);
function Note1_Specified(Index: Integer): boolean;
procedure SetNote2(Index: Integer; const Astring: string);
function Note2_Specified(Index: Integer): boolean;
procedure SetNote3(Index: Integer; const Astring: string);
function Note3_Specified(Index: Integer): boolean;
procedure SetNote4(Index: Integer; const Astring: string);
function Note4_Specified(Index: Integer): boolean;
procedure SetNote5(Index: Integer; const Astring: string);
function Note5_Specified(Index: Integer): boolean;
procedure SetOrderReference_ID(Index: Integer; const Astring: string);
function OrderReference_ID_Specified(Index: Integer): boolean;
procedure SetOrderReference_IssueDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function OrderReference_IssueDate_Specified(Index: Integer): boolean;
procedure SetPayableAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function PayableAmount_Specified(Index: Integer): boolean;
procedure SetProfileID(Index: Integer; const Astring: string);
function ProfileID_Specified(Index: Integer): boolean;
procedure SetReceiver_CityName(Index: Integer; const Astring: string);
function Receiver_CityName_Specified(Index: Integer): boolean;
procedure SetReceiver_Country(Index: Integer; const Astring: string);
function Receiver_Country_Specified(Index: Integer): boolean;
procedure SetReceiver_Country_Code(Index: Integer; const Astring: string);
function Receiver_Country_Code_Specified(Index: Integer): boolean;
procedure SetReceiver_ElectronicMail(Index: Integer; const Astring: string);
function Receiver_ElectronicMail_Specified(Index: Integer): boolean;
procedure SetReceiver_PartyName(Index: Integer; const Astring: string);
function Receiver_PartyName_Specified(Index: Integer): boolean;
procedure SetReceiver_PostalZone(Index: Integer; const Astring: string);
function Receiver_PostalZone_Specified(Index: Integer): boolean;
procedure SetReceiver_TaxScheme(Index: Integer; const Astring: string);
function Receiver_TaxScheme_Specified(Index: Integer): boolean;
procedure SetReceiver_Telephone(Index: Integer; const Astring: string);
function Receiver_Telephone_Specified(Index: Integer): boolean;
procedure SetReceiver_VKN(Index: Integer; const Astring: string);
function Receiver_VKN_Specified(Index: Integer): boolean;
procedure SetReceiver_WebsiteURI(Index: Integer; const Astring: string);
function Receiver_WebsiteURI_Specified(Index: Integer): boolean;
procedure SetRecordDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function RecordDate_Specified(Index: Integer): boolean;
procedure SetReferenceDocumentTypeCode(Index: Integer; const Astring: string);
function ReferenceDocumentTypeCode_Specified(Index: Integer): boolean;
procedure SetStatusMessage(Index: Integer; const Astring: string);
function StatusMessage_Specified(Index: Integer): boolean;
procedure SetStatusProcessID(Index: Integer; const AInteger: Integer);
function StatusProcessID_Specified(Index: Integer): boolean;
procedure SetSupplier_CityName(Index: Integer; const Astring: string);
function Supplier_CityName_Specified(Index: Integer): boolean;
procedure SetSupplier_Country(Index: Integer; const Astring: string);
function Supplier_Country_Specified(Index: Integer): boolean;
procedure SetSupplier_Country_Code(Index: Integer; const Astring: string);
function Supplier_Country_Code_Specified(Index: Integer): boolean;
procedure SetSupplier_ElectronicMail(Index: Integer; const Astring: string);
function Supplier_ElectronicMail_Specified(Index: Integer): boolean;
procedure SetSupplier_PartyName(Index: Integer; const Astring: string);
function Supplier_PartyName_Specified(Index: Integer): boolean;
procedure SetSupplier_PostalZone(Index: Integer; const Astring: string);
function Supplier_PostalZone_Specified(Index: Integer): boolean;
procedure SetSupplier_TaxScheme(Index: Integer; const Astring: string);
function Supplier_TaxScheme_Specified(Index: Integer): boolean;
procedure SetSupplier_Telephone(Index: Integer; const Astring: string);
function Supplier_Telephone_Specified(Index: Integer): boolean;
procedure SetSupplier_VKN(Index: Integer; const Astring: string);
function Supplier_VKN_Specified(Index: Integer): boolean;
procedure SetSupplier_WebsiteURI(Index: Integer; const Astring: string);
function Supplier_WebsiteURI_Specified(Index: Integer): boolean;
procedure SetTaxExclusiveAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function TaxExclusiveAmount_Specified(Index: Integer): boolean;
procedure SetTaxInclusiveAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function TaxInclusiveAmount_Specified(Index: Integer): boolean;
procedure SetTaxTotal_TaxAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function TaxTotal_TaxAmount_Specified(Index: Integer): boolean;
procedure SetUBLVersionID(Index: Integer; const Astring: string);
function UBLVersionID_Specified(Index: Integer): boolean;
procedure SetUUID(Index: Integer; const Astring: string);
function UUID_Specified(Index: Integer): boolean;
public
destructor Destroy; override;
published
property AllowanceCharge_Amount: TXSDecimal Index (IS_OPTN) read FAllowanceCharge_Amount write SetAllowanceCharge_Amount stored AllowanceCharge_Amount_Specified;
property AllowanceTotalAmount: TXSDecimal Index (IS_OPTN) read FAllowanceTotalAmount write SetAllowanceTotalAmount stored AllowanceTotalAmount_Specified;
property ApprovalHieararcyCode: string Index (IS_OPTN or IS_NLBL) read FApprovalHieararcyCode write SetApprovalHieararcyCode stored ApprovalHieararcyCode_Specified;
property Code: Integer Index (IS_OPTN) read FCode write SetCode stored Code_Specified;
property CompanyCode: string Index (IS_OPTN or IS_NLBL) read FCompanyCode write SetCompanyCode stored CompanyCode_Specified;
property ConnectionSettingCode: string Index (IS_OPTN or IS_NLBL) read FConnectionSettingCode write SetConnectionSettingCode stored ConnectionSettingCode_Specified;
property CopyIndicator: Boolean Index (IS_OPTN) read FCopyIndicator write SetCopyIndicator stored CopyIndicator_Specified;
property CustomizationID: string Index (IS_OPTN or IS_NLBL) read FCustomizationID write SetCustomizationID stored CustomizationID_Specified;
property DespatchDocumentReference_ID: string Index (IS_OPTN or IS_NLBL) read FDespatchDocumentReference_ID write SetDespatchDocumentReference_ID stored DespatchDocumentReference_ID_Specified;
property DespatchDocumentReference_IssueDate: TXSDateTime Index (IS_OPTN) read FDespatchDocumentReference_IssueDate write SetDespatchDocumentReference_IssueDate stored DespatchDocumentReference_IssueDate_Specified;
property DocumentCurrencyCode: string Index (IS_OPTN or IS_NLBL) read FDocumentCurrencyCode write SetDocumentCurrencyCode stored DocumentCurrencyCode_Specified;
property DocumentNo: string Index (IS_OPTN or IS_NLBL) read FDocumentNo write SetDocumentNo stored DocumentNo_Specified;
property ID: string Index (IS_OPTN or IS_NLBL) read FID write SetID stored ID_Specified;
property InstanceIdentifier: string Index (IS_OPTN or IS_NLBL) read FInstanceIdentifier write SetInstanceIdentifier stored InstanceIdentifier_Specified;
property InvoiceTypeCode: string Index (IS_OPTN or IS_NLBL) read FInvoiceTypeCode write SetInvoiceTypeCode stored InvoiceTypeCode_Specified;
property IssueDate: TXSDateTime Index (IS_OPTN) read FIssueDate write SetIssueDate stored IssueDate_Specified;
property IssueTime: string Index (IS_OPTN or IS_NLBL) read FIssueTime write SetIssueTime stored IssueTime_Specified;
property JobPositionCode: string Index (IS_OPTN or IS_NLBL) read FJobPositionCode write SetJobPositionCode stored JobPositionCode_Specified;
property LineCountNumeric: Integer Index (IS_OPTN) read FLineCountNumeric write SetLineCountNumeric stored LineCountNumeric_Specified;
property LineExtensionAmount: TXSDecimal Index (IS_OPTN) read FLineExtensionAmount write SetLineExtensionAmount stored LineExtensionAmount_Specified;
property Note1: string Index (IS_OPTN or IS_NLBL) read FNote1 write SetNote1 stored Note1_Specified;
property Note2: string Index (IS_OPTN or IS_NLBL) read FNote2 write SetNote2 stored Note2_Specified;
property Note3: string Index (IS_OPTN or IS_NLBL) read FNote3 write SetNote3 stored Note3_Specified;
property Note4: string Index (IS_OPTN or IS_NLBL) read FNote4 write SetNote4 stored Note4_Specified;
property Note5: string Index (IS_OPTN or IS_NLBL) read FNote5 write SetNote5 stored Note5_Specified;
property OrderReference_ID: string Index (IS_OPTN or IS_NLBL) read FOrderReference_ID write SetOrderReference_ID stored OrderReference_ID_Specified;
property OrderReference_IssueDate: TXSDateTime Index (IS_OPTN) read FOrderReference_IssueDate write SetOrderReference_IssueDate stored OrderReference_IssueDate_Specified;
property PayableAmount: TXSDecimal Index (IS_OPTN) read FPayableAmount write SetPayableAmount stored PayableAmount_Specified;
property ProfileID: string Index (IS_OPTN or IS_NLBL) read FProfileID write SetProfileID stored ProfileID_Specified;
property Receiver_CityName: string Index (IS_OPTN or IS_NLBL) read FReceiver_CityName write SetReceiver_CityName stored Receiver_CityName_Specified;
property Receiver_Country: string Index (IS_OPTN or IS_NLBL) read FReceiver_Country write SetReceiver_Country stored Receiver_Country_Specified;
property Receiver_Country_Code: string Index (IS_OPTN or IS_NLBL) read FReceiver_Country_Code write SetReceiver_Country_Code stored Receiver_Country_Code_Specified;
property Receiver_ElectronicMail: string Index (IS_OPTN or IS_NLBL) read FReceiver_ElectronicMail write SetReceiver_ElectronicMail stored Receiver_ElectronicMail_Specified;
property Receiver_PartyName: string Index (IS_OPTN or IS_NLBL) read FReceiver_PartyName write SetReceiver_PartyName stored Receiver_PartyName_Specified;
property Receiver_PostalZone: string Index (IS_OPTN or IS_NLBL) read FReceiver_PostalZone write SetReceiver_PostalZone stored Receiver_PostalZone_Specified;
property Receiver_TaxScheme: string Index (IS_OPTN or IS_NLBL) read FReceiver_TaxScheme write SetReceiver_TaxScheme stored Receiver_TaxScheme_Specified;
property Receiver_Telephone: string Index (IS_OPTN or IS_NLBL) read FReceiver_Telephone write SetReceiver_Telephone stored Receiver_Telephone_Specified;
property Receiver_VKN: string Index (IS_OPTN or IS_NLBL) read FReceiver_VKN write SetReceiver_VKN stored Receiver_VKN_Specified;
property Receiver_WebsiteURI: string Index (IS_OPTN or IS_NLBL) read FReceiver_WebsiteURI write SetReceiver_WebsiteURI stored Receiver_WebsiteURI_Specified;
property RecordDate: TXSDateTime Index (IS_OPTN) read FRecordDate write SetRecordDate stored RecordDate_Specified;
property ReferenceDocumentTypeCode: string Index (IS_OPTN or IS_NLBL) read FReferenceDocumentTypeCode write SetReferenceDocumentTypeCode stored ReferenceDocumentTypeCode_Specified;
property StatusMessage: string Index (IS_OPTN or IS_NLBL) read FStatusMessage write SetStatusMessage stored StatusMessage_Specified;
property StatusProcessID: Integer Index (IS_OPTN) read FStatusProcessID write SetStatusProcessID stored StatusProcessID_Specified;
property Supplier_CityName: string Index (IS_OPTN or IS_NLBL) read FSupplier_CityName write SetSupplier_CityName stored Supplier_CityName_Specified;
property Supplier_Country: string Index (IS_OPTN or IS_NLBL) read FSupplier_Country write SetSupplier_Country stored Supplier_Country_Specified;
property Supplier_Country_Code: string Index (IS_OPTN or IS_NLBL) read FSupplier_Country_Code write SetSupplier_Country_Code stored Supplier_Country_Code_Specified;
property Supplier_ElectronicMail: string Index (IS_OPTN or IS_NLBL) read FSupplier_ElectronicMail write SetSupplier_ElectronicMail stored Supplier_ElectronicMail_Specified;
property Supplier_PartyName: string Index (IS_OPTN or IS_NLBL) read FSupplier_PartyName write SetSupplier_PartyName stored Supplier_PartyName_Specified;
property Supplier_PostalZone: string Index (IS_OPTN or IS_NLBL) read FSupplier_PostalZone write SetSupplier_PostalZone stored Supplier_PostalZone_Specified;
property Supplier_TaxScheme: string Index (IS_OPTN or IS_NLBL) read FSupplier_TaxScheme write SetSupplier_TaxScheme stored Supplier_TaxScheme_Specified;
property Supplier_Telephone: string Index (IS_OPTN or IS_NLBL) read FSupplier_Telephone write SetSupplier_Telephone stored Supplier_Telephone_Specified;
property Supplier_VKN: string Index (IS_OPTN or IS_NLBL) read FSupplier_VKN write SetSupplier_VKN stored Supplier_VKN_Specified;
property Supplier_WebsiteURI: string Index (IS_OPTN or IS_NLBL) read FSupplier_WebsiteURI write SetSupplier_WebsiteURI stored Supplier_WebsiteURI_Specified;
property TaxExclusiveAmount: TXSDecimal Index (IS_OPTN) read FTaxExclusiveAmount write SetTaxExclusiveAmount stored TaxExclusiveAmount_Specified;
property TaxInclusiveAmount: TXSDecimal Index (IS_OPTN) read FTaxInclusiveAmount write SetTaxInclusiveAmount stored TaxInclusiveAmount_Specified;
property TaxTotal_TaxAmount: TXSDecimal Index (IS_OPTN) read FTaxTotal_TaxAmount write SetTaxTotal_TaxAmount stored TaxTotal_TaxAmount_Specified;
property UBLVersionID: string Index (IS_OPTN or IS_NLBL) read FUBLVersionID write SetUBLVersionID stored UBLVersionID_Specified;
property UUID: string Index (IS_OPTN or IS_NLBL) read FUUID write SetUUID stored UUID_Specified;
end;
ArrayOfInboxInvoiceHeader = array of InboxInvoiceHeader; { "http://schemas.datacontract.org/2004/07/ISIS.Einvoice.Framework.Data"[GblCplx] }
// ************************************************************************ //
// XML : InboxInvoiceHeader, global, <complexType>
// Namespace : http://schemas.datacontract.org/2004/07/ISIS.Einvoice.Framework.Data
// ************************************************************************ //
InboxInvoiceHeader = class(TRemotable)
private
FAllowanceCharge_Amount: TXSDecimal;
FAllowanceCharge_Amount_Specified: boolean;
FAllowanceTotalAmount: TXSDecimal;
FAllowanceTotalAmount_Specified: boolean;
FApprovalHierarchyCode: string;
FApprovalHierarchyCode_Specified: boolean;
FCode: Integer;
FCode_Specified: boolean;
FCommercialDateTime: TXSDateTime;
FCommercialDateTime_Specified: boolean;
FCommercialEnvelopeUUID: string;
FCommercialEnvelopeUUID_Specified: boolean;
FCommercialResponse: string;
FCommercialResponse_Specified: boolean;
FCommercialResponseUUID: string;
FCommercialResponseUUID_Specified: boolean;
FCompanyCode: string;
FCompanyCode_Specified: boolean;
FConnectionSettingCode: string;
FConnectionSettingCode_Specified: boolean;
FCopyIndicator: Boolean;
FCopyIndicator_Specified: boolean;
FCustomizationID: string;
FCustomizationID_Specified: boolean;
FDescription: string;
FDescription_Specified: boolean;
FDespatchDocumentReference_ID: string;
FDespatchDocumentReference_ID_Specified: boolean;
FDespatchDocumentReference_IssueDate: TXSDateTime;
FDespatchDocumentReference_IssueDate_Specified: boolean;
FDocumentCurrencyCode: string;
FDocumentCurrencyCode_Specified: boolean;
FDocumentNo: string;
FDocumentNo_Specified: boolean;
FERPInvoiceType: string;
FERPInvoiceType_Specified: boolean;
FETTN: string;
FETTN_Specified: boolean;
FID: string;
FID_Specified: boolean;
FInstanceIdentifier: string;
FInstanceIdentifier_Specified: boolean;
FInvoiceTypeCode: string;
FInvoiceTypeCode_Specified: boolean;
FIsApproved: Boolean;
FIsApproved_Specified: boolean;
FIssueDate: TXSDateTime;
FIssueDate_Specified: boolean;
FIssueTime: string;
FIssueTime_Specified: boolean;
FJobPositionCode: string;
FJobPositionCode_Specified: boolean;
FLineCountNumeric: Integer;
FLineCountNumeric_Specified: boolean;
FLineExtensionAmount: TXSDecimal;
FLineExtensionAmount_Specified: boolean;
FNote1: string;
FNote1_Specified: boolean;
FNote2: string;
FNote2_Specified: boolean;
FNote3: string;
FNote3_Specified: boolean;
FNote4: string;
FNote4_Specified: boolean;
FNote5: string;
FNote5_Specified: boolean;
FOrderReference_ID: string;
FOrderReference_ID_Specified: boolean;
FOrderReference_IssueDate: TXSDateTime;
FOrderReference_IssueDate_Specified: boolean;
FPayableAmount: TXSDecimal;
FPayableAmount_Specified: boolean;
FProfileID: string;
FProfileID_Specified: boolean;
FReceiverAlias: string;
FReceiverAlias_Specified: boolean;
FReceiver_CityName: string;
FReceiver_CityName_Specified: boolean;
FReceiver_Country: string;
FReceiver_Country_Specified: boolean;
FReceiver_Country_Code: string;
FReceiver_Country_Code_Specified: boolean;
FReceiver_ElectronicMail: string;
FReceiver_ElectronicMail_Specified: boolean;
FReceiver_PartyName: string;
FReceiver_PartyName_Specified: boolean;
FReceiver_PostalZone: string;
FReceiver_PostalZone_Specified: boolean;
FReceiver_TaxScheme: string;
FReceiver_TaxScheme_Specified: boolean;
FReceiver_Telephone: string;
FReceiver_Telephone_Specified: boolean;
FReceiver_VKN: string;
FReceiver_VKN_Specified: boolean;
FReceiver_WebsiteURI: string;
FReceiver_WebsiteURI_Specified: boolean;
FRecordDate: TXSDateTime;
FRecordDate_Specified: boolean;
FReferenceDocumentTypeCode: string;
FReferenceDocumentTypeCode_Specified: boolean;
FReturnInvoiceID: string;
FReturnInvoiceID_Specified: boolean;
FSenderAlias: string;
FSenderAlias_Specified: boolean;
FStatusMessage: string;
FStatusMessage_Specified: boolean;
FStatusProcessID: Integer;
FStatusProcessID_Specified: boolean;
FSupplier_CityName: string;
FSupplier_CityName_Specified: boolean;
FSupplier_Country: string;
FSupplier_Country_Specified: boolean;
FSupplier_Country_Code: string;
FSupplier_Country_Code_Specified: boolean;
FSupplier_ElectronicMail: string;
FSupplier_ElectronicMail_Specified: boolean;
FSupplier_PartyName: string;
FSupplier_PartyName_Specified: boolean;
FSupplier_PostalZone: string;
FSupplier_PostalZone_Specified: boolean;
FSupplier_TaxScheme: string;
FSupplier_TaxScheme_Specified: boolean;
FSupplier_Telephone: string;
FSupplier_Telephone_Specified: boolean;
FSupplier_VKN: string;
FSupplier_VKN_Specified: boolean;
FSupplier_WebsiteURI: string;
FSupplier_WebsiteURI_Specified: boolean;
FTaxExclusiveAmount: TXSDecimal;
FTaxExclusiveAmount_Specified: boolean;
FTaxInclusiveAmount: TXSDecimal;
FTaxInclusiveAmount_Specified: boolean;
FTaxTotal_TaxAmount: TXSDecimal;
FTaxTotal_TaxAmount_Specified: boolean;
FUBLVersionID: string;
FUBLVersionID_Specified: boolean;
FUUID: string;
FUUID_Specified: boolean;
FUpdatedAt: TXSDateTime;
FUpdatedAt_Specified: boolean;
procedure SetAllowanceCharge_Amount(Index: Integer; const ATXSDecimal: TXSDecimal);
function AllowanceCharge_Amount_Specified(Index: Integer): boolean;
procedure SetAllowanceTotalAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function AllowanceTotalAmount_Specified(Index: Integer): boolean;
procedure SetApprovalHierarchyCode(Index: Integer; const Astring: string);
function ApprovalHierarchyCode_Specified(Index: Integer): boolean;
procedure SetCode(Index: Integer; const AInteger: Integer);
function Code_Specified(Index: Integer): boolean;
procedure SetCommercialDateTime(Index: Integer; const ATXSDateTime: TXSDateTime);
function CommercialDateTime_Specified(Index: Integer): boolean;
procedure SetCommercialEnvelopeUUID(Index: Integer; const Astring: string);
function CommercialEnvelopeUUID_Specified(Index: Integer): boolean;
procedure SetCommercialResponse(Index: Integer; const Astring: string);
function CommercialResponse_Specified(Index: Integer): boolean;
procedure SetCommercialResponseUUID(Index: Integer; const Astring: string);
function CommercialResponseUUID_Specified(Index: Integer): boolean;
procedure SetCompanyCode(Index: Integer; const Astring: string);
function CompanyCode_Specified(Index: Integer): boolean;
procedure SetConnectionSettingCode(Index: Integer; const Astring: string);
function ConnectionSettingCode_Specified(Index: Integer): boolean;
procedure SetCopyIndicator(Index: Integer; const ABoolean: Boolean);
function CopyIndicator_Specified(Index: Integer): boolean;
procedure SetCustomizationID(Index: Integer; const Astring: string);
function CustomizationID_Specified(Index: Integer): boolean;
procedure SetDescription(Index: Integer; const Astring: string);
function Description_Specified(Index: Integer): boolean;
procedure SetDespatchDocumentReference_ID(Index: Integer; const Astring: string);
function DespatchDocumentReference_ID_Specified(Index: Integer): boolean;
procedure SetDespatchDocumentReference_IssueDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function DespatchDocumentReference_IssueDate_Specified(Index: Integer): boolean;
procedure SetDocumentCurrencyCode(Index: Integer; const Astring: string);
function DocumentCurrencyCode_Specified(Index: Integer): boolean;
procedure SetDocumentNo(Index: Integer; const Astring: string);
function DocumentNo_Specified(Index: Integer): boolean;
procedure SetERPInvoiceType(Index: Integer; const Astring: string);
function ERPInvoiceType_Specified(Index: Integer): boolean;
procedure SetETTN(Index: Integer; const Astring: string);
function ETTN_Specified(Index: Integer): boolean;
procedure SetID(Index: Integer; const Astring: string);
function ID_Specified(Index: Integer): boolean;
procedure SetInstanceIdentifier(Index: Integer; const Astring: string);
function InstanceIdentifier_Specified(Index: Integer): boolean;
procedure SetInvoiceTypeCode(Index: Integer; const Astring: string);
function InvoiceTypeCode_Specified(Index: Integer): boolean;
procedure SetIsApproved(Index: Integer; const ABoolean: Boolean);
function IsApproved_Specified(Index: Integer): boolean;
procedure SetIssueDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function IssueDate_Specified(Index: Integer): boolean;
procedure SetIssueTime(Index: Integer; const Astring: string);
function IssueTime_Specified(Index: Integer): boolean;
procedure SetJobPositionCode(Index: Integer; const Astring: string);
function JobPositionCode_Specified(Index: Integer): boolean;
procedure SetLineCountNumeric(Index: Integer; const AInteger: Integer);
function LineCountNumeric_Specified(Index: Integer): boolean;
procedure SetLineExtensionAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function LineExtensionAmount_Specified(Index: Integer): boolean;
procedure SetNote1(Index: Integer; const Astring: string);
function Note1_Specified(Index: Integer): boolean;
procedure SetNote2(Index: Integer; const Astring: string);
function Note2_Specified(Index: Integer): boolean;
procedure SetNote3(Index: Integer; const Astring: string);
function Note3_Specified(Index: Integer): boolean;
procedure SetNote4(Index: Integer; const Astring: string);
function Note4_Specified(Index: Integer): boolean;
procedure SetNote5(Index: Integer; const Astring: string);
function Note5_Specified(Index: Integer): boolean;
procedure SetOrderReference_ID(Index: Integer; const Astring: string);
function OrderReference_ID_Specified(Index: Integer): boolean;
procedure SetOrderReference_IssueDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function OrderReference_IssueDate_Specified(Index: Integer): boolean;
procedure SetPayableAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function PayableAmount_Specified(Index: Integer): boolean;
procedure SetProfileID(Index: Integer; const Astring: string);
function ProfileID_Specified(Index: Integer): boolean;
procedure SetReceiverAlias(Index: Integer; const Astring: string);
function ReceiverAlias_Specified(Index: Integer): boolean;
procedure SetReceiver_CityName(Index: Integer; const Astring: string);
function Receiver_CityName_Specified(Index: Integer): boolean;
procedure SetReceiver_Country(Index: Integer; const Astring: string);
function Receiver_Country_Specified(Index: Integer): boolean;
procedure SetReceiver_Country_Code(Index: Integer; const Astring: string);
function Receiver_Country_Code_Specified(Index: Integer): boolean;
procedure SetReceiver_ElectronicMail(Index: Integer; const Astring: string);
function Receiver_ElectronicMail_Specified(Index: Integer): boolean;
procedure SetReceiver_PartyName(Index: Integer; const Astring: string);
function Receiver_PartyName_Specified(Index: Integer): boolean;
procedure SetReceiver_PostalZone(Index: Integer; const Astring: string);
function Receiver_PostalZone_Specified(Index: Integer): boolean;
procedure SetReceiver_TaxScheme(Index: Integer; const Astring: string);
function Receiver_TaxScheme_Specified(Index: Integer): boolean;
procedure SetReceiver_Telephone(Index: Integer; const Astring: string);
function Receiver_Telephone_Specified(Index: Integer): boolean;
procedure SetReceiver_VKN(Index: Integer; const Astring: string);
function Receiver_VKN_Specified(Index: Integer): boolean;
procedure SetReceiver_WebsiteURI(Index: Integer; const Astring: string);
function Receiver_WebsiteURI_Specified(Index: Integer): boolean;
procedure SetRecordDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function RecordDate_Specified(Index: Integer): boolean;
procedure SetReferenceDocumentTypeCode(Index: Integer; const Astring: string);
function ReferenceDocumentTypeCode_Specified(Index: Integer): boolean;
procedure SetReturnInvoiceID(Index: Integer; const Astring: string);
function ReturnInvoiceID_Specified(Index: Integer): boolean;
procedure SetSenderAlias(Index: Integer; const Astring: string);
function SenderAlias_Specified(Index: Integer): boolean;
procedure SetStatusMessage(Index: Integer; const Astring: string);
function StatusMessage_Specified(Index: Integer): boolean;
procedure SetStatusProcessID(Index: Integer; const AInteger: Integer);
function StatusProcessID_Specified(Index: Integer): boolean;
procedure SetSupplier_CityName(Index: Integer; const Astring: string);
function Supplier_CityName_Specified(Index: Integer): boolean;
procedure SetSupplier_Country(Index: Integer; const Astring: string);
function Supplier_Country_Specified(Index: Integer): boolean;
procedure SetSupplier_Country_Code(Index: Integer; const Astring: string);
function Supplier_Country_Code_Specified(Index: Integer): boolean;
procedure SetSupplier_ElectronicMail(Index: Integer; const Astring: string);
function Supplier_ElectronicMail_Specified(Index: Integer): boolean;
procedure SetSupplier_PartyName(Index: Integer; const Astring: string);
function Supplier_PartyName_Specified(Index: Integer): boolean;
procedure SetSupplier_PostalZone(Index: Integer; const Astring: string);
function Supplier_PostalZone_Specified(Index: Integer): boolean;
procedure SetSupplier_TaxScheme(Index: Integer; const Astring: string);
function Supplier_TaxScheme_Specified(Index: Integer): boolean;
procedure SetSupplier_Telephone(Index: Integer; const Astring: string);
function Supplier_Telephone_Specified(Index: Integer): boolean;
procedure SetSupplier_VKN(Index: Integer; const Astring: string);
function Supplier_VKN_Specified(Index: Integer): boolean;
procedure SetSupplier_WebsiteURI(Index: Integer; const Astring: string);
function Supplier_WebsiteURI_Specified(Index: Integer): boolean;
procedure SetTaxExclusiveAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function TaxExclusiveAmount_Specified(Index: Integer): boolean;
procedure SetTaxInclusiveAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function TaxInclusiveAmount_Specified(Index: Integer): boolean;
procedure SetTaxTotal_TaxAmount(Index: Integer; const ATXSDecimal: TXSDecimal);
function TaxTotal_TaxAmount_Specified(Index: Integer): boolean;
procedure SetUBLVersionID(Index: Integer; const Astring: string);
function UBLVersionID_Specified(Index: Integer): boolean;
procedure SetUUID(Index: Integer; const Astring: string);
function UUID_Specified(Index: Integer): boolean;
procedure SetUpdatedAt(Index: Integer; const ATXSDateTime: TXSDateTime);
function UpdatedAt_Specified(Index: Integer): boolean;
public
destructor Destroy; override;
published
property AllowanceCharge_Amount: TXSDecimal Index (IS_OPTN) read FAllowanceCharge_Amount write SetAllowanceCharge_Amount stored AllowanceCharge_Amount_Specified;
property AllowanceTotalAmount: TXSDecimal Index (IS_OPTN) read FAllowanceTotalAmount write SetAllowanceTotalAmount stored AllowanceTotalAmount_Specified;
property ApprovalHierarchyCode: string Index (IS_OPTN or IS_NLBL) read FApprovalHierarchyCode write SetApprovalHierarchyCode stored ApprovalHierarchyCode_Specified;
property Code: Integer Index (IS_OPTN) read FCode write SetCode stored Code_Specified;
property CommercialDateTime: TXSDateTime Index (IS_OPTN or IS_NLBL) read FCommercialDateTime write SetCommercialDateTime stored CommercialDateTime_Specified;
property CommercialEnvelopeUUID: string Index (IS_OPTN or IS_NLBL) read FCommercialEnvelopeUUID write SetCommercialEnvelopeUUID stored CommercialEnvelopeUUID_Specified;
property CommercialResponse: string Index (IS_OPTN or IS_NLBL) read FCommercialResponse write SetCommercialResponse stored CommercialResponse_Specified;
property CommercialResponseUUID: string Index (IS_OPTN or IS_NLBL) read FCommercialResponseUUID write SetCommercialResponseUUID stored CommercialResponseUUID_Specified;
property CompanyCode: string Index (IS_OPTN or IS_NLBL) read FCompanyCode write SetCompanyCode stored CompanyCode_Specified;
property ConnectionSettingCode: string Index (IS_OPTN or IS_NLBL) read FConnectionSettingCode write SetConnectionSettingCode stored ConnectionSettingCode_Specified;
property CopyIndicator: Boolean Index (IS_OPTN) read FCopyIndicator write SetCopyIndicator stored CopyIndicator_Specified;
property CustomizationID: string Index (IS_OPTN or IS_NLBL) read FCustomizationID write SetCustomizationID stored CustomizationID_Specified;
property Description: string Index (IS_OPTN or IS_NLBL) read FDescription write SetDescription stored Description_Specified;
property DespatchDocumentReference_ID: string Index (IS_OPTN or IS_NLBL) read FDespatchDocumentReference_ID write SetDespatchDocumentReference_ID stored DespatchDocumentReference_ID_Specified;
property DespatchDocumentReference_IssueDate: TXSDateTime Index (IS_OPTN) read FDespatchDocumentReference_IssueDate write SetDespatchDocumentReference_IssueDate stored DespatchDocumentReference_IssueDate_Specified;
property DocumentCurrencyCode: string Index (IS_OPTN or IS_NLBL) read FDocumentCurrencyCode write SetDocumentCurrencyCode stored DocumentCurrencyCode_Specified;
property DocumentNo: string Index (IS_OPTN or IS_NLBL) read FDocumentNo write SetDocumentNo stored DocumentNo_Specified;
property ERPInvoiceType: string Index (IS_OPTN or IS_NLBL) read FERPInvoiceType write SetERPInvoiceType stored ERPInvoiceType_Specified;
property ETTN: string Index (IS_OPTN or IS_NLBL) read FETTN write SetETTN stored ETTN_Specified;
property ID: string Index (IS_OPTN or IS_NLBL) read FID write SetID stored ID_Specified;
property InstanceIdentifier: string Index (IS_OPTN or IS_NLBL) read FInstanceIdentifier write SetInstanceIdentifier stored InstanceIdentifier_Specified;
property InvoiceTypeCode: string Index (IS_OPTN or IS_NLBL) read FInvoiceTypeCode write SetInvoiceTypeCode stored InvoiceTypeCode_Specified;
property IsApproved: Boolean Index (IS_OPTN) read FIsApproved write SetIsApproved stored IsApproved_Specified;
property IssueDate: TXSDateTime Index (IS_OPTN) read FIssueDate write SetIssueDate stored IssueDate_Specified;
property IssueTime: string Index (IS_OPTN or IS_NLBL) read FIssueTime write SetIssueTime stored IssueTime_Specified;
property JobPositionCode: string Index (IS_OPTN or IS_NLBL) read FJobPositionCode write SetJobPositionCode stored JobPositionCode_Specified;
property LineCountNumeric: Integer Index (IS_OPTN) read FLineCountNumeric write SetLineCountNumeric stored LineCountNumeric_Specified;
property LineExtensionAmount: TXSDecimal Index (IS_OPTN) read FLineExtensionAmount write SetLineExtensionAmount stored LineExtensionAmount_Specified;
property Note1: string Index (IS_OPTN or IS_NLBL) read FNote1 write SetNote1 stored Note1_Specified;
property Note2: string Index (IS_OPTN or IS_NLBL) read FNote2 write SetNote2 stored Note2_Specified;
property Note3: string Index (IS_OPTN or IS_NLBL) read FNote3 write SetNote3 stored Note3_Specified;
property Note4: string Index (IS_OPTN or IS_NLBL) read FNote4 write SetNote4 stored Note4_Specified;
property Note5: string Index (IS_OPTN or IS_NLBL) read FNote5 write SetNote5 stored Note5_Specified;
property OrderReference_ID: string Index (IS_OPTN or IS_NLBL) read FOrderReference_ID write SetOrderReference_ID stored OrderReference_ID_Specified;
property OrderReference_IssueDate: TXSDateTime Index (IS_OPTN) read FOrderReference_IssueDate write SetOrderReference_IssueDate stored OrderReference_IssueDate_Specified;
property PayableAmount: TXSDecimal Index (IS_OPTN) read FPayableAmount write SetPayableAmount stored PayableAmount_Specified;
property ProfileID: string Index (IS_OPTN or IS_NLBL) read FProfileID write SetProfileID stored ProfileID_Specified;
property ReceiverAlias: string Index (IS_OPTN or IS_NLBL) read FReceiverAlias write SetReceiverAlias stored ReceiverAlias_Specified;
property Receiver_CityName: string Index (IS_OPTN or IS_NLBL) read FReceiver_CityName write SetReceiver_CityName stored Receiver_CityName_Specified;
property Receiver_Country: string Index (IS_OPTN or IS_NLBL) read FReceiver_Country write SetReceiver_Country stored Receiver_Country_Specified;
property Receiver_Country_Code: string Index (IS_OPTN or IS_NLBL) read FReceiver_Country_Code write SetReceiver_Country_Code stored Receiver_Country_Code_Specified;
property Receiver_ElectronicMail: string Index (IS_OPTN or IS_NLBL) read FReceiver_ElectronicMail write SetReceiver_ElectronicMail stored Receiver_ElectronicMail_Specified;
property Receiver_PartyName: string Index (IS_OPTN or IS_NLBL) read FReceiver_PartyName write SetReceiver_PartyName stored Receiver_PartyName_Specified;
property Receiver_PostalZone: string Index (IS_OPTN or IS_NLBL) read FReceiver_PostalZone write SetReceiver_PostalZone stored Receiver_PostalZone_Specified;
property Receiver_TaxScheme: string Index (IS_OPTN or IS_NLBL) read FReceiver_TaxScheme write SetReceiver_TaxScheme stored Receiver_TaxScheme_Specified;
property Receiver_Telephone: string Index (IS_OPTN or IS_NLBL) read FReceiver_Telephone write SetReceiver_Telephone stored Receiver_Telephone_Specified;
property Receiver_VKN: string Index (IS_OPTN or IS_NLBL) read FReceiver_VKN write SetReceiver_VKN stored Receiver_VKN_Specified;
property Receiver_WebsiteURI: string Index (IS_OPTN or IS_NLBL) read FReceiver_WebsiteURI write SetReceiver_WebsiteURI stored Receiver_WebsiteURI_Specified;
property RecordDate: TXSDateTime Index (IS_OPTN) read FRecordDate write SetRecordDate stored RecordDate_Specified;
property ReferenceDocumentTypeCode: string Index (IS_OPTN or IS_NLBL) read FReferenceDocumentTypeCode write SetReferenceDocumentTypeCode stored ReferenceDocumentTypeCode_Specified;
property ReturnInvoiceID: string Index (IS_OPTN or IS_NLBL) read FReturnInvoiceID write SetReturnInvoiceID stored ReturnInvoiceID_Specified;
property SenderAlias: string Index (IS_OPTN or IS_NLBL) read FSenderAlias write SetSenderAlias stored SenderAlias_Specified;
property StatusMessage: string Index (IS_OPTN or IS_NLBL) read FStatusMessage write SetStatusMessage stored StatusMessage_Specified;
property StatusProcessID: Integer Index (IS_OPTN) read FStatusProcessID write SetStatusProcessID stored StatusProcessID_Specified;
property Supplier_CityName: string Index (IS_OPTN or IS_NLBL) read FSupplier_CityName write SetSupplier_CityName stored Supplier_CityName_Specified;
property Supplier_Country: string Index (IS_OPTN or IS_NLBL) read FSupplier_Country write SetSupplier_Country stored Supplier_Country_Specified;
property Supplier_Country_Code: string Index (IS_OPTN or IS_NLBL) read FSupplier_Country_Code write SetSupplier_Country_Code stored Supplier_Country_Code_Specified;
property Supplier_ElectronicMail: string Index (IS_OPTN or IS_NLBL) read FSupplier_ElectronicMail write SetSupplier_ElectronicMail stored Supplier_ElectronicMail_Specified;
property Supplier_PartyName: string Index (IS_OPTN or IS_NLBL) read FSupplier_PartyName write SetSupplier_PartyName stored Supplier_PartyName_Specified;
property Supplier_PostalZone: string Index (IS_OPTN or IS_NLBL) read FSupplier_PostalZone write SetSupplier_PostalZone stored Supplier_PostalZone_Specified;
property Supplier_TaxScheme: string Index (IS_OPTN or IS_NLBL) read FSupplier_TaxScheme write SetSupplier_TaxScheme stored Supplier_TaxScheme_Specified;
property Supplier_Telephone: string Index (IS_OPTN or IS_NLBL) read FSupplier_Telephone write SetSupplier_Telephone stored Supplier_Telephone_Specified;
property Supplier_VKN: string Index (IS_OPTN or IS_NLBL) read FSupplier_VKN write SetSupplier_VKN stored Supplier_VKN_Specified;
property Supplier_WebsiteURI: string Index (IS_OPTN or IS_NLBL) read FSupplier_WebsiteURI write SetSupplier_WebsiteURI stored Supplier_WebsiteURI_Specified;
property TaxExclusiveAmount: TXSDecimal Index (IS_OPTN) read FTaxExclusiveAmount write SetTaxExclusiveAmount stored TaxExclusiveAmount_Specified;
property TaxInclusiveAmount: TXSDecimal Index (IS_OPTN) read FTaxInclusiveAmount write SetTaxInclusiveAmount stored TaxInclusiveAmount_Specified;
property TaxTotal_TaxAmount: TXSDecimal Index (IS_OPTN) read FTaxTotal_TaxAmount write SetTaxTotal_TaxAmount stored TaxTotal_TaxAmount_Specified;
property UBLVersionID: string Index (IS_OPTN or IS_NLBL) read FUBLVersionID write SetUBLVersionID stored UBLVersionID_Specified;
property UUID: string Index (IS_OPTN or IS_NLBL) read FUUID write SetUUID stored UUID_Specified;
property UpdatedAt: TXSDateTime Index (IS_OPTN) read FUpdatedAt write SetUpdatedAt stored UpdatedAt_Specified;
end;
// ************************************************************************ //
// XML : OutboxInvoiceHeader, global, <element>
// Namespace : http://schemas.datacontract.org/2004/07/ISIS.Einvoice.Framework.Data
// ************************************************************************ //
OutboxInvoiceHeader2 = class(OutboxInvoiceHeader)
private
published
end;
// ************************************************************************ //
// XML : InboxInvoiceHeader, global, <element>
// Namespace : http://schemas.datacontract.org/2004/07/ISIS.Einvoice.Framework.Data
// ************************************************************************ //
InboxInvoiceHeader2 = class(InboxInvoiceHeader)
private
published
end;
// ************************************************************************ //
// XML : Contracts.ReportInvoiceListRequest, global, <complexType>
// Namespace : http://isisbilisim.com.tr/services/einvoice
// ************************************************************************ //
Contracts_ReportInvoiceListRequest = class(TRemotable)
private
FBeginInvoiceDate: TXSDateTime;
FBeginInvoiceDate_Specified: boolean;
FBeginRecordDateTime: TXSDateTime;
FBeginUpdateDate: TXSDateTime;
FBeginUpdateDate_Specified: boolean;
FCustomerVKN: ArrayOfstring;
FCustomerVKN_Specified: boolean;
FEndInvoiceDate: TXSDateTime;
FEndInvoiceDate_Specified: boolean;
FEndRecordDateTime: TXSDateTime;
FEndUpdateDate: TXSDateTime;
FEndUpdateDate_Specified: boolean;
FExcludedExtensions: ArrayOfExtension;
FExcludedExtensions_Specified: boolean;
FID: ArrayOfstring;
FID_Specified: boolean;
FIncludedExtensions: ArrayOfExtension;
FIncludedExtensions_Specified: boolean;
FIsReaded: GlobalEnum_Bool;
FIsUblDownLoaded: GlobalEnum_Bool;
FOrderBy: GlobalEnum_OrderByType;
FOrderBy_Specified: boolean;
FProfile: Enums_InvoiceType;
FRecordCount: Integer;
FVKN: string;
procedure SetBeginInvoiceDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function BeginInvoiceDate_Specified(Index: Integer): boolean;
procedure SetBeginUpdateDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function BeginUpdateDate_Specified(Index: Integer): boolean;
procedure SetCustomerVKN(Index: Integer; const AArrayOfstring: ArrayOfstring);
function CustomerVKN_Specified(Index: Integer): boolean;
procedure SetEndInvoiceDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function EndInvoiceDate_Specified(Index: Integer): boolean;
procedure SetEndUpdateDate(Index: Integer; const ATXSDateTime: TXSDateTime);
function EndUpdateDate_Specified(Index: Integer): boolean;
procedure SetExcludedExtensions(Index: Integer; const AArrayOfExtension: ArrayOfExtension);
function ExcludedExtensions_Specified(Index: Integer): boolean;
procedure SetID(Index: Integer; const AArrayOfstring: ArrayOfstring);
function ID_Specified(Index: Integer): boolean;
procedure SetIncludedExtensions(Index: Integer; const AArrayOfExtension: ArrayOfExtension);
function IncludedExtensions_Specified(Index: Integer): boolean;
procedure SetOrderBy(Index: Integer; const AGlobalEnum_OrderByType: GlobalEnum_OrderByType);
function OrderBy_Specified(Index: Integer): boolean;
public
destructor Destroy; override;
published
property BeginInvoiceDate: TXSDateTime Index (IS_OPTN or IS_NLBL) read FBeginInvoiceDate write SetBeginInvoiceDate stored BeginInvoiceDate_Specified;
property BeginRecordDateTime: TXSDateTime read FBeginRecordDateTime write FBeginRecordDateTime;
property BeginUpdateDate: TXSDateTime Index (IS_OPTN or IS_NLBL) read FBeginUpdateDate write SetBeginUpdateDate stored BeginUpdateDate_Specified;
property CustomerVKN: ArrayOfstring Index (IS_OPTN or IS_NLBL) read FCustomerVKN write SetCustomerVKN stored CustomerVKN_Specified;
property EndInvoiceDate: TXSDateTime Index (IS_OPTN or IS_NLBL) read FEndInvoiceDate write SetEndInvoiceDate stored EndInvoiceDate_Specified;
property EndRecordDateTime: TXSDateTime read FEndRecordDateTime write FEndRecordDateTime;
property EndUpdateDate: TXSDateTime Index (IS_OPTN or IS_NLBL) read FEndUpdateDate write SetEndUpdateDate stored EndUpdateDate_Specified;
property ExcludedExtensions: ArrayOfExtension Index (IS_OPTN or IS_NLBL) read FExcludedExtensions write SetExcludedExtensions stored ExcludedExtensions_Specified;
property ID: ArrayOfstring Index (IS_OPTN or IS_NLBL) read FID write SetID stored ID_Specified;
property IncludedExtensions: ArrayOfExtension Index (IS_OPTN or IS_NLBL) read FIncludedExtensions write SetIncludedExtensions stored IncludedExtensions_Specified;
property IsReaded: GlobalEnum_Bool read FIsReaded write FIsReaded;
property IsUblDownLoaded: GlobalEnum_Bool read FIsUblDownLoaded write FIsUblDownLoaded;
property OrderBy: GlobalEnum_OrderByType Index (IS_OPTN) read FOrderBy write SetOrderBy stored OrderBy_Specified;
property Profile: Enums_InvoiceType read FProfile write FProfile;
property RecordCount: Integer read FRecordCount write FRecordCount;
property VKN: string Index (IS_NLBL) read FVKN write FVKN;
end;
// ************************************************************************ //
// XML : Contracts.OutboundInvoiceListRequest, global, <complexType>
// Namespace : http://isisbilisim.com.tr/services/einvoice
// ************************************************************************ //
Contracts_OutboundInvoiceListRequest = class(Contracts_ReportInvoiceListRequest)
private
FStatus: Enums_OutboundStatus;
FUUIDList: ArrayOfstring;
FUUIDList_Specified: boolean;
procedure SetUUIDList(Index: Integer; const AArrayOfstring: ArrayOfstring);
function UUIDList_Specified(Index: Integer): boolean;
published
property Status: Enums_OutboundStatus read FStatus write FStatus;
property UUIDList: ArrayOfstring Index (IS_OPTN or IS_NLBL) read FUUIDList write SetUUIDList stored UUIDList_Specified;
end;
// ************************************************************************ //
// XML : Contracts.InboundInvoiceListRequest, global, <complexType>
// Namespace : http://isisbilisim.com.tr/services/einvoice
// ************************************************************************ //
Contracts_InboundInvoiceListRequest = class(Contracts_ReportInvoiceListRequest)
private
FIsIsisTrDownLoaded: GlobalEnum_Bool;
FIsProcessed: GlobalEnum_Bool;
FStatus: Enums_InboundStatus;
FUUIDList: ArrayOfstring;
FUUIDList_Specified: boolean;
procedure SetUUIDList(Index: Integer; const AArrayOfstring: ArrayOfstring);
function UUIDList_Specified(Index: Integer): boolean;
published
property IsIsisTrDownLoaded: GlobalEnum_Bool read FIsIsisTrDownLoaded write FIsIsisTrDownLoaded;
property IsProcessed: GlobalEnum_Bool read FIsProcessed write FIsProcessed;
property Status: Enums_InboundStatus read FStatus write FStatus;
property UUIDList: ArrayOfstring Index (IS_OPTN or IS_NLBL) read FUUIDList write SetUUIDList stored UUIDList_Specified;
end;
// ************************************************************************ //
// XML : Contracts.OutboundInvoiceListRequest, global, <element>
// Namespace : http://isisbilisim.com.tr/services/einvoice
// ************************************************************************ //
Contracts_OutboundInvoiceListRequest2 = class(Contracts_OutboundInvoiceListRequest)