-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcostosFRM.frm
1259 lines (971 loc) · 32.1 KB
/
costosFRM.frm
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
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Object = "{F856EC8B-F03C-4515-BDC6-64CBD617566A}#6.0#0"; "fpSpr60.ocx"
Begin VB.Form costosFRM
Caption = "Costs"
ClientHeight = 7635
ClientLeft = 60
ClientTop = 450
ClientWidth = 11535
LinkTopic = "Form1"
ScaleHeight = 7635
ScaleWidth = 11535
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdCalc
Caption = "Command1"
Height = 420
Left = 10260
TabIndex = 12
Top = 945
Width = 825
End
Begin VB.Frame Frame2
Height = 4335
Left = 45
TabIndex = 11
Top = 3195
Width = 11400
Begin VB.CommandButton cmd_guardar_det
Height = 330
Left = 10485
Picture = "costosFRM.frx":0000
Style = 1 'Graphical
TabIndex = 7
ToolTipText = "Editar una fila en detalle"
Top = 135
Width = 420
End
Begin VB.CommandButton cmd_cancelar_det
Height = 330
Left = 10935
Picture = "costosFRM.frx":058A
Style = 1 'Graphical
TabIndex = 8
ToolTipText = "Eliminar una fila en detalle"
Top = 135
Width = 420
End
Begin VB.CommandButton cmd_ELI_det
Height = 330
Left = 9855
Picture = "costosFRM.frx":0B14
Style = 1 'Graphical
TabIndex = 6
ToolTipText = "Eliminar una fila en detalle"
Top = 135
Width = 420
End
Begin VB.CommandButton cmd_EDI_det
Height = 330
Left = 9405
Picture = "costosFRM.frx":109E
Style = 1 'Graphical
TabIndex = 5
ToolTipText = "Editar una fila en detalle"
Top = 135
Width = 420
End
Begin VB.CommandButton cmd_INS_det
Height = 330
Left = 8955
Picture = "costosFRM.frx":1628
Style = 1 'Graphical
TabIndex = 4
ToolTipText = "Insertar una fila en detalle"
Top = 135
Width = 420
End
Begin FPSpreadADO.fpSpread spdDet
Height = 3750
Left = 45
TabIndex = 3
Top = 495
Width = 11310
_Version = 393216
_ExtentX = 19950
_ExtentY = 6615
_StockProps = 64
BackColorStyle = 1
EditEnterAction = 5
EditModeReplace = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
MaxCols = 501
MaxRows = 50
SpreadDesigner = "costosFRM.frx":1BB2
Appearance = 1
End
End
Begin MSComctlLib.Toolbar Toolbar1
Align = 1 'Align Top
Height = 360
Left = 0
TabIndex = 10
Top = 0
Width = 11535
_ExtentX = 20346
_ExtentY = 635
ButtonWidth = 609
ButtonHeight = 582
Appearance = 1
Style = 1
ImageList = "ImageList1"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 9
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmd_filtro_rapido"
Object.ToolTipText = "Haga clic aqui para visualizar el pozo seleccionado."
ImageIndex = 1
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmd_insertar"
Object.ToolTipText = "Insertar"
ImageIndex = 2
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmd_editar"
ImageIndex = 3
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmd_eliminar"
ImageIndex = 4
EndProperty
BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button7 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmd_guardar"
ImageIndex = 5
EndProperty
BeginProperty Button8 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmd_cancelar"
ImageIndex = 6
EndProperty
BeginProperty Button9 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
EndProperty
BorderStyle = 1
End
Begin MSComctlLib.ImageList ImageList1
Left = 10395
Top = 1575
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 6
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "costosFRM.frx":544E
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "costosFRM.frx":57E8
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "costosFRM.frx":5D82
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "costosFRM.frx":631C
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "costosFRM.frx":68B6
Key = ""
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "costosFRM.frx":6E50
Key = ""
EndProperty
EndProperty
End
Begin VB.Frame Frame1
Height = 2895
Left = 45
TabIndex = 0
Top = 315
Width = 10005
Begin VB.ComboBox cboPozos
Height = 315
ItemData = "costosFRM.frx":73EA
Left = 135
List = "costosFRM.frx":73EC
Sorted = -1 'True
Style = 2 'Dropdown List
TabIndex = 1
Top = 405
Width = 3075
End
Begin FPSpreadADO.fpSpread spdCab
Height = 1995
Left = 135
TabIndex = 2
Top = 765
Width = 9735
_Version = 393216
_ExtentX = 17171
_ExtentY = 3519
_StockProps = 64
BackColorStyle = 1
DisplayColHeaders= 0 'False
DisplayRowHeaders= 0 'False
EditEnterAction = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
MaxCols = 6
MaxRows = 8
ScrollBars = 0
SpreadDesigner = "costosFRM.frx":73EE
Appearance = 1
End
Begin VB.Label Label1
Caption = "Seleccione Well ID y haga clic en filtrar"
Height = 195
Left = 135
TabIndex = 9
Top = 180
Width = 3255
End
End
End
Attribute VB_Name = "costosFRM"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public m_Operacion As String
Public m_strCboEmpresas, m_strCboTrabajos As String
Private m_arrTD() As String
Public Property Let dsiOperacion(ByVal str As String)
m_Operacion = str
End Property
Public Property Get dsiOperacion() As String
dsiOperacion = m_Operacion
End Property
Public Property Let dsiCboEmpresas(ByVal str As String)
m_strCboEmpresas = str
End Property
Public Property Get dsiCboEmpresas() As String
dsiCboEmpresas = m_strCboEmpresas
End Property
Public Property Let dsiCboTrabajos(ByVal str As String)
m_strCboTrabajos = str
End Property
Public Property Get dsiCboTrabajos() As String
dsiCboTrabajos = m_strCboTrabajos
End Property
Private Sub Command1_Click()
Me.spdDet.MaxRows = Me.spdDet.DataRowCnt + 1
Me.spdDet.InsertRows Me.spdDet.DataRowCnt + 1, 1
Me.spdDet.SetText 3, Me.spdDet.MaxRows, "dato"
End Sub
Private Sub cmd_cancelar_det_Click()
'LOCK y paint fila nueva
spdDet.col = 1
spdDet.Col2 = spdDet.MaxCols
spdDet.row = Me.spdDet.ActiveRow
spdDet.Row2 = Me.spdDet.ActiveRow
spdDet.BlockMode = True
spdDet.Lock = True
spdDet.BackColor = RGB(255, 255, 255)
spdDet.BlockMode = False
'CONFIG empresa como text
Me.spdDet.col = conDETempresa
Me.spdDet.CellType = CellTypeEdit
'CONFIG trabajo como text
Me.spdDet.col = conDETtrabajo
Me.spdDet.CellType = CellTypeEdit
'RECOVERY info antes de modificarla
Call spdDet_fila_recuperar(Me.spdDet.ActiveRow)
End Sub
Private Sub cmd_EDI_det_Click()
Dim strID, StrEmpresa, StrTrabajo As Variant
'GET id detalle
' Me.spdCab.GetText 2, 1, strID
'CHECK si no exoste cabecera, exit
' If strID = "" Then
' MsgBox ("no se puede, primero debe guardar una cabecera.")
' Exit Sub
' End If
'UNLOCK y paint fila nueva
spdDet.col = 1
spdDet.Col2 = spdDet.MaxCols
spdDet.row = Me.spdDet.ActiveRow
spdDet.Row2 = Me.spdDet.ActiveRow
spdDet.BlockMode = True
spdDet.Lock = False
spdDet.BackColor = RGB(225, 247, 227)
spdDet.BlockMode = False
'SAVE info fila antes de modificarla, se usa en caso que el usuario decida cancelar
Call spdDet_fila_guardar(Me.spdDet.ActiveRow)
'SAVE texto empresa y trabajo
Me.spdDet.GetText conDETempresa, Me.spdDet.ActiveRow, StrEmpresa
Me.spdDet.GetText conDETtrabajo, Me.spdDet.ActiveRow, StrTrabajo
'CONFIG y FILL empresas cboBox
Me.spdDet.col = conDETempresa
Me.spdDet.CellType = CellTypeComboBox
Me.spdDet.TypeComboBoxList = Me.dsiCboEmpresas
'CONFIG y FILL trabajos cboBox
Me.spdDet.col = conDETtrabajo
Me.spdDet.CellType = CellTypeComboBox
Me.spdDet.TypeComboBoxList = Me.dsiCboTrabajos
'PUT texto de empresa y trabajo
Me.spdDet.SetText conDETempresa, Me.spdDet.ActiveRow, StrEmpresa
Me.spdDet.SetText conDETtrabajo, Me.spdDet.ActiveRow, StrTrabajo
End Sub
Private Sub cmd_guardar_det_Click()
'LOCK y paint fila nueva
spdDet.col = 1
spdDet.Col2 = spdDet.MaxCols
spdDet.row = Me.spdDet.ActiveRow
spdDet.Row2 = Me.spdDet.ActiveRow
spdDet.BlockMode = True
spdDet.Lock = True
spdDet.BackColor = RGB(255, 255, 255)
spdDet.BlockMode = False
End Sub
Private Sub cmd_INS_det_Click()
Dim strID As Variant
'GET id cabecera
Me.spdCab.GetText 2, 1, strID
'CHECK si no existe cabecera, exit
If strID = "" Then
MsgBox ("no se puede, primero debe guardar una cabecera.")
Exit Sub
End If
'UNLOCK y paint fila nueva
spdDet.col = 1
spdDet.Col2 = spdDet.MaxCols
spdDet.row = Me.spdDet.DataRowCnt + 1
spdDet.Row2 = Me.spdDet.DataRowCnt + 1
spdDet.BlockMode = True
spdDet.Lock = False
spdDet.BackColor = RGB(225, 247, 227)
spdDet.BlockMode = False
'GET info fila antes de modificarla, se usa en caso que el usuario decida cancelar
Call spdDet_fila_guardar(Me.spdDet.DataRowCnt + 1)
'CONFIG y FILL empresa comboBox
Me.spdDet.col = conDETempresa
Me.spdDet.CellType = CellTypeComboBox
Me.spdDet.TypeComboBoxMaxDrop = 10
Me.spdDet.TypeComboBoxList = Me.dsiCboEmpresas
'CONFIGL trabajo comboBox
Me.spdDet.col = conDETtrabajo
Me.spdDet.CellType = CellTypeComboBox
Me.spdDet.TypeComboBoxMaxDrop = 10
'CONFIG formula para M
Me.spdDet.col = conM
Me.spdDet.Formula = "D#-E#"
End Sub
Private Sub cmdCalc_Click()
'CALC costo - resuelvo formula
Call formula_Calcula
End Sub
Private Sub Form_Load()
Dim rs As ADODB.Recordset
Dim strT, strL As String
Dim intI As Integer
Dim blnB As Boolean
'check configuracion regional
If Not checkConfigRegional() Then
blnB = MsgBox("El sistema detecto que la configuración regional no es correcta." & vbCrLf & vbCrLf & _
"Configurar el formato para números de esta forma: 123,456,789.00." & vbCrLf & vbCrLf & _
"Configurar el formato para fechas de esta forma: dd/MM/yyyy.", vbCritical + vbOKOnly, "Atención...")
End
End If
'get parametros de conexion
blnB = SQLgetParam()
'check si parametros ok, get menu
If blnB Then
End If
'FILL combo Box
Call lleno_Pozos_conCosto
Call lleno_Pozos
Call lleno_Logging
Call lleno_MudLogging
Call lleno_WellSiteGeology
'FILL empresas
Call lleno_Empresas
' 'FILL trabajos
' Call lleno_Trabajos
'CLOSE conection
SQLclose
'LOCK cab y det
Call spd_Bloquear(Me.spdCab, True)
Call spd_Bloquear(Me.spdDet, True)
'SET para que funcione la formula
Me.spdDet.AllowUserFormulas = True
Me.spdDet.AutoCalc = True
Me.spdDet.FormulaSync = True
End Sub
Public Sub lleno_Pozos_conCosto()
Dim strT, strComboTxt, strComboID As String
Dim blnB As Boolean
Dim rs As ADODB.Recordset
Dim lngCantidadPozos, lngElemento As Long
'BUILD vista
strT = "select * from maeCostos_LISTA_pozos_conCosto_vw"
'GET vista
Set rs = SQLexec(strT)
'CHECK errores
If Not SQLparam.CnErrNumero = -1 Then
SQLError
Exit Sub
End If
'CLEAR
lngCantidadPozos = 0
'CHECK si hay registros, reservo para guardar el TD
If Not rs.EOF Then
lngCantidadPozos = rs.RecordCount
End If
ReDim m_arrTD(lngCantidadPozos)
'CLEAR
Me.cboPozos.Clear
lngElemento = 0
'WHILE rs
While Not rs.EOF
'ADD a comboBox para busqueda
Me.cboPozos.AddItem rs!nombre
Me.cboPozos.ItemData(Me.cboPozos.NewIndex) = rs!ID
m_arrTD(lngElemento) = rs!TD
'ADD 1 a contador de elementos
lngElemento = lngElemento + 1
'NEXT rs
rs.MoveNext
Wend
End Sub
Public Sub lleno_Pozos()
Dim strT, strComboTxt, strComboID As String
Dim lngFila As Long
Dim blnB As Boolean
Dim rs As ADODB.Recordset
'BUILD vista
strT = "select * from maeCostos_LISTA_Pozos_vw"
'GET vista
Set rs = SQLexec(strT)
'CHECK errores
If Not SQLparam.CnErrNumero = -1 Then
SQLError
Exit Sub
End If
'REDIM
ReDim m_arrTD(rs.RecordCount)
lngFila = 0
'WHILE rs
While Not rs.EOF
'ADD texto
strComboText = strComboText & rs!nombre & Chr(9)
'ADD TD
m_arrTD(lngFila) = IIf(IsNull(rs!TotalDepth), 0, rs!TotalDepth)
'NEXT rs
rs.MoveNext
'ADD contador de filas
lngFila = lngFila + 1
Wend
'FILL comboBox
Me.spdCab.row = conCABpozo
Me.spdCab.col = 2
Me.spdCab.TypeComboBoxList = strComboText
End Sub
Public Sub lleno_Logging()
Dim strT, strComboTxt, strComboID As String
Dim blnB As Boolean
Dim rs As ADODB.Recordset
'BUILD vista
strT = "select * from maeCostos_LISTA_log_vw"
'GET vista
Set rs = SQLexec(strT)
'CHECK errores
If Not SQLparam.CnErrNumero = -1 Then
SQLError
Exit Sub
End If
'WHILE rs
While Not rs.EOF
'ADD texto
strComboText = strComboText & rs!nombre & Chr(9)
'NEXT rs
rs.MoveNext
Wend
'FILL comboBox
Me.spdCab.row = conCABlog
Me.spdCab.col = 2
Me.spdCab.TypeComboBoxList = strComboText
End Sub
Public Sub lleno_MudLogging()
Dim strT, strComboTxt, strComboID As String
Dim blnB As Boolean
Dim rs As ADODB.Recordset
'BUILD vista
strT = "select * from maeCostos_LISTA_mudLog_vw"
'GET vista
Set rs = SQLexec(strT)
'CHECK errores
If Not SQLparam.CnErrNumero = -1 Then
SQLError
Exit Sub
End If
'WHILE rs
While Not rs.EOF
'ADD texto
strComboTexto = strComboTexto & rs!nombre & Chr(9)
'NEXT rs
rs.MoveNext
Wend
'FILL comboBox
Me.spdCab.row = conCABmud
Me.spdCab.col = 2
Me.spdCab.TypeComboBoxList = strComboTexto
End Sub
Public Sub lleno_WellSiteGeology()
Dim strT, strComboTxt As String
Dim blnB As Boolean
Dim rs As ADODB.Recordset
'BUILD vista
strT = "select * from maeCostos_LISTA_site_vw"
'GET vista
Set rs = SQLexec(strT)
'CHECK errores
If Not SQLparam.CnErrNumero = -1 Then
SQLError
Exit Sub
End If
'WHILE rs
While Not rs.EOF
'ADD texto
strComboTxt = strComboTxt & rs!nombre & Chr(9)
'NEXT rs
rs.MoveNext
Wend
'FILL comboBox
Me.spdCab.row = conCABsite
Me.spdCab.col = 2
Me.spdCab.TypeComboBoxList = strComboTxt
End Sub
Public Sub lleno_Empresas()
Dim strT, strComboTxt As String
Dim blnB As Boolean
Dim rs As ADODB.Recordset
'BUILD vista
strT = "select * from maeCostos_LISTA_empresas_vw"
'GET vista
Set rs = SQLexec(strT)
'CHECK errores
If Not SQLparam.CnErrNumero = -1 Then
SQLError
Exit Sub
End If
'WHILE rs
While Not rs.EOF
'ADD texto
strComboTxt = strComboTxt & rs!nombre & Chr(9)
'NEXT rs
rs.MoveNext
Wend
'SAVE comboBox
Me.dsiCboEmpresas = strComboTxt
End Sub
Public Function lleno_Trabajos(ByVal str As String) As String
Dim strT, strComboTxt As String
Dim blnB As Boolean
Dim rs As ADODB.Recordset
'BUILD vista
strT = "select * from maeCostos_LISTA_Trabajos_vw where empresa = '" & str & "'"
'GET vista
Set rs = SQLexec(strT)
'CHECK errores
If Not SQLparam.CnErrNumero = -1 Then
SQLError
Exit Function
End If
'WHILE rs
While Not rs.EOF
'ADD texto
strComboTxt = strComboTxt & rs!nombre & Chr(9)
'NEXT rs
rs.MoveNext
Wend
'RETURN
lleno_Trabajos = strComboTxt
'CLOSE
SQLclose
End Function
'
'LOCK grilla
'
Public Sub spd_Bloquear(spdG As fpSpread, blnBloquear As Boolean)
spdG.col = 1
spdG.Col2 = spdG.MaxCols
spdG.row = 1
spdG.Row2 = spdG.MaxRows
spdG.BlockMode = True
spdG.Lock = blnBloquear
spdG.BlockMode = False
'LOCK celdas de cabeza siempre
If spdG.Name = "spdCab" Then
spdG.col = 2
spdG.row = 1
spdG.Lock = True
spdG.row = 4
spdG.Lock = True
spdG.row = 5
spdG.Lock = True
End If
End Sub
'
'CLEAR grilla cab
'
Public Sub spdCab_Blanquear(spdG As fpSpread)
spdG.ClearRange 2, 1, 2, spdG.MaxRows, True
spdG.ClearRange 5, 1, 5, spdG.MaxRows, True
End Sub
'
'SAVE cab
'
Public Sub spdCab_Guardar(spdG As fpSpread)
Dim sngDfwa, sngTopeZone, sngPerforation, sngBasicCharge, sngDiscAdd, sngDiscLog, sngQuote As Variant
Dim intID, dtmFecha, strCurrency, strT, strPozo, strEleLog, strMudLog, strWelsite As Variant
Dim rs As ADODB.Recordset
'GET datos e ID en caso de LISTA
Me.spdCab.GetText 2, 1, intID
Me.spdCab.GetText 2, 2, dtmFecha
Me.spdCab.GetText 2, 3, strPozo
Me.spdCab.GetText 2, 6, strEleLog
Me.spdCab.GetText 2, 7, strMudLog
Me.spdCab.GetText 2, 8, strWelsite
Me.spdCab.GetText 5, 1, sngDfwa
Me.spdCab.GetText 5, 2, sngTopeZone
Me.spdCab.GetText 5, 3, sngPerforation
Me.spdCab.GetText 5, 4, sngBasicCharge
Me.spdCab.GetText 5, 5, sngDiscAdd
Me.spdCab.GetText 5, 6, sngDiscLog
Me.spdCab.GetText 5, 7, intCurrency
Me.spdCab.GetText 5, 8, sngQuote
'CHECK operacion
Select Case Me.dsiOperacion
Case "INS"
strT = "costos_INS_sp "
Case "EDI"
strT = "costos_EDI_sp "
Case "ELI"
strT = "costos_ELI_sp "
End Select
'BUILD query
strT = "exec " & strT & Val(intID) & ",'" & dateToIso(dtmFecha) & "','" & strPozo & "','" & _
strEleLog & "','" & strMudLog & "','" & strWelsite & "'," & sngDfwa & "," & sngTopeZone & "," & _
sngPerforation & "," & sngBasicCharge & "," & sngDiscAdd & "," & sngDiscLog & ",'" & _
intCurrency & "'," & sngQuote
'SAVE
SQLexec (strT)
'CHECK error
If Not SQLparam.CnErrNumero = -1 Then
SQLError
SQLclose
Exit Sub
End If
'CHECK operacion
Select Case Me.dsiOperacion
Case "INS"
'GET record completo despues de insertar
strT = "select * from costos_vw where id = " & "(select max(id) from costos_vw)"
Set rs = SQLexec(strT)
'CHECK error
If Not SQLparam.CnErrNumero = -1 Then
SQLError
SQLclose
Exit Sub
End If
'COPY datos de rs a grilla
Call spdCab_copiar_RS_a_spd(rs)
Case "EDI"
'GET record completo despues de editar
strT = "select * from costos_vw where id = " & intID
Set rs = SQLexec(strT)
'CHECK error
If Not SQLparam.CnErrNumero = -1 Then
SQLError
SQLclose
Exit Sub
End If
'COPY datos de rs a grilla
Call spdCab_copiar_RS_a_spd(rs)
Case "ELI"
'CLEAR cab
Call spdCab_Blanquear(Me.spdCab)
End Select
'LOCK cab
Call spd_Bloquear(Me.spdCab, True)
'FILL combo Box
Call lleno_Pozos_conCosto
'SET pozo actual
'pendiente
'CLOSE
SQLclose
End Sub
'
'COPY datos de recordset a grilla cab
'
Public Sub spdCab_copiar_RS_a_spd(rs As ADODB.Recordset)
'COPY datos
spdCab.SetText 2, 1, rs!ID
spdCab.SetText 2, 2, rs!Date
spdCab.SetText 2, 3, rs![well ID]
spdCab.SetText 2, 4, rs!uwi
spdCab.SetText 2, 5, rs!Area
spdCab.SetText 2, 6, rs![Electric logging]
spdCab.SetText 2, 7, rs![Mud logging company]
spdCab.SetText 2, 8, rs![Well site geology company]
spdCab.SetText 5, 1, rs!Dfwa
spdCab.SetText 5, 2, rs![Tope Zone]
spdCab.SetText 5, 3, rs!Perforations
spdCab.SetText 5, 4, rs![Basic charge cost]
spdCab.SetText 5, 5, rs![Discount additional]
spdCab.SetText 5, 6, rs![Discount logging]
spdCab.SetText 5, 7, rs!Currency
spdCab.SetText 5, 8, rs!Quote
End Sub
'
'GET costo
'
Public Sub costo_get()
Dim strT As String
Dim rsCab As ADODB.Recordset
'BUILD query
strT = "select * from costos_vw where IDpozo = " & Me.cboPozos.ItemData(Me.cboPozos.ListIndex)
'GET rs
Set rsCab = SQLexec(strT)
'CHECK error
If Not SQLparam.CnErrNumero = -1 Then
SQLError
SQLclose
Exit Sub
End If
' 'BUILD query
' strT = "select * from costos_vw where IDpozo = '" & Me.cboPozos & "'"
'
' 'GET rs
' Set rsCab = SQLexec(strT)
'
' 'CHECK error
' If Not SQLparam.CnErrNumero = -1 Then
' SQLError
' SQLclose
' Exit Sub
' End If
'COPY datos de rs a grilla cab
Call spdCab_copiar_RS_a_spd(rsCab)
' 'COPY datos de rs a grilla det
' Call spdDet_copiar_RS_a_spd(rsDet)
'CLOSE
SQLclose
End Sub