Example #1
0
 private void frmRptNusingForCS_Load(object sender, EventArgs e)
 {
     this.dw.LibraryList      = clsPublic.PBLPath;
     this.dw.DataWindowObject = "d_bih_nursinglog";
     this.dw.InsertRow(0);
     this.m_objZy        = new clsCtl_ReportZY();
     this.dtpMonth.Value = DateTime.Now;
     this.Text           = com.digitalwave.iCare.ValueObject.GlobalParm.HospitalName + "护理工作量统计表";
 }
Example #2
0
 private void txtInpatientID_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Enter)
     {
         clsCtl_ReportZY obj = new clsCtl_ReportZY();
         this.txtRegisterID.m_dtbDataSourse = obj.m_dtInitText(this.txtInpatientID.Text.Trim(), this.cobSelect.SelectedIndex);
         this.txtRegisterID.m_mthFillData();
         this.txtRegisterID.Focus();
     }
 }
Example #3
0
        private void btnPreview_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(this.txtRegisterID.Value) || this.txtRegisterID.m_dtbDataSourse == null || this.txtRegisterID.m_listView.Items.Count == 0)
            {
                return;
            }

            clsCtl_ReportZY obj = new clsCtl_ReportZY();

            obj.m_lngOwnCast(this.txtRegisterID.Value.Trim(), strTypeList, this.dwReport);
        }
Example #4
0
        /// <summary>
        /// 构造

        /// </summary>
        public frmRptPayTypeBill()
        {
            InitializeComponent();

            objReport = new clsCtl_ReportZY();
        }
Example #5
0
 public frmRptItemDetailStat()
 {
     InitializeComponent();
     objReport = new clsCtl_ReportZY();
     objSvc    = new clsDcl_Charge();
 }