计算机毕业设计预定功能介绍:
5.5 预定
此模块显示已经选择完但未生成订单的餐品信息列表,显示此次预定的总数量和总金额。可以对其生成定单,删除操作。
以下是引用片段: 核心代码如下: //将预订单的当前人员的数据显示在当前列表中 DataTable tmpda = new DataTable(); tmpda = DataBase.Get_Table("select * from gwcxx,spxx where gwcxx.spbh=spxx.spbh and gwcxx.hydlm='" + Session["UserID"].ToString() + "'"); if (tmpda.Rows.Count < 1) tmpda.Rows.Add(tmpda.NewRow()); this.GridView1.DataSource = tmpda; this.GridView1.DataBind(); //从数据库中计算出预订单中当前人员的总数量和总金额 tmpda = DataBase.Get_Table("select sum(gwcxx.sl),sum(gwcxx.sl * spxx.spjg) from gwcxx,spxx where gwcxx.spbh=spxx.spbh and gwcxx.hydlm='" + Session["UserID"].ToString() + "'"); if (tmpda.Rows.Count > 0) { this.Label2.Text = tmpda.Rows[0][0].ToString(); this.Label1.Text = tmpda.Rows[0][1].ToString(); }
|
〖资料来源:计算机毕业论文 www.xiaoniu168.com〗
第12页为计算机毕业论文用户订单功能介绍......