Exemplo n.º 1
0
 /// <summary>
 /// 执行删除数据并处理相关数据一致性
 /// </summary>
 /// <param name="e">传入的带有数据的事件参数</param>
 /// <returns></returns>
 private bool DeleteData(ListViewDeleteEventArgs e)
 {
     //实例化数据适配器
     using (var da = new v_mantissa_lot_card_loseTableAdapter())
     //取得数据库连接
     using (var conn = da.Connection)
     {
         //打开数据库连接
         conn.Open();
         //事务
         using (var tran = conn.BeginTransaction())
         {
             //设置事务
             da.Transaction = tran;
             try
             {
                 //当前盘亏单号
                 string billNum = e.Keys[0].ToString();
                 //当前行号
                 byte rowId = Convert.ToByte(e.Keys[1]);
                 //取得该条盘亏单清单记录
                 var tab = da.GetDataByBillNumAndRowId(billNum, rowId);
                 //检测是否存在数据
                 if (tab.Rows.Count <= 0)
                 {
                     throw new Exception(
                         string.Format(
                             "当前单据:\n单号:{0}\n行号:{1}\n已经被其他用户删除!",
                             billNum,
                             rowId
                         )
                     );
                 }
                 //单据内容、尾数结存和已入库结存数据适配器
                 using (var daContent = new t_mantissa_lot_card_lose_contentTableAdapter())
                 using (var daBalance = new t_mantissa_lot_card_balanceTableAdapter())
                 {
                     //设置连接对象
                     daContent.Connection = daBalance.Connection = tran.Connection;
                     //设置事务
                     daContent.Transaction = daBalance.Transaction = tran;
                     //遍历行执行删除各行的结存记录和写回已入库结存记录
                     foreach (DataSetMantissaLose.v_mantissa_lot_card_loseRow row in tab.Rows)
                     {
                         //执行插入到尾数结存清单
                         daBalance.InsertData(
                             row.prev_proc_name,
                             row.proc_name,
                             row.lot_id,
                             row.product_num,
                             row.pnl_qty,
                             row.pcs_qty,
                             "尾数盘亏单写回" + (row.IsremarkNull() ? string.Empty : ":" + row.remark),
                             Session["user_name"].ToString()
                         );
                     }
                     //根据盘亏单号和行号删除盘亏记录
                     daContent.Delete(billNum, rowId);
                     //检测当前盘亏记录内容行数
                     int? iCount = daContent.CountByBillNum(billNum);
                     if (iCount.HasValue && iCount.Value <= 0)
                     {
                         //表头适配器
                         using (var daHead = new t_mantissa_lot_card_lose_headTableAdapter())
                         {
                             //删除表头
                             daHead.Delete(billNum);
                         }
                     }
                 }
                 //提交事务
                 tran.Commit();
                 //返回成功
                 return true;
             }
             catch (Exception ex)
             {
                 //回滚事务
                 tran.Rollback();
                 //抛出错误
                 throw new Exception("删除尾数盘亏单记录出现错误:\n" + ex.Message);
             }
         }
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// 根据单号从数据库中删除单据的表头和内容
 /// </summary>
 /// <param name="billNum">单据号</param>
 private bool DeleteBillByBillNum(string billNum)
 {
     //实例化数据适配器
     using (var da = new v_mantissa_lot_card_loseTableAdapter())
     //取得数据库连接
     using (var conn = da.Connection)
     {
         //打开数据库连接
         conn.Open();
         //事务
         using (var tran = conn.BeginTransaction())
         {
             //设置事务
             da.Transaction = tran;
             try
             {
                 //取得之前盘亏单清单记录
                 var tab = da.GetDataByBillNum(billNum);
                 //检测是否存在数据
                 if (tab.Rows.Count > 0)
                 {
                     //单据表头行、内容行、尾数结存和已入库结存数据适配器
                     using (var daHead = new t_mantissa_lot_card_lose_headTableAdapter())
                     using (var daContent = new t_mantissa_lot_card_lose_contentTableAdapter())
                     using (var daBalance = new t_mantissa_lot_card_balanceTableAdapter())
                     {
                         //设置连接对象
                         daHead.Connection = daContent.Connection = daBalance.Connection = tran.Connection;
                         //设置事务
                         daHead.Transaction = daContent.Transaction = daBalance.Transaction = tran;
                         //遍历行执行删除各行的结存记录和写回已入库结存记录
                         foreach (DataSetMantissaLose.v_mantissa_lot_card_loseRow row in tab.Rows)
                         {
                             //执行插入到尾数结存清单
                             daBalance.InsertData(
                                 row.prev_proc_name,
                                 row.proc_name,
                                 row.lot_id,
                                 row.product_num,
                                 row.pnl_qty,
                                 row.pcs_qty,
                                 "尾数盘亏单写回" + (row.IsremarkNull() ? string.Empty : ":" + row.remark),
                                 Session["user_name"].ToString()
                             );
                         }
                         //根据盘亏单号删除全部盘亏内容记录
                         daContent.DeleteByBillNum(billNum);
                         //根据盘亏单号删除全部盘亏表头记录
                         daHead.Delete(billNum);
                     }
                 }
                 //提交事务
                 tran.Commit();
                 //返回成功
                 return true;
             }
             catch (Exception ex)
             {
                 //回滚事务
                 tran.Rollback();
                 //抛出错误
                 throw new Exception("删除尾数盘亏单记录出现错误:\n" + ex.Message);
             }
         }
     }
 }
Exemplo n.º 3
0
 //导出数据到Excel
 protected void lBtnToExcel_Click(object sender, EventArgs e)
 {
     //获取数据并填充到数据表
     using (var da = new v_mantissa_lot_card_loseTableAdapter())
     {
         //检测session中保存的查询条件
         object obj = Session["mantissa_lot_card_lose_where_content"];
         string str = string.Empty;
         if (obj != null && obj.ToString().Length > 0)
         {
             str = obj.ToString();
         }
         //获取前1万行数据
         var tab = da.GetPagedData(0, 10000, str, "order by [bill_num] desc,[row_id]");
         //设置列标题
         string[] titleCol =
             ("单据日期,盘亏单号,部门名称,行号,上部门,批量卡序号,生产编号,pnl数量,pcs数量," +
             "备注,单据备注,录入员,录入时间,修改时间").Split(',');
         //设置表名称
         string titleTab = "尾数盘亏批量卡清单";
         //临时文件名称
         string fileName = titleTab + DateTime.Now.ToString("yyMMddHHmmss") + ".xls";
         //执行导出数据到excel
         bool isSuccess = ydPublicMethod.DataTable2Excel(tab, titleCol, ref fileName, titleTab);
         //如果成功则跳转到指定页面
         if (isSuccess)
         {
             Response.Redirect(fileName);
             //停止加载后续内容
             Response.End();
         }
     }
 }
        public void ProcessRequest(HttpContext context)
        {
            //清空之前数据
            context.Response.Clear();
            //检测是否含有session
            if (context.Session.Count < 5)
            {
                //跳转
                context.Response.Redirect("/Account/Login", true);
                //停止加载后续内容
                context.Response.End();
                //直接返回
                return;
            }
            //执行基类的方法
            if (!base.CheckIsLogin(context))
            {
                return;
            }
            //用户传入的参数
            string prevProcName = context.Request["pproc"];
            //检测参数
            if (prevProcName == null || prevProcName.Trim().Length <= 0)
            {
                prevProcName = "%";
            }
            //当前使用的查询表的类型
            var parTable = ParameterTable.None;
            //用户传入的参数
            string tabType = context.Request["ttype"];
            //转换后的结果
            int iType;
            //检测参数
            if (tabType == null || tabType.Trim().Length <= 0
                || !int.TryParse(tabType, out iType) || iType < 1 || iType > 4
            )
            {
                return;
            }
            //设置tab的值得
            parTable = (ParameterTable)iType;

            //当前使用的查询参数类型
            var parField = ParameterField.None;
            //用户传入的参数
            string lotId = context.Request["lid"];
            string productNum = string.Empty;
            //检测批量卡号
            if (lotId != null && lotId.Length > 0)
            {
                //查询字段类型为生产编号
                parField = ParameterField.LotId;
                //去掉空格
                lotId = lotId.Trim();
                //检测批量卡号重新设置参数值
                if (!lotId.Contains("-"))
                {
                    //添加减号
                    lotId = "-" + lotId;
                }
                //使用模糊查询
                lotId = "%" + lotId + "%";
            }
            else
            {
                //用户传入的生产编号
                productNum = context.Request["pnum"];
                if (productNum != null && productNum.Length > 0)
                {
                    //查询字段类型为生产编号
                    parField = ParameterField.ProductNum;
                    //设置参数值
                    productNum = "%" + productNum.Trim() + "%";
                }
            }
            //当前未使用特定的三种字段类型之一进行查询则不输出值直接退出
            if (parField == ParameterField.None)
            {
                return;
            }

            //待输出到浏览器的数据
            string strResult = string.Empty;
            //将查询到的结果保存到泛型变量中
            var l = new List<LotCardLiItem>();
            //检测查询表的类型
            switch (parTable)
            {
                //在待入库记录中查询
                case ParameterTable.Wait:
                    //数据适配器
                    using (var da = new t_complete_lot_card_waitTableAdapter())
                    {
                        //获取数据使用的表
                        DataSetCompleteWait.t_complete_lot_card_waitDataTable tab;
                        //通过批量卡号查询
                        if (parField == ParameterField.LotId)
                        {
                            //取得数据
                            tab = da.GetDataLikePrevProcAndLotId(prevProcName, lotId);
                        }
                        //通过生产编号查询
                        else
                        {
                            //取得数据
                            tab = da.GetDataLikePrevProcAndProductNum(prevProcName, productNum);
                        }
                        //获取单据数据
                        AddLotCardListItem(tab, ref l);
                    }
                    //退出switch
                    break;
                case ParameterTable.Balance:
                    //数据适配器
                    using (var da = new t_mantissa_lot_card_balanceTableAdapter())
                    {
                        //获取数据使用的表
                        DataSetMantissaBalance.t_mantissa_lot_card_balanceDataTable tab;
                        //通过批量卡号查询
                        if (parField == ParameterField.LotId)
                        {
                            //取得数据
                            tab = da.GetDataLikePrevProcAndLotId(prevProcName, lotId);
                        }
                        //通过生产编号查询
                        else
                        {
                            //取得数据
                            tab = da.GetDataLikePrevProcAndProductNum(prevProcName, productNum);
                        }
                        //获取单据数据
                        AddLotCardListItem(tab, ref l);
                    }
                    //退出switch
                    break;
                case ParameterTable.Lose:
                    //数据适配器
                    using (var da = new v_mantissa_lot_card_loseTableAdapter())
                    {
                        //获取数据使用的表
                        DataSetMantissaLose.v_mantissa_lot_card_loseDataTable tab;
                        //通过批量卡号查询
                        if (parField == ParameterField.LotId)
                        {
                            //取得数据
                            tab = da.GetDataLikePrevProcAndLotId(prevProcName, lotId);
                        }
                        //通过生产编号查询
                        else
                        {
                            //取得数据
                            tab = da.GetDataLikePrevProcAndProductNum(prevProcName, productNum);
                        }
                        //获取单据数据
                        AddLotCardListItem(tab, ref l);
                    }
                    //退出switch
                    break;
            }
            //如果在清单中查询到数据
            if (l.Count > 0)
            {
                //将泛型变量各项目放入数组
                var itms = new LotCardLiItem[l.Count];
                //复制泛型变量的内容到数组
                l.CopyTo(itms);
                //循环重新设置单只数
                foreach (var itm in itms)
                {
                    //将实例加入li
                    strResult += itm.ToString();
                }
            }
            //加入ul头尾
            strResult = "<ul>\n" + strResult + "</ul>\n";
            //写入数据
            context.Response.Write(strResult);
        }
Exemplo n.º 5
0
 protected void fvMantissaBackAdd_DataBound(object sender, EventArgs e)
 {
     //设置单据清单可见
     tabDataListSon.Visible = true;
     //清空盘盈单内容清单
     for (int i = 0; i < 10; i++)
     {
         //清空清单数据到控件
         ClearBillContent(i);
     }
     //新增状态
     switch (fvMantissaBackAdd.CurrentMode)
     {
         //新增状态
         case FormViewMode.Insert:
             //当前单号文本框
             var tb = (TextBox)fvMantissaBackAdd.FindControl("txtBillDate");
             if (tb != null)
             {
                 //检查用户提供的单据日期参数标识
                 string strBillDate = Request["bdate"];
                 DateTime billDate;
                 if (strBillDate != null && strBillDate.Length > 0 &&
                     DateTime.TryParse(strBillDate, out billDate))
                 {
                     //设置默认单据日期为传入的日期
                     tb.Text = billDate.ToString("yyyy-MM-dd");
                 }
                 else
                 {
                     //设置默认单据日期为当前日期
                     tb.Text = DateTime.Now.ToString("yyyy-MM-dd");
                 }
             }
             //当前单号文本框
             tb = (TextBox)fvMantissaBackAdd.FindControl("txtBillNum");
             if (tb != null)
             {
                 //户提供的单号参数标识
                 string strBillNum = Request["bnum"];
                 Int64 billNum;
                 if (strBillNum != null && strBillNum.Trim().Length >= 12 &&
                     Int64.TryParse(strBillNum, out billNum))
                 {
                     //设置默认单号为传入的单号加1
                     tb.Text = (billNum + 1).ToString();
                 }
                 else
                 {
                     //当前单号前缀字符串
                     string billNumPrefix = DateTime.Now.ToString("yyyyMMdd");
                     //数据适配器
                     using (var da = new t_mantissa_lot_card_back_headTableAdapter())
                     {
                         //获取已经使用的最大单号
                         string maxBillNum = da.GetMaxBillNumLikeBillNum(billNumPrefix + "%").ToString();
                         //检测取得的值
                         if (maxBillNum.Trim().Length < 12)
                         {
                             //执行转换
                             billNum = Int64.Parse(billNumPrefix + "0001");
                             //设置默认单号为传入的单号加1
                             tb.Text = billNum.ToString();
                         }
                         else
                         {
                             //执行转换
                             billNum = Int64.Parse(maxBillNum);
                             //设置默认单号为传入的单号加1
                             tb.Text = (billNum + 1).ToString();
                         }
                     }
                 }
             }
             //当前部门名称
             var lit = (Literal)fvMantissaBackAdd.FindControl("litProcName");
             if (lit != null)
             {
                 //session中保存的当前部门
                 string procName = Session["proc_name"].ToString();
                 //写入到客户端
                 lit.Text = procName;
             }
             //获取是否传入了多个盘亏表的id值
             string strIdAll = Request["ids"];
             if (strIdAll != null && strIdAll.Trim().Length > 0)
             {
                 //分解出id号
                 string[] strIds = strIdAll.Split(new char[] { '|' }, 10, StringSplitOptions.RemoveEmptyEntries);
                 //检测id号数量
                 if (strIds.Length > 0)
                 {
                     //盘亏表数据适配器
                     using (var da = new v_mantissa_lot_card_loseTableAdapter())
                     {
                         //当前子表行索引
                         int iRow = 0;
                         //逐行获取数据
                         foreach (var strId in strIds)
                         {
                             //继续分解取得送货单号和行号
                             string[] strBillNumAndRowId =
                                 strId.Split(new char[] { '-' }, 2, StringSplitOptions.RemoveEmptyEntries);
                             //检测取得的分解出来的参数数量
                             if (strBillNumAndRowId.Length < 2)
                             {
                                 continue;
                             }
                             //检测单号和行号是否符合规则
                             Int64 billNum;
                             byte rowId;
                             if (Int64.TryParse(strBillNumAndRowId[0], out billNum) && billNum > 0 &&
                                 byte.TryParse(strBillNumAndRowId[1], out rowId) && rowId >= 1 && rowId <= 10
                             )
                             {
                                 //取得数据
                                 var tab = da.GetDataByBillNumAndRowId(billNum.ToString(), rowId);
                                 //检测有无数据
                                 if (tab.Rows.Count > 0)
                                 {
                                     //首行数据
                                     var row = (DataSetMantissaLose.v_mantissa_lot_card_loseRow)tab.Rows[0];
                                     //写入清单数据到控件
                                     SetBillContent(row, iRow);
                                     //行号加1
                                     iRow++;
                                 }
                             }
                         }
                     }
                 }
             }
             break;
         case FormViewMode.Edit:
         case FormViewMode.ReadOnly:
             //设置单据清单不可见
             tabDataListSon.Visible = false;
             //通过盘盈单号获取数据清单
             //取得传入的盘盈单号
             string billNum2 = Request["bnum"];
             if (billNum2 != null && billNum2.Length > 0)
             {
                 //获取清单
                 using (var daContent = new t_mantissa_lot_card_back_contentTableAdapter())
                 {
                     //获取数据
                     var tabContent = daContent.GetDataByBillNum(billNum2);
                     //检测是否找到数据
                     if (tabContent.Rows.Count > 0)
                     {
                         //设置单据清单可见
                         tabDataListSon.Visible = true;
                         //把内容写入页面
                         foreach (DataSetMantissaBack.t_mantissa_lot_card_back_contentRow row in tabContent.Rows)
                         {
                             //当前行号
                             int i = row.row_id - 1;
                             //写入清单数据到控件
                             SetBillContent(row, i);
                         }
                     }
                 }
             }
             break;
     }
     //当前批量卡号文本框获取焦点
     var tb2 = (TextBox)fvMantissaBackAdd.FindControl("txtLotId0");
     if (tb2 != null)
     {
         //设置焦点
         tb2.Focus();
     }
 }
Exemplo n.º 6
0
        /// <summary>
        /// 根据输入的参数值来执行更新数据
        /// </summary>
        /// <param name="e">传入的带有数据的事件参数</param>
        /// <returns></returns>
        private bool UpdateData(FormViewUpdateEventArgs e)
        {
            //数据适配器
            //当前添加语句对象
            //当前数据库连接
            using (var da = new v_mantissa_lot_card_loseTableAdapter())
            using (var conn = da.Connection)
            {
                //打开数据库连接
                conn.Open();
                //开启事务
                using (var tran = conn.BeginTransaction())
                {
                    //设置事务
                    da.Transaction = tran;
                    //试运行
                    try
                    {
                        //部门名称
                        string procName = e.OldValues["proc_name"].ToString();
                        //当前行单号
                        string billNum = Convert.ToString(e.Keys[0]);
                        //获取数据
                        using (var tab = da.GetDataByBillNum(billNum))
                        {
                            //检查是否获取到行
                            if (tab.Rows.Count == 0)
                            {
                                //显示失败
                                throw new Exception("当前记录已经被其他用户删除!");
                            }
                            //数据适配器
                            using (var daHead = new t_mantissa_lot_card_lose_headTableAdapter())
                            using (var daContent = new t_mantissa_lot_card_lose_contentTableAdapter())
                            using (var daBalance = new t_mantissa_lot_card_balanceTableAdapter())
                            {
                                //设置数据库连接
                                daHead.Connection = daContent.Connection = daBalance.Connection = conn;
                                //设置事务
                                daHead.Transaction = daContent.Transaction = daBalance.Transaction = tran;
                                //将之前的单据内容写回
                                foreach (DataSetMantissaLose.v_mantissa_lot_card_loseRow row in tab.Rows)
                                {
                                    //执行插入到尾数结存清单
                                    daBalance.InsertData(
                                        row.prev_proc_name,
                                        row.proc_name,
                                        row.lot_id,
                                        row.product_num,
                                        row.pnl_qty,
                                        row.pcs_qty,
                                        "尾数盘亏单写回" + (row.IsremarkNull() ? string.Empty : ":" + row.remark),
                                        Session["user_name"].ToString()
                                    );
                                }
                                //从单据内容中删除
                                daContent.DeleteByBillNum(billNum);
                                //从单据表头中删除
                                daHead.Delete(billNum);

                                //日期
                                DateTime billDate = Convert.ToDateTime(e.NewValues["bill_date"]);
                                //单据备注
                                string billRemark = Convert.ToString(e.NewValues["remark"]);
                                //录入员
                                string addPerson = e.NewValues["add_person"].ToString();
                                //录入时间
                                DateTime addTime = Convert.ToDateTime(e.NewValues["add_time"]);
                                //最后修改时间
                                DateTime lastChangeTime = Convert.ToDateTime(e.NewValues["last_change_time"]);
                                //保存表头
                                daHead.Insert(
                                    billDate,
                                    billNum,
                                    procName,
                                    billRemark,
                                    addPerson,
                                    addTime,
                                    lastChangeTime
                                );
                                //遍历子表执行保存
                                for (int iRow = 0; iRow < 10; iRow++)
                                {
                                    //子表各控件
                                    var tr = tabDataListSon.Rows[iRow + 1];
                                    var litRowId = (Literal)tr.Cells[0].Controls[0];
                                    var txtPrevProcName = (TextBox)tr.Cells[1].Controls[0];
                                    var txtLotId = (TextBox)tr.Cells[2].Controls[0];
                                    var txtProductNum = (TextBox)tr.Cells[3].Controls[0];
                                    var txtPnlQty = (TextBox)tr.Cells[4].Controls[0];
                                    var txtPcsQty = (TextBox)tr.Cells[5].Controls[0];
                                    var txtRemark = (TextBox)tr.Cells[6].Controls[0];
                                    //取得数据
                                    byte rowId = Convert.ToByte(litRowId.Text);
                                    string prevProcName = txtPrevProcName.Text;
                                    string lotId = txtLotId.Text;
                                    string productNum = txtProductNum.Text;
                                    int pnlQty = txtPnlQty.Text.Trim().Length <= 0 ? 0 : int.Parse(txtPnlQty.Text.Trim());
                                    int pcsQty = txtPcsQty.Text.Trim().Length <= 0 ? 0 : int.Parse(txtPcsQty.Text.Trim());
                                    string remark = txtRemark.Text;
                                    //存在数据才保存
                                    if (lotId.Length > 0 && productNum.Length > 0 && pnlQty + pcsQty > 0)
                                    {
                                        //保存到单据内容清单
                                        daContent.Insert(
                                            billNum,
                                            rowId,
                                            prevProcName,
                                            lotId,
                                            productNum,
                                            pnlQty,
                                            pcsQty,
                                            remark
                                        );
                                        //从尾数结存清单中扣除
                                        if (!ydOperateMantissaLotCard.DecreaseMantissaBalance(
                                            daBalance,
                                            prevProcName,
                                            lotId,
                                            pnlQty,
                                            pcsQty
                                        ))
                                        {
                                            return false;
                                        }
                                    }
                                }
                            }
                        }
                        //提交事务
                        tran.Commit();
                        //返回成功
                        return true;
                    }
                    catch (Exception ex)
                    {
                        //回滚事务
                        tran.Rollback();
                        //非数字返回失败
                        throw new Exception(ex.Message);
                    }
                }
            }
        }
Exemplo n.º 7
0
 /// <summary>
 /// 执行删除数据并处理相关数据一致性
 /// </summary>
 /// <param name="e">传入的带有数据的事件参数</param>
 /// <returns></returns>
 private bool DeleteData(FormViewDeleteEventArgs e)
 {
     //当前单号
     string billNum = Convert.ToString(e.Keys[0]);
     //数据适配器
     //当前数据库连接
     //当前更新语句对象
     using (var da = new v_mantissa_lot_card_loseTableAdapter())
     using (var conn = da.Connection)
     {
         //打开数据库连接
         conn.Open();
         //开启事务
         using (var tran = conn.BeginTransaction())
         {
             //试运行
             try
             {
                 //设置事务
                 da.Transaction = tran;
                 //获取数据
                 var tab = da.GetDataByBillNum(billNum);
                 //检查是否获取到行
                 if (tab.Rows.Count == 0)
                 {
                     //显示失败
                     throw new Exception("当前记录已经被其他用户删除!");
                 }
                 //数据适配器
                 using (var daHead = new t_mantissa_lot_card_lose_headTableAdapter())
                 using (var daContent = new t_mantissa_lot_card_lose_contentTableAdapter())
                 using (var daBalance = new t_mantissa_lot_card_balanceTableAdapter())
                 {
                     //设置数据库连接
                     daHead.Connection = daContent.Connection = daBalance.Connection = conn;
                     //设置事务
                     daHead.Transaction = daContent.Transaction = daBalance.Transaction = tran;
                     //将之前的单据内容写回
                     foreach (DataSetMantissaLose.v_mantissa_lot_card_loseRow row in tab.Rows)
                     {
                         //执行插入到尾数结存清单
                         daBalance.InsertData(
                             row.prev_proc_name,
                             row.proc_name,
                             row.lot_id,
                             row.product_num,
                             row.pnl_qty,
                             row.pcs_qty,
                             "尾数盘亏单写回" + (row.IsremarkNull() ? string.Empty : ":" + row.remark),
                             Session["user_name"].ToString()
                         );
                     }
                     //从单据内容中删除
                     daContent.DeleteByBillNum(billNum);
                     //从单据表头中删除
                     daHead.Delete(billNum);
                 }
                 //提交事务
                 tran.Commit();
                 //返回成功
                 return true;
             }
             catch (Exception ex)
             {
                 //回滚事务
                 tran.Rollback();
                 //非数字返回失败
                 throw new Exception(ex.Message);
             }
         }
     }
 }