private void dwRedOutFee_DoubleClick(object sender, EventArgs e)
        {
            string no        = this.dwRedOutFee.GetItemString(currentNo, "收费单号");
            string Inpatient = this.dwRedOutFee.GetItemString(currentNo, "患者姓名");
            string dept      = this.dwRedOutFee.GetItemString(currentNo, "开单科室");
            string doct      = this.dwRedOutFee.GetItemString(currentNo, "开方医师");
            string date      = this.dwRedOutFee.GetItemString(currentNo, "收费时间");
            string operfee   = this.dwRedOutFee.GetItemString(currentNo, "退费人员");
            string fee       = this.dwRedOutFee.GetItemString(currentNo, "实退金额");
            string ss        = "";

            ucFinOpbStatClinicDetail detail = new ucFinOpbStatClinicDetail();

            detail.Init(no, Inpatient, dept, doct, operfee, date, fee, ss, "门诊处方发药处方明细");
            detail.ShowDialog();
        }
        private void dwNoFeeNoDrug_DoubleClick(object sender, EventArgs e)
        {
            string no        = this.dwNoFeeNoDrug.GetItemString(currentNo, "收费单号");
            string Inpatient = this.dwNoFeeNoDrug.GetItemString(currentNo, "患者姓名");
            string dept      = this.dwNoFeeNoDrug.GetItemString(currentNo, "开单科室");
            string doct      = this.dwNoFeeNoDrug.GetItemString(currentNo, "开方医师");
            string date      = this.dwNoFeeNoDrug.GetItemString(currentNo, "收费时间");
            string operfee   = this.dwNoFeeNoDrug.GetItemString(currentNo, "退费人员");
            string ys        = this.dwNoFeeNoDrug.GetItemString(currentNo, "应退金额");
            string ss        = this.dwNoFeeNoDrug.GetItemString(currentNo, "实退金额");

            ucFinOpbStatClinicDetail detail = new ucFinOpbStatClinicDetail();

            detail.Init(no, Inpatient, dept, doct, operfee, date, ys, ss, "门诊未取药退费处方统计");
            detail.ShowDialog();
        }