PointClickCare AHT (SNF EHR) - User Comments (2024)

View Product Scores

View Advanced Filters

Advanced Filters

Job Level

Comment Type

Overall Satisfaction

Click stars to filter

By Month

1

6

12

24

36

By Date Range

Comment Categories

"); applyKlasOverLay($(".comments-loading-area")); } var searchString = $("#commentsSearchInput").val(); var startDate = $("#fromDate").val(); var endDate = $("#toDate").val(); var sortOrder = $("#sortBySelect").val(); var selectedJobLevels = ""; $(".job-level-check-boxes input:checked").each(function () { if (selectedJobLevels !== "") { selectedJobLevels += ","; } selectedJobLevels += $(this).attr('value'); }); if (selectedJobLevels === "0") { selectedJobLevels = ""; } var selectedCommentTypes = ""; $("#comment-type-check-boxes input:checked").each(function () { if (selectedCommentTypes !== "") { selectedCommentTypes += ","; } selectedCommentTypes += $(this).attr('value'); }); if (selectedCommentTypes === "0") { selectedCommentTypes = ""; } var selectedCategories = ""; $("#category-check-boxes input:checked").each(function () { if (selectedCategories !== "") { selectedCategories += ","; } selectedCategories += $(this).attr('value'); }); if (selectedCategories === "0") { selectedCategories = ""; } var i; var selectedSatisfaction = ""; for (i = 0; i <= maxSatisfactionScore; i++) { if ($("#star" + i + "i").hasClass('fas')) { selectedSatisfaction = i; } } var $months = $('div.months div.btn-primary.active'); var numberOfMonths = parseInt($months.attr("data-months")); var showOnlyUnread = false; if (numberOfMonths === 0) { showOnlyUnread = true; rowsToRetrieve = 50000; } else { rowsToRetrieve = 50000; } $.ajax({ type: 'POST', url: '/comments/_comments', data: { evProductIds:_evProductId, searchString: searchString, startDate: startDate, endDate: endDate, sortId: sortOrder, includeProviderPulse: false, numberOfRows: rowsToRetrieve, pageNumber: _currentPage, jobLevels: selectedJobLevels.toString(), commentType: selectedCommentTypes, scores: selectedSatisfaction, categories: selectedCategories, async: ajaxAsync, // blocks scroll events from duplicating the data. sortItems: "[{"SortTypeID":2,"SortDesc":"Date Newest"},{"SortTypeID":1,"SortDesc":"Date Oldest"},{"SortTypeID":4,"SortDesc":"Job Level Z-A"},{"SortTypeID":3,"SortDesc":"Job Level A-Z"}]", showUnreadOnly: showOnlyUnread, segmentId: 21, contactName: "", contactNumber: "", marketSegmentName: "Long-Term Care", productTypeId: 1, isOneTimeService: "False" } }).done(function (html) { if (pageNum > 1) { var $html = $(html); $('#user-commentary-comments-grid').isotope("insert", $html); } else { $('#commentsContainer').empty().html(html); } // Bind the endless scrolling scroll event // Only do this if there are additional comments to load if ((_currentPage * rowsToRetrieve) < _resultsCount) { commentsScrollListener(); } $(".comments-loading-area").remove(); }).fail(function () { toastr.error("Error loading comments "); $('#commentsContainer').empty().html("Error loading comments"); }); } function saveFilters() { var $months = $('div.months div.btn-primary.active'); var numberOfMonths = parseInt($months.attr("data-months")); if (numberOfMonths !== 0) { sessionStorage.setItem("product.comments.numberOfMonths", numberOfMonths); } var fromDate = $("#fromDate").val(); sessionStorage.setItem("product.comments.fromDate", fromDate); var toDate= $("#toDate").val(); sessionStorage.setItem("product.comments.toDate", toDate); var selectedJobLevels = ""; $(".job-level-check-boxes input:checked").each(function () { if (selectedJobLevels !== "") { selectedJobLevels += ","; } selectedJobLevels += $(this).attr('value'); }); if (selectedJobLevels === "0") { selectedJobLevels = ""; } sessionStorage.setItem("product.2196.comments.jobLevels", selectedJobLevels); var selectedCategories = ""; $("#category-check-boxes input:checked").each(function () { if (selectedCategories !== "") { selectedCategories += ","; } selectedCategories += $(this).attr('value'); }); if (selectedCategories === "0") { selectedCategories = ""; } sessionStorage.setItem("product.2196.comments.categoryTypes", selectedCategories); var selectedCommentTypes = ""; $("#comment-type-check-boxes input:checked").each(function () { if (selectedCommentTypes !== "") { selectedCommentTypes += ","; } selectedCommentTypes += $(this).attr('value'); }); if (selectedCommentTypes === "0") { selectedCommentTypes = ""; } sessionStorage.setItem("product.2196.comments.commentTypes", selectedCommentTypes); } function loadFilters() { var saveDefaults = false; var numberOfMonthsValue = sessionStorage.getItem("product.comments.numberOfMonths"); if (numberOfMonthsValue && (numberOfMonthsValue != "" || numberOfMonthsValue != "-1")) { $("div.months div.btn-primary").removeClass('active'); $('div.months div.btn-primary[data-months="' + numberOfMonthsValue + '"]').addClass("active"); } else { saveDefaults = true; } updateDateRange(); var jobLevelValues = sessionStorage.getItem("product.2196.comments.jobLevels"); if (jobLevelValues && jobLevelValues != "" && jobLevelValues !== "undefined") { $('input[type="checkbox"][name="jobLevel"]').prop('checked', false); var jobLevels = jobLevelValues.split(","); jobLevels.forEach(function(element) { $('input[type="checkbox"][name="jobLevel"][value=' + element + ']').prop('checked', true); }); } var categoryTypeValues = sessionStorage.getItem("product.2196.comments.categoryTypes"); if (categoryTypeValues && categoryTypeValues != "" && categoryTypeValues !== "undefined") { $('input[type="checkbox"][name="categoryType"]').prop('checked', false); var categoryTypes = categoryTypeValues.split(","); categoryTypes.forEach(function(element) { $('input[type="checkbox"][name="categoryType"][value=' + element + ']').prop('checked', true); }); } var commentTypeValues = sessionStorage.getItem("product.2196.comments.commentTypes"); if (commentTypeValues && commentTypeValues != "" && commentTypeValues !== "undefined") { $('input[type="checkbox"][name="commentType"]').prop('checked', false); var commentTypes = commentTypeValues.split(","); commentTypes.forEach(function(element) { $('input[type="checkbox"][name="commentType"][value=' + element + ']').prop('checked', true); }); } if (saveDefaults === true) { // Nothing was saved to local storage.. save the defaults saveFilters(); } } // Note DOMContentLoaded doesn't fire if the document is already loaded check the document state before using it. if( document.readyState !== 'loading' ) { commentFiltersDocumentReady(); } else { document.addEventListener('DOMContentLoaded', function () { commentFiltersDocumentReady(); }); } function commentFiltersDocumentReady() { // Set the Filter Buttons on loadSize Filters $('input[name="size"][value="0"]').prop('checked', true); $('input[name="region"][value="0"]').prop('checked', true); $('input[name="subtype"][value="0"]').prop('checked', true); $('input[name="owned"][value="-1"]').prop('checked', true); $('input[name="specialty-filter-Utilization-1"][value="0"]').prop('checked', true); $("#mobileCommentFilters").on("click", function () { // hide / show for mobile only $("#commentAdvancedFilters").toggleClass("d-none"); $("#commentAdvancedFilters").toggleClass("d-sm-none"); $("#mobileCommentFilterButtonLabel").text(function (i, text) { return text === " View Advanced Filters" ? "Hide Advanced Filters" : " View Advanced Filters"; }); }); // wire up date pickers $("#fromDate").datepicker().on("changeDate", function () { populateCommentResults(); $(this).datepicker('hide'); }); $("#toDate").datepicker().on("changeDate", function () { populateCommentResults(); $(this).datepicker('hide'); }); $("#fromDate, #toDate").on("change", function () { $(this).datepicker('hide'); }); $("#fromDate, #toDate").on("blur", function () { populateCommentResults(); }); $(".job-level-check-boxes input").on("change", function () { var $this = $(this); if ($this.attr('value') === "0") { $(".job-level-check-boxes input").prop('checked', false); $this.prop('checked', true); } else { if ($("#joblevel-0").is(':checked')) { $("#joblevel-0").prop('checked', false); } } saveFilters(); }); $("#comment-type-check-boxes input").on("change", function () { var $this = $(this); if ($this.attr('value') === "0") { $("#comment-type-check-boxes input").prop('checked', false); $this.prop('checked', true); } else { if ($("#comment-type-0").is(':checked')) { $("#comment-type-0").prop('checked', false); } } saveFilters(); }); $("#category-check-boxes input").on("change", function () { var $this = $(this); if ($this.attr('value') === "0") { $("#category-check-boxes input").prop('checked', false); $this.prop('checked', true); } else { if ($("#category-0").is(':checked')) { $("#category-0").prop('checked', false); } } saveFilters(); }); // Change the month selector $("div.months div.btn-primary").on("click", function () { $("div.months div.btn-primary").removeClass('active'); $(this).addClass("active"); updateDateRange(); populateCommentResults(); saveFilters(); }); //Search event with a de-bouncer, prevent enter key $("#commentsSearchInput").on("keyup", $.debounce(750, function () { // refresh the results populateCommentResults(); })).on("keypress", function (event) { var code = (event.keyCode ? event.keyCode : event.which); if (code === 13) { event.stopPropagation(); event.preventDefault(); } }); $(".filter-radio-buttons-comments").off('click').on('click', function () { var value = $(this).val(); if (value === "0") { $('input[name=commentType]').prop("checked", false); $('input[name=commentType][value="0"]').prop("checked", true); } else { $('input[name=commentType][value="0"]').prop("checked", false); } applyKlasOverLay('#commentsContainer'); // Number of years from the parent page var numberOfYears = $("#trendingFilters .years .btn.btn-primary.active").attr("data-years"); var filterSizeValue = $('input[name="size"]:checked').val(); var filterRegionValue = $('input[name="region"]:checked').val(); var filterSpecialtyValue = $('input[name="specialty-filter-Utilization-1"]:checked').val(); var filterOwnedValue = $('input[name="owned"]:checked').val(); var filterSubTypeValue = $('input[name="subtype"]:checked').val(); if (filterSizeValue === undefined) { filterSizeValue = 0; } if (filterRegionValue === undefined) { filterRegionValue = 0; } if (filterOwnedValue === undefined) { filterOwnedValue = -1; } if (filterSubTypeValue === undefined) { filterSubTypeValue = 0; } // Update the filters $.ajax({ url: '/productPage/UpdateFilters', data: { productId: _evProductId, filterSizeValue: filterSizeValue, filterRegionValue: filterRegionValue, filterSpecialtyValue: filterSpecialtyValue, filterSubTypeValue: filterSubTypeValue, isOwnedId: filterOwnedValue, } }).done(function (result) { if(result.evProductId == null) { // There is data that KLAS is willing to show for this case. (Exception Ambulatory EMR, when sizing is applied the business doesn't want to show the owned data.) $('#commentsContainer').empty().html("No comments for the selected filter combination."); return; } // Update the global evProduct Id with the new one. _evProductId = result.evProductId; var filterSizeValue = $('input[name="size"]:checked').val(); var filterRegionValue = $('input[name="region"]:checked').val(); var filterSubTypeVlue =$('input[name="subtype"]:checked').val(); var filterOwnedValue =$('input[name="owned"]:checked').val(); var filterSpecialtyValue = $('input[name="specialty-filter-Utilization-1"]:checked').val(); var filterSizeText = $('input[name="size"]:checked').parent().text(); var filterSubTypeText = $('input[name="subtype"]:checked').parent().text(); var filterOwnedText = $('input[name="owned"]:checked').parent().text(); var filterRegionText = $('input[name="region"]:checked').parent().text(); var filterSpecialtyText = $('input[name="specialty-filter-Utilization-1"]:checked').parent().text(); var filterOwnedValue = $('input[name="owned"]:checked').val(); var filterOwnedText = $('input[name="owned"]:checked').parent().text(); var filterSubTypeValue = $('input[name="subtype"]:checked').val(); var filterSubTypeText = $('input[name="subtype"]:checked').parent().text(); $("#viewProductsButton").attr("href", "/review/" + result.urlFriendlyProductName + "/" + _evProductId); var filterText = buildFilterText(filterSizeText.trim(), filterRegionText.trim(), filterSpecialtyText, filterSubTypeText.trim(), filterOwnedText.trim()) $("strong.filtered-text-description").text(filterText); // Change all the labels if (filterText.toLowerCase().includes("all") && !filterText.toLowerCase().includes("small")) { $(".filter-text-label").addClass("d-none"); } else { $(".filter-text-label").removeClass("d-none"); } populateCommentResults(); var url = "/comments/" + result.urlFriendlyProductName + "/" + result.evProductId; if (result.evProductIds && result.evProductIds != "") { url += "/" + result.evProductIds; } history.pushState({ evProductId: result.evProductId, evProductIds: result.evProductIds, numberOfYears: numberOfYears, filterText: filterText, filterSizeValue: filterSizeValue, filterRegionValue: filterRegionValue, filterSpecialtyValue: filterSpecialtyValue, filterSubTypeValue: filterSubTypeValue, filterOwnedValue: filterOwnedValue, }, document.title + " - " + filterText, url); }).fail(function (response) { toastr.error("error updating filters"); }).always(function () { removeKlasOverlay(); }); // Bind the Call to action login button the menu click event // Global function see functions.js bindMenuLoginButton('.login-to-access'); bindCreateAccountButton('.create-account-modal-dropdown'); bindMobileCreateAccountButton(".mobile-create-account-modal-dropdown"); $(window).on('popstate', function (e) { if (e.originalEvent.state.evProductId != undefined && e.originalEvent.state.evProductId != null) { // Restore the state of the check-boxes $("input[name='size'][value='" + e.originalEvent.state.filterSizeValue + "']") .prop("checked", true); $("input[name='size2'][value='" + e.originalEvent.state.filterSizeValue + "']") .prop("checked", true); $("input[name='region'][value='" + e.originalEvent.state.filterRegionValue + "']") .prop("checked", true); $("input[name='region2'][value='" + e.originalEvent.state.filterRegionValue + "']") .prop("checked", true); $("input[name='specialty-filter-Utilization-1'][value='" + e.originalEvent.state.filterSpecialtyValue + "']") .prop("checked", true); $("input[name='specialty-filter-Utilization-2'][value='" + e.originalEvent.state.filterSpecialtyValue + "']") .prop("checked", true); $("input[name='subtype'][value='" + e.originalEvent.state.filterSubTypeValue + "']") .prop("checked", true); $("input[name='owned'][value='" + e.originalEvent.state.filterOwnedValue + "']") .prop("checked", true); loadCommentFilters(e.originalEvent.state.evProductId, e.originalEvent.state.filterSizeValue, e.originalEvent.state.filterRegionValue, e.originalEvent.state.filterSpecialtyValue, e.originalEvent.state.filterSubTypeValue, e.originalEvent.state.filterOwnedValue); } }); const EUROPE_FILTER = 11; // Europe filter ID const EUROPE_RANGE_START = 2291; // Europe sub filter range start const EUROPE_RANGE_END = 2296; // Europe sub filter range end // Show Europe filters based on region selection var regionValue = 0; if (regionValue === EUROPE_FILTER || (regionValue >= EUROPE_RANGE_START && regionValue <= EUROPE_RANGE_END)) { $("#europe-filters-continer").removeClass("d-none"); } // Hide and Show Europe filters based on region selection $("input[name='region']").change(function () { var $this = $(this); var value = parseInt($this.val(), 10); if (value === EUROPE_FILTER || (value >= EUROPE_RANGE_START && value <= EUROPE_RANGE_END)) { $("#europe-filters-continer").removeClass("d-none"); } else { $("#europe-filters-continer").addClass("d-none"); } }); }); } // end of function commentFiltersDocumentReady var HasAccess = false; var IsVendor = false; function setStars(selectorToAdd, selectorToRemove) { for (let k = (minSatisfactionScore + 1); k <= maxSatisfactionScore; k++) { $("#star" + k + "i").removeClass("fas").addClass("far"); } for (let j = 1; j <= minSatisfactionScore; j++) { $("#star" + j + "i").removeClass(selectorToRemove).addClass(selectorToAdd); } } function bindEvents() { $(".star-filters span.star").on("click", function () { var $this = $(this); var value = $this.attr("data-value"); var id = "#star" + value + "i"; if (value <= minSatisfactionScore) { if ($(id).hasClass("far")) { //a star was clicked to select it setStars("fas", "far"); } else { //a star was clicked to unselect it setStars("far", "fas"); } } else { if ($(id).hasClass("far")) { //a star was clicked to select it $(".fas").removeClass("fas").addClass("far"); $(id).addClass("fas").removeClass("far"); } else { //a star was clicked to unselect it $(".fas").removeClass("fas").addClass("far"); $(id).addClass("far").removeClass("fas"); } } if (IsVendor === true) { ReturnByMonthFilterToPreviousState(); } populateCommentResults(); }); }

PointClickCare AHT (SNF EHR) - User Comments (2024)
Top Articles
How Celebrity Gossip Site Crazy Days And Nights Went Q
Going Blind: From TikTok to Podcasts, Blind Items Are Taking Over (Again)
It’s Time to Answer Your Questions About Super Bowl LVII (Published 2023)
55Th And Kedzie Elite Staffing
Hotels
Restored Republic January 20 2023
Cooking Chutney | Ask Nigella.com
Terrorist Usually Avoid Tourist Locations
Unity Stuck Reload Script Assemblies
Top 10: Die besten italienischen Restaurants in Wien - Falstaff
Moviesda Dubbed Tamil Movies
Nieuwe en jong gebruikte campers
Student Rating Of Teaching Umn
All Obituaries | Ashley's J H Williams & Sons, Inc. | Selma AL funeral home and cremation
3656 Curlew St
Olivia Ponton On Pride, Her Collection With AE & Accidentally Coming Out On TikTok
Cranberry sauce, canned, sweetened, 1 slice (1/2" thick, approx 8 slices per can) - Health Encyclopedia
Indiana Immediate Care.webpay.md
Colts Snap Counts
Conan Exiles Thrall Master Build: Best Attributes, Armor, Skills, More
Gem City Surgeons Miami Valley South
Cta Bus Tracker 77
Vigoro Mulch Safe For Dogs
Mccain Agportal
Wkow Weather Radar
European Wax Center Toms River Reviews
City Of Durham Recycling Schedule
Page 2383 – Christianity Today
Snohomish Hairmasters
Divide Fusion Stretch Hoodie Daunenjacke für Herren | oliv
Afni Collections
Dhs Clio Rd Flint Mi Phone Number
Abga Gestation Calculator
WPoS's Content - Page 34
Craigslist Boerne Tx
Used Safari Condo Alto R1723 For Sale
Donald Trump Assassination Gold Coin JD Vance USA Flag President FIGHT CIA FBI • $11.73
O'reilly Auto Parts Ozark Distribution Center Stockton Photos
Andhra Jyothi Telugu News Paper
D-Day: Learn about the D-Day Invasion
How to Get a Better Signal on Your iPhone or Android Smartphone
Discover Things To Do In Lubbock
Owa Hilton Email
Sofia Franklyn Leaks
Leland Nc Craigslist
Big Reactors Best Coolant
Ts In Baton Rouge
The Cutest Photos of Enrique Iglesias and Anna Kournikova with Their Three Kids
House For Sale On Trulia
How to Do a Photoshoot in BitLife - Playbite
Yoshidakins
Varsity Competition Results 2022
Latest Posts
Article information

Author: Cheryll Lueilwitz

Last Updated:

Views: 6095

Rating: 4.3 / 5 (74 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Cheryll Lueilwitz

Birthday: 1997-12-23

Address: 4653 O'Kon Hill, Lake Juanstad, AR 65469

Phone: +494124489301

Job: Marketing Representative

Hobby: Reading, Ice skating, Foraging, BASE jumping, Hiking, Skateboarding, Kayaking

Introduction: My name is Cheryll Lueilwitz, I am a sparkling, clean, super, lucky, joyous, outstanding, lucky person who loves writing and wants to share my knowledge and understanding with you.