-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSaleScreen_u.dfm
183 lines (183 loc) · 3.78 KB
/
SaleScreen_u.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
object frmSales: TfrmSales
Left = 0
Top = 0
Caption = 'POS 2.0 Sales'
ClientHeight = 618
ClientWidth = 1121
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Menu = mmHead
OldCreateOrder = False
Position = poScreenCenter
Scaled = False
OnClose = FormClose
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object lblSubTotal: TLabel
Left = 752
Top = 64
Width = 114
Height = 60
Caption = 'Sub Total '#13#10'R0.00'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object lblVat: TLabel
Left = 753
Top = 152
Width = 113
Height = 60
Caption = 'VAT 15 %'#13#10'R 0.00'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object lblTotal: TLabel
Left = 753
Top = 234
Width = 74
Height = 60
Caption = 'Total'#13#10'R 0.00'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object edtBarcode: TEdit
Left = 8
Top = 8
Width = 1089
Height = 38
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
NumbersOnly = True
ParentFont = False
TabOrder = 0
TextHint = 'Barcode'
OnKeyPress = edtBarcodeKeyPress
end
object sgdSales: TStringGrid
Left = 8
Top = 64
Width = 609
Height = 537
BevelWidth = 3
ColCount = 3
DefaultColWidth = 200
DrawingStyle = gdsGradient
FixedCols = 0
RowCount = 3
GradientEndColor = clSilver
GridLineWidth = 2
ScrollBars = ssVertical
TabOrder = 1
ColWidths = (
200
200
200)
RowHeights = (
24
24
24)
end
object btnEndSale: TBitBtn
Left = 752
Top = 536
Width = 249
Height = 65
Caption = 'End Sale'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 2
OnClick = btnEndSaleClick
end
object btnCancelSale: TBitBtn
Left = 753
Top = 448
Width = 248
Height = 65
Caption = 'Cancel Sale'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 3
OnClick = btnCancelSaleClick
end
object btnCheckCardBal: TBitBtn
Left = 752
Top = 368
Width = 249
Height = 65
Caption = 'Check Card Balance'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 4
OnClick = btnCheckCardBalClick
end
object qrySales: TADOQuery
Connection = DataModule1.conMain
CursorType = ctStatic
Parameters = <>
SQL.Strings = (
'select * from Stock')
Left = 65440
Top = 560
end
object tblStock: TADOTable
Connection = DataModule1.conMain
CursorType = ctStatic
TableName = 'Stock'
Left = 640
Top = 536
end
object mmHead: TMainMenu
Left = 680
Top = 536
object File1: TMenuItem
Caption = 'File'
object About1: TMenuItem
Caption = 'About'
OnClick = About1Click
end
object Exit1: TMenuItem
Caption = 'Exit'
OnClick = Exit1Click
end
end
object Actions1: TMenuItem
Caption = 'Actions'
object Logout1: TMenuItem
Caption = 'Logout'
OnClick = Logout1Click
end
end
end
end