private void ChangeAcceptBtn_Click(object sender, EventArgs e) // Bevestiging van aantal veranderen { int orderId = int.Parse(AllOrderslv.SelectedItems[0].SubItems[0].Text); int amount = int.Parse(AllOrderslv.SelectedItems[0].SubItems[3].Text); if (!string.IsNullOrEmpty(AmountBox.Text)) { amount = int.Parse(AmountBox.Text); } else { throw new Exception("Er is iets fout gegaan!"); } BestellingItem be = new BestellingItem(); be.orderId = int.Parse(AllOrderslv.SelectedItems[0].SubItems[0].Text); be.amount = int.Parse(AllOrderslv.SelectedItems[0].SubItems[3].Text); if (be_service.UpdateAmountOrderItem(orderId, amount) == true) { MessageBox.Show($"Aantal is gewijzigd naar {amount}"); FillOrderItemList(); ChangeAmount_pnl.Hide(); } else { MessageBox.Show("Er is iets fout gegaan"); } }
// Aantal aanpassen van de bestelling private void ChangeBtn_Click(object sender, EventArgs e) { AllOrders_pnl.Hide(); ChangeAmount_pnl.Show(); if (AllOrderslv.SelectedItems.Count <= 0) { MessageBox.Show("U heeft geen gerecht geselecteerd"); } else { orderIDlbl.Text = $"TAFEL: {AllOrderslv.SelectedItems[0].SubItems[1].Text}"; orderItemlbl.Text = AllOrderslv.SelectedItems[0].SubItems[2].Text; AmountBox.Text = AllOrderslv.SelectedItems[0].SubItems[3].Text; } }
private void plusAantalBtn_Click(object sender, EventArgs e) // aantal verhogen van order item { int amount = int.Parse(AmountBox.Text); amount++; if (amount == 100) { DialogResult dialogResult = MessageBox.Show("U heeft de 100 gehaald. Wilt u verder gaan?", "Aantal is 100", MessageBoxButtons.YesNo); if (dialogResult == DialogResult.Yes) { ChangeAmount_pnl.Show(); } else if (dialogResult == DialogResult.No) { amount = 1; } } AmountBox.Text = amount.ToString(); }