-
Notifications
You must be signed in to change notification settings - Fork 169
/
EdiFact01.cs
290 lines (214 loc) · 7.79 KB
/
EdiFact01.cs
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
using indice.Edi.Serialization;
using indice.Edi.Utilities;
namespace indice.Edi.Tests.Models.EdiFact01;
public struct DTMPeriod
{
public readonly DateTime From;
public readonly DateTime To;
public DTMPeriod(DateTime from, DateTime to) {
From = from;
To = to;
}
public static DTMPeriod Parse(string text) {
var textFrom = text?.Substring(0, 12);
var textTo = text?.Substring(12, 12);
return new DTMPeriod(
textFrom.ParseEdiDate("yyyyMMddHHmm"),
textTo.ParseEdiDate("yyyyMMddHHmm")
);
}
public override string ToString() {
return $"{From:yyyyMMddHHmm}{To:yyyyMMddHHmm}";
}
public static implicit operator string(DTMPeriod value) {
return value.ToString();
}
// With a cast operator from string --> MyClass or MyStruct
// we can convert any edi component value to our custom implementation.
public static explicit operator DTMPeriod(string value) {
return DTMPeriod.Parse(value);
}
}
[EdiElement, EdiPath("DTM/0")]
public class DTM
{
[EdiValue("9(3)", Path = "DTM/0/0")]
public int ID { get; set; }
[EdiValue("X(12)", Path = "DTM/0/1", Format = "yyyyMMddHHmm")]
public DateTime DateTime { get; set; }
[EdiValue("9(3)", Path = "DTM/0/2")]
public int Code { get; set; }
public override string ToString() {
return DateTime.ToString();
}
}
[EdiElement, EdiPath("DTM/0"), EdiCondition("ZZZ", Path = "DTM/0/0")]
public class UTCOffset
{
[EdiValue("X(3)", Path = "DTM/0/0")]
public int? ID { get; set; }
[EdiValue("9(1)", Path = "DTM/0/1")]
public int Hours { get; set; }
[EdiValue("9(3)", Path = "DTM/0/2")]
public int Code { get; set; }
public override string ToString() {
return Hours.ToString();
}
}
[EdiElement, EdiPath("DTM/0"), EdiCondition("324", Path = "DTM/0/0")]
public class Period
{
[EdiValue("9(3)", Path = "DTM/0/0")]
public int ID { get; set; }
[EdiValue("9(24)", Path = "DTM/0/1")]
public DTMPeriod Date { get; set; }
[EdiValue("9(3)", Path = "DTM/0/2")]
public int Code { get; set; }
public override string ToString() {
return $"{Date.From} | {Date.To}";
}
}
[EdiElement, EdiPath("LIN/2")]
public class ItemNumber
{
[EdiValue("X(1)", Path = "LIN/2/0")]
public string Number { get; set; }
[EdiValue("9(3)", Path = "LIN/2/1")]
public string Type { get; set; }
[EdiValue("9(3)", Path = "LIN/2/2")]
public string CodeListQualifier { get; set; }
[EdiValue("9(3)", Path = "LIN/2/3")]
public string CodeListResponsibleAgency { get; set; }
public override string ToString() {
return $"{Number} {Type} {CodeListQualifier}";
}
}
[EdiSegment, EdiPath("NAD")]
public class NAD
{
[EdiValue("X(3)", Path = "NAD/0/0")]
public string PartyQualifier { get; set; }
[EdiValue("X(35)", Path = "NAD/1/0")]
public string PartyId { get; set; }
[EdiValue("X(3)", Path = "NAD/1/2")]
public string ResponsibleAgency { get; set; }
}
public class Interchange
{
[EdiValue("X(4)", Mandatory = true, Path = "UNB/0")]
public string SyntaxIdentifier { get; set; }
[EdiValue("9(1)", Path = "UNB/0/1", Mandatory = true)]
public int SyntaxVersion { get; set; }
[EdiValue("X(35)", Path = "UNB/1/0", Mandatory = true)]
public string SenderId { get; set; }
[EdiValue("X(4)", Path = "UNB/1/1", Mandatory = true)]
public string PartnerIDCodeQualifier { get; set; }
[EdiValue("X(14)", Path = "UNB/1/2", Mandatory = false)]
public string ReverseRoutingAddress { get; set; }
[EdiValue("X(35)", Path = "UNB/2/0", Mandatory = true)]
public string RecipientId { get; set; }
[EdiValue("X(4)", Path = "UNB/2/1", Mandatory = true)]
public string ParterIDCode { get; set; }
[EdiValue("X(14)", Path = "UNB/2/2", Mandatory = false)]
public string RoutingAddress { get; set; }
[EdiValue("9(6)", Path = "UNB/3/0", Format = "ddMMyy", Description = "Date of Preparation")]
[EdiValue("9(4)", Path = "UNB/3/1", Format = "HHmm", Description = "Time or Prep")]
public DateTime DateOfPreparation { get; set; }
[EdiValue("X(14)", Path = "UNB/4", Mandatory = true)]
public string ControlRef { get; set; }
[EdiValue("9(1)", Path = "UNB/8", Mandatory = false)]
public int AckRequest { get; set; }
public Quote QuoteMessage { get; set; }
[EdiValue("X(1)", Path = "UNZ/0")]
public int TrailerControlCount { get; set; }
[EdiValue("X(14)", Path = "UNZ/1")]
public string TrailerControlReference { get; set; }
}
[EdiMessage]
public class Quote
{
[EdiValue("X(14)", Path = "UNH/0/0")]
public string MessageRef { get; set; }
[EdiValue("X(6)", Path = "UNH/1/0")]
public string MessageType { get; set; }
[EdiValue("X(3)", Path = "UNH/1/1")]
public string Version { get; set; }
[EdiValue("X(3)", Path = "UNH/1/2")]
public string ReleaseNumber { get; set; }
[EdiValue("X(2)", Path = "UNH/1/3")]
public string ControllingAgency { get; set; }
[EdiValue("X(6)", Path = "UNH/1/4")]
public string AssociationAssignedCode { get; set; }
[EdiValue("X(35)", Path = "UNH/2/0")]
public string CommonAccessRef { get; set; }
[EdiValue("X(3)", Path = "BGM/0/0")]
public string MessageName { get; set; }
[EdiValue("X(35)", Path = "BGM/1/0")]
public string DocumentNumber { get; set; }
[EdiValue("X(3)", Path = "BGM/2/0", Mandatory = false)]
public string MessageFunction { get; set; }
[EdiValue("X(3)", Path = "BGM/3/0")]
public string ResponseType { get; set; }
[EdiCondition("137", Path = "DTM/0/0")]
public DTM MessageDate { get; set; }
[EdiCondition("163", Path = "DTM/0/0")]
public DTM ProcessingStartDate { get; set; }
[EdiCondition("164", Path = "DTM/0/0")]
public DTM ProcessingEndDate { get; set; }
public UTCOffset UTCOffset { get; set; }
[EdiValue("X(3)", Path = "CUX/0/0")]
public string CurrencyQualifier { get; set; }
[EdiValue("X(3)", Path = "CUX/0/1")]
public string ISOCurrency { get; set; }
public List<NAD> NAD { get; set; }
[EdiValue("X(3)", Path = "LOC/0/0")]
public string LocationQualifier { get; set; }
[EdiValue("X(3)", Path = "LOC/1/0")]
public string LocationId { get; set; }
[EdiValue("X(3)", Path = "LOC/1/2")]
public string LocationResponsibleAgency { get; set; }
public List<LineItem> Lines { get; set; }
[EdiValue("X(1)", Path = "UNS/0/0")]
public char? UNS { get; set; }
[EdiValue("X(1)", Path = "UNT/0")]
public int TrailerMessageSegmentsCount { get; set; }
[EdiValue("X(14)", Path = "UNT/1")]
public string TrailerMessageReference { get; set; }
}
[EdiSegment, EdiSegmentGroup("LIN", SequenceEnd = "UNS")]
public class LineItem
{
[EdiValue("X(1)", Path = "LIN/0/0")]
public int LineNumber { get; set; }
[EdiValue("9(3)", Path = "LIN/1/0")]
public string Code { get; set; }
public ItemNumber NumberIdentification { get; set; }
public Period Period { get; set; }
public List<PriceDetails> Prices { get; set; }
}
[EdiSegment, EdiSegmentGroup("PRI")]
public class PriceDetails
{
public Price Price { get; set; }
public Range Range { get; set; }
}
[EdiElement, EdiPath("PRI/0")]
public class Price
{
[EdiValue("X(3)", Path = "PRI/0/0")]
public string Code { get; set; }
[EdiValue("X(15)", Path = "PRI/0/1")]
public decimal? Amount { get; set; }
[EdiValue("X(3)", Path = "PRI/0/2")]
public string Type { get; set; }
}
[EdiSegment, EdiPath("RNG")]
public class Range
{
[EdiValue("X(3)", Path = "RNG/0/0")]
public string MeasurementUnitCode { get; set; }
[EdiValue("X(18)", Path = "RNG/1/0")]
public decimal? Minimum { get; set; }
[EdiValue("X(18)", Path = "RNG/1/1")]
public decimal? Maximum { get; set; }
}