Activate Refills Using Patient Portal (2024)

HomeHealth ServicesPharmacy

Activate Refills Using Patient Portal (1)

Health Services

Redirecting...

Playlist:

").appendTo(controls); mbOptions = $("#multiBandwidthOptions"); createMultiBandwithAnchors(currentVideoHeight); multiBandwidth.hover(function () { mbOptions.show(); }, function () { mbOptions.hide(); }); }; // BUILD MULTI-BANDWIDTH PLAYER TOOL function createMultiBandwithAnchors(videoHeight) { videoHeight = checkVideoHeight(videoHeight); updateMultiBandwithAnchors(videoFilesObj, videoHeight); } // CHECK IF CURRENT VIDEO HEIGHT EXISTS function checkVideoHeight(heightToCheck) { var index = videoFilesObj.length - 1; tempHeight = videoFilesObj[index].height; for (var i = 0; i < videoFilesObj.length; i++) { if (videoFilesObj[i].height == heightToCheck) { tempHeight = videoFilesObj[i].height; break; } } return tempHeight; } // SET PLAYER SOURCE AND PLAY VIDEO function setPlayerSource(src) { videoHasPlayed = false; // INIT createMultiBandwithAnchors(currentVideoHeight); // RECREATE THE ANCHORS var time = myPlayer.getCurrentTime(); // GET THE CURRENT TIME myPlayer.setSrc(src); myPlayer.load(); playVideo(); // SET THE TIMER TO THE CURRENT TIME SO IT WILL BE AVAILABLE WHEN THE PLAYER IS RELOADED if (time > 0) { restartTimer = time; } } // The container element is relatively positioned. MediaElement js creates an absolutely // positioned element within. Absolutely positioned items do not respect the containment // of parent relatively positioned elements. This ensures the heights are constrained. function calculateVideoHeight() { if (debug) console.log('DVIDSPlayer() > calculateVideoHeight()'); var playerHeight = $('.DVIDSVideoPlayerItem video').height(); if (debug) console.log('DVIDSPlayer() > calculateVideoHeight', playerHeight); if (playerHeight) { $('.DVIDSVideoPlayer .video-column, .DVIDSVideoPlayerItem, .DVIDSVideoPlayerItemPlaceHolder').css("min-height", playerHeight + 20); $('.DVIDSVideoPlayerItem .mejs__video, .DVIDSVideoPlayerItem video').css('height', playerHeight); } } function debounce(func, wait, immediate) { var timeout; return function () { var context = this, args = arguments; var later = function () { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; function setAspectRatio() { if (debug) console.log('DVIDSPlayer() > setAspectRatio()'); // for portrait aspect ratio, need to wait till video is playing, then redetect height var loopCount = 0; var mainLoopId = setInterval(function () { loopCount++; calculateVideoHeight(); if (loopCount > 10) { clearInterval(mainLoopId); } if (debug) console.log('DVIDSPlayer() > setAspectRatio() > setInterval Running'); }, 500); } function playVideo() { document.getElementById('videoPlayer61148').play(); setAspectRatio(); //var playButton = $(".mejs-overlay-play"); //if (playButton.size() != 0) { // playButton.trigger("click"); //} } myPlayer = new MediaElementPlayer('videoPlayer61148', { videoWidth: '100%', videoHeight: '100%', //enableAutosize: true, pluginPath: "/DesktopModules/SharedLibrary/Plugins/MediaElement4.2.9/", hls: { debug: false, capLevelToPlayerSize: true, capLevelOnFPSDrop: true, startLevel: -1, abrMaxWithRealBitrate: true }, features: ["playpause", "progress", "current", "duration", "tracks", "volume", "fullscreen"], success: function (mediaElement, domObject) { $(".DVPPlayerBackground .mejs__poster-img").attr("alt", "Learn how to activate prescription refills using the MHS Genesis Patient Portal.\u003cbr /\u003eWhat You’ll Learn:\u003cbr /\u003e- How to navigate the portal like a pro\u003cbr /\u003e- The crucial “RX Refill” tab and what it offers\u003cbr /\u003e- Managing multiple patients’ medications seamlessly\u003cbr /\u003e- Insider tips on prescription expiration dates\u003cbr /\u003e- A step-by-step guide to refilling your meds\u003cbr /\u003eWhether you’re a seasoned user or a newbie, this video will empower you to take charge of your health with just a few clicks."); mediaElement.addEventListener('playing', function (e) { if (defaultButton.length) { if (playEventButtonTriggered === false) { defaultButton.hide(); hoverButton.hide(); playEventButtonTriggered = true; } } if (playEventAlreadyTriggered === false) { DVIDSVideoAnalytics.track('play', analyticsParams); if(debug) { console.debug('DVIDSVideoAnalytics PLAY EVENT'); } playEventAlreadyTriggered = true; } }); mediaElement.addEventListener('play', function (e) { if ($(".mejs__controls").is(":hidden") ) $(".mejs__controls").show(); // if overlay exists, hide it if ($(".mejs__layer.video-overlay").length) $(".mejs__layer.video-overlay").hide(); setAspectRatio(); }); mediaElement.addEventListener('ended', function (e) { DVIDSVideoAnalytics.track('ended', analyticsParams); if(debug) { console.debug('DVIDSVideoAnalytics ENDED EVENT'); } //play next media var nextURL = "javascript:GetCCURL('https://irwin.tricare.mil/Health-Services/Pharmacy?videoid=932394#DVIDSVideoPlayer61148')"; if (nextURL != "") { document.location = nextURL; } }); //$('#videoPlayer61148').css({'width': '100%', 'height':'100%'}); // EVENT LISTENER FOR WHEN VIDEO TIME HAS BEEN UPDATED mediaElement.addEventListener('timeupdate', function (e) { // IF VIDEO HAS NOT BEEN PLAYED AND SAVED POSITION IS GREATER THAN 0 if (!videoHasPlayed && restartTimer > 0) { // SET THE START TIME FROM THE RELATION IN SECONDS myPlayer.setCurrentTime(restartTimer); // SET THE VIDEO HAS PLAYED FLAG AND CLEAR THE TIMER // OTHERWISE KEEP CONTINUAL LOOP GOING BACK TO THIS TIME // THIS EVENT GETS CALLED AROUND EVERY 250MS videoHasPlayed = true; restartTimer = 0; } }, false); mediaElement.addEventListener('canplay', function (e) { CheckCaptions(); }, false); mediaElement.addEventListener('pause', function (e) { if (defaultButton.length) { defaultButton.removeAttr("style"); hoverButton.removeAttr("style"); playEventButtonTriggered = false; } }, false); mbOptions.delegate("a", "click", function () { var obj = $(this); if (obj.hasClass("chosenMBLink")) { return false; } else { mbOptions.find("a.chosenMBLink").removeClass("chosenMBLink"); obj.addClass("chosenMBLink"); currentVideoHeight = obj.html().substring(0, obj.html().length - 1); setPlayerSource(obj.attr("fileurl")); } mbOptions.hide(); return false; }); // ASSIGN CAPTIONS SELECTOR TO JQUERY OBJECT, SET CLICK DELEGATE AND TURN ON CAPTIONS IF PREVIOUSLY ENABLED captionsSelector = $("div.mejs-captions-selector"); captionsSelector.delegate("input:radio", "click", function () { var lang = this.value; if (lang == "none") { dvpCCEnabled = false; } else { dvpCCEnabled = true; } }); turnOnCaptionsIfEnabled(); } }); $window.on("resize", function () { if ($(".mejs__time-total.mejs__time-slider").attr("aria-valuemax") == "NaN") { $(".mejs__time-total.mejs__time-slider").attr("aria-valuemax",229); } var debouncedFn = debounce(calculateVideoHeight, 250); debouncedFn(); }); // AUTOMATICALLY PLAY VIDEO IF ID PASSED OR VIDEO CLICKED if (true) { playVideo(); //document.getElementById('videoPlayer61148').play(); } }); function updateMultiBandwithAnchors(files, videoHeight) { var mbOptions = $("#multiBandwidthOptions"); var multiBandwidthHTML = []; for (var i = 0; i < files.length; i++) { if (i == files.length - 1) { multiBandwidthHTML.unshift("" + files[i].height + "p"); } else { if (files[i].height != files[i+1].height) { multiBandwidthHTML.unshift("" + files[i].height + "p"); } } } multiBandwidthHTML.push("

"); mbOptions.html(multiBandwidthHTML.join("")); var mbAnchors = mbOptions.children("a"); for (i = 0; i < mbAnchors.length; i++) { if (mbAnchors.eq(i).html() == videoHeight + "p") { mbAnchors.eq(i).addClass("chosenMBLink"); } } mbOptions.css("height", 20 * mbAnchors.length); } function PlayAssetAJAX(id) { var baseUrl = $.ServicesFramework().getServiceRoot('DVIDSVideoPlayer'); $.ajax({ type: "GET", url: baseUrl + "Public/GetAsset?id=" + id, headers: { "ModuleId": 61148, "TabId": 11772, "RequestVerificationToken": $("input[name='__requestverificationtoken']").val() }, success: function (data) { // remove the poster so the initial poster doesn't display while switching videos. $(".DVPPlayerBackground .mejs__poster").css("background-image", ""); $(".DVPPlayerBackground .mejs__poster-img").removeAttr("src"); $(".DVPPlayerBackground video").removeAttr("poster"); // analytics playEventAlreadyTriggered = false; gaUrl = data.AnalyticsUrl; gaTitle = data.AnalyticsTitle; gaID = data.ID; // play through mediaelementjs const $tracks = $(`track.DVIDSCaptions`); if ($tracks.length > 0) { $tracks.attr('src', data.CaptionsUrl); } myPlayer.rebuildtracks(); myPlayer.setSrc(data.Video.HlsSrc); myPlayer.play(); updateMultiBandwithAnchors(data.Bandwidth, 700); }, error: function () { if(debug) { console.log("error loading asset"); } } }); } Video by Jorge Gomez

Activate Refills Using Patient Portal

Irwin Army Community Hospital

June 24, 2024 | 3:49

Learn how to activate prescription refills using the MHS Genesis Patient Portal.
What You’ll Learn:
- How to navigate the portal like a pro
- The crucial “RX Refill” tab and what it offers
- Managing multiple patients’ medications seamlessly
- Insider tips on prescription expiration dates
- A step-by-step guide to refilling your meds
Whether you’re a seasoned user or a newbie, this video will empower you to take charge of your health with just a few clicks.

More

Tags

PrescriptionRefillsPatient PortalMHS GENESIS Patient Portalprescriptions refills

More

Up Next

Now Playing Activate Refills Using Patient Portal
4:12 Pro Sports Medicine at IACH

More Videos

Pharmacy

Main Outpatient Pharmacy

Phone
(785) 239-DOCS(3627)

Hours
Monday -Friday: 8:30 am - 4:15 pm
Closed on federal holidays and weekends.

Location
650 Huebner Road, Fort Riley

Farrelly Health Clinic Pharmacy

Active Duty Only

Phone(785) 240-5536

Hours
Monday -Friday: 8 am -4pm
Closed on federal holidays, training holidays and weekends.

Location
8072 Normandy Drive, Fort Riley

TRICARE Network Pharmacies

Find a Network Pharmacy

Refills

At Fort Riley pharmacies you can expectto be greeted by knowledgeable pharmacists and pharmacy technicians dedicated to serving the Big Red One community. They serve 50,000 beneficiaries and dispense 450,000 outpatient prescriptions each year. Customers can depend on their pharmacist to be a healthcare and information resource center. When picking up prescriptions, customers must have a military ID card for all patients ages 10 years and older. A photocopy or a digital copy (front and back) of the ID card may be used. IACH pharmacies accept electronic prescriptions from providers outside of Fort Riley. Providers: select the site link DoD Ft. Riley E-Pharmacy (E-PHCY). Electronic prescriptions for medications submitted that are not on the formulary will not be filled.

Consult a Clinical Pharmacist

Patients can request a consultation with a clinical pharmacist by calling (785) 239-DOCS (3627) for a polypharmacy appointment.

Medication Disposal

MedSafe is a disposal system for unused and expired medications. The system prevents pharmaceuticals from circulating into community water supplies. The MedSafe receptacle is located in the IACH Outpatient Pharmacy lobby and available for use Monday - Friday during pharmacy hours. Please do not place needles, medical waste, batteries, hazardous materials, inhalers, nor illegal drugs in this receptacle.

Pharmacy Formulary

A formulary is a list of prescription drugs, both generic and brand name, used by prescribers to identify drugs that are currently authorized and available. A committee of providers and pharmacists maintain and update the formulary quarterly. For information about the TRICARE Formulary or medications covered, visit theDefense Health Agency web site. A search tool for the TRICARE Formulary is available at theExpress-Scripts web site.

Home Delivery Option

With TRICARE Pharmacy Home Delivery, picking up your prescriptions is as easy as picking up your mail since maintenance medications are delivered right to your home. Get up to a 90-day supply of your long-term medicines. Enjoy free standard shipping, copayments may apply. Create an account withExpress-Scripts online. You can also download themobile app at this link. Or call877-363-1296and have your prescription bottle handy. We recommend having a 30-day supply of medication on hand while your first order is processed.

About the Pharmacy Team

Irwin Army Community Hospital’s Department of Pharmacy is made up of a team of dedicated healthcare workers composed of Registered Pharmacists, Pharmacy Technicians, Administrative and Supply Management personnel, and Red Cross volunteers. This cohesive team is dispersed throughout IACH’s patient care areas rendering pharmaceutical services to both inpatient and ambulatory patients.

IACH’s pharmacy has a broad array of available pharmaceuticals called a formulary. Our formulary is routinely reviewed and updated to add and remove drugs so as to better serve our patients for their treatment needs. If you have a special medication need that is not covered by the formulary, please inquire about your available options.

IACH Pharmacy is focused on patient safety, working with patients for improved health and well-being through information and education. Your pharmacy staff’s main role is to provide information about your medications, including:

  • the purpose of your prescription
  • making sure you know how to take or use your medication
  • explaining common side effects

The pharmacy team is dedicated to work with you to ensure your best possible health.

Don't forget to keep your family's information up-to-date in DEERS.

Activate Refills Using Patient Portal (2024)

References

Top Articles
Bg3 How To Remove Clown Makeup
Ksfy Live Doppler
Wnem Radar
Social Security Administration Lawton Photos
Die Reiseauskunft auf bahn.de - mit aktuellen Alternativen gut ans Ziel
Health Stream Kaiser
Dirty South Swag Review | BatDigest.com
Suppression du CESE et du HCCT au Sénégal : L'Assemblée nationale vote contre la suppression de ces deux institutions - BBC News Afrique
Royal Bazaar Farmers Market Tuckernuck Drive Richmond Va
Petco Westerly Ri
Celebrity Guest Tape Free
The Ports of Karpathos: Karpathos (Pigadia) and Diafani | Greeka
UK HealthCare EpicCare Link
Fatshark Forums
Momokun Leaked Controversy - Champion Magazine - Online Magazine
Localhotguy
Sarah Dreyer Obituary
Mifflin County 24 Hour Auction
Ilovekaylax
Fk Jones Obituary
Fandango Movies And Shows
Shadbase Get Out Of Jail
Decree Of Spite Poe
Weather In Allentown-Bethlehem-Easton Metropolitan Area 10 Days
Jen Chapin Gossip Bakery
Pcc Skilled Nursing Login
2024-25 ITH Season Preview: USC Trojans
Shiftwizard Login Wakemed
Author T. Jefferson Parker
Umbc Registrar
Alexandria Van Starrenburg
South Park Old Fashioned Gif
VMware accompagne ses partenaires et soutient leur transformation en faisant évoluer son programme « VMware Partner Connect » - Broadcom News & Stories - Français
Trailmaster Fahrwerk - nivatechnik.de
Fanart Tv
Zip Tv Guide
Whatcom County Food Handlers Permit
Craigslist Lake Charles
Enterprise Car Sales Jacksonville Used Cars
Www.1Tamilmv.cfd
Yuba Sutter Craigslist Free Stuff
Smoque Break Rochester Indiana
Zmeenaorrxclusive
Sun Massage Tucson Reviews
Pinellas Fire Active Calls
Unintelligible Message On A Warning Sign Crossword
Craigslist West Valley
The Hardest Quests in Old School RuneScape (Ranked) – FandomSpot
Salmon Fest 2023 Lineup
Grayson County Craigslist
Samanthaschwartz Fapello
Lharkies
Latest Posts
Article information

Author: Laurine Ryan

Last Updated:

Views: 6321

Rating: 4.7 / 5 (57 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Laurine Ryan

Birthday: 1994-12-23

Address: Suite 751 871 Lissette Throughway, West Kittie, NH 41603

Phone: +2366831109631

Job: Sales Producer

Hobby: Creative writing, Motor sports, Do it yourself, Skateboarding, Coffee roasting, Calligraphy, Stand-up comedy

Introduction: My name is Laurine Ryan, I am a adorable, fair, graceful, spotless, gorgeous, homely, cooperative person who loves writing and wants to share my knowledge and understanding with you.