using GarmentFactoryContracts.BindingModels; using GarmentFactoryContracts.BusinessLogicsContracts; using GarmentFactoryContracts.SearchModels; using Microsoft.Extensions.Logging; 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; namespace GarmentFactoryView { public partial class FormCreateOrder : Form { private readonly ILogger _logger; private readonly ITextileLogic _logicT; private readonly IOrderLogic _logicO; public FormCreateOrder(ILogger logger, ITextileLogic logicT, IOrderLogic logicO) { InitializeComponent(); _logger = logger; _logicT = logicT; _logicO = logicO; } private void FormCreateOrder_Load(object sender, EventArgs e) { _logger.LogInformation("Загрузка текстилей для заказа"); try { var textileList = _logicT.ReadList(null); if (textileList != null) { comboBoxTextile.DisplayMember = "TextileName"; comboBoxTextile.ValueMember = "Id"; comboBoxTextile.DataSource = textileList; comboBoxTextile.SelectedItem = null; _logger.LogInformation("Загрузка текстиля для заказа"); } } catch (Exception ex) { _logger.LogError(ex, "Ошибка во время загрузки текстиля для заказа"); MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); } } //Суммарная стоимость чека private void CalcSum() { if (comboBoxTextile.SelectedValue != null && !string.IsNullOrEmpty(textBoxCount.Text)) { try { int id = Convert.ToInt32(comboBoxTextile.SelectedValue); var textile = _logicT.ReadElement(new TextileSearchModel { Id = id }); int count = Convert.ToInt32(textBoxCount.Text); textBoxSum.Text = Math.Round(count * (textile?.Price ?? 0), 2).ToString(); _logger.LogInformation("Расчет суммы заказа"); } catch (Exception ex) { _logger.LogError(ex, "Ошибка расчета суммы заказа"); MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } private void TextBoxCount_TextChanged(object sender, EventArgs e) { CalcSum(); } private void ComboBoxProduct_SelectedIndexChanged(object sender, EventArgs e) { CalcSum(); } private void ButtonSave_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(textBoxCount.Text)) { MessageBox.Show("Заполните поле Количество", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } if (comboBoxTextile.SelectedValue == null) { MessageBox.Show("Выберите текстиль", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } _logger.LogInformation("Создание заказа"); try { var operationResult = _logicO.CreateOrder(new OrderBindingModel { TextileId = Convert.ToInt32(comboBoxTextile.SelectedValue), Count = Convert.ToInt32(textBoxCount.Text), Sum = Convert.ToDouble(textBoxSum.Text) }); if (!operationResult) { throw new Exception("Ошибка при создании заказа. Дополнительная информация в логах."); } MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information); DialogResult = DialogResult.OK; Close(); } catch (Exception ex) { _logger.LogError(ex, "Ошибка создания заказа"); MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); } } private void ButtonCancel_Click(object sender, EventArgs e) { DialogResult = DialogResult.Cancel; Close(); } } }