- Medicare Hospice Quick Reference Sheet
- Hospice Certifying Physician Medicare Enrollment Information
- Hospice Claim Reporting Requirements for Attending and Certifying Physicians
- 17729 and 17730 Hospice Claim Edits for Certifying Physicians
- Billing Hospice Transfers
- Hospice Notice of Election Termination/Revocation (Type of Bill 8xB)
- Hospice Room and Board Denials
- Professional Services During a Patient Hospice Election
- Incarcerated or Unlawfully Present in the U.S. Claim Rejections (U538H, U538Q)
- Termination of the Hospice Benefit Component of the VBID Model on 12/31/2024
- Provisional Period of Enhanced Oversight for New Hospices
- Counting 60-Day Election Periods
- Untimely Filed Notice of Election Circumstance Exception: Medicare Beneficiary Is Granted Retroactive Medicare Entitlement
- Hospice Billing Codes Chart
- Appropriate Use of Occurrence Code 27 and Occurrence Span Code 77
- Hospice Notice of Change of Ownership
- Filing an Electronic Notice of Change of Ownership (TOB 8XE)
- Hospice Change of Ownership
- Filing an Electronic Notice of Cancelation (Type of Bill 8XD)
- Filing an Electronic Notice of Transfer (Type of Bill 8XC)
- Counting 60-Day Election Periods - Leap Year
- Hospice Site of Service Codes
- Billing Hospice Physician, Nurse Practitioner and Physician Assistant Services (Related To Terminal Diagnosis)
- Hospice Visit Reporting
- The Medicare Hospice Benefit: Effects on Other Provider Types
- Counting 90-Day Election Periods - Leap Year
- Reporting Hospice Discharges, Revocations and Transfers
- Avoiding Reason Code 7C625: Appropriate Use of Remarks on Final Hospice Claims
- Hospice Claim Submission Job Aid
- Counting 90-Day Election Periods
- Hospice Quality Reporting Program
- Filing an Electronic Notice of Election (Type of Bill 8XA)
- Value-Based Insurance Design Model Hospice Benefit Component Overview
- Documentation for Hospice Transfers
- Hospice Billing Instructions for Influenza, Pneumococcal and Hepatitis B Vaccines
- Canceling a Hospice Notice of Election
- How to Bill When the Hospice Face-to-Face is Late from a Previous Benefit Period
- Billing Medicare for a Denial - Condition Code 21
- Reminder on Deleting Revenue Code Line(s) in the Fiscal Intermediary Standard System Direct Data Entry System
An error occurred while processing the template.
Java method "com.sun.proxy.$Proxy908.getArticle(long, String)" threw an exception when invoked on com.sun.proxy.$Proxy908 object "com.liferay.journal.service.impl.JournalArticleLocalServiceImpl@577b1e89"; see cause exception in the Java stack trace. ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign journalArticle = JournalArtic... [in template "20101#20128#239265" at line 27, column 1] ----
1<#--
2Widget templates can be used to modify the look of a
3specific application.
4
5Please use the left panel to quickly add commonly used variables.
6Autocomplete is also available and can be invoked by typing "${".
7-->
8
9<#assign tmpArticleId = "" />
10
11
12<#assign tmpArticleId = paramUtil.getString(request, "selectedArticleId") />
13<#assign editmode = paramUtil.getString(request, "p_l_mode") />
14
15<#if tmpArticleId?has_content>
16<#-- ArticleId found in request = "${tmpArticleId}" is_string = ${tmpArticleId?is_string?string("true", "false")}<br>
17<#else>
18 No article In request object<br>-->
19</#if>
20
21<#-- <#if !tmpArticleId?has_content>
22 <#assign tmpArticleId = defaultArticleId />
23 ArticleId set to default = ${tmpArticleId}<br>
24</#if>-->
25<#if tmpArticleId?has_content>
26<#assign JournalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")>
27<#assign journalArticle = JournalArticleLocalService.getArticle(groupId, tmpArticleId) />
28
29<@liferay_journal["journal-article"]
30 articleId=journalArticle.getArticleId()
31 ddmTemplateKey=journalArticle.getDDMTemplateKey()
32 groupId=journalArticle.getGroupId()
33/>
34<script>
35$(document).ready(function() {
36 if ($("#navaccordion li").length > 0) {
37 if (!$("#navaccordion li.current a").attr('href')) {
38 let navUrl = $("#navaccordion li:first a").attr('href');
39 window.location = navUrl;
40 }
41 }
42});
43</script>
44<#else>
45 <#if !editmode?has_content>
46 <script>
47 $(document).ready(function()
48 {
49 if($("#navaccordion li").length >0){
50 let navUrl = $("#navaccordion li:first a").attr('href');
51 if(navUrl.indexOf("selectedArticleId") > 0)
52 {
53 var urlParams = new URLSearchParams(window.location.search);
54 if (urlParams.toString()) {
55 window.location = navUrl + '&' + urlParams;
56 } else {
57 window.location = navUrl;
58 }
59 }
60 }
61 });
62 </script>
63 </#if>
64
65</#if>