-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCentral2.cs
631 lines (526 loc) · 18.7 KB
/
Central2.cs
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using MundoMusical.LOGIN;
using MundoMusical;
using MundoMusical.ATOM;
using MundoMusical.INVENTARIO;
using MundoMusical.PRODUCT;
using MundoMusical.CUSTOMER;
using MundoMusical.CATEGORY;
using MundoMusical.PAYMODE;
using MundoMusical.VENTA;
using MundoMusical.DB;
using MundoMusical.CONFIGURACION_DE_IMPRESION;
using System.Runtime.InteropServices;
using MundoMusical.TIENDA;
using MundoMusical.DB.DUMPS;
using MundoMusical.CONSULTAS;
using MundoMusical.LABELS;
namespace MundoMusical
{
public partial class Central2 : BaseForm
{
[BrowsableAttribute(false)]
private MdiClient myMDI;
central2OnLoad info;
public midformProduct product;
public midformCustomer customer;
public addCategory addcat;
public updateCategory updcat;
public deleteCategory delcat;
public seecategory seecat;
public addPayMode addpay;
public deleteModopago delpay;
public updatePaymode updpay;
public seepaymodes seepay;
public consultas_central consultas;
public centralVenta xventa;
private string val0, val1;
public usuario usr;
public login sesion;
public printerticketdefault impresoras;
public inventarioBase inventario;
private dbop DB;
public centraltienda tienda;
public exportdb dboperations;
public cancelarVenta xcancelarventa;
public printcbGui etiquetas;
private const int SB_BOTH = 3;
private const int WM_NCCALCSIZE = 0x83;
[DllImport("user32.dll")]
private static extern int ShowScrollBar(IntPtr hWnd, int wBar, int bShow);
protected override void WndProc(ref Message m)
{
if (this.myMDI != null)
{
ShowScrollBar(this.myMDI.Handle, SB_BOTH, 0 );//SCROLL BARS OCULTAS
}
base.WndProc(ref m);
}
public Central2(string alias)
{
InitializeComponent();
this.DB = new dbop();
this.MaximizeBox = true;
this.Text = "SET SOFTWARE";
this.Shown += this.showINFO;
this.FormClosing += onClose;
this.DoubleBuffered = true;
this.FormBorderStyle = FormBorderStyle.None;
this.usr = this.DB.usrget(alias);
this.sesion = new login()
{
idusuario = this.usr.id_usuario,
hora_inicio = TimeSpan.Parse(genericDefinitions.getTimeExact()),
fecha_inicio = DateTime.Parse(genericDefinitions.getDate()),
};
genericDefinitions.globalsesion = this.sesion;
this.lblnombreusuario.Text = (this.usr.nombre +" "+ this.usr.apellido).ToUpper();
this.lblhorainicio.Text = this.sesion.hora_inicio.ToString();
this.btnusuario.MouseHover += (sender, atgs) =>
{
this.panelSesion.Visible = true;
};
this.btnusuario.MouseLeave += (sender, atgs) =>
{
this.panelSesion.Visible = false;
};
this.product = null;
this.customer = null;
this.addcat = null;
this.updcat = null;
this.delcat = null;
this.addpay = null;
this.delpay = null;
this.updpay = null;
this.seepay = null;
this.xventa = null;
}
/*protected override void OnSizeChanged(EventArgs e)
{
base.OnSizeChanged(e);
this.Refresh();
}*/
private void showINFO(object sender, EventArgs args)
{
this.info.ShowDialog();
}
private void Central2_Load(object sender, EventArgs e)
{
this.info = new central2OnLoad("Bienvenido");
this.WindowState = FormWindowState.Maximized;
foreach (Control ctl in this.Controls)
{
try
{
myMDI = (MdiClient)ctl;
myMDI.BackgroundImage = global::MundoMusical.Properties.Resources.wf;
}
catch (InvalidCastException ex)
{
//NOTHING
}
}
this.DB = new dbop();
this.setBounds();
genericDefinitions.WND_BOTTOM -=(this.panel1.Height+this.menuStrip1.Height);
if (!this.DB.insertlogin(ref this.sesion)) {
genericDefinitions.dangerInfo("Problema al registrar inicio de sesion");
};
}
private void tableLayoutPanel1_Paint(object sender, PaintEventArgs e)
{ }
private void button1_Click(object sender, EventArgs e)
{
this.openmidcustomer();
}
private void openmidcustomer()
{
if (this.customer == null)
{
this.customer = new CUSTOMER.midformCustomer(this) { MdiParent = this };
this.customer.Show();
}
else if(this.customer.WindowState == FormWindowState.Minimized)
{
this.customer.WindowState = FormWindowState.Normal;
}
else
{
this.customer.WindowState = FormWindowState.Minimized;
}
}
private void button2_Click(object sender, EventArgs e)
{
this.showmidprod();
}
private void pictureBox2_Click(object sender, EventArgs e)
{}
/*
private void formResize(object sender, EventArgs e) IMAGEN TOP, EVENTO ONRESIZE
{
centralPictureBox.Left = (this.Width - pictureBox1.Width) / 2;
centralPictureBox.Top = (this.Height - pictureBox1.Height) / 2;
}*/
private void button3_Click(object sender, EventArgs e)
{
this.openxventa();
}
/*
private void centerBackgroundPicture(object x, EventArgs arg) CENTRAR IMAGEN TOP
{
this.centralPictureBox.Left = (this.Width - this.centralPictureBox.Width) / 2;
this.centralPictureBox.Top = (this.Height - this.centralPictureBox.Height) / 2 -50;
}
private void deactivateBackg()
{
this.centralPictureBox.Visible = false;
}
*/
public void openxventa()
{
if (this.xventa == null)
{
this.xventa = new centralVenta(this,ref this.usr) { MdiParent = this };
this.xventa.Show();
}
else if (this.xventa.WindowState == FormWindowState.Normal)
{
this.xventa.WindowState = FormWindowState.Minimized;
}
else
{
this.xventa.WindowState = FormWindowState.Normal;
}
}
private void informacionDelSistemaToolStripMenuItem_Click(object sender, EventArgs e){}
private void panel1_Paint(object sender, PaintEventArgs e) {}
private void opcionesToolStripMenuItem_Click(object sender, EventArgs e){}
private void btnInventario_Click(object sender, EventArgs e)
{
if (this.inventario == null)
{
this.inventario = new inventarioBase(this) { MdiParent = this };
this.inventario.Show();
}
else if(this.inventario.WindowState == FormWindowState.Normal)
{
this.inventario.WindowState = FormWindowState.Minimized;
}
else
{
this.inventario.WindowState = FormWindowState.Normal;
}
}
private void button1_Click_1(object sender, EventArgs e){ }
private void button2_Click_1(object sender, EventArgs e){ }
private void button2_Click_2(object sender, EventArgs e)
{}
private void button1_Click_2(object sender, EventArgs e)
{}
private void informacionDelSistemaToolStripMenuItem_Click_1(object sender, EventArgs e)
{
this.info = new central2OnLoad("Información del sistema");
this.info.ShowDialog();
}
private void onesec_Tick(object sender, EventArgs e)
{
this.val0 = genericDefinitions.getHours();
this.val1 = genericDefinitions.getMinutes();
this.lbldate.Text = genericDefinitions.getDate();
this.lbltime.Text = String.Format("{0:00}:{1:00}", val0, val1);
}
private void opcionesToolStripMenuItem_Click_1(object sender, EventArgs e)
{}
private void categoriasToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void agregarToolStripMenuItem_Click(object sender, EventArgs e)
{
this.openaddcat();
}
private void openaddcat()
{
if (this.addcat == null)
{
this.addcat = new addCategory(this) { MdiParent = this };
this.addcat.Show();
}
else
{
this.addcat.WindowState = FormWindowState.Normal;
}
}
private void openupdcat()
{
if (this.updcat == null)
{
this.updcat = new updateCategory(this) { MdiParent = this };
this.updcat.Show();
this.updcat.Location = new Point(this.updcat.Location.X, this.updcat.Location.Y - 180);
}
else
{
this.updcat.WindowState = FormWindowState.Normal;
}
}
private void modificarToolStripMenuItem_Click(object sender, EventArgs e)
{
this.openupdcat();
}
private void opendelcat()
{
if (this.delcat == null)
{
this.delcat = new deleteCategory(this) { MdiParent = this };
this.delcat.Show();
this.delcat.Location = new Point(this.delcat.Location.X, this.delcat.Location.Y - 180);
}
else
{
this.delcat.WindowState = FormWindowState.Normal;
}
}
private void eliminarToolStripMenuItem_Click(object sender, EventArgs e)
{
this.opendelcat();
}
private void openseecat()
{
if (this.seecat == null)
{
this.seecat = new seecategory(this) { MdiParent = this };
this.seecat.Show();
}
else
{
this.seecat.WindowState = FormWindowState.Normal;
}
}
private void verCategoriasToolStripMenuItem_Click(object sender, EventArgs e)
{
this.openseecat();
}
private void button2_Click_3(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Minimized;
}
private void button1_Click_3(object sender, EventArgs e)
{
this.Close();
}
private void openEtiquetas()
{
if (this.etiquetas == null)
{
this.etiquetas = new printcbGui(this) { MdiParent = this, TopLevel = false };
this.etiquetas.Show();
}
else if (this.etiquetas.WindowState == FormWindowState.Minimized)
{
this.etiquetas.WindowState = FormWindowState.Normal;
}
else
{
this.etiquetas.WindowState = FormWindowState.Minimized;
}
}
private void openaddpay()
{
if(this.addpay == null)
{
this.addpay = new addPayMode(this) { MdiParent = this };
this.addpay.Show();
}
else
{
this.addpay.WindowState = FormWindowState.Normal;
}
}
private void openupdpay()
{
if (this.updpay == null)
{
this.updpay = new updatePaymode(this) { MdiParent = this };
this.updpay.Show();
}
else
{
this.updpay.WindowState = FormWindowState.Normal;
}
}
private void opendelpay()
{
if (this.delpay == null)
{
this.delpay = new deleteModopago(this) { MdiParent = this };
this.delpay.Show();
}
else
{
this.delpay.WindowState = FormWindowState.Normal;
}
}
private void openseepay(){
if (this.seepay == null)
{
this.seepay = new seepaymodes(this) { MdiParent = this };
this.seepay.Show();
}
else
{
this.seepay.WindowState = FormWindowState.Normal;
}
}
private void showmidprod()
{
if (this.product == null)
{
this.product = new midformProduct(this) { MdiParent = this };
this.product.Show();
}
else if(this.product.WindowState == FormWindowState.Minimized)
{
this.product.WindowState = FormWindowState.Normal;
}
else
{
this.product.WindowState = FormWindowState.Minimized;
}
}
private void agregarToolStripMenuItem1_Click(object sender, EventArgs e)
{
this.openaddpay();
}
private void modificarToolStripMenuItem1_Click(object sender, EventArgs e)
{
this.openupdpay();
}
private void eliminarToolStripMenuItem1_Click(object sender, EventArgs e)
{
this.opendelpay();
}
private void mercanciaToolStripMenuItem_Click(object sender, EventArgs e)
{
this.showmidprod();
}
private void verModosDePagoToolStripMenuItem_Click(object sender, EventArgs e)
{
this.openseepay();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
this.info = new central2OnLoad("Información del sistema");
this.info.ShowDialog();
}
private void configuracionDelSistemaToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void impresoraDeEtiquetasPredeterminadaToolStripMenuItem_Click(object sender, EventArgs e)
{
if(this.impresoras == null)
{
this.impresoras = new printerticketdefault(this) { MdiParent = this };
this.impresoras.Show();
}
else
{
this.impresoras.WindowState = FormWindowState.Normal;
}
}
private void menuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
}
private void btntienda_Click(object sender, EventArgs e)
{
this.tiendainteraction();
}
private void ventaDeMostradorToolStripMenuItem_Click(object sender, EventArgs e)
{
this.openxventa();
}
private void tiendainteraction()
{
if (this.tienda == null)
{
this.tienda = new centraltienda(this) { MdiParent = this };
this.tienda.Show();
}
else if (this.tienda.WindowState == FormWindowState.Normal)
{
this.tienda.WindowState = FormWindowState.Minimized;
}
else
{
this.tienda.WindowState = FormWindowState.Normal;
}
}
private void btnexportdb_Click(object sender, EventArgs e)
{
this.opendboperations();
}
private void opendboperations()
{
if(this.dboperations == null)
{
this.dboperations = new exportdb(this) { MdiParent = this };
this.dboperations.Show();
}
else if(this.dboperations.WindowState == FormWindowState.Normal)
{
this.dboperations.WindowState = FormWindowState.Minimized;
}
else
{
this.dboperations.WindowState = FormWindowState.Normal;
}
}
private void btnConsultas_Click(object sender, EventArgs e)
{
this.openconsultas();
}
private void cancelarVentaToolStripMenuItem_Click(object sender, EventArgs e)
{
this.opencancelarventa();
}
private void opencancelarventa()
{
if (this.xcancelarventa == null)
{
this.xcancelarventa = new cancelarVenta(this) { MdiParent = this };
this.xcancelarventa.Show();
}
else
{
this.xcancelarventa.WindowState = FormWindowState.Normal;
}
}
private void btnetiqueta_Click(object sender, EventArgs e)
{
this.openEtiquetas();
}
private void openconsultas()
{
if(this.consultas == null)
{
this.consultas = new consultas_central(this) {TopLevel = false, MdiParent = this};
this.consultas.Show();
}
else if(this.consultas.WindowState == FormWindowState.Normal)
{
this.consultas.WindowState = FormWindowState.Minimized;
}
else
{
this.consultas.WindowState = FormWindowState.Normal;
}
}
}
}