доделал
This commit is contained in:
parent
c0fb5a6878
commit
6fefe21ba4
@ -12,6 +12,8 @@ public class MaterialProcurement
|
|||||||
public int Id { get; private set; }
|
public int Id { get; private set; }
|
||||||
[Browsable(false)]
|
[Browsable(false)]
|
||||||
public int MaterialsId { get; private set; }
|
public int MaterialsId { get; private set; }
|
||||||
|
[DisplayName("Материалы")]
|
||||||
|
public string MaterailName { get; private set; } = string.Empty;
|
||||||
[DisplayName("Дата закупки")]
|
[DisplayName("Дата закупки")]
|
||||||
public DateTime ProcurmentDate { get; private set; }
|
public DateTime ProcurmentDate { get; private set; }
|
||||||
[DisplayName("Сумма закупки")]
|
[DisplayName("Сумма закупки")]
|
||||||
|
@ -57,6 +57,7 @@
|
|||||||
// numericUpDownMaterialRrocurement
|
// numericUpDownMaterialRrocurement
|
||||||
//
|
//
|
||||||
numericUpDownMaterialRrocurement.Location = new Point(153, 161);
|
numericUpDownMaterialRrocurement.Location = new Point(153, 161);
|
||||||
|
numericUpDownMaterialRrocurement.Maximum = new decimal(new int[] { 100000, 0, 0, 0 });
|
||||||
numericUpDownMaterialRrocurement.Name = "numericUpDownMaterialRrocurement";
|
numericUpDownMaterialRrocurement.Name = "numericUpDownMaterialRrocurement";
|
||||||
numericUpDownMaterialRrocurement.Size = new Size(150, 27);
|
numericUpDownMaterialRrocurement.Size = new Size(150, 27);
|
||||||
numericUpDownMaterialRrocurement.TabIndex = 2;
|
numericUpDownMaterialRrocurement.TabIndex = 2;
|
||||||
|
@ -25,7 +25,12 @@ namespace ProjectRepairWork.Forms
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private void LoadList() => dataGridView.DataSource = _materialProcurementRepository.ReadMaterialProcurement();
|
private void LoadList()
|
||||||
|
{
|
||||||
|
dataGridView.DataSource = _materialProcurementRepository.ReadMaterialProcurement();
|
||||||
|
dataGridView.Columns["Id"].Visible = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,7 +12,6 @@ namespace ProjectRepairWork.Forms
|
|||||||
|
|
||||||
public FormMaterialsReport(IUnityContainer container)
|
public FormMaterialsReport(IUnityContainer container)
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
_container = container ?? throw new ArgumentNullException(nameof(container));
|
_container = container ?? throw new ArgumentNullException(nameof(container));
|
||||||
}
|
}
|
||||||
|
@ -91,7 +91,8 @@ public class MaterialProcurementRepository : IMaterialProcurementRepository
|
|||||||
var querySelect = $@"
|
var querySelect = $@"
|
||||||
SELECT
|
SELECT
|
||||||
mp.*,
|
mp.*,
|
||||||
bm.MaterialsType as MaterialsName
|
bm.MaterialsType as MaterailName
|
||||||
|
|
||||||
FROM MaterialProcurement mp
|
FROM MaterialProcurement mp
|
||||||
LEFT JOIN BuildingMaterials bm on bm.Id = mp.MaterialsId
|
LEFT JOIN BuildingMaterials bm on bm.Id = mp.MaterialsId
|
||||||
{builder.Build()}";
|
{builder.Build()}";
|
||||||
|
Loading…
Reference in New Issue
Block a user