Ejemplo n.º 1
0
        public void InpatientRegister()
        {
            HisComponent hisComponent = new HisComponent();

            try
            {
                //string hr = hisComponent.HisBalanceDel(45094);
                //Assert.AreEqual(string.Empty, hr);

                ParamBalance pbalance = new ParamBalance()
                {
                    zyh = 45094, outDate = DateTime.Now
                };
                string hr = hisComponent.HisBalance(pbalance);
                Assert.AreEqual(string.Empty, hr);

                //int hr=hisComponent.JzdToNhFeeListByZyh(45094);
                //Assert.AreEqual(0, hr);
                //List<string> ls = (List<string>)hisComponent.ProcessFeeListByZyh(45094,true);
                //Assert.AreEqual(0,ls.Count);
            }
            catch (System.Exception ex)
            {
                Assert.Fail(ex.Message);
            }
        }
Ejemplo n.º 2
0
 public void UpLoadFee()
 {
     HisComponent hisComponent = new HisComponent();
     int iHr=hisComponent.JzdToNhFeeListByZyh(45094);
     Assert.AreEqual(0, iHr);
     var errors=hisComponent.ProcessFeeListByZyh(45094, true);
     Assert.AreEqual(errors.Count(), 0);
 }
Ejemplo n.º 3
0
        public void UpLoadFee()
        {
            HisComponent hisComponent = new HisComponent();
            int          iHr          = hisComponent.JzdToNhFeeListByZyh(45094);

            Assert.AreEqual(0, iHr);
            var errors = hisComponent.ProcessFeeListByZyh(45094, true);

            Assert.AreEqual(errors.Count(), 0);
        }
Ejemplo n.º 4
0
 private void FormMaster_Load(object sender, EventArgs e)
 {
     try
     {
         HisCom = new HisComponent();
         StringBuilder sb = new StringBuilder(256);
         int hr = NhLocalWrap.InitDLL(sb);
         if (hr < 0)
         {
             throw new Exception(sb.ToString());
         }
     }
     catch (System.Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }
Ejemplo n.º 5
0
        public void InpatientRegister()
        {
            HisComponent hisComponent = new HisComponent();
            try
            {
                //string hr = hisComponent.HisBalanceDel(45094);
                //Assert.AreEqual(string.Empty, hr);

                ParamBalance pbalance = new ParamBalance() { zyh = 45094, outDate = DateTime.Now };
                string hr = hisComponent.HisBalance(pbalance);
                Assert.AreEqual(string.Empty, hr);

                //int hr=hisComponent.JzdToNhFeeListByZyh(45094);
                //Assert.AreEqual(0, hr);
                //List<string> ls = (List<string>)hisComponent.ProcessFeeListByZyh(45094,true);
                //Assert.AreEqual(0,ls.Count);
            }
            catch (System.Exception ex)
            {
                Assert.Fail(ex.Message);
            }
        }
Ejemplo n.º 6
0
        static GSettings()
        {
            HisComponent his=new HisComponent();

            Doctors = his.GetDoctors();
        }
Ejemplo n.º 7
0
        static GSettings()
        {
            HisComponent his = new HisComponent();

            Doctors = his.GetDoctors();
        }
Ejemplo n.º 8
0
        //取消结算
        public void CancelCal()
        {
            HisComponent hisComponent = new HisComponent();

            hisComponent.HisBalanceDel(45094);
        }
Ejemplo n.º 9
0
        public void ClearFee()
        {
            HisComponent hisComponent = new HisComponent();

            hisComponent.ClearAllUploadedFeeByZyh(45094);
        }
Ejemplo n.º 10
0
 public void ClearFee()
 {
     HisComponent hisComponent = new HisComponent();
     hisComponent.ClearAllUploadedFeeByZyh(45094);
 }
Ejemplo n.º 11
0
 public void CancelCal()
 {
     HisComponent hisComponent = new HisComponent();
     hisComponent.HisBalanceDel(45094);
 }