工作记录 2017-08-01

工作记录 2017-08-01

|----|--------------------|------|
| 序号 | 工作 | 相关人员 |
| 1 | 修改邮件上的问题。 更新RD服务器。 | 郝峰鸽 |

RD服务器更新了,更新的文件放在190的D:\Temp\CHTeam\fnehr_update_20170801\下了。

数据库更新

1、在hosp库中执行hosp_sp.sql

sp_get_invoice的改动:

1、主保险的判断改为 where ( (isnull(b.payer_flag,'') like '%Primary%') or (isnull(b.payer_flag,'')='') )

其他保险改为where (isnull(b.payer_flag,'') not like '%Primary%' ) and (isnull(b.payer_flag,'')<>'')

2、copay的 balance改为0-(isnull(adjustment,0)+isnull(appliedamount,0))

insert into #invoice(code, billed,applied,adjustment, copay, balance, detail)

select paymenttype,null, null, isnull(adjustment,0),isnull(appliedamount,0),0-(isnull(adjustment,0)+isnull(appliedamount,0)), ''

from PatVisitPayment

where mr_no=@mr_no and case_no=@case_no and paymenttype in ('copay','coinsurance','deductible')

sp_job_summary的改动:

1、注释掉了这句

--update @payer_flag_list set idx=1 where flag<>'Processed as Secondary'

idx=1 表示是主保险

2、修改了payer的显示顺序update @payment_header_list set idx=99 where idx is null

sp_complete_job_pay的改动:

1、改了pay_status的处理

update payment set pay_status='Completed' where claim_no in ( select claim_no from claims where job_no=@job_no and state not in ('Denied','Deleted')) and isnull(pay_status,'')<>'Deleted'

更新的文件

├─sql

│ hosp_sp.sql

└─web

├─bin

│ Business.dll

│ Business.pdb

│ DataAccess.dll

│ DataAccess.pdb

│ Web.dll

│ Web.pdb

└─scripts

└─billingservice

visit_list.js

更新的问题

1、修改了invoice的copay的处理。

2、修改了payment summary的主保险的判断。

这里的applied大于allowed?

3、修改了payment summary的显示顺序。

4、payment list 加了 notes。

相关推荐
似水明俊德4 小时前
02-C#.Net-反射-面试题
开发语言·面试·职场和发展·c#·.net
阿蒙Amon5 小时前
C#常用类库-详解SerialPort
开发语言·c#
似水明俊德7 小时前
02-C#.Net-反射-学习笔记
开发语言·笔记·学习·c#·.net
.NET修仙日记12 小时前
Acme.ReturnOh:让.NET API返回值处理更优雅,统一响应格式一步到位
c#·.net·webapi
阿蒙Amon14 小时前
C#常用类库-详解YamlDotNet
开发语言·c#
AIArchivist14 小时前
深度解析|超级AI医院:不止是概念,更是医疗未来的确定性方向
人工智能·健康医疗
Sunsets_Red16 小时前
乘法逆元的 exgcd 求法
c++·学习·数学·算法·c#·密码学·信息学竞赛
唐青枫17 小时前
深入理解 C#.NET TaskScheduler:为什么大量使用 Work-Stealing
c#·.net
人工智能AI技术17 小时前
Claude 3.7 企业版私有化部署技术验证:与 .NET 实战方案
人工智能·c#
呆子也有梦18 小时前
思考篇:积分是存成道具还是直接存数值?——ET/Skynet 框架下,从架构权衡到代码实现全解析
游戏·架构·c#·lua