fix
This commit is contained in:
parent
55ed8f3c12
commit
abf1d9824b
@ -69,7 +69,7 @@
|
|||||||
this.labelDocument.Name = "labelDocument";
|
this.labelDocument.Name = "labelDocument";
|
||||||
this.labelDocument.Size = new System.Drawing.Size(69, 20);
|
this.labelDocument.Size = new System.Drawing.Size(69, 20);
|
||||||
this.labelDocument.TabIndex = 4;
|
this.labelDocument.TabIndex = 4;
|
||||||
this.labelDocument.Text = "Корабль";
|
this.labelDocument.Text = "Документ";
|
||||||
//
|
//
|
||||||
// labelCount
|
// labelCount
|
||||||
//
|
//
|
||||||
|
@ -39,7 +39,7 @@ namespace LawFirmView
|
|||||||
{
|
{
|
||||||
if (comboBoxDocuments.SelectedValue == null)
|
if (comboBoxDocuments.SelectedValue == null)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Выберите корабль", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show("Выберите документ", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (string.IsNullOrEmpty(numericUpDownCount.Text))
|
if (string.IsNullOrEmpty(numericUpDownCount.Text))
|
||||||
@ -47,7 +47,7 @@ namespace LawFirmView
|
|||||||
MessageBox.Show("Заполните количество", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show("Заполните количество", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_logger.LogInformation("Продажа поездок");
|
_logger.LogInformation("Продажа документов");
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var document = _documentLogic.ReadElement(new()
|
var document = _documentLogic.ReadElement(new()
|
||||||
@ -56,7 +56,7 @@ namespace LawFirmView
|
|||||||
});
|
});
|
||||||
if (document == null)
|
if (document == null)
|
||||||
{
|
{
|
||||||
throw new Exception("Корабль не найден. Дополнительная информация в логах.");
|
throw new Exception("Документ не найден. Дополнительная информация в логах.");
|
||||||
}
|
}
|
||||||
var operationResult = _shopLogic.SellDocuments(
|
var operationResult = _shopLogic.SellDocuments(
|
||||||
model: document,
|
model: document,
|
||||||
@ -64,7 +64,7 @@ namespace LawFirmView
|
|||||||
);
|
);
|
||||||
if (!operationResult)
|
if (!operationResult)
|
||||||
{
|
{
|
||||||
throw new Exception("Ошибка при продаже корабля. Дополнительная информация в логах.");
|
throw new Exception("Ошибка при продаже документа. Дополнительная информация в логах.");
|
||||||
}
|
}
|
||||||
MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
DialogResult = DialogResult.OK;
|
DialogResult = DialogResult.OK;
|
||||||
@ -72,7 +72,7 @@ namespace LawFirmView
|
|||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
_logger.LogError(ex, "Ошибка сохранения корабля");
|
_logger.LogError(ex, "Ошибка сохранения документа");
|
||||||
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user