-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmCabVen.frm
2510 lines (1987 loc) · 69.7 KB
/
frmCabVen.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 = "{BEEECC20-4D5F-4F8B-BFDC-5D9B6FBDE09D}#1.0#0"; "vsflex8.ocx"
Begin VB.Form frmCabVen
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
Caption = "Ventas"
ClientHeight = 7200
ClientLeft = 1305
ClientTop = 2295
ClientWidth = 11535
ClipControls = 0 'False
BeginProperty Font
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
KeyPreview = -1 'True
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Moveable = 0 'False
ScaleHeight = 7200
ScaleWidth = 11535
StartUpPosition = 2 'CenterScreen
Begin PCGestion.bsGradientLabel lblTotal
Height = 840
Left = 5595
Top = 6330
Width = 3660
_ExtentX = 6456
_ExtentY = 1482
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 36
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 16558731
Colour2 = 7177785
CaptionAlignment= 2
End
Begin PCGestion.chameleonButton cmdPrevious
Height = 630
Left = 1065
TabIndex = 6
TabStop = 0 'False
Top = 5700
Width = 1050
_ExtentX = 1852
_ExtentY = 1111
BTYPE = 9
TX = "F6"
ENAB = -1 'True
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "frmCabVen.frx":0000
PICN = "frmCabVen.frx":001C
UMCOL = -1 'True
SOFT = 0 'False
PICPOS = 0
NGREY = 0 'False
FX = 0
HAND = 0 'False
CHECK = 0 'False
VALUE = 0 'False
End
Begin PCGestion.bsGradientLabel lblstatus
Height = 375
Left = 45
Top = 5310
Width = 11475
_ExtentX = 20241
_ExtentY = 661
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 15640462
Colour2 = 7177785
CaptionAlignment= 1
End
Begin PCGestion.chameleonButton cmdFirst
Height = 630
Left = 30
TabIndex = 7
TabStop = 0 'False
Top = 5700
Width = 1005
_ExtentX = 1773
_ExtentY = 1111
BTYPE = 9
TX = "F5"
ENAB = -1 'True
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "frmCabVen.frx":0CEE
PICN = "frmCabVen.frx":0D0A
UMCOL = -1 'True
SOFT = 0 'False
PICPOS = 0
NGREY = 0 'False
FX = 0
HAND = 0 'False
CHECK = 0 'False
VALUE = 0 'False
End
Begin PCGestion.chameleonButton cmdNext
Height = 630
Left = 9390
TabIndex = 8
TabStop = 0 'False
Top = 5700
Width = 1050
_ExtentX = 1852
_ExtentY = 1111
BTYPE = 9
TX = "F7"
ENAB = -1 'True
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "frmCabVen.frx":1A40
PICN = "frmCabVen.frx":1A5C
UMCOL = -1 'True
SOFT = 0 'False
PICPOS = 1
NGREY = 0 'False
FX = 0
HAND = 0 'False
CHECK = 0 'False
VALUE = 0 'False
End
Begin PCGestion.chameleonButton cmdLast
Height = 630
Left = 10470
TabIndex = 9
TabStop = 0 'False
Top = 5700
Width = 1050
_ExtentX = 1852
_ExtentY = 1111
BTYPE = 9
TX = "F8"
ENAB = -1 'True
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "frmCabVen.frx":272E
PICN = "frmCabVen.frx":274A
UMCOL = -1 'True
SOFT = 0 'False
PICPOS = 1
NGREY = 0 'False
FX = 0
HAND = 0 'False
CHECK = 0 'False
VALUE = 0 'False
End
Begin PCGestion.chameleonButton cbAgregar
Height = 795
Left = 30
TabIndex = 1
TabStop = 0 'False
Top = 6360
Width = 1065
_ExtentX = 1879
_ExtentY = 1402
BTYPE = 9
TX = "&Agregar F1"
ENAB = -1 'True
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "frmCabVen.frx":3480
PICN = "frmCabVen.frx":349C
UMCOL = -1 'True
SOFT = 0 'False
PICPOS = 2
NGREY = 0 'False
FX = 0
HAND = 0 'False
CHECK = 0 'False
VALUE = 0 'False
End
Begin PCGestion.chameleonButton cbActualizar
Height = 795
Left = 1110
TabIndex = 0
Top = 6360
Width = 1200
_ExtentX = 2117
_ExtentY = 1402
BTYPE = 9
TX = "&Actualizar F2"
ENAB = -1 'True
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "frmCabVen.frx":4176
PICN = "frmCabVen.frx":4192
UMCOL = -1 'True
SOFT = 0 'False
PICPOS = 2
NGREY = 0 'False
FX = 0
HAND = 0 'False
CHECK = 0 'False
VALUE = 0 'False
End
Begin PCGestion.chameleonButton cbCancelar
Height = 795
Left = 9270
TabIndex = 10
TabStop = 0 'False
Top = 6360
Width = 1170
_ExtentX = 2064
_ExtentY = 1402
BTYPE = 9
TX = "&Cancelar"
ENAB = -1 'True
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "frmCabVen.frx":4A6C
PICN = "frmCabVen.frx":4A88
UMCOL = -1 'True
SOFT = 0 'False
PICPOS = 2
NGREY = 0 'False
FX = 0
HAND = 0 'False
CHECK = 0 'False
VALUE = 0 'False
End
Begin PCGestion.chameleonButton cbCerrar
Height = 795
Left = 10470
TabIndex = 11
TabStop = 0 'False
Top = 6360
Width = 1050
_ExtentX = 1852
_ExtentY = 1402
BTYPE = 9
TX = "Cerrar ESC"
ENAB = -1 'True
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "frmCabVen.frx":5362
PICN = "frmCabVen.frx":537E
UMCOL = -1 'True
SOFT = 0 'False
PICPOS = 2
NGREY = 0 'False
FX = 0
HAND = 0 'False
CHECK = 0 'False
VALUE = 0 'False
End
Begin PCGestion.bsGradientLabel bsGradientLabel2
Height = 315
Left = 2160
Top = 5685
Width = 3555
_ExtentX = 6271
_ExtentY = 556
Caption = "- A - Añadir Venta - E - Editar Venta"
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 16558731
End
Begin PCGestion.bsGradientLabel lblDependiente
Height = 375
Left = 990
Top = 465
Width = 4485
_ExtentX = 7911
_ExtentY = 609
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 16558731
CaptionAlignment= 1
End
Begin PCGestion.bsGradientLabel bsGradientLabel4
Height = 315
Left = 5775
Top = 5685
Width = 3615
_ExtentX = 6376
_ExtentY = 556
Caption = "-C- Asignar Cliente -N- Nuevo Cliente"
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 16558731
End
Begin PCGestion.bsGradientLabel bsGradientLabel1
Height = 315
Left = 2160
Top = 6000
Width = 3570
_ExtentX = 6297
_ExtentY = 556
Caption = "- D - Asig. Dependi -F11- Devoluciones"
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 16558731
End
Begin PCGestion.bsGradientLabel lblCliente
Height = 375
Left = 6825
Top = 465
Width = 4665
_ExtentX = 8229
_ExtentY = 661
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 16558731
CaptionAlignment= 1
End
Begin PCGestion.bsGradientLabel bsGradientLabel3
Height = 315
Left = 5790
Top = 6000
Width = 3585
_ExtentX = 6324
_ExtentY = 556
Caption = "-I- Ir a Rejilla -B- Borrar Seleccion"
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 16558731
End
Begin PCGestion.bsGradientLabel bsGradientLabel5
Height = 315
Left = 2340
Top = 6375
Width = 1545
_ExtentX = 2725
_ExtentY = 556
Caption = "- R - Arreglos"
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 16558731
End
Begin VSFlex8Ctl.VSFlexGrid fg
Height = 4425
Left = 30
TabIndex = 15
Top = 885
Width = 11505
_cx = 20294
_cy = 7805
Appearance = 1
BorderStyle = 1
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
MousePointer = 0
BackColor = -2147483643
ForeColor = -2147483640
BackColorFixed = -2147483633
ForeColorFixed = -2147483630
BackColorSel = -2147483635
ForeColorSel = -2147483634
BackColorBkg = -2147483636
BackColorAlternate= 16626604
GridColor = -2147483633
GridColorFixed = -2147483632
TreeColor = -2147483632
FloodColor = 192
SheetBorder = -2147483642
FocusRect = 2
HighLight = 2
AllowSelection = -1 'True
AllowBigSelection= -1 'True
AllowUserResizing= 0
SelectionMode = 1
GridLines = 1
GridLinesFixed = 2
GridLineWidth = 1
Rows = 1
Cols = 7
FixedRows = 1
FixedCols = 1
RowHeightMin = 0
RowHeightMax = 0
ColWidthMin = 0
ColWidthMax = 0
ExtendLastCol = 0 'False
FormatString = $"frmCabVen.frx":6058
ScrollTrack = 0 'False
ScrollBars = 3
ScrollTips = 0 'False
MergeCells = 0
MergeCompare = 0
AutoResize = -1 'True
AutoSizeMode = 0
AutoSearch = 0
AutoSearchDelay = 2
MultiTotals = -1 'True
SubtotalPosition= 1
OutlineBar = 0
OutlineCol = 0
Ellipsis = 0
ExplorerBar = 0
PicturesOver = 0 'False
FillStyle = 0
RightToLeft = 0 'False
PictureType = 0
TabBehavior = 0
OwnerDraw = 0
Editable = 0
ShowComboButton = 1
WordWrap = 0 'False
TextStyle = 0
TextStyleFixed = 0
OleDragMode = 0
OleDropMode = 0
DataMode = 0
VirtualData = -1 'True
DataMember = ""
ComboSearch = 3
AutoSizeMouse = -1 'True
FrozenRows = 0
FrozenCols = 0
AllowUserFreezing= 0
BackColorFrozen = 0
ForeColorFrozen = 0
WallPaperAlignment= 9
AccessibleName = ""
AccessibleDescription= ""
AccessibleValue = ""
AccessibleRole = 24
End
Begin PCGestion.bsGradientLabel bsGradientLabel6
Height = 315
Left = 2325
Top = 6735
Width = 1560
_ExtentX = 2752
_ExtentY = 556
Caption = "- T - TERMINAR"
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 16761024
Colour2 = 14737632
End
Begin PCGestion.bsGradientLabel bsGradientLabel7
Height = 315
Left = 4020
Top = 6375
Width = 1530
_ExtentX = 2699
_ExtentY = 556
Caption = "- S - Descuento"
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 16558731
End
Begin VB.Label Label10
BackStyle = 0 'Transparent
Caption = "DEPEND."
Height = 300
Left = 105
TabIndex = 14
Top = 502
Width = 840
End
Begin VB.Label Label3
AutoSize = -1 'True
BackColor = &H00FCAA8B&
Caption = "Total"
Height = 300
Left = 4980
TabIndex = 13
Top = 6870
Width = 570
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "CLIENTE"
Height = 300
Left = 5865
TabIndex = 12
Top = 510
Width = 855
End
Begin VB.Label ioFMODI
Alignment = 2 'Center
BackColor = &H00EEA78E&
BeginProperty Font
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 360
Left = 9000
TabIndex = 5
Top = 45
Width = 2490
End
Begin VB.Label ioCODIGO
Alignment = 2 'Center
BackColor = &H00AC998C&
BeginProperty Font
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 360
Left = 990
TabIndex = 4
Top = 45
Width = 1680
End
Begin VB.Label Label1
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "CODIGO"
Height = 330
Left = 90
TabIndex = 3
Top = 60
Width = 855
End
Begin VB.Label Label5
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "Ultima modificación"
Height = 315
Left = 6780
TabIndex = 2
Top = 75
Width = 2160
End
End
Attribute VB_Name = "frmCabVen"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'---------------------------------------------------------------------------------------
' Modulo : frmCabVen
' Fecha/Hora : 17/01/2004 22:12
' Autor : JCASTILLO
' Propósito : Cabecera de ventas
'---------------------------------------------------------------------------------------
'·································································································································
' Convenio:
'·································································································································
'
' Para los campos de texto: usar miText
' Para los combos: usar miCombo.
'
'
' - Instrucciones:
'
' Enlazar los controles a los campos en Form_Load() (ver ). Y especificar la tabla
' y orden (y otras cosas que se pudieran necesitar) mediante los parametros del
' oSQL (objecto SmartSQL):
'
' oSQL.AddTable "SECCIONES"
' oSQL.AddOrderClause "CODIGO"
'---------------------------------------------------------------------------------------
' - Cambiar en:
'
' Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
'
' set plantilla = nothing
' por el nombre del formulario. Ej: set frmMntPrue = nothing
'---------------------------------------------------------------------------------------
' - Si se utiliza algun campo simulando que sea incremental (que se incremente en cada
' registro) cambia en Private Sub cbAgregar_Click()
'
' tmpcodigo = devuelve_campo("select max(codigo) + 1 from secciones")
'
' y poner el SQL correcto para que nos devuelva el proximo codigo para nuestro campo
'
'
'
'---------------------------------------------------------------------------------------
' - Colocar 2 tipos de validaciones para los datos.
'
' Una validación a nivel de campo. Por ejemplo, comprobar al salir del campo
' que la información es correcta, usando el evento validate. (si es > X, <> "", etc)
'
'- Otra validación es en:
'
'Private Sub rc_WillChangeRecord(ByVal adReason As ADODB.EventReasonEnum, ByVal cRecords As Long, adStatus As ADODB.EventStatusEnum, ByVal pRecordset As ADODB.Recordset)
'
' El evento cuando cambia un registro del recordset, pones el codigo por ejemplo en
' Case adRsnUpdate
'
' Mira el formulario frmMntCli para ver un ejemplo de esto.
'
'---------------------------------------------------------------------------------------
' - Formularios de Lista. Para llamar al formulario de lista estandar FrmFlexSimple, ver el
' codigo de cbLista_Click. Cambiar los colformats y otras cosas que puedan ser
' necesarias, para adecuar a cada formulario
'
'
'---------------------------------------------------------------------------------------
'Otras notas:
'
' - comprobar el orden correcto de los tabindex para permitir recorrer miText y miCombo
' del formulario con el teclado (soportan el avance con ENTER). Desde el primero hasta
' el ultimo.
'
'- cambiar en cbAgregar_clik y cbEditar_click
'
' ioDescripcion.setfocus
'
' por el nombre del control que tengamos que activar en primer lugar.
'
' cambiar en Private Sub ioCODIGO_Change(), y poner el numero de 000
' correcto en cada caso
Option Explicit
Dim WithEvents rc As ADODB.Recordset
Attribute rc.VB_VarHelpID = -1
Dim mbChangedByCode As Boolean
Dim mvBookMark As Variant
Dim mbEditFlag As Boolean
Dim mbAddNewFlag As Boolean
Dim mbDataChanged As Boolean
Dim prime As Boolean
Dim rc_ventas As New ADODB.Recordset
Dim rc_arreglos As New ADODB.Recordset
Dim rccli As New ADODB.Recordset
Dim oSQL As New clsSmartSQL
Dim dSQL As New clsSmartSQL
Public Entrar_Agregando As Boolean
'---------------------------------------------------------------------------------------
'si se llama desde el grid de ventas, simplemente presentar la venta correspondiente
'y no permitir Agregar nuevas Ventas
Public Desde_Grid As Boolean
Public D_Codigo As Long
Public D_CodCaja As Byte
'---------------------------------------------------------------------------------------
Dim conta_lineas As Long
'Public añade_nueva As Boolean
'---------------------------------------------------------------------------------------
' Procedimiento : des_enlaza_campos
' Fecha/Hora : 11/12/2003 11:12
' Autor : JCastillo
' Propósito : Desenlaza los controles para cerrar la conexión
'---------------------------------------------------------------------------------------
Private Sub des_enlaza_campos()
'des-enlazar controles
With ioCODIGO
Set .DataSource = Nothing
.DataField = ""
End With
'With cbCODCLI
' Set .DataSource = Nothing
' .DataField = ""
'End With
With ioFMODI
Set .DataSource = Nothing
.DataField = ""
End With
End Sub
'---------------------------------------------------------------------------------------
' Procedimiento : enlaza_campos
' Fecha/Hora : 11/12/2003 11:13
' Autor : JCastillo
' Propósito : Vuelve a enlazar los campos al recordset
'---------------------------------------------------------------------------------------
Private Sub enlaza_campos()
With ioCODIGO
Set .DataSource = rc
.DataField = "CODIGO"
End With
'With cbCODCLI
' .DataField = "CODALMDEST"
' Set .DataSource = rc
'End With
On Error Resume Next
With ioFMODI
Set .DataSource = rc
.DataField = "FMODI"
End With
On Error GoTo 0
End Sub
'---------------------------------------------------------------------------------------
' Subrutina : fg_DblClick
' Fecha/Hora : 08/02/2004 18:41
' Autor : JCASTILLO
' Propósito : Ir a editar artículos o el arreglo seleccionado
'---------------------------------------------------------------------------------------
Private Sub fg_dblClick()
Dim T_Arreglo As Variant
Dim tmpcodcost As Long
Dim tmpnomcost As String
Dim codop As Byte
Dim tmpid As Long
On Error GoTo fg_dblClick_Error
If rc.RecordCount <= 0 Then Exit Sub
'ver tipo 1=articulo, 2=arreglo
Select Case fg.TextMatrix(fg.Row, 1)
'si esta en blanco no hacer nada
Case ""
Exit Sub
'si es un articulo ...
Case "1"
tmpid = fg.TextMatrix(fg.Row, 2)
'si entro desde el grid, avisar que la venta ya se ha introducido en almacén, preguntar
'si se desea deshacer la venta
If Desde_Grid Then
If rc.fields("ESTADO") = 1 Then
If MsgBox("La venta actual ya ha sido aceptada, si desea modificarla, primero se debe pasar la venta a PENDIENTE. ¿Desea continuar?", vbQuestion + vbYesNo, titulo) = vbNo Then Exit Sub
Call Deshacer_Venta(rc.fields("CODIGO"), rc.fields("CODCAJA"), locCnn)
DoEvents
rc.Requery
End If
End If
DoEvents
With frmDetVenta
.CODIGO_VENTA = rc.fields("CODIGO")
.CODIGO_USR = rc.fields("CODPER")
.IR_A_ID = tmpid ' fg.TextMatrix(fg.Row, 2) 'ir al id marcado
' .IR_A_ID = 1
Set .rc = rc_ventas
Me.WindowState = vbMinimized
.Show 1
Me.WindowState = vbNormal
Call carga_grid_ventas
End With