private void DataGrid1_SelectedIndexChanged(object sender, System.EventArgs e)
        {
            DataGridItem item     = this.DataGrid1.SelectedItem;
            string       strAssID = item.Cells[0].Text.Trim();
            OperLog      operLog  = new OperLog();

            operLog.cnvcOperType = "添加关联分货单";
            operLog.cnvcOperID   = this.oper.strLoginID;
            operLog.cnvcDeptID   = this.oper.strDeptID;
            StorageFacade sto = new StorageFacade();
            int           ret = sto.AddDeptStorageEnterDetail(operLog, this.txtRdID.Text.Trim(), strAssID, this.ddlDept.SelectedValue);

            if (ret > 0)
            {
                this.Popup("添加关联分货单成功!");
            }
            else
            {
                this.Popup("添加关联分货单失败!");
            }

            this.DataGrid1.DataSource = null;
            this.DataGrid1.DataBind();
            this.DBBind();
        }