工作记录 2017-01-04
工作记录 2017-01-04
更新的问题
3. “New Claim”的处理:
a. Item 33, should get info from DocMas, Not the Facility Location. (Facility Location is in Item 32)
修改了
b. After CMS1500 is changed to new windows (Tab), it works good.? However, because of the new windows (In Rejected Claim List for resubmit), the “EDI payer” section at the top of CMS 1500 not work anymore.? (It is blocked)? It still works fine for Online Billing which is still the old method
修改了CMS1500在new windows下的EDI payer的选择
c. The “MAIL” checkbox is “auto” unchecked after save (Submit button will keep the Checkbox sometimes). Need to fix this.
修改了
d. For Item 24, and Item 28 (CPT charge), the total charge in Item 28 should using Column F X Column G (Units), for example, Unit price is $200, and Unit# is 2 then total is 200x2.
修改了CMS1500的处理。
如有问题,需要清除一下浏览器缓存。
e. If the EDI Payer ID = ‘MC051’, then the “Medicaid” checkbox in Item 1 should be checked. And if EDI Payer ID=’MR002’ then “Medicare” checkbox should be checked, otherwise, as currently the “Other” checkbox will be checked.
修改了
f. For Item 12, and Item 13, put “SIGNATURE ON FILE” in “Signed” line. (printout too). For Item 31, Put Doctor name for “SIGNED” lines and also Today date under “DATE” (Printout too). If the space DATE if too short, then do as what OffiecAlly does (See attached image)
修改了
4. For the “Missing Info” list, sometimes, the biller directly create the “New Claim”, so after the biller “Finalize” the job, need to auto refresh the Missing Info list (Just like Online Billing), so the job will “disappear” from Missing Info.
修改了
5. In Google Chrome, the Printout did not launch a new Tab (It replace the CMS1500), please check this issues. In IE, it works as expected, it popup a new windows for printing, then user can close the printout windows after printing, then go to CMS1500 to submit.
修改了
6. Online Billing, a biller actually can do a lot of claims for different accounts in one day, so we need to add “Account dropdown list” (Just like in “To Be Billed”, by default, only display the jobs in current login account.
修改了
识别引擎监控
Ps (iCDA LOG :剔除了103篇ASG_BLANK之后的结果):
LOG_File= 20170103.txt
BLANK_CDA/ALL= 69/795 (8.7%)
TIME_OUT= 21
SR_SCORE LOW= 17
SR_RATIO LOW AND TRANSLATION_LEN= 5
SR_RATIO LOW = 23
SR_EMPTY = 1
CHAR_RATIO LOW = 2
服务器更新
RD服务器更新了,更新的文件放在190的D:\Temp\CHTeam\fnehr_update_20170104\下了。
数据库更新:
1、在Hosp库中执行HOSP_StoreProc.sql:
--Item 33, should get info from DocMas, Not the Facility Location. (Facility Location is in Item 32):
使用PatVisit的atnd_dr 从DocMas表取了doc_first,doc_last,doc_middle,address,city,STATE,zipcode,PHONE
billing_provider=rtrim(DocMas.doc_first)+ ' '+rtrim(DocMas.doc_last)+' '+rtrim(DocMas.doc_middle),
billing_provider_address=DocMas.address,
billing_provider_city=DocMas.city,
billing_provider_state=DocMas.STATE,
billing_provider_zip=DocMas.zipcode,
billing_provider_telephone=DocMas.PHONE
--If the EDI Payer ID = ‘MC051’, then the “Medicaid” checkbox in Item 1 should be checked.
--if EDI Payer ID=’MR002’ then “Medicare” checkbox should be checked:
if ( @EDI_Payer_no='MC051')
begin
set @health_insurance='MEDICAID'
end
if ( @EDI_Payer_no='MR002')
begin
set @health_insurance='MEDICARE'
end
更新的文件:
│
├─sql
│ HOSP_StoreProc.sql
│ readme.txt
│
└─web
│ popup.aspx
│
├─billing
│ └─CMS1500
│ HCFALineItem.js
│
├─bin
│ Business.dll
│ Business.pdb
│ DataAccess.dll
│ DataAccess.pdb
│ Web.dll
│ Web.pdb
│
└─scripts
│ billingmain.js
│
└─billingservice
billing.js
claim.js