diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs
index 4307978..93b014d 100644
--- a/MainWindow.xaml.cs
+++ b/MainWindow.xaml.cs
@@ -374,6 +374,8 @@ namespace formula_manage
private void fabric(object sender, RoutedEventArgs e)
{
+ fabric fabric_page = new fabric();
+ fabric_page.ShowDialog();//实例化并置顶打开信息窗口
}
private void variety(object sender, RoutedEventArgs e)
diff --git a/Windows/fabric.xaml b/Windows/fabric.xaml
new file mode 100644
index 0000000..d9ce924
--- /dev/null
+++ b/Windows/fabric.xaml
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Windows/fabric.xaml.cs b/Windows/fabric.xaml.cs
new file mode 100644
index 0000000..8894f34
--- /dev/null
+++ b/Windows/fabric.xaml.cs
@@ -0,0 +1,241 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Shapes;
+using GalaSoft.MvvmLight;
+using formula_manage.SQLModels;
+using System.Data.SqlClient;
+using System.Data;
+using System.Windows.Forms;
+using static System.Windows.Forms.VisualStyles.VisualStyleElement.Button;
+using Xceed.Wpf.AvalonDock.Themes;
+using static System.Net.Mime.MediaTypeNames;
+
+namespace formula_manage.Windows
+{
+ ///
+ /// fabric.xaml 的交互逻辑
+ ///
+ public partial class fabric : Window
+ {
+ public string INIPath = Convert.ToString(System.AppDomain.CurrentDomain.BaseDirectory) + "formula.ini"; //配置文件路径
+
+ DataTable dataTable = new DataTable(); //建立缓存
+
+ int Button_ID = 0;
+ string TEXT_SQLIP;
+ string TEXT_SQLNAME;
+ string TEXT_SQMOD;
+ string TEXT_SQLUSER;
+ string TEXT_SQLPASWOR;
+ string Connstr_SC;
+
+ public fabric()
+ {
+ WindowStartupLocation = WindowStartupLocation.CenterScreen;
+ InitializeComponent();
+ }
+
+ private async void fabric_Loaded(object sender, RoutedEventArgs e)//打开页面执行
+ {
+ UserClass.IniFile.IniFiles Configini = new UserClass.IniFile.IniFiles(INIPath);//生效配置读取
+ this.DataGridfabric.LoadingRow += new EventHandler(this.DataGridEquipment_LoadingRow);//生成序列号
+
+ TEXT_SQLIP = Configini.IniReadvalue("SQL_SERVER", "SQL1"); //读配置文件
+ TEXT_SQLNAME = Configini.IniReadvalue("SQL_SERVER", "SQL2");
+ TEXT_SQMOD = Configini.IniReadvalue("SQL_SERVER", "SQL3");
+ TEXT_SQLUSER = Configini.IniReadvalue("SQL_SERVER", "SQL4");
+ TEXT_SQLPASWOR = Configini.IniReadvalue("SQL_SERVER", "SQL5");
+ if (TEXT_SQMOD == "0") //判断连接方式
+ {
+ Connstr_SC = "server=" + TEXT_SQLIP + ";database=" + TEXT_SQLNAME + ";Trusted_Connection=SSPI";
+ }
+ else
+ {
+ Connstr_SC = "server=" + TEXT_SQLIP + ";database=" + TEXT_SQLNAME + ";User ID=" + TEXT_SQLUSER + ";Password=" + TEXT_SQLPASWOR;
+ }
+
+ string fabric_sql = "SELECT Code ,Name , GYard , Remark FROM [Dispensing].[dbo].[PRODUCTION_Material]";//查询语句
+
+ SqlConnection conn_SC = new SqlConnection(Connstr_SC); //实例化
+ try
+ {
+ await conn_SC.OpenAsync(); //打开数据连接
+ SqlDataAdapter fabric_data = new SqlDataAdapter(fabric_sql, Connstr_SC); //查询
+
+ fabric_data.Fill(dataTable); //查询结果存入缓存
+ conn_SC.Close(); //关闭连接
+
+ DataGridfabric.ItemsSource = dataTable.DefaultView; //数据加入表格
+ }
+ catch (Exception)
+ {
+ System.Windows.MessageBox.Show("请求信息失败,检查连接");
+ return;
+ }
+ }
+
+ ///
+ /// 生成序列号的方法
+ ///
+ private void DataGridEquipment_LoadingRow(object sender, DataGridRowEventArgs e)
+ {
+ e.Row.Header = e.Row.GetIndex() + 1;
+ }
+
+ ///
+ /// 查询数据库的方法
+ ///
+ private async void GridSql()
+ {
+ string fabric_sql = "SELECT Code ,Name , GYard , Remark FROM [Dispensing].[dbo].[PRODUCTION_Material]";//查询语句
+
+ SqlConnection conn_SC = new SqlConnection(Connstr_SC); //实例化
+
+ try
+ {
+ await conn_SC.OpenAsync(); //打开数据连接
+ SqlDataAdapter fabric_data = new SqlDataAdapter(fabric_sql, Connstr_SC); //查询
+
+ dataTable.Clear();
+ fabric_data.Fill(dataTable); //查询结果存入缓存
+ conn_SC.Close(); //关闭连接
+
+ DataGridfabric.ItemsSource = dataTable.DefaultView; //数据加入表格
+ }
+ catch (Exception)
+ {
+ System.Windows.MessageBox.Show("请求信息失败,检查连接");
+ return;
+ }
+ }
+
+ private async void Button_Preservation(object sender, RoutedEventArgs e)//保存按钮事件
+ {
+ Regex re_number = new Regex(@"^[0-9]+(.[0-9]{1,4})?$");//校验用正则表达式有1~2位小数的正实数
+ string fabric_sql;
+
+ if ((re_number.IsMatch(this.fabric_GYard.Text) == false) && (fabric_GYard.Text != ""))
+ System.Windows.MessageBox.Show("ERR:单位码重错误", "错误");//检查价格输入信息
+ else
+ if (string.IsNullOrEmpty(this.fabric_code.Text))
+ System.Windows.MessageBox.Show("ERR:无效的原料信息", "错误");//检查原料代码
+ else
+ if (string.IsNullOrEmpty(this.fabric_name.Text))
+ System.Windows.MessageBox.Show("ERR:无效的原料名称", "错误");//检查原料名
+ else
+ {
+ try
+ {
+ SqlConnection conn_SC = new SqlConnection(Connstr_SC); //实例化
+ fabric_sql = "SELECT count(*) FROM [Dispensing].[dbo].[PRODUCTION_Material] WHERE Code = '" + fabric_code.Text + " '";//查询语句
+ await conn_SC.OpenAsync(); //打开数据连
+ SqlCommand cmd = new SqlCommand(fabric_sql, conn_SC); //查询记录数
+ int count = Convert.ToInt32(cmd.ExecuteScalar()); //显示记录数
+ conn_SC.Close(); //关闭连接
+
+ if (count == 0)
+ {
+ fabric_sql = string.Format("INSERT INTO[Dispensing].[dbo].[PRODUCTION_Material](Code ,Name , GYard , Remark) " +
+ "VALUES ('" + fabric_code.Text + "','" + fabric_name.Text + "','" + fabric_GYard.Text + "','" + fabric_Remark.Text + "')");
+ await conn_SC.OpenAsync(); //打开数据连接
+ SqlCommand INSERT_cmd = new SqlCommand(fabric_sql, conn_SC);
+ int sql_in = INSERT_cmd.ExecuteNonQuery(); //执行语句
+
+ conn_SC.Close(); //关闭连接
+ if (sql_in == 0)
+ {
+ System.Windows.MessageBox.Show("添加失败");
+ }
+ else
+ {
+ GridSql();
+ System.Windows.MessageBox.Show("添加完成");
+ }
+ }
+ else
+ {
+ fabric_sql = string.Format("UPDATE [Dispensing].[dbo].[PRODUCTION_Material] SET Name='" + fabric_name.Text + "',GYard='" + fabric_GYard.Text + "',Remark='" + fabric_Remark.Text + "' Where Code='"+ fabric_code.Text + "'");
+ await conn_SC.OpenAsync(); //打开数据连接
+ SqlCommand INSERT_cmd = new SqlCommand(fabric_sql, conn_SC);
+ int sql_in = INSERT_cmd.ExecuteNonQuery(); //执行语句
+
+ conn_SC.Close(); //关闭连接
+ if (sql_in == 0)
+ {
+ System.Windows.MessageBox.Show("C0110-1:修改失败");
+ }
+ else
+ {
+ GridSql();
+
+ System.Windows.MessageBox.Show("修改完成");
+ }
+ }
+ }
+ catch (Exception)
+ {
+ System.Windows.MessageBox.Show("请求失败,检查连接");
+ return;
+ }
+ }
+ }
+
+ private async void Button_Delete(object sender, RoutedEventArgs e)//删除按钮事件
+ {
+ string ShowProductName = "是否删除【" + this.fabric_name.Text + "】" + this.fabric_code.Text;//获取原料信息并拼接提示字符串
+ MessageBoxResult showProductName = System.Windows.MessageBox.Show(ShowProductName, "提示", MessageBoxButton.YesNo, MessageBoxImage.Warning, MessageBoxResult.Yes);//弹窗提示是否删除目标原料
+ if (showProductName == MessageBoxResult.Yes)//判断是否删除原料
+ {
+
+ string Stuff_sql = string.Format("DELETE FROM [Dispensing].[dbo].[PRODUCTION_Material] WHERE Code ='" + fabric_code.Text.ToString() + "'");
+
+ SqlConnection conn_SC = new SqlConnection(Connstr_SC); //实例化
+ try
+ {
+ await conn_SC.OpenAsync(); //打开数据连接
+ SqlCommand INSERT_cmd = new SqlCommand(Stuff_sql, conn_SC);
+ int sql_in = INSERT_cmd.ExecuteNonQuery(); //执行语句
+ conn_SC.Close(); //关闭连接
+ if (sql_in == 0)
+ {
+ System.Windows.MessageBox.Show("C0110-2:删除失败", "错误");//判断执行是否成功
+ }
+ else
+ {
+ GridSql();
+ }
+ }
+ catch (Exception)
+ {
+ System.Windows.MessageBox.Show("请求失败,检查连接");
+ return;
+ }
+ }
+ }
+
+ private void DataGridfabric_MouseDoubleClick(object sender, MouseButtonEventArgs e)//数据表双击事件
+ {
+ int rownum = DataGridfabric.SelectedIndex;//获取鼠标选中行并定义变量
+ if (rownum != -1)//判断鼠标定位是否有效
+ {
+ /*定位选中行及指定列单元格文本信息*/
+ fabric_code.Text = (DataGridfabric.Columns[1].GetCellContent(DataGridfabric.Items[rownum]) as TextBlock).Text;//定位第0列,代码
+ fabric_name.Text = (DataGridfabric.Columns[2].GetCellContent(DataGridfabric.Items[rownum]) as TextBlock).Text;//定位第1列,名称
+ fabric_Remark.Text = (DataGridfabric.Columns[4].GetCellContent(DataGridfabric.Items[rownum]) as TextBlock).Text;//定位,
+ fabric_GYard.Text = (DataGridfabric.Columns[3].GetCellContent(DataGridfabric.Items[rownum]) as TextBlock).Text;//定位,
+ }
+ }
+
+ }
+}
diff --git a/formula_manage.csproj b/formula_manage.csproj
index 1e6ff23..3fb6727 100644
--- a/formula_manage.csproj
+++ b/formula_manage.csproj
@@ -245,6 +245,9 @@
Print.xaml
+
+ fabric.xaml
+
User.xaml
@@ -315,6 +318,10 @@
Designer
MSBuild:Compile
+
+ MSBuild:Compile
+ Designer
+
MSBuild:Compile
Designer