-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathModel.Declarations.pas.~39~
554 lines (535 loc) · 19.7 KB
/
Model.Declarations.pas.~39~
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
unit Model.Declarations;
interface
uses
Data.DB,
System.Generics.Collections,
Support.Attributes,
System.Classes,
Support.LanguageDictionary;
type
[Table('CurrencyType')]
TCurrencyType = class
private
FCurrencyId : Integer;
FCurrencyCode : string;
FCurrencyName : string;
public
[Column('CurrencyId', [cpPrimaryKey, cpNotNull, cpAutoGenerated], 0, 0, 0)]
property CurrencyId: Integer read FCurrencyId write FCurrencyId;
[Column([cpRequired, cpNotNull], 5, 0, 0)]
property CurrencyCode: string read FCurrencyCode write FCurrencyCode;
[Column([], 50, 0, 0)]
property CurrencyName: string read FCurrencyName write FCurrencyName;
end;
[Table('CurrencyDailyRate')]
TCurrencyDaily = class
private
FCurrencyDailyRateId : Integer;
FCurrencyDate : TDate;
FCurrencyTypeId : integer;
FBuyingRate : double;
FSellingRate : double;
public
[Column('CurrencyDailyId', [cpRequired, cpPrimaryKey, cpNotNull, cpAutoGenerated], 0, 0, 0)]
property CurrencyDailyRateId: Integer read FCurrencyDailyRateId write FCurrencyDailyRateId;
[Column]
property CurrencyDate: TDate read FCurrencyDate write FCurrencyDate;
[Column]
property CurrencyTypeId: integer read FCurrencyTypeId write FCurrencyTypeId;
[Column]
property BuyingRate: double read FBuyingRate write FBuyingRate;
[Column]
property SellingRate: double read FSellingRate write FSellingRate;
end;
[Table('Customer')]
TCustomer = class
private
FCustomerId : Integer;
FCustomerName : String;
FAddressLine1: string;
FAddressLine2: string;
FAddressLine3: string;
FCity: string;
FCountry: string;
FContactPerson: string;
FPhone: string;
FFax: string;
FContactEMail: string;
FCurrencyTypeId: integer;
FTotalDebit: double;
FTotalCredit: double;
FBalance: double;
FInBlackList: boolean;
FIsActive: boolean;
public
[Column('CustomerId', [cpRequired, cpPrimaryKey, cpNotNull, cpAutoGenerated], 0, 0, 0)]
property CustomerId: Integer read FCustomerId write FCustomerId;
[Column]
property CustomerName: String read FCustomerName write FCustomerName;
[Column]
property AddressLine1: string read FAddressLine1 write FAddressLine1;
[Column]
property AddressLine2: string read FAddressLine2 write FAddressLine2;
[Column]
property AddressLine3: string read FAddressLine3 write FAddressLine3;
[Column]
property City: string read FCity write FCity;
[Column]
property Country: string read FCountry write FCountry;
[Column]
property ContactPerson: string read FContactPerson write FContactPerson;
[Column]
property Phone: string read FPhone write FPhone;
[Column]
property Fax: string read FFax write FFax;
[Column]
property ContactEMail: string read FContactEMail write FContactEMail;
[Column]
property CurrencyTypeId: integer read FCurrencyTypeId write FCurrencyTypeId;
[Column]
property TotalDebit: double read FTotalDebit write FTotalDebit;
[Column]
property TotalCredit: double read FTotalCredit write FTotalCredit;
[Column]
property Balance: double read FBalance write FBalance;
[Column]
property InBlackList: boolean read FInBlackList write FInBlackList;
[Column]
property IsActive: boolean read FIsActive write FIsActive;
end;
[Table('Supplier', '')]
TSupplier = class
private
FSupplierId : Integer;
FSupplierName : String;
FAddressLine1: string;
FAddressLine2: string;
FAddressLine3: string;
FCity: string;
FCountry: string;
FContactPerson: string;
FPhone: string;
FFax: string;
FContactEMail: string;
FCurrencyTypeId: integer;
FTotalDebit: double;
FTotalCredit: double;
FBalance: double;
FInBlackList: boolean;
FIsActive: boolean;
public
[Column('SupplierId', [cpRequired, cpPrimaryKey, cpNotNull, cpAutoGenerated], 0, 0, 0)]
property SupplierId: Integer read FSupplierId write FSupplierId;
[Column]
property SupplierName: String read FSupplierName write FSupplierName;
[Column]
property AddressLine1: string read FAddressLine1 write FAddressLine1;
[Column]
property AddressLine2: string read FAddressLine2 write FAddressLine2;
[Column]
property AddressLine3: string read FAddressLine3 write FAddressLine3;
[Column]
property City: string read FCity write FCity;
[Column]
property Country: string read FCountry write FCountry;
[Column]
property ContactPerson: string read FContactPerson write FContactPerson;
[Column]
property Phone: string read FPhone write FPhone;
[Column]
property Fax: string read FFax write FFax;
[Column]
property ContactEMail: string read FContactEMail write FContactEMail;
[Column]
property CurrencyTypeId: integer read FCurrencyTypeId write FCurrencyTypeId;
[Column]
property TotalDebit: double read FTotalDebit write FTotalDebit;
[Column]
property TotalCredit: double read FTotalCredit write FTotalCredit;
[Column]
property Balance: double read FBalance write FBalance;
[Column]
property InBlackList: boolean read FInBlackList write FInBlackList;
[Column]
property IsActive: boolean read FIsActive write FIsActive;
end;
[Table('InventoryGroup', '')]
TInventoryGroup = class
private
FInventoryGroupId: integer;
FInventoryGroupName: string;
public
[Column('InventoryGroupId', [cpRequired, cpPrimaryKey, cpNotNull, cpAutoGenerated], 0, 0, 0)]
property InventoryGroupId: integer read FInventoryGroupId write FInventoryGroupId;
[Column]
property InventoryGroupName: string read FInventoryGroupName write FInventoryGroupName;
end;
[Table('Inventory', '')]
TInventory = class
private
FInventoryId: integer;
FInventoryGroupId: integer;
FMainSupplierId: integer;
FInventoryName: string;
FSpecCode: string;
FStoragePlace: string;
FPictureFileName: string;
FMeasurements: string;
FCurrencyTypeId: integer;
FBuyingPrice: double;
FSellingPrice: double;
FVatPercentage: double;
FTotalIncomingQtty: double;
FTotalOutgoingQtty: double;
FTotalIncomingAmount: double;
FTotalOutgoingAmount: double;
FOtvAmount: double;
FUnitDesc: string;
public
[Column('InventoryId', [cpRequired, cpPrimaryKey, cpNotNull, cpAutoGenerated], 0, 0, 0)]
property InventoryId: integer read FInventoryId write FInventoryId;
[Column]
property InventoryGroupId: integer read FInventoryGroupId write FInventoryGroupId;
[Column]
property MainSupplierId: integer read FMainSupplierId write FMainSupplierId;
[Column]
property InventoryName: string read FInventoryName write FInventoryName;
[Column]
property SpecCode: string read FSpecCode write FSpecCode;
[Column]
property StoragePlace: string read FStoragePlace write FStoragePlace;
[Column]
property PictureFileName: string read FPictureFileName write FPictureFileName;
[Column]
property Measurements: string read FMeasurements write FMeasurements;
[Column]
property CurrencyTypeId: integer read FCurrencyTypeId write FCurrencyTypeId;
[Column]
property BuyingPrice: double read FBuyingPrice write FBuyingPrice;
[Column]
property SellingPrice: double read FSellingPrice write FSellingPrice;
[Column]
property VatPercentage: double read FVatPercentage write FVatPercentage;
[Column]
property TotalIncomingQtty: double read FTotalIncomingQtty write FTotalIncomingQtty;
[Column]
property TotalOutgoingQtty: double read FTotalOutgoingQtty write FTotalOutgoingQtty;
[Column]
property TotalIncomingAmount: double read FTotalIncomingAmount write FTotalIncomingAmount;
[Column]
property TotalOutgoingAmount: double read FTotalOutgoingAmount write FTotalOutgoingAmount;
[Column]
property OtvAmount: double read FOtvAmount write FOtvAmount;
[Column]
property UnitDesc: string read FUnitDesc write FUnitDesc;
end;
[Table('PurchaseInvoiceHeader', '')]
TPurchaseInvoiceHeader = class
private
FPurchaseInvoiceHeaderId: integer;
FInvoiceDate: TDate;
FSupplierId: integer;
FSpecCode: string;
FInvDescription: string;
FCurrencyTypeId: integer;
FCurrencyRate: double;
FTotalAmount: double;
FVatPercentage1: double;
FVatAmount1: double;
FVatPercentage2: double;
FVatAmount2: double;
FVatPercentage3: double;
FVatAmount3: double;
FTotalOtvAmount: double;
FDueDate: integer;
FPaid: boolean;
public
[Column('PurchaseInvoiceHeaderId', [cpRequired, cpPrimaryKey, cpNotNull], 0, 0, 0)]
property PurchaseInvoiceHeaderId: integer read FPurchaseInvoiceHeaderId write FPurchaseInvoiceHeaderId;
[Column]
property InvoiceDate: TDate read FInvoiceDate write FInvoiceDate;
[Column]
property SupplierId: integer read FSupplierId write FSupplierId;
[Column]
property SpecCode: string read FSpecCode write FSpecCode;
[Column]
property InvDescription: string read FInvDescription write FInvDescription;
[Column]
property CurrencyTypeId: integer read FCurrencyTypeId write FCurrencyTypeId;
[Column]
property CurrencyRate: double read FCurrencyRate write FCurrencyRate;
[Column]
property TotalAmount: double read FTotalAmount write FTotalAmount;
[Column]
property VatPercentage1: double read FVatPercentage1 write FVatPercentage1;
[Column]
property VatAmount1: double read FVatAmount1 write FVatAmount1;
[Column]
property VatPercentage2: double read FVatPercentage2 write FVatPercentage2;
[Column]
property VatAmount2: double read FVatAmount2 write FVatAmount2;
[Column]
property VatPercentage3: double read FVatPercentage3 write FVatPercentage3;
[Column]
property VatAmount3: double read FVatAmount3 write FVatAmount3;
[Column]
property TotalOtvAmount: double read FTotalOtvAmount write FTotalOtvAmount;
[Column]
property DueDate: integer read FDueDate write FDueDate;
[Column]
property Paid: boolean read FPaid write FPaid;
end;
[Table('PurchaseInvoiceDetail', '')]
TPurchaseInvoiceDetail = class
private
FPurchaseInvoiceDetailId: integer;
FPurchaseInvoiceHeaderId: integer;
FInventoryId: integer;
FQuantity: double;
FUnitPrice: double;
FVatPercentage: double;
FVatAmount: double;
FOtvAmount: double;
FTotalAmount: double;
FSpecCode: string;
FLineDescription: string;
FInvoiceDate: TDateTime;
FSupplierId: integer;
FCurrencyTypeId: integer;
FCurrencyRate: double;
public
[Column('PurchaseInvoiceDetailId', [cpRequired, cpPrimaryKey, cpNotNull, cpAutoGenerated], 0, 0, 0)]
property PurchaseInvoiceDetailId: integer read FPurchaseInvoiceDetailId write FPurchaseInvoiceDetailId;
[Column]
property PurchaseInvoiceHeaderId: integer read FPurchaseInvoiceHeaderId write FPurchaseInvoiceHeaderId;
[Column]
property InventoryId: integer read FInventoryId write FInventoryId;
[Column]
property Quantity: double read FQuantity write FQuantity;
[Column]
property UnitPrice: double read FUnitPrice write FUnitPrice;
[Column]
property VatPercentage: double read FVatPercentage write FVatPercentage;
[Column]
property VatAmount: double read FVatAmount write FVatAmount;
[Column]
property OtvAmount: double read FOtvAmount write FOtvAmount;
[Column]
property TotalAmount: double read FTotalAmount write FTotalAmount;
[Column]
property SpecCode: string read FSpecCode write FSpecCode;
[Column]
property LineDescription: string read FLineDescription write FLineDescription;
[Column]
property InvoiceDate: TDateTime read FInvoiceDate write FInvoiceDate;
[Column]
property SupplierId: integer read FSupplierId write FSupplierId;
[Column]
property CurrencyTypeId: integer read FCurrencyTypeId write FCurrencyTypeId;
[Column]
property CurrencyRate: double read FCurrencyRate write FCurrencyRate;
end;
[Table('SalesInvoiceHeader', '')]
TSalesInvoiceHeader = class
private
FSalesInvoiceHeaderId: integer;
FCustomerId: integer;
FSpecCode: string;
FInvDescription: string;
FCurrencyTypeId: integer;
FCurrencyRate: double;
FTotalAmount: double;
FVatPercentage1: double;
FVatAmount1: double;
FVatPercentage2: double;
FVatAmount2: double;
FVatPercentage3: double;
FVatAmount3: double;
FTotalOtvAmount: double;
FDueDate: integer;
FPaid: boolean;
FDeliveryAddress1: string;
FDeliveryAddress2: string;
FDeliveryAddress3: string;
FDeliveryCity: string;
FDeliveryCountry: string;
FDeliveryPostCode: string;
public
[Column('PurchaseInvoiceHeaderId', [cpRequired, cpPrimaryKey, cpNotNull], 0, 0, 0)]
property SalesInvoiceHeaderId: integer read FSalesInvoiceHeaderId write FSalesInvoiceHeaderId;
[Column]
property CustomerId: integer read FCustomerId write FCustomerId;
[Column]
property SpecCode: string read FSpecCode write FSpecCode;
[Column]
property InvDescription: string read FInvDescription write FInvDescription;
[Column]
property CurrencyTypeId: integer read FCurrencyTypeId write FCurrencyTypeId;
[Column]
property CurrencyRate: double read FCurrencyRate write FCurrencyRate;
[Column]
property TotalAmount: double read FTotalAmount write FTotalAmount;
[Column]
property VatPercentage1: double read FVatPercentage1 write FVatPercentage1;
[Column]
property VatAmount1: double read FVatAmount1 write FVatAmount1;
[Column]
property VatPercentage2: double read FVatPercentage2 write FVatPercentage2;
[Column]
property VatAmount2: double read FVatAmount2 write FVatAmount2;
[Column]
property VatPercentage3: double read FVatPercentage3 write FVatPercentage3;
[Column]
property VatAmount3: double read FVatAmount3 write FVatAmount3;
[Column]
property TotalOtvAmount: double read FTotalOtvAmount write FTotalOtvAmount;
[Column]
property DueDate: integer read FDueDate write FDueDate;
[Column]
property Paid: boolean read FPaid write FPaid;
[Column]
property DeliveryAddress1: string read FDeliveryAddress1 write FDeliveryAddress1;
[Column]
property DeliveryAddress2: string read FDeliveryAddress2 write FDeliveryAddress2;
[Column]
property DeliveryAddress3: string read FDeliveryAddress3 write FDeliveryAddress3;
[Column]
property DeliveryCity: string read FDeliveryCity write FDeliveryCity;
[Column]
property DeliveryCountry: string read FDeliveryCountry write FDeliveryCountry;
[Column]
property DeliveryPostCode: string read FDeliveryPostCode write FDeliveryPostCode;
end;
[Table('SalesInvoiceDetail', '')]
TSalesInvoiceDetail = class
private
FSalesInvoiceDetailId: integer;
FSalesInvoiceHeaderId: integer;
FInventoryId: integer;
FQuantity: double;
FUnitPrice: double;
FVatPercentage: double;
FVatAmount: double;
FOtvAmount: double;
FTotalAmount: double;
FSpecCode: string;
FLineDescription: string;
FInvoiceDate: TDateTime;
FSupplierId: integer;
FCurrencyTypeId: integer;
FCurrencyRate: double;
public
[Column('SalesInvoiceDetailId', [cpRequired, cpPrimaryKey, cpNotNull, cpAutoGenerated], 0, 0, 0)]
property SalesInvoiceDetailId: integer read FSalesInvoiceDetailId write FSalesInvoiceDetailId;
[Column]
property SalesInvoiceHeaderId: integer read FSalesInvoiceHeaderId write FSalesInvoiceHeaderId;
[Column]
property InventoryId: integer read FInventoryId write FInventoryId;
[Column]
property Quantity: double read FQuantity write FQuantity;
[Column]
property UnitPrice: double read FUnitPrice write FUnitPrice;
[Column]
property VatPercentage: double read FVatPercentage write FVatPercentage;
[Column]
property VatAmount: double read FVatAmount write FVatAmount;
[Column]
property OtvAmount: double read FOtvAmount write FOtvAmount;
[Column]
property TotalAmount: double read FTotalAmount write FTotalAmount;
[Column]
property SpecCode: string read FSpecCode write FSpecCode;
[Column]
property LineDescription: string read FLineDescription write FLineDescription;
[Column]
property InvoiceDate: TDateTime read FInvoiceDate write FInvoiceDate;
[Column]
property SupplierId: integer read FSupplierId write FSupplierId;
[Column]
property CurrencyTypeId: integer read FCurrencyTypeId write FCurrencyTypeId;
[Column]
property CurrencyRate: double read FCurrencyRate write FCurrencyRate;
end;
[Table('secUser', '')]
TUser = class
private
FUserId: integer;
FUserName: string;
FPassword: string;
FIsActive: boolean;
public
[Column('UserId', [cpRequired, cpPrimaryKey, cpNotNull, cpAutoGenerated], 0, 0, 0)]
property UserId: integer read FUserId write FUserId;
[Column]
property UserName: string read FUserName write FUserName;
[Column]
property Pswd: string read FPassword write FPassword;
[Column]
property IsActive: boolean read FIsActive write FIsActive;
end;
[Table('secGroup', '')]
TGroup = class
private
FGroupId: integer;
FGroupName: string;
FIsActive: boolean;
public
[Column('GroupId', [cpRequired, cpPrimaryKey, cpNotNull, cpAutoGenerated], 0, 0, 0)]
property GroupId: integer read FGroupId write FGroupId;
[Column]
property GroupName: string read FGroupName write FGroupName;
[Column]
property IsActive: boolean read FIsActive write FIsActive;
end;
[Table('secGroupUser', '')]
TGroupUser = class
private
FGroupId: integer;
FUserId: integer;
public
[Column('GroupId', [cpRequired, cpPrimaryKey, cpNotNull], 0, 0, 0)]
property GroupId: integer read FGroupId write FGroupId;
[Column('UserId', [cpRequired, cpPrimaryKey, cpNotNull], 0, 0, 0)]
property UserId: integer read FUserId write FUserId;
end;
[Table('secPermission', '')]
TPermission = class
private
FPermissionId: integer;
FPermDescription: string;
FParentId: integer;
FIsActive: boolean;
public
[Column('PermissionId', [cpRequired, cpPrimaryKey, cpNotNull], 0, 0, 0)]
property PermissionId: integer read FPermissionId write FPermissionId;
[Column]
property PermDescription: string read FPermDescription write FPermDescription;
[Column]
property ParentId: integer read FParentId write FParentId;
[Column]
property IsActive: boolean read FIsActive write FIsActive;
end;
[Table('secUserPermission', '')]
TUserPermission = class
private
FUserId: integer;
FPermissionId: integer;
public
[Column('UserId', [cpRequired, cpPrimaryKey, cpNotNull], 0, 0, 0)]
property UserId: integer read FUserId write FUserId;
[Column('PermissionId', [cpRequired, cpPrimaryKey, cpNotNull], 0, 0, 0)]
property PermissionId: integer read FPermissionId write FPermissionId;
end;
[Table('secGroupPermission', '')]
TGroupPermission = class
private
FGroupId: integer;
FPermissionId: integer;
public
[Column('GroupId', [cpRequired, cpPrimaryKey, cpNotNull], 0, 0, 0)]
property GroupId: integer read FGroupId write FGroupId;
[Column('PermissionId', [cpRequired, cpPrimaryKey, cpNotNull], 0, 0, 0)]
property PermissionId: integer read FPermissionId write FPermissionId;
end;
implementation
end.