-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.main.dfm
14305 lines (14305 loc) · 913 KB
/
view.main.dfm
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
object frmMain: TfrmMain
Left = 0
Top = 0
Caption = 'Crud Simples'
ClientHeight = 603
ClientWidth = 925
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label16: TLabel
Left = 16
Top = 136
Width = 56
Height = 13
Caption = 'Quantidade'
end
object Label23: TLabel
Left = 18
Top = 176
Width = 56
Height = 13
Caption = 'Data Venda'
end
object Label27: TLabel
Left = 67
Top = 339
Width = 103
Height = 25
Caption = 'Valor total:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -21
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object pnlToolbar: TPanel
Left = 0
Top = 0
Width = 925
Height = 50
Align = alTop
BevelOuter = bvNone
Color = 12477460
ParentBackground = False
TabOrder = 0
ExplicitTop = -5
object imgMenu: TImage
Left = 10
Top = 10
Width = 32
Height = 32
Cursor = crHandPoint
Picture.Data = {
0954506E67496D61676589504E470D0A1A0A0000000D49484452000000200000
00200806000000737A7AF40000002B744558744372656174696F6E2054696D65
0053756E20322041756720323031352031373A30353A3430202D30363030AB9D
78EE0000000774494D4507DF0802160936B3167602000000097048597300002E
2300002E230178A53F760000000467414D410000B18F0BFC61050000003B4944
415478DAEDD3310100200C0341EA5F3454020BA1C3BD81DC925A9F2B00809180
DD3D19EB00AE00C9000066BE00201900C0CC1700240300003859BE2421B37CDF
370000000049454E44AE426082}
end
object lblTitle: TLabel
Left = 68
Top = 12
Width = 188
Height = 21
Caption = 'Crud simples com SQLite'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -16
Font.Name = 'Segoe UI'
Font.Style = [fsBold]
ParentFont = False
end
object lbNomeTela: TLabel
Left = 476
Top = 12
Width = 75
Height = 21
Caption = 'Tela XPTO'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -16
Font.Name = 'Segoe UI'
Font.Style = [fsBold]
ParentFont = False
end
end
object SV: TSplitView
Left = 0
Top = 50
Width = 200
Height = 553
Color = clBlack
OpenedWidth = 200
Placement = svpLeft
TabOrder = 1
object catMenuItems: TCategoryButtons
Left = 0
Top = -20
Width = 194
Height = 357
BorderStyle = bsNone
ButtonFlow = cbfVertical
ButtonHeight = 40
ButtonWidth = 100
ButtonOptions = [boFullSize, boShowCaptions, boCaptionOnlyBorder]
Categories = <
item
Color = clNone
Collapsed = False
Items = <
item
Action = actHome
end
item
Action = actLayout
end
item
Action = actPower
end
item
Action = actUnidades
end
item
Action = actAlunos
end
item
Action = actMaterial
end
item
Action = actVendas
end
item
Action = actVenda
end>
end>
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
HotButtonColor = 12477460
Images = imlIcons
RegularButtonColor = clNone
SelectedButtonColor = clNone
TabOrder = 0
end
end
object CardPanelMain: TCardPanel
Left = 200
Top = 50
Width = 725
Height = 553
Align = alClient
ActiveCard = cardVendaFinal
Caption = 'CardPanelMain'
TabOrder = 2
OnCardChange = CardPanelMainCardChange
object cardHome: TCard
Left = 1
Top = 1
Width = 723
Height = 551
Caption = 'Home'
CardIndex = 0
TabOrder = 0
ExplicitLeft = 0
ExplicitTop = 6
end
object cardLayout: TCard
Left = 1
Top = 1
Width = 723
Height = 551
Caption = 'Layout Config.'
CardIndex = 1
TabOrder = 1
ExplicitLeft = 0
ExplicitTop = 6
object pnlSettings: TPanel
Left = 0
Top = 0
Width = 723
Height = 551
Align = alClient
BevelOuter = bvNone
ParentBackground = False
TabOrder = 0
object lblLog: TLabel
Left = 20
Top = 152
Width = 17
Height = 13
Caption = 'Log'
end
object lblVclStyle: TLabel
Left = 208
Top = 300
Width = 45
Height = 13
Caption = 'VCL Style'
end
object grpDisplayMode: TRadioGroup
Left = 20
Top = 20
Width = 205
Height = 53
Caption = 'Display Mode'
Columns = 2
ItemIndex = 0
Items.Strings = (
'Docked'
'Overlay')
TabOrder = 0
end
object grpPlacement: TRadioGroup
Left = 20
Top = 88
Width = 205
Height = 53
Caption = 'Placement'
Columns = 2
ItemIndex = 0
Items.Strings = (
'Left'
'Right')
TabOrder = 2
end
object grpCloseStyle: TRadioGroup
Left = 244
Top = 20
Width = 205
Height = 53
Caption = 'Close Style'
Columns = 2
ItemIndex = 0
Items.Strings = (
'Collapse'
'Compact')
TabOrder = 1
end
object lstLog: TListBox
Left = 20
Top = 173
Width = 205
Height = 108
ItemHeight = 13
TabOrder = 4
end
object grpAnimation: TGroupBox
Left = 244
Top = 88
Width = 205
Height = 193
Caption = 'Animation'
TabOrder = 3
object lblAnimationDelay: TLabel
Left = 16
Top = 56
Width = 100
Height = 13
Caption = 'Animation Delay (15)'
end
object lblAnimationStep: TLabel
Left = 16
Top = 123
Width = 95
Height = 13
Caption = 'Animation Step (20)'
end
object chkUseAnimation: TCheckBox
Left = 16
Top = 24
Width = 97
Height = 17
Caption = 'Use Animation'
Checked = True
State = cbChecked
TabOrder = 0
end
object trkAnimationDelay: TTrackBar
Left = 8
Top = 77
Width = 177
Height = 36
Max = 15
Min = 1
Position = 3
TabOrder = 1
end
object trkAnimationStep: TTrackBar
Left = 8
Top = 144
Width = 177
Height = 33
Max = 15
Min = 1
Position = 4
TabOrder = 2
end
end
object chkCloseOnMenuClick: TCheckBox
Left = 20
Top = 300
Width = 161
Height = 17
Caption = 'Close on Menu Click'
TabOrder = 5
end
object cbxVclStyles: TComboBox
Left = 270
Top = 297
Width = 179
Height = 21
Style = csDropDownList
TabOrder = 6
end
end
end
object cardUnidades: TCard
Left = 1
Top = 1
Width = 723
Height = 551
Caption = 'Unidades'
CardIndex = 2
TabOrder = 2
ExplicitLeft = 0
ExplicitTop = 6
object Label1: TLabel
Left = 16
Top = 16
Width = 27
Height = 13
Caption = 'Nome'
FocusControl = DBEdit1
end
object Label2: TLabel
Left = 16
Top = 56
Width = 45
Height = 13
Caption = 'Endere'#231'o'
FocusControl = DBEdit2
end
object Label3: TLabel
Left = 16
Top = 96
Width = 13
Height = 13
Caption = 'UF'
end
object DBNavigator1: TDBNavigator
Left = 144
Top = 456
Width = 300
Height = 41
DataSource = dmCrudSimples.dsUnidade
TabOrder = 0
end
object DBEdit1: TDBEdit
Left = 16
Top = 32
Width = 350
Height = 21
DataField = 'Nome'
DataSource = dmCrudSimples.dsUnidade
TabOrder = 1
end
object DBEdit2: TDBEdit
Left = 16
Top = 72
Width = 400
Height = 21
DataField = 'Endereco'
DataSource = dmCrudSimples.dsUnidade
TabOrder = 2
end
object DBLookupComboBox1: TDBLookupComboBox
Left = 16
Top = 110
Width = 208
Height = 21
DataField = 'ID_UF'
DataSource = dmCrudSimples.dsUnidade
KeyField = 'ID_UF'
ListField = 'Nome'
ListSource = dmCrudSimples.dsUF
TabOrder = 3
end
object DBGrid1: TDBGrid
Left = 16
Top = 138
Width = 521
Height = 301
DataSource = dmCrudSimples.dsUnidade
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgConfirmDelete, dgCancelOnExit, dgMultiSelect, dgTitleClick, dgTitleHotTrack]
TabOrder = 4
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
end
end
object cardAlunos: TCard
Left = 1
Top = 1
Width = 723
Height = 551
Caption = 'Alunos'
CardIndex = 3
TabOrder = 3
ExplicitLeft = 0
ExplicitTop = 6
object Label4: TLabel
Left = 24
Top = 100
Width = 13
Height = 13
Caption = 'UF'
end
object Label5: TLabel
Left = 24
Top = 4
Width = 27
Height = 13
Caption = 'Nome'
FocusControl = DBEdit3
end
object Label6: TLabel
Left = 24
Top = 44
Width = 19
Height = 13
Caption = 'CPF'
FocusControl = DBEdit4
end
object Label7: TLabel
Left = 24
Top = 84
Width = 45
Height = 13
Caption = 'Endere'#231'o'
FocusControl = DBEdit5
end
object Label8: TLabel
Left = 177
Top = 44
Width = 60
Height = 13
Caption = 'Escolaridade'
FocusControl = DBEdit6
end
object DBGrid2: TDBGrid
Left = 24
Top = 145
Width = 521
Height = 301
DataSource = dmCrudSimples.dsAluno
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgConfirmDelete, dgCancelOnExit, dgMultiSelect, dgTitleClick, dgTitleHotTrack]
TabOrder = 0
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
Columns = <
item
Expanded = False
FieldName = 'Nome'
Width = 118
Visible = True
end
item
Expanded = False
FieldName = 'CPF'
Width = 75
Visible = True
end
item
Expanded = False
FieldName = 'Endereco'
Width = 139
Visible = True
end
item
Expanded = False
FieldName = 'Escolaridade'
Width = 95
Visible = True
end
item
Expanded = False
FieldName = 'UF'
Width = 28
Visible = True
end>
end
object DBNavigator2: TDBNavigator
Left = 152
Top = 464
Width = 300
Height = 41
DataSource = dmCrudSimples.dsAluno
TabOrder = 1
end
object DBLookupComboBox2: TDBLookupComboBox
Left = 380
Top = 100
Width = 173
Height = 21
DataField = 'ID_UF'
DataSource = dmCrudSimples.dsAluno
KeyField = 'ID_UF'
ListField = 'Nome'
ListSource = dmCrudSimples.dsUF
TabOrder = 2
end
object DBEdit3: TDBEdit
Left = 24
Top = 20
Width = 350
Height = 21
DataField = 'Nome'
DataSource = dmCrudSimples.dsAluno
TabOrder = 3
end
object DBEdit4: TDBEdit
Left = 24
Top = 60
Width = 147
Height = 21
DataField = 'CPF'
DataSource = dmCrudSimples.dsAluno
TabOrder = 4
end
object DBEdit5: TDBEdit
Left = 24
Top = 100
Width = 350
Height = 21
DataField = 'Endereco'
DataSource = dmCrudSimples.dsAluno
TabOrder = 5
end
object DBEdit6: TDBEdit
Left = 177
Top = 60
Width = 150
Height = 21
DataField = 'Escolaridade'
DataSource = dmCrudSimples.dsAluno
TabOrder = 6
end
end
object cardMaterial: TCard
Left = 1
Top = 1
Width = 723
Height = 551
Caption = 'Material'
CardIndex = 4
TabOrder = 4
ExplicitLeft = 0
ExplicitTop = 6
object Label9: TLabel
Left = 32
Top = 16
Width = 27
Height = 13
Caption = 'Nome'
FocusControl = DBEdit7
end
object Label10: TLabel
Left = 32
Top = 56
Width = 39
Height = 13
Caption = 'Medidas'
FocusControl = DBEdit8
end
object Label11: TLabel
Left = 32
Top = 96
Width = 23
Height = 13
Caption = 'Peso'
FocusControl = DBEdit9
end
object Label12: TLabel
Left = 193
Top = 56
Width = 24
Height = 13
Caption = 'Valor'
FocusControl = DBEdit10
end
object DBGrid3: TDBGrid
Left = 32
Top = 161
Width = 521
Height = 301
DataSource = dmCrudSimples.dsMaterial
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgConfirmDelete, dgCancelOnExit, dgMultiSelect, dgTitleClick, dgTitleHotTrack]
TabOrder = 0
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
Columns = <
item
Expanded = False
FieldName = 'Nome'
Width = 274
Visible = True
end
item
Expanded = False
FieldName = 'Medidas'
Visible = True
end
item
Expanded = False
FieldName = 'Peso'
Visible = True
end
item
Expanded = False
FieldName = 'Valor_Venda'
Title.Caption = 'Valor'
Visible = True
end>
end
object DBNavigator3: TDBNavigator
Left = 160
Top = 468
Width = 300
Height = 41
DataSource = dmCrudSimples.dsMaterial
TabOrder = 1
end
object DBEdit7: TDBEdit
Left = 32
Top = 32
Width = 400
Height = 21
DataField = 'Nome'
DataSource = dmCrudSimples.dsMaterial
TabOrder = 2
end
object DBEdit8: TDBEdit
Left = 32
Top = 72
Width = 134
Height = 21
DataField = 'Medidas'
DataSource = dmCrudSimples.dsMaterial
TabOrder = 3
end
object DBEdit9: TDBEdit
Left = 32
Top = 112
Width = 134
Height = 21
DataField = 'Peso'
DataSource = dmCrudSimples.dsMaterial
TabOrder = 4
end
object DBEdit10: TDBEdit
Left = 193
Top = 72
Width = 134
Height = 21
DataField = 'Valor_Venda'
DataSource = dmCrudSimples.dsMaterial
TabOrder = 5
end
end
object cardVendaConsulta: TCard
Left = 1
Top = 1
Width = 723
Height = 551
Caption = 'ConsultaVendas'
CardIndex = 5
TabOrder = 5
ExplicitLeft = 0
ExplicitTop = 6
object DBGrid5: TDBGrid
Left = 37
Top = 63
Width = 577
Height = 218
DataSource = dmCrudSimples.dsVenda
TabOrder = 0
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
Columns = <
item
Expanded = False
FieldName = 'ID_Venda'
Visible = True
end
item
Expanded = False
FieldName = 'ID_Aluno'
Width = 55
Visible = True
end
item
Expanded = False
FieldName = 'ID_Unidade'
Visible = True
end
item
Expanded = False
FieldName = 'Valor_Final'
Visible = True
end
item
Expanded = False
FieldName = 'Data_pagto'
Width = 96
Visible = True
end
item
Expanded = False
FieldName = 'Data_Venda'
Width = 91
Visible = True
end
item
Expanded = False
FieldName = 'Tipo_Entrega'
Visible = True
end>
end
object Button2: TButton
Left = 528
Top = 506
Width = 89
Height = 41
Action = actVender
ImageIndex = 22
Images = imlIcons
TabOrder = 1
end
object DateTimePicker1: TDateTimePicker
Left = 37
Top = 14
Width = 100
Height = 21
Date = 45414.000000000000000000
Time = 0.410057164350291700
TabOrder = 2
end
object btnFiltro: TButton
Left = 533
Top = 3
Width = 81
Height = 41
Caption = 'Filtrar'
ImageIndex = 25
Images = imlIcons
TabOrder = 3
end
object DateTimePicker2: TDateTimePicker
Left = 157
Top = 14
Width = 100
Height = 21
Date = 45414.000000000000000000
Time = 0.410057164350291700
TabOrder = 4
end
end
object cardVenda: TCard
Left = 1
Top = 1
Width = 723
Height = 551
Caption = 'Pr'#233' Venda'
CardIndex = 6
TabOrder = 6
ExplicitLeft = 0
ExplicitTop = 6
object Label33: TLabel
Left = 337
Top = 116
Width = 80
Height = 13
Caption = 'Data Pagamento'
end
object Label34: TLabel
Left = 216
Top = 116
Width = 71
Height = 13
Caption = 'Data da Venda'
end
object Label29: TLabel
Left = 16
Top = 72
Width = 39
Height = 13
Caption = 'Unidade'
end
object Label31: TLabel
Left = 16
Top = 116
Width = 61
Height = 13
Caption = 'Tipo Entrega'
end
object Label32: TLabel
Left = 216
Top = 72
Width = 27
Height = 13
Caption = 'Aluno'
end
object lcbUnidade: TDBLookupComboBox
Left = 18
Top = 91
Width = 168
Height = 21
DataField = 'ID_Unidade'
DataSource = dmCrudSimples.dsVenda
KeyField = 'ID_Unidade'
ListField = 'Nome'
ListSource = dmCrudSimples.dsUnidade
NullValueKey = 16449
TabOrder = 0
end
object lcbTipoEntrega: TDBLookupComboBox
Left = 20
Top = 132
Width = 168
Height = 21
DataField = 'ID_TipoEntrega'
DataSource = dmCrudSimples.dsVenda
KeyField = 'ID_TipoEntrega'
ListField = 'Descricao'
ListSource = dmCrudSimples.dsTipoEntrega
TabOrder = 1
end
object lcbAluno: TDBLookupComboBox
Left = 216
Top = 91
Width = 177
Height = 21
DataField = 'ID_Aluno'
DataSource = dmCrudSimples.dsVenda
KeyField = 'ID_Aluno'
ListField = 'Nome'
ListSource = dmCrudSimples.dsAluno
TabOrder = 2
end
object DBRadioGroup1: TDBRadioGroup
Left = 20
Top = 13
Width = 265
Height = 43
Caption = 'Status Venda'
Columns = 2
DataField = 'id_StatusVenda'
DataSource = dmCrudSimples.dsVenda
Items.Strings = (
'Venda n'#227'o realizada'
'Venda realizada')
ReadOnly = True
TabOrder = 3
Values.Strings = (
'1'
'2')
end
object grConsultaVenda: TDBGrid
Left = 0
Top = 277
Width = 723
Height = 274
Align = alBottom
DataSource = dmCrudSimples.dsConsultaVenda
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit, dgTitleClick, dgTitleHotTrack]
ReadOnly = True
TabOrder = 4
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
OnCellClick = grConsultaVendaCellClick
OnDblClick = grConsultaVendaDblClick
Columns = <
item
Expanded = False
FieldName = 'ID_Venda'
Width = 35
Visible = True
end
item
Expanded = False
FieldName = 'STATUS_VENDA'
Title.Caption = 'Status Venda'
Width = 110
Visible = True
end
item
Expanded = False
FieldName = 'UNIDADE_NOME'
Width = 160
Visible = True
end
item
Expanded = False
FieldName = 'ALUNO_NOME'
Width = 160
Visible = True
end
item
Expanded = False
FieldName = 'Valor_TotalCompra'
Visible = True
end
item
Expanded = False
FieldName = 'Valor_Final'
Visible = True
end
item
Expanded = False
FieldName = 'Data_Venda'
Width = 64
Visible = True
end>
end
object dtDataPAgto: TDBDateTimePicker
Left = 335
Top = 132
Width = 113
Height = 21
DataField = 'Data_pagto'
DataSource = dmCrudSimples.dsVenda
TabOrder = 5
IntervalCalendar = 2000
end
object dtDataVenda: TDBDateTimePicker
Left = 215
Top = 132
Width = 106
Height = 21
DataField = 'Data_Venda'
DataSource = dmCrudSimples.dsVenda
TabOrder = 6
IntervalCalendar = 2000
end
object btnVenda_Nova: TButton
Left = 16
Top = 211
Width = 70
Height = 60
Action = actVenda_Nova
DisabledImageIndex = 12
HotImageIndex = 9
ImageAlignment = iaCenter
ImageMargins.Top = 5
ImageMargins.Bottom = 5
Images = ImageList1
TabOrder = 7
end
object btnVenda_AddItem: TButton
Left = 616
Top = 47
Width = 70
Height = 60
Action = actVenda_AddItem
DisabledImageIndex = 12
HotImageIndex = 1
ImageAlignment = iaCenter
ImageMargins.Top = 5
ImageMargins.Bottom = 5
Images = ImageList1
TabOrder = 8