-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductionForm.cs
187 lines (172 loc) · 6.93 KB
/
ProductionForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
using JewelryStore.Data;
using JewelryStore.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.Entity;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace JewelryStore.Forms
{
/// <summary>
/// форма изделий
/// </summary>
public partial class ProductionForm : Form
{
Production production = new Production();
EditMode EditMode;
List<Material> Materials = new List<Material>();
public ProductionForm()
{
InitializeComponent();
EditMode = EditMode.Create;
mainBtn.Text = "Добавить";
var context = new ApplicationDbContext();
//TODO получение всех материалов
Materials = context.Materials.ToList();
MaterialC.Items.Clear();
MaterialC.Items.AddRange(Materials.ToArray());
MaterialC.DisplayMember = "Data";
MaterialC.ValueMember = "Id";
}
public ProductionForm(int id,EditMode editMode)
{
InitializeComponent();
EditMode = editMode;
if (editMode == EditMode.View)
{
mainBtn.Text = "Ок";
NameT.Enabled = Weight.Enabled=Cost.Enabled= materialGrid.Enabled=Type.Enabled= false;
}
else
{
mainBtn.Text = "Сохранить";
}
var context = new ApplicationDbContext();
//TODO получение продукции по ключу с включение материалов
production = context.Productions
.Include(x=>x.MaterialCosts.Select(u=>u.Material))
.SingleOrDefault(x => x.Id == id);
//TODO получение всех материалов
Materials = context.Materials.ToList();
MaterialC.Items.Clear();
MaterialC.Items.AddRange(Materials.ToArray());
MaterialC.DisplayMember = "Data";
MaterialC.ValueMember = "Id";
materialGrid.Rows.Clear();
foreach(var m in production.MaterialCosts)
{
materialGrid.Rows.Add( m.Material.Id, m.Weight);
}
NameT.Text = production.Name;
Type.Text = production.Type;
Cost.Value = production.Cost;
Weight.Value = production.Weight;
}
/// <summary>
/// Сохрание или обновление записи в базе данных
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void mainBtn_Click(object sender, EventArgs e)
{
var context = new ApplicationDbContext();
switch (EditMode)
{
case EditMode.Create:
production.Name = NameT.Text;
production.Type = Type.Text;
production.MaterialCosts = new List<MaterialCost>();
foreach (DataGridViewRow c in materialGrid.Rows)
{
try
{
var id = (int)c.Cells[0].Value;
var m = Materials.FirstOrDefault(x => x.Id == id);
var cost = m.GramCost * Convert.ToDecimal(c.Cells[1].Value);
var w = Convert.ToDecimal(c.Cells[1].Value);
production.MaterialCosts.Add(new MaterialCost() { MaterialId = m.Id, Weight = w });
}
catch (Exception ex) { }
}
//TODO добавление новой продукции
context.Productions.Add(production);
break;
case EditMode.Edit:
//TODO получение продукции по ключу для обновления записи
production = context.Productions.FirstOrDefault(x => x.Id == production.Id);
production.Name = NameT.Text;
production.Type = Type.Text;
context.MaterialCosts.RemoveRange(production.MaterialCosts);
foreach (DataGridViewRow c in materialGrid.Rows)
{
try
{
var id = (int)c.Cells[0].Value;
var m = Materials.FirstOrDefault(x => x.Id == id);
var cost = m.GramCost * Convert.ToDecimal(c.Cells[1].Value);
var w = Convert.ToDecimal(c.Cells[1].Value);
production.MaterialCosts.Add(new MaterialCost() { MaterialId = m.Id, Weight = w });
}
catch (Exception ex) { }
}
break;
}
context.SaveChanges();
}
/// <summary>
/// контестное меню для таблицы
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void materialGrid_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
decimal cost = 0,w=0;
foreach(DataGridViewRow c in materialGrid.Rows)
{
try
{
var id = (int)c.Cells[0].Value;
var m= Materials.FirstOrDefault(x => x.Id == id);
cost += m.GramCost * Convert.ToDecimal(c.Cells[1].Value);
w += Convert.ToDecimal(c.Cells[1].Value);
}
catch (Exception ex) { }
}
Weight.Value = w;
Cost.Value = cost+cost*(decimal)0.1;
}
private void label2_Click(object sender, EventArgs e)
{
}
private void Weight_ValueChanged(object sender, EventArgs e)
{
}
/// <summary>
/// удаление строки из таблицы
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void materialGrid_RowsRemoved(object sender, DataGridViewRowsRemovedEventArgs e)
{
decimal cost = 0, w = 0;
foreach (DataGridViewRow c in materialGrid.Rows)
{
try
{
var id = (int)c.Cells[0].Value;
var m = Materials.FirstOrDefault(x => x.Id == id);
cost += m.GramCost * Convert.ToDecimal(c.Cells[1].Value);
w += Convert.ToDecimal(c.Cells[1].Value);
}
catch (Exception ex) { }
}
Weight.Value = w;
Cost.Value = cost + cost * (decimal)0.1;
}
}
}