//*************************************ACCIONES PIZZA GRANDE++++++++++++++++++++++++++++ private void Menu_Pizzas_Grande_SelectedIndexChanged(object sender, EventArgs e) { //Menu_Pizzas_Grande.CheckedItems.IndexOf(); if (Menu_Pizzas_Grande.GetItemChecked(0)) { string medida = "Grande"; string especialidad = "Peperoni"; int precio = 100; PizzaO p1 = new PizzaO(especialidad, medida, precio); } }
private void VerOrden_Click(object sender, EventArgs e) { listBox1.Items.Clear(); listBox1.Visible = true; or = new Orden(); pg = new Pizza(); r = new Refresco(); //Pizzas Grandes if (Menu_Pizzas_Grande.GetItemChecked(0)) { pg.Precio = 100; pg.Nombre = "Pepperoni"; pg.ID = 15; count = Convert.ToInt32(numericUpDown1.Value); or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizzas_Grande.GetItemChecked(1)) { pg.Precio = 100; pg.Nombre = "Hawaiana"; pg.ID = 12; count = Convert.ToInt32(numericUpDown2.Value); indice = count; or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizzas_Grande.GetItemChecked(2)) { pg.Precio = 120; pg.Nombre = "Carnes Frias"; pg.ID = 18; count = Convert.ToInt32(numericUpDown3.Value); or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizzas_Grande.GetItemChecked(3)) { pg.Precio = 120; pg.Nombre = "Mexicana"; pg.ID = 21; count = Convert.ToInt32(numericUpDown4.Value); or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizzas_Grande.GetItemChecked(4)) { pg.Precio = 120; pg.Nombre = "Cuatro Quesos"; pg.ID = 24; count = Convert.ToInt32(numericUpDown5.Value); or.agregarProducto(pg, count); } foreach (var s in Menu_Pizzas_Grande.CheckedItems) { listBox1.Items.Add(s); } //Pizzas Mediana if (Menu_Pizza_Mediana.GetItemChecked(0)) { pg.Precio = 80; pg.Nombre = "Pepperoni"; pg.ID = 16; count = Convert.ToInt32(numericUpDown6.Value); or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizza_Mediana.GetItemChecked(1)) { pg.Precio = 80; pg.Nombre = "Hawaiana"; pg.ID = 13; count = Convert.ToInt32(numericUpDown7.Value); indice = count; or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizza_Mediana.GetItemChecked(2)) { pg.Precio = 100; pg.Nombre = "Carnes Frias"; pg.ID = 19; count = Convert.ToInt32(numericUpDown8.Value); or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizza_Mediana.GetItemChecked(3)) { pg.Precio = 100; pg.Nombre = "Mexicana"; pg.ID = 22; count = Convert.ToInt32(numericUpDown9.Value); or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizza_Mediana.GetItemChecked(4)) { pg.Precio = 100; pg.Nombre = "Cuatro Quesos"; pg.ID = 25; count = Convert.ToInt32(numericUpDown10.Value); or.agregarProducto(pg, count); } foreach (var s in Menu_Pizza_Mediana.CheckedItems) { listBox1.Items.Add(s); } //Pizzas Chica if (Menu_Pizza_Chica.GetItemChecked(0)) { pg.Precio = 60; pg.Nombre = "Pepperoni"; pg.ID = 17; count = Convert.ToInt32(numericUpDown11.Value); or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizza_Chica.GetItemChecked(1)) { pg.Precio = 60; pg.Nombre = "Hawaiana"; pg.ID = 14; count = Convert.ToInt32(numericUpDown12.Value); indice = count; or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizza_Chica.GetItemChecked(2)) { pg.Precio = 80; pg.Nombre = "Carnes Frias"; pg.ID = 20; count = Convert.ToInt32(numericUpDown13.Value); or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizza_Chica.GetItemChecked(3)) { pg.Precio = 80; pg.Nombre = "Mexicana"; pg.ID = 23; count = Convert.ToInt32(numericUpDown14.Value); or.agregarProducto(pg, count); } pg = new Pizza(); if (Menu_Pizza_Chica.GetItemChecked(4)) { pg.Precio = 80; pg.ID = 26; pg.Nombre = "Cuatro Quesos"; count = Convert.ToInt32(numericUpDown15.Value); or.agregarProducto(pg, count); } foreach (var s in Menu_Pizza_Chica.CheckedItems) { listBox1.Items.Add(s); } //Refrescos 2Lts. r = new Refresco(); if (ListaRefrescos.GetItemChecked(0)) { r.Precio = 35; r.Nombre = "Coca Cola"; r.ID = 6; count = Convert.ToInt32(numericUpDown16.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (ListaRefrescos.GetItemChecked(1)) { r.Precio = 35; r.Nombre = "Pepsi"; r.ID = 9; count = Convert.ToInt32(numericUpDown17.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (ListaRefrescos.GetItemChecked(2)) { r.Precio = 30; r.Nombre = "Manzanita"; r.ID = 12; count = Convert.ToInt32(numericUpDown18.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (ListaRefrescos.GetItemChecked(3)) { r.Precio = 30; r.Nombre = "7Up"; r.ID = 15; count = Convert.ToInt32(numericUpDown19.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (ListaRefrescos.GetItemChecked(4)) { r.Precio = 25; r.Nombre = "Mirinda"; r.ID = 18; count = Convert.ToInt32(numericUpDown20.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (ListaRefrescos.GetItemChecked(5)) { r.Precio = 25; r.Nombre = "Sangria"; r.ID = 21; count = Convert.ToInt32(numericUpDown21.Value); or.agregarProducto(r, count); //orden.Add(or); } foreach (string m in ListaRefrescos.CheckedItems) { listBox1.Items.Add(m); } //Refrescos 1Lt. r = new Refresco(); if (refrescos1.GetItemChecked(0)) { r.Precio = 25; r.Nombre = "Coca Cola"; r.ID = 7; count = Convert.ToInt32(numericUpDown22.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (refrescos1.GetItemChecked(1)) { r.Precio = 25; r.Nombre = "Pepsi"; r.ID = 10; count = Convert.ToInt32(numericUpDown23.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (refrescos1.GetItemChecked(2)) { r.Precio = 20; r.Nombre = "Manzanita"; r.ID = 13; count = Convert.ToInt32(numericUpDown24.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (refrescos1.GetItemChecked(3)) { r.Precio = 20; r.Nombre = "7Up"; r.ID = 16; count = Convert.ToInt32(numericUpDown25.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (refrescos1.GetItemChecked(4)) { r.Precio = 20; r.Nombre = "Mirinda"; r.ID = 19; count = Convert.ToInt32(numericUpDown26.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (refrescos1.GetItemChecked(5)) { r.Precio = 20; r.Nombre = "Sangria"; r.ID = 22; count = Convert.ToInt32(numericUpDown27.Value); or.agregarProducto(r, count); //orden.Add(or); } foreach (string m in refrescos1.CheckedItems) { listBox1.Items.Add(m); } //Refrescos 375ml. r = new Refresco(); if (refrescos375.GetItemChecked(0)) { r.Precio = 20; r.Nombre = "Coca Cola"; r.ID = 8; count = Convert.ToInt32(numericUpDown28.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (refrescos375.GetItemChecked(1)) { r.Precio = 20; r.Nombre = "Pepsi"; r.ID = 11; count = Convert.ToInt32(numericUpDown29.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (refrescos375.GetItemChecked(2)) { r.Precio = 15; r.Nombre = "Manzanita"; r.ID = 14; count = Convert.ToInt32(numericUpDown30.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (refrescos375.GetItemChecked(3)) { r.Precio = 15; r.Nombre = "7Up"; r.ID = 17; count = Convert.ToInt32(numericUpDown31.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (refrescos375.GetItemChecked(4)) { r.Precio = 15; r.Nombre = "Mirinda"; r.ID = 20; count = Convert.ToInt32(numericUpDown32.Value); or.agregarProducto(r, count); //orden.Add(or); } r = new Refresco(); if (refrescos375.GetItemChecked(5)) { r.Precio = 15; r.Nombre = "Sangria"; r.ID = 23; count = Convert.ToInt32(numericUpDown33.Value); or.agregarProducto(r, count); //orden.Add(or); } foreach (string m in refrescos375.CheckedItems) { listBox1.Items.Add(m); } StreamReader sr; if (File.Exists("ficha.txt")) { sr = new StreamReader("ficha.txt"); or.NumFicha = Convert.ToInt32(sr.ReadLine()); //Si el número de fichas es mayor a 100 se vuelve a contar desde 1 if (or.NumFicha > 100) { or.NumFicha = 1; } sr.Close(); } else { or.NumFicha = 1; } listBox1.Items.Add("Número de ficha: " + or.NumFicha); listBox1.Items.Add(""); listBox1.Items.Add("\tTotal: " + or.getTotal()); }