示例#1
0
        /// <summary>
        /// 初始化
        /// </summary>
        public static void InterfaceInit()
        {
            if (!isInit)
            {
                //InterfaceCommInfoBll.InitCommInfo(PayAPIConfig.InstitutionDict[1].Memo);
                //readCardHandle = InterfaceCommInfoBll.GetReadCardInfoHandle();
                handelModel = new PayAPIResolver.Dareway.JNLX.JNLXDarewayInterfaceResolver();

                isInit = true;
            }
        }
示例#2
0
        /// <summary>
        /// 撤销门诊结算
        /// </summary>
        /// <returns></returns>
        //public void CancelOutReimSettle(string p_blh, string p_jshid)
        public void CancelOutReimSettle(string p_jshid)
        {
            PayAPIResolver.Dareway.JNLX.JNLXDarewayInterfaceResolver handelModel = new PayAPIResolver.Dareway.JNLX.JNLXDarewayInterfaceResolver();
            Dictionary <string, string> result = new Dictionary <string, string>();

            //初始化
            handelModel.InitHandle();

            //handelModel.AddInPara("p_blh", p_blh);                    //*病历号
            handelModel.AddInPara("p_jshid", p_jshid);                //*费用日期

            //业务处理
            handelModel.Handle("destroy_mz", true);
            //获取结果
            result = handelModel.GetResultDict();
        }