工作记录 2017-01-06
工作记录 2017-01-06
序号 | 工作 | 相关人员 |
1 | 协助BPO进行Billing的工作。 修改CSV、EDI837的导入。 修改邮件上的问题。 更新RD服务器。 | 郝 |
修改的问题:
1、
In “Full Job Summary” (patient info.), sometime, the Visit->Facility is missed, then biller manually select the “Facility”, and the job summary displays this new selected facility.? However, “New Claim” won’t bring the facility into CMS 1500 item 32.? Please check.
BillingJobPoster修改了4个地方:
1.1 导入SAMS 数据时,修改了GENEDBS..BillingJobPool的service_dt字段处理。
1.2 导入Amazing chart 数据时,修改了GENEDBS..BillingJobPool的service_dt字段处理。
1.3 导入Amazing chart 数据时,修改了Facility的处理。
1.4 导入Amazing chart 数据时,当CPT的Total amt为0时,从Fee Schedules取了Fee。
2、As listed before: Add ‘Service Date’ column (Right after Job# column) in ‘To Be Billed’ (Pending Pool), ‘Online Billing’ and ‘Missing Info’ list (Same as Historical Jobs).? And also add search criteria for ‘Service Date’ same as in Historical Jobs. ?(Also allow sorting by service date in the list same as other column).? Also move “Job Date” to the end of the list.
Pending Pool、Online Billing、Missing Infos加了Service Date。
3、As listed before: ?In Job Summary -> patient Insurance (patinsurance table), we will need to add a new button to allow users to upload the patient insurance card (image/pdf file). And also in Job Summary page, in the insurance section, need to have link to launch this upload image.? This feature will be used right now for account 0851.
patient Insurance增加upload files,summary加了显示。
4、Sometime, the Service Date is missed in Job Summary, Visit page, so biller filled in manually, but the service date did not display in the “Historical Job List” or maybe “To Be Billed” etc.
修改了
5、As listed before, Throughout the system, change Payer # to “Payer ID”.
修改了
6、As in the separated email, Add Upload button in patient demography to upload CCDA and link in Job Summary page to display the CCDA
发布时需要在WebI下放置CDA.xsl文件
服务器更新
RD服务器更新了,更新的文件放在190的D:\Temp\CHTeam\fnehr_update_20170106\下了。
数据库更新:
1、在Hosp库中执行hosp.sql。
另: Hosp库中执行下面的sql语句,调整service_dt。注意set @acct_code 。
update BillingJob set service_dt= srve_dt from PatVisit where PatVisit.case_no=BillingJob.case_no and PatVisit.mr_no=BillingJob.mr_no and srve_dt is not null and PatVisit.srve_dt<>BillingJob.service_dt
declare @acct_code varchar(4)
set @acct_code ='0009'
update GENEDBS..BillingJobPool set service_dt=BillingJob.service_dt from BillingJob, GENEDBS..BillingJobPool as BillingJobPool where acct_code=@acct_code and BillingJob.job_no=BillingJobPool.job_no
更新的文件:
├─BillingJobPoster
│ │
│ └─bin
│ BillingJobPoster.exe
│ BillingJobPoster.pdb
│ Business.dll
│ Business.pdb
│ DataAccess.dll
│ DataAccess.pdb
│
├─patientinfo
│ CDA.xsl
│
├─sql
│ hosp.sql
│ readme.txt
│
└─web
│ main.aspx
│
├─bin
│ Business.dll
│ Business.pdb
│ DataAccess.dll
│ DataAccess.pdb
│ Web.dll
│ Web.pdb
│
└─scripts
└─billingservice
billing.js
claim.js
demographic.js
manager.js
pat_insurance.js
pay.js