-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinvoice.lfm
891 lines (891 loc) · 19.7 KB
/
finvoice.lfm
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
object foInvoice: TfoInvoice
Left = 373
Height = 600
Top = 163
Width = 800
Caption = 'Invoice'
ClientHeight = 600
ClientWidth = 800
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '2.0.12.0'
object Panel1: TPanel
Left = 0
Height = 50
Top = 550
Width = 800
Align = alBottom
BevelOuter = bvNone
ClientHeight = 50
ClientWidth = 800
TabOrder = 4
object Button4: TButton
Left = 25
Height = 25
Top = 10
Width = 75
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
object bSetPaid: TButton
Left = 125
Height = 25
Top = 10
Width = 125
Caption = 'Set Status "Paid"'
OnClick = bSetPaidClick
TabOrder = 0
end
object bSave: TButton
Left = 700
Height = 25
Top = 10
Width = 75
Anchors = [akTop, akRight]
Caption = 'Save'
Default = True
OnClick = bSaveClick
TabOrder = 1
end
end
object Panel2: TPanel
Left = 0
Height = 118
Top = 0
Width = 800
Align = alTop
ClientHeight = 118
ClientWidth = 800
TabOrder = 0
object lClient: TLabel
Left = 20
Height = 17
Top = 17
Width = 38
Caption = 'Client'
ParentColor = False
end
object eNumber: TEdit
Left = 90
Height = 27
Top = 40
Width = 250
AutoSize = False
TabOrder = 1
end
object lNumber: TLabel
Left = 20
Height = 17
Top = 47
Width = 62
Caption = 'Invoice #'
FocusControl = eNumber
ParentColor = False
end
object lDate: TLabel
Left = 20
Height = 17
Top = 77
Width = 31
Caption = 'Date'
ParentColor = False
end
object dtDate: TDateTimePicker
Left = 90
Height = 27
Top = 70
Width = 275
CenturyFrom = 1941
DateDisplayOrder = ddoYMD
MaxDate = 2958465
MinDate = -53780
AutoSize = False
TabOrder = 3
DateSeparator = '-'
TrailingSeparator = False
TextForNullDate = '(Invoice Date)'
LeadingZeros = True
Kind = dtkDate
TimeSeparator = ':'
TimeFormat = tf24
TimeDisplay = tdHMS
DateMode = dmComboBox
Date = 1.79769313486232E308
Time = 1.79769313486232E308
UseDefaultSeparators = False
AutoButtonSize = True
HideDateTimeParts = [dtpHour, dtpMinute, dtpSecond, dtpMiliSec]
MonthNames = 'Long'
OnCloseUp = dtDateCloseUp
OnEnter = dtDateEnter
end
object cbTerms: TComboBox
Left = 505
Height = 27
Top = 40
Width = 275
ItemHeight = 0
OnSelect = cbTermsSelect
TabOrder = 5
end
object lPaymentTerms: TLabel
Left = 395
Height = 17
Top = 47
Width = 100
Caption = 'Payment Terms'
ParentColor = False
end
object lDueDate: TLabel
Left = 395
Height = 17
Top = 77
Width = 61
Caption = 'Due Date'
ParentColor = False
end
object dtDueDate: TDateTimePicker
Left = 505
Height = 27
Top = 70
Width = 275
CenturyFrom = 1941
DateDisplayOrder = ddoYMD
MaxDate = 2958465
MinDate = -53780
AutoSize = False
TabOrder = 6
DateSeparator = '-'
TrailingSeparator = False
TextForNullDate = '(Due Date)'
LeadingZeros = True
Kind = dtkDate
TimeSeparator = ':'
TimeFormat = tf24
TimeDisplay = tdHMS
DateMode = dmComboBox
Date = 1.79769313486232E308
Time = 1.79769313486232E308
UseDefaultSeparators = False
AutoButtonSize = True
HideDateTimeParts = [dtpHour, dtpMinute, dtpSecond, dtpMiliSec]
MonthNames = 'Long'
OnCloseUp = dtDueDateCloseUp
OnEnter = dtDueDateEnter
end
object cbClient: TComboBox
Left = 90
Height = 27
Top = 10
Width = 275
AutoSize = False
ItemHeight = 0
OnSelect = cbClientSelect
TabOrder = 0
end
object lCurrency: TLabel
Left = 395
Height = 17
Top = 17
Width = 58
Caption = 'Currency'
ParentColor = False
end
object eCurrency: TEdit
Left = 505
Height = 27
Top = 10
Width = 275
TabOrder = 4
end
object bNumber: TButton
Left = 340
Height = 27
Top = 40
Width = 25
Caption = '<'
Font.Style = [fsBold]
OnClick = bNumberClick
ParentFont = False
TabOrder = 2
end
end
object Panel3: TPanel
Left = 0
Height = 126
Top = 424
Width = 800
Align = alBottom
BevelOuter = bvNone
ClientHeight = 126
ClientWidth = 800
TabOrder = 3
object GroupBox1: TGroupBox
Left = 0
Height = 121
Top = 5
Width = 400
Align = alLeft
Caption = 'Notes'
ClientHeight = 102
ClientWidth = 396
TabOrder = 0
object mNotes: TMemo
Left = 3
Height = 96
Top = 3
Width = 390
Anchors = [akTop, akLeft, akRight, akBottom]
BorderStyle = bsNone
ScrollBars = ssAutoBoth
TabOrder = 0
end
end
object GroupBox2: TGroupBox
Left = 400
Height = 121
Top = 5
Width = 400
Align = alClient
Caption = 'Terms'
ClientHeight = 102
ClientWidth = 396
TabOrder = 1
object mTerms: TMemo
Left = 3
Height = 96
Top = 3
Width = 390
BorderStyle = bsNone
ScrollBars = ssAutoBoth
TabOrder = 0
end
end
object Panel4: TPanel
Left = 0
Height = 5
Top = 0
Width = 800
Align = alTop
BevelOuter = bvNone
TabOrder = 2
end
end
object DBGrid: TDBGrid
Left = 0
Height = 206
Top = 118
Width = 800
Align = alClient
Color = clWindow
Columns = <
item
Alignment = taCenter
ReadOnly = True
Title.Alignment = taCenter
Title.Caption = '#'
Width = 40
FieldName = 'QueryRow'
end
item
ButtonStyle = cbsPickList
Title.Alignment = taCenter
Title.Font.Style = [fsBold]
Title.Caption = 'Item'
Width = 348
FieldName = 'QueryProduct'
end
item
Title.Alignment = taCenter
Title.Font.Style = [fsBold]
Title.Caption = 'Rate'
Width = 120
FieldName = 'QueryPRICE'
end
item
Title.Alignment = taCenter
Title.Font.Style = [fsBold]
Title.Caption = 'Qty'
Width = 50
FieldName = 'QueryQUANTITY'
end
item
ReadOnly = True
Title.Alignment = taCenter
Title.Font.Style = [fsBold]
Title.Caption = 'Amount'
Width = 130
FieldName = 'QueryAmount'
end
item
ButtonStyle = cbsCheckboxColumn
Title.Alignment = taCenter
Title.Font.Style = [fsBold]
Title.Caption = 'Tax'
Width = 40
FieldName = 'QueryTAXABLE'
end
item
ButtonStyle = cbsButtonColumn
PickList.Strings = (
'deke'
)
Title.Caption = ''
Width = 40
FieldName = 'QueryDel'
end>
DataSource = DataSource
TabOrder = 1
OnColEnter = DBGridColEnter
OnEditButtonClick = DBGridEditButtonClick
end
object Panel5: TPanel
Left = 0
Height = 100
Top = 324
Width = 800
Align = alBottom
BevelOuter = bvNone
ClientHeight = 100
ClientWidth = 800
TabOrder = 2
object gSummary: TStringGrid
Left = 401
Height = 97
Top = 0
Width = 301
ColCount = 2
Columns = <
item
Alignment = taRightJustify
Color = clCream
Title.Alignment = taRightJustify
Title.Caption = 'Desc'
Width = 170
end
item
Alignment = taRightJustify
Color = clCream
ReadOnly = True
Title.Alignment = taRightJustify
Title.Caption = 'Sum'
Width = 130
end>
FixedCols = 0
FixedRows = 0
Flat = True
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goSmoothScroll, goFixedColSizing]
RowCount = 8
ScrollBars = ssNone
TabOrder = 0
OnDrawCell = gSummaryDrawCell
OnEditingDone = gSummaryEditingDone
OnGetEditText = gSummaryGetEditText
OnSelectCell = gSummarySelectCell
ColWidths = (
170
130
)
Cells = (
4
0
0
'Subtotal'
0
1
'Tax (10%)'
0
2
'Total'
0
3
'Balance Due'
)
end
end
object Query: TMemDataset
Active = True
FieldDefs = <
item
Name = 'QueryRow'
Attributes = [faRequired]
DataType = ftInteger
end
item
Name = 'QueryID_PRODUCTS'
DataType = ftInteger
end
item
Name = 'QueryProduct'
Attributes = [faRequired]
DataType = ftString
Size = 255
end
item
Name = 'QueryPRICE'
Attributes = [faRequired]
DataType = ftFloat
end
item
Name = 'QueryQUANTITY'
Attributes = [faRequired]
DataType = ftFloat
end
item
Name = 'QueryAmount'
DataType = ftFloat
end
item
Name = 'QueryTAXABLE'
Attributes = [faRequired]
DataType = ftInteger
end
item
Name = 'QueryDel'
Attributes = [faRequired]
DataType = ftString
Size = 8
end>
BeforeEdit = QueryBeforeEdit
BeforePost = QueryBeforePost
AfterPost = QueryAfterPost
AfterCancel = QueryAfterCancel
BeforeDelete = QueryBeforeDelete
Left = 32
Top = 168
end
object DataSource: TDataSource
DataSet = Query
OnStateChange = DataSourceStateChange
Left = 32
Top = 226
end
object qInvoices: TSQLQuery
MaxIndexesCount = 4
FieldDefs = <
item
Name = 'ID'
DataType = ftInteger
Precision = -1
end
item
Name = 'ID_CLIENTS'
DataType = ftInteger
Precision = -1
end
item
Name = 'INUMBER'
DataType = ftMemo
Precision = -1
end
item
Name = 'IDATE'
DataType = ftMemo
Precision = -1
end
item
Name = 'ICURRENCY'
DataType = ftMemo
Precision = -1
end
item
Name = 'TAX'
DataType = ftFloat
Precision = -1
end
item
Name = 'TERMS'
DataType = ftMemo
Precision = -1
end
item
Name = 'DUEDATE'
DataType = ftMemo
Precision = -1
end
item
Name = 'NOTES'
DataType = ftMemo
Precision = -1
end
item
Name = 'TERMSNOTES'
DataType = ftMemo
Precision = -1
end
item
Name = 'STATUS'
DataType = ftInteger
Precision = -1
end>
Database = dm.dbDM
Transaction = dm.SQLTransaction1
SQL.Strings = (
'select * from INVOICES where false'
)
Options = [sqoAutoApplyUpdates]
Params = <>
Macros = <>
Left = 112
Top = 168
object qInvoicesID: TAutoIncField
FieldKind = fkData
FieldName = 'ID'
Index = 0
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere, pfInKey]
ReadOnly = True
Required = False
end
object qInvoicesID_CLIENTS: TLongintField
FieldKind = fkData
FieldName = 'ID_CLIENTS'
Index = 1
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
object qInvoicesINUMBER: TMemoField
FieldKind = fkData
FieldName = 'INUMBER'
Index = 2
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
OnGetText = MemoGetText
BlobType = ftMemo
Transliterate = False
end
object qInvoicesIDATE: TMemoField
FieldKind = fkData
FieldName = 'IDATE'
Index = 3
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
BlobType = ftMemo
Transliterate = False
end
object qInvoicesICURRENCY: TMemoField
FieldKind = fkData
FieldName = 'ICURRENCY'
Index = 4
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
BlobType = ftMemo
Transliterate = False
end
object qInvoicesTAX: TFloatField
FieldKind = fkData
FieldName = 'TAX'
Index = 5
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
Precision = -1
end
object qInvoicesTERMS: TMemoField
FieldKind = fkData
FieldName = 'TERMS'
Index = 6
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = False
BlobType = ftMemo
Transliterate = False
end
object qInvoicesDUEDATE: TMemoField
FieldKind = fkData
FieldName = 'DUEDATE'
Index = 7
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = False
BlobType = ftMemo
Transliterate = False
end
object qInvoicesNOTES: TMemoField
FieldKind = fkData
FieldName = 'NOTES'
Index = 8
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = False
BlobType = ftMemo
Transliterate = False
end
object qInvoicesTERMSNOTES: TMemoField
FieldKind = fkData
FieldName = 'TERMSNOTES'
Index = 9
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = False
BlobType = ftMemo
Transliterate = False
end
object qInvoicesSTATUS: TLongintField
FieldKind = fkData
FieldName = 'STATUS'
Index = 10
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
end
object qInvRows: TSQLQuery
MaxIndexesCount = 4
FieldDefs = <
item
Name = 'ID'
DataType = ftAutoInc
Precision = -1
end
item
Name = 'ID_INVOICE'
DataType = ftInteger
Precision = -1
end
item
Name = 'ID_PRODUCT'
DataType = ftInteger
Precision = -1
end
item
Name = 'PRICE'
DataType = ftFloat
Precision = -1
end
item
Name = 'QUANTITY'
DataType = ftFloat
Precision = -1
end
item
Name = 'TAXABLE'
DataType = ftInteger
Precision = -1
end>
Database = dm.dbDM
Transaction = dm.SQLTransaction1
SQL.Strings = (
'select * from INVOICES_ROWS where false'
)
Options = [sqoAutoApplyUpdates]
Params = <>
Macros = <>
Left = 192
Top = 168
object qInvRowsID: TAutoIncField
FieldKind = fkData
FieldName = 'ID'
Index = 0
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere, pfInKey]
ReadOnly = True
Required = False
end
object qInvRowsID_INVOICES: TLongintField
FieldKind = fkData
FieldName = 'ID_INVOICES'
Index = 1
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
object qInvRowsID_PRODUCTS: TLongintField
DisplayLabel = 'ID_PRODUCT'
FieldKind = fkData
FieldName = 'ID_PRODUCTS'
Index = 2
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
object qInvRowsPRICE: TFloatField
FieldKind = fkData
FieldName = 'PRICE'
Index = 3
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
Precision = -1
end
object qInvRowsQUANTITY: TFloatField
FieldKind = fkData
FieldName = 'QUANTITY'
Index = 4
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
Precision = -1
end
object qInvRowsTAXABLE: TLongintField
FieldKind = fkData
FieldName = 'TAXABLE'
Index = 5
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
end
object dsInvoices: TDataSource
DataSet = qInvoices
Left = 112
Top = 226
end
object dsInvRows: TDataSource
DataSet = qInvRows
Left = 192
Top = 226
end
object qProducts: TSQLQuery
PacketRecords = -1
MaxIndexesCount = 4
FieldDefs = <
item
Name = 'ID'
DataType = ftInteger
Precision = -1
end
item
Name = 'NAME'
DataType = ftMemo
Precision = -1
end
item
Name = 'PRICE'
DataType = ftFloat
Precision = -1
end
item
Name = 'TAXABLE'
DataType = ftInteger
Precision = -1
end>
Database = dm.dbDM
Transaction = dm.SQLTransaction1
ReadOnly = True
SQL.Strings = (
'select ID,NAME,PRICE,TAXABLE from PRODUCTS'
)
Options = [sqoKeepOpenOnCommit]
Params = <>
Macros = <>
Left = 272
Top = 168
object qProductsID: TLongintField
FieldKind = fkData
FieldName = 'ID'
Index = 0
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
object qProductsNAME: TMemoField
FieldKind = fkData
FieldName = 'NAME'
Index = 1
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
BlobType = ftMemo
Transliterate = False
end
object qProductsPRICE: TFloatField
FieldKind = fkData
FieldName = 'PRICE'
Index = 2
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
Precision = -1
end
object qProductsTAXABLE: TLongintField
FieldKind = fkData
FieldName = 'TAXABLE'
Index = 3
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
end
object dsProducts: TDataSource
DataSet = qProducts
Left = 272
Top = 226
end
object qClients: TSQLQuery
PacketRecords = -1
MaxIndexesCount = 4
FieldDefs = <
item
Name = 'ID'
DataType = ftInteger
Precision = -1
end
item
Name = 'NAME'
DataType = ftMemo
Precision = -1
end>
Database = dm.dbDM
Transaction = dm.SQLTransaction1
ReadOnly = True
SQL.Strings = (
'select ID,NAME from CLIENTS'
)
Options = [sqoKeepOpenOnCommit]
Params = <>
Macros = <>
Left = 352
Top = 168
object qClientsID: TLongintField
FieldKind = fkData
FieldName = 'ID'
Index = 0
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
object qClientsNAME: TMemoField
FieldKind = fkData
FieldName = 'NAME'
Index = 1
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
OnGetText = MemoGetText
BlobType = ftMemo
Transliterate = False
end
end
object dsClients: TDataSource
DataSet = qClients
Left = 352
Top = 226
end
end