{
con.Close();
cmd.Dispose();
}
}
}
图 5-3 商品查询模块页面展示
5.1.4 销售商品管理模块
商品管理模块如图5-4所示,程序的左上部分程序输入区主要是添加管理商品的一下信息:商品编号、商品型号、商品数量、商品产地、商品类别、商品名称、商品价格、商品以及出厂日期和商品备注。右上区域为商品的基本属性修改区,主要包括商品的修改、添加、删除、和重置功能。该模块窗口的下部分是输出所有商品信息展示。
模块部分代码实现:
例如:再修改该模块的部分内容时,提示要删除的商品不存在,已经通过商品的编号即可完成信息的删除,并提示删除成功
private void button4_Click(object sender, EventArgs e)
{
dataset.Clear();
if (textBox5.Text.Trim() == "")
{
MessageBox.Show("请输入编号信息", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
else
{
sql= "select * from product where number=" + "'" + textBox5.Text.Trim() + "'";
adapter = new SqlDataAdapter(sql, con);
adapter.Fill(dataset, "product");
if (dataset.Tables["product"].Rows.Count < 1)
{ MessageBox.Show("要删除的商品不存在", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Warning); }
else
{
sql = string.Format(@"delete from product where number= '{0}'", textBox5.Text.Trim());
SqlCommand cmd = new SqlCommand(sql, con);
try
{
con.Open(); ERP销售管理销售合同子模块的设计与开发(11):http://www.youerw.com/jisuanji/lunwen_2204.html