-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdialogocliente.dfm
444 lines (444 loc) · 11.6 KB
/
dialogocliente.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
object FormDialogoCliente: TFormDialogoCliente
Left = 210
Top = 148
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
ClientHeight = 503
ClientWidth = 610
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnClose = FormClose
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object PageControl: TPageControl
Left = 0
Top = 54
Width = 610
Height = 375
ActivePage = TabSheet2
Align = alClient
TabIndex = 1
TabOrder = 1
object TabSheet1: TTabSheet
Caption = 'Datos del cliente'
object Label3: TLabel
Left = 24
Top = 40
Width = 91
Height = 13
Caption = 'Nombre del cliente:'
end
object Label4: TLabel
Left = 24
Top = 83
Width = 48
Height = 13
Caption = 'Direcci'#243'n:'
end
object Label5: TLabel
Left = 24
Top = 165
Width = 49
Height = 13
Caption = 'Localidad:'
end
object Label6: TLabel
Left = 24
Top = 122
Width = 47
Height = 13
Caption = 'Provincia:'
end
object Label7: TLabel
Left = 24
Top = 212
Width = 69
Height = 13
Caption = 'Tel'#233'fono N'#186' 1:'
end
object Label8: TLabel
Left = 24
Top = 255
Width = 20
Height = 13
Caption = 'Fax:'
end
object Label9: TLabel
Left = 344
Top = 255
Width = 28
Height = 13
Caption = 'M'#243'vil:'
end
object Label10: TLabel
Left = 24
Top = 298
Width = 31
Height = 13
Caption = 'E-mail:'
end
object Label11: TLabel
Left = 344
Top = 212
Width = 24
Height = 13
Caption = 'N'#186' 2:'
end
object DBEditNombreCliente: TDBEdit
Left = 136
Top = 36
Width = 425
Height = 21
DataField = 'NombreCliente'
DataSource = BD.DataSourceClientes
TabOrder = 0
OnExit = DBEditNombreClienteExit
end
object DBEditDireccion: TDBEdit
Left = 136
Top = 79
Width = 425
Height = 21
DataField = 'Direccion'
DataSource = BD.DataSourceClientes
TabOrder = 1
end
object DBLookupComboBoxLocalidad: TDBLookupComboBox
Left = 136
Top = 165
Width = 170
Height = 21
DataField = 'Localidad'
DataSource = BD.DataSourceClientes
KeyField = 'Localidad'
ListField = 'Localidad'
ListSource = BD.DataSourceLocalidades
TabOrder = 2
end
object DBLookupComboBoxProvincia: TDBLookupComboBox
Left = 136
Top = 122
Width = 170
Height = 21
DataField = 'Provincia'
DataSource = BD.DataSourceClientes
KeyField = 'Provincia'
ListField = 'Provincia'
ListSource = BD.DataSourceProvincias
TabOrder = 3
end
object DBEditTelefono1: TDBEdit
Left = 136
Top = 208
Width = 170
Height = 21
DataField = 'Telefono1'
DataSource = BD.DataSourceClientes
TabOrder = 5
end
object DBEditTelefono2: TDBEdit
Left = 391
Top = 208
Width = 170
Height = 21
DataField = 'Telefono2'
DataSource = BD.DataSourceClientes
TabOrder = 6
end
object DBEditFax: TDBEdit
Left = 136
Top = 251
Width = 170
Height = 21
DataField = 'Fax'
DataSource = BD.DataSourceClientes
TabOrder = 7
end
object DBEditMovil: TDBEdit
Left = 391
Top = 251
Width = 170
Height = 21
DataField = 'Movil'
DataSource = BD.DataSourceClientes
TabOrder = 8
end
object DBEditEmail: TDBEdit
Left = 136
Top = 294
Width = 425
Height = 21
DataField = 'E-mail'
DataSource = BD.DataSourceClientes
TabOrder = 9
end
object BitBtnProvincias: TBitBtn
Left = 312
Top = 163
Width = 24
Height = 24
TabOrder = 4
OnClick = BitBtnLocalidadesClick
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
04000000000000010000120B0000120B00001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00500000000055
555557777777775F55550FFFFFFFFF0555557F5555555F7FFF5F0FEEEEEE0000
05007F555555777775770FFFFFF0BFBFB00E7F5F5557FFF557770F0EEEE000FB
FB0E7F75FF57775555770FF00F0FBFBFBF0E7F57757FFFF555770FE0B00000FB
FB0E7F575777775555770FFF0FBFBFBFBF0E7F5575FFFFFFF5770FEEE0000000
FB0E7F555777777755770FFFFF0B00BFB0007F55557577FFF7770FEEEEE0B000
05557F555557577775550FFFFFFF0B0555557FF5F5F57575F55500F0F0F0F0B0
555577F7F7F7F7F75F5550707070700B055557F7F7F7F7757FF5507070707050
9055575757575757775505050505055505557575757575557555}
NumGlyphs = 2
end
end
object TabSheet2: TTabSheet
Caption = 'Datos administrativos'
ImageIndex = 1
object Label12: TLabel
Left = 24
Top = 40
Width = 98
Height = 13
Caption = 'Nombre del negocio:'
end
object Label13: TLabel
Left = 24
Top = 83
Width = 80
Height = 13
Caption = 'Tipo de negocio:'
end
object Label14: TLabel
Left = 24
Top = 126
Width = 91
Height = 13
Caption = 'Nombre en factura:'
end
object Label15: TLabel
Left = 24
Top = 169
Width = 63
Height = 13
Caption = 'Posici'#243'n IVA:'
end
object Label16: TLabel
Left = 24
Top = 212
Width = 28
Height = 13
Caption = 'CUIT:'
end
object Label17: TLabel
Left = 24
Top = 255
Width = 74
Height = 13
Caption = 'Forma de pago:'
end
object Label18: TLabel
Left = 24
Top = 298
Width = 55
Height = 13
Caption = 'Descuento:'
end
object Label19: TLabel
Left = 198
Top = 298
Width = 8
Height = 13
Caption = '%'
end
object DBEditNombreNegocio: TDBEdit
Left = 136
Top = 36
Width = 425
Height = 21
DataField = 'NombreNegocio'
DataSource = BD.DataSourceClientes
TabOrder = 0
OnExit = DBEditNombreNegocioExit
end
object DBLookupComboBoxTipo: TDBLookupComboBox
Left = 136
Top = 79
Width = 170
Height = 21
DataField = 'TipoNegocio'
DataSource = BD.DataSourceClientes
KeyField = 'TipoNegocio'
ListField = 'TipoNegocio'
ListSource = BD.DataSourceTiposNegocios
TabOrder = 1
end
object DBEditCUIT: TDBEdit
Left = 136
Top = 208
Width = 170
Height = 21
DataField = 'CUIT'
DataSource = BD.DataSourceClientes
TabOrder = 4
end
object DBEditDescuento: TDBEdit
Left = 136
Top = 294
Width = 57
Height = 21
DataField = 'Descuento'
DataSource = BD.DataSourceClientes
TabOrder = 5
OnKeyPress = DBEditDescuentoKeyPress
end
object DBComboBoxPosicionIVA: TDBComboBox
Left = 136
Top = 165
Width = 170
Height = 21
Style = csDropDownList
DataField = 'PosicionIVA'
DataSource = BD.DataSourceClientes
ItemHeight = 13
Items.Strings = (
'Responsable inscripto'
'Responsable monotributo'
'Consumidor final')
TabOrder = 3
end
object BitBtnTiposNegocios: TBitBtn
Tag = 1
Left = 312
Top = 77
Width = 24
Height = 24
TabOrder = 2
OnClick = BitBtnLocalidadesClick
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
04000000000000010000120B0000120B00001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00500000000055
555557777777775F55550FFFFFFFFF0555557F5555555F7FFF5F0FEEEEEE0000
05007F555555777775770FFFFFF0BFBFB00E7F5F5557FFF557770F0EEEE000FB
FB0E7F75FF57775555770FF00F0FBFBFBF0E7F57757FFFF555770FE0B00000FB
FB0E7F575777775555770FFF0FBFBFBFBF0E7F5575FFFFFFF5770FEEE0000000
FB0E7F555777777755770FFFFF0B00BFB0007F55557577FFF7770FEEEEE0B000
05557F555557577775550FFFFFFF0B0555557FF5F5F57575F55500F0F0F0F0B0
555577F7F7F7F7F75F5550707070700B055557F7F7F7F7757FF5507070707050
9055575757575757775505050505055505557575757575557555}
NumGlyphs = 2
end
object DBComboBoxNombreFactura: TDBComboBox
Left = 136
Top = 122
Width = 425
Height = 21
Style = csDropDownList
DataField = 'NombreFactura'
DataSource = BD.DataSourceClientes
ItemHeight = 13
TabOrder = 6
end
object DBComboBoxFormaPago: TDBComboBox
Left = 136
Top = 251
Width = 170
Height = 21
Style = csDropDownList
DataField = 'FormaPago'
DataSource = BD.DataSourceClientes
ItemHeight = 13
Items.Strings = (
'Contado'
'Cuenta corriente')
TabOrder = 7
end
end
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 610
Height = 54
Align = alTop
BevelOuter = bvNone
Ctl3D = True
ParentCtl3D = False
TabOrder = 0
object Label1: TLabel
Left = 32
Top = 20
Width = 40
Height = 13
Caption = 'N'#250'mero:'
end
object Label2: TLabel
Left = 416
Top = 20
Width = 68
Height = 13
Caption = 'Fecha de alta:'
end
object DBEditNumero: TDBEdit
Left = 80
Top = 16
Width = 70
Height = 21
DataField = 'NumeroCliente'
DataSource = BD.DataSourceClientes
ReadOnly = True
TabOrder = 0
end
object DBEditFecha: TDBEdit
Left = 496
Top = 16
Width = 80
Height = 21
DataField = 'Fecha'
DataSource = BD.DataSourceClientes
ReadOnly = True
TabOrder = 1
end
end
object Panel2: TPanel
Left = 0
Top = 429
Width = 610
Height = 74
Align = alBottom
BevelOuter = bvNone
TabOrder = 2
object BitBtnAceptar: TBitBtn
Left = 163
Top = 24
Width = 80
Height = 28
Caption = 'Aceptar'
Default = True
TabOrder = 0
OnClick = BitBtnAceptarClick
end
object BitBtnCancelar: TBitBtn
Left = 367
Top = 24
Width = 80
Height = 28
Cancel = True
Caption = 'Cancelar'
TabOrder = 1
OnClick = BitBtnCancelarClick
end
end
end