From 2ec7ecc64f0629a636b1cd2afc9341d5dcceba54 Mon Sep 17 00:00:00 2001 From: robertbylight <107279507+robertbylight@users.noreply.github.com> Date: Thu, 7 Nov 2024 11:59:56 -0500 Subject: [PATCH] Mhv 61572 add filter for rx vagov (#19313) * [MHV 61572] made disp_status a fitlerable attribute and overrited the filter_params method in Filterable moduleto permit the PrescriptionDetails model filterable attributes. * [MHV 61572] added spec for a filtered list with pagination. --- app/models/prescription_details.rb | 2 +- .../my_health/v1/prescriptions_controller.rb | 9 + .../my_health/v1/prescriptions_spec.rb | 16 + ...ription_list_filtered_with_pagination.json | 50 + ...gets_a_list_of_all_prescriptions_vagov.yml | 7543 +++++++++++++++++ 5 files changed, 7619 insertions(+), 1 deletion(-) create mode 100644 spec/support/schemas/my_health/prescriptions/v1/prescription_list_filtered_with_pagination.json create mode 100644 spec/support/vcr_cassettes/rx_client/prescriptions/gets_a_list_of_all_prescriptions_vagov.yml diff --git a/app/models/prescription_details.rb b/app/models/prescription_details.rb index b02b8b1f6e0..51dd21ba03a 100644 --- a/app/models/prescription_details.rb +++ b/app/models/prescription_details.rb @@ -13,7 +13,7 @@ class PrescriptionDetails < Prescription attribute :modified_date, Common::UTCTime, sortable: { order: 'ASC' } attribute :institution_id, String attribute :dial_cmop_division_phone, String - attribute :disp_status, String, sortable: { order: 'ASC' } + attribute :disp_status, String, sortable: { order: 'ASC' }, filterable: %w[eq not_eq] attribute :ndc, String attribute :reason, String attribute :prescription_number_index, String diff --git a/modules/my_health/app/controllers/my_health/v1/prescriptions_controller.rb b/modules/my_health/app/controllers/my_health/v1/prescriptions_controller.rb index 5970d9e41cf..a93e3f42abd 100644 --- a/modules/my_health/app/controllers/my_health/v1/prescriptions_controller.rb +++ b/modules/my_health/app/controllers/my_health/v1/prescriptions_controller.rb @@ -121,6 +121,15 @@ def get_image_uri(cmop_ndc_number) "#{image_root_uri + folder_name}/#{file_name}" end + def filter_params + @filter_params ||= begin + valid_filter_params = params.require(:filter).permit(PrescriptionDetails.filterable_attributes) + raise Common::Exceptions::FilterNotAllowed, params[:filter] if valid_filter_params.empty? + + valid_filter_params + end + end + def collection_resource case params[:refill_status] when nil diff --git a/modules/my_health/spec/requests/my_health/v1/prescriptions_spec.rb b/modules/my_health/spec/requests/my_health/v1/prescriptions_spec.rb index caaf201070c..3b4b347fb09 100644 --- a/modules/my_health/spec/requests/my_health/v1/prescriptions_spec.rb +++ b/modules/my_health/spec/requests/my_health/v1/prescriptions_spec.rb @@ -265,6 +265,22 @@ expect(response).to match_camelized_response_schema('my_health/prescriptions/v1/prescription_list_filtered') end + it 'responds to GET #index with filter and pagination' do + VCR.use_cassette('rx_client/prescriptions/gets_a_list_of_all_prescriptions_vagov') do + get '/my_health/v1/prescriptions?page=1&per_page=100&filter[[disp_status][eq]]=Active: Refill in Process' + end + + filtered_response = JSON.parse(response.body)['data'].select do |i| + i['attributes']['disp_status'] == 'Active: Refill in Process' + end + + expect(response).to be_successful + expect(response.body).to be_a(String) + expect(response).to match_response_schema('my_health/prescriptions/v1/prescription_list_filtered_with_pagination') + expect(filtered_response.length).to eq(JSON.parse(response.body)['data'].length) + expect(filtered_response.length).to eq(JSON.parse(response.body)['meta']['pagination']['total_entries']) + end + it 'responds to POST #refill' do VCR.use_cassette('rx_client/prescriptions/refills_a_prescription') do patch '/my_health/v1/prescriptions/13650545/refill' diff --git a/spec/support/schemas/my_health/prescriptions/v1/prescription_list_filtered_with_pagination.json b/spec/support/schemas/my_health/prescriptions/v1/prescription_list_filtered_with_pagination.json new file mode 100644 index 00000000000..f463890021a --- /dev/null +++ b/spec/support/schemas/my_health/prescriptions/v1/prescription_list_filtered_with_pagination.json @@ -0,0 +1,50 @@ +{ + "$schema" : "http://json-schema.org/draft-04/schema#", + "type": "object", + "required": ["data", "meta"], + "properties": { + "data": { + "type": "array", + "minItems": 1, + "uniqueItems": true, + "items": { + "$ref": "prescription_details.json" + } + }, + "meta": { + "type": "object", + "required": ["updated_at", "failed_station_list", "sort"], + "properties": { + "updated_at": { "type": "string" }, + "failed_station_list": { "type": "string" }, + "filter": { + "type": "object" + }, + "sort": { + "type": "object" + }, + "pagination": { + "type": "object", + "required": ["current_page", "per_page", "total_pages", "total_entries"], + "properties": { + "current_page": { "type": "integer" }, + "per_page": { "type": "integer" }, + "total_pages": { "type": "integer" }, + "total_entries": { "type": "integer" } + } + } + } + }, + "links": { + "type": "object", + "required": ["self", "first", "prev", "next", "last"], + "properties": { + "self": { "type": "string" }, + "first": { "type": "string" }, + "prev": { "type": ["string", "null"] }, + "next": { "type": ["string", "null"] }, + "last": { "type": "string" } + } + } + } +} diff --git a/spec/support/vcr_cassettes/rx_client/prescriptions/gets_a_list_of_all_prescriptions_vagov.yml b/spec/support/vcr_cassettes/rx_client/prescriptions/gets_a_list_of_all_prescriptions_vagov.yml new file mode 100644 index 00000000000..1245ab2c173 --- /dev/null +++ b/spec/support/vcr_cassettes/rx_client/prescriptions/gets_a_list_of_all_prescriptions_vagov.yml @@ -0,0 +1,7543 @@ +--- +http_interactions: +- request: + method: get + uri: "/mhv-api/patient/v1/prescription/medications" + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Vets.gov Agent + Token: "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 06 Nov 2024 22:13:07 GMT + Content-Type: + - application/json + Content-Length: + - '1279015' + X-Amzn-Requestid: + - 6332ee37-0082-4744-8986-aaf8e8882da4 + X-Amzn-Remapped-Connection: + - keep-alive + X-Amz-Apigw-Id: + - A2F-BE-xvHMFmjQ= + X-Amzn-Remapped-Date: + - Wed, 06 Nov 2024 22:13:07 GMT + Strict-Transport-Security: + - max-age=16000000; includeSubDomains; preload; + body: + encoding: ASCII-8BIT + string: '{"failedStationList":"","successfulStationList":null,"lastUpdatedTime":"Wed, + 06 Nov 2024 15:46:42 EST","medicationList":{"medication":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 16 Apr 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142574,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 01 Sep 2021 00:00:00 + EDT","quantity":15,"expirationDate":"Fri, 02 Sep 2022 00:00:00 EDT","prescriptionNumber":"3636736","prescriptionName":"CITALOPRAM + HYDROBROMIDE 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142574,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00172-4741-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CITALOPRAM HYDROBROMIDE 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 01 Sep 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142576,"sig":null,"orderedDate":"Sat, + 16 Apr 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636736","prescriptionName":"CITALOPRAM + HYDROBROMIDE 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142576,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00172-4741-70","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 01 Sep 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142575,"sig":null,"orderedDate":"Tue, + 21 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636736","prescriptionName":"CITALOPRAM + HYDROBROMIDE 20MG TAB","dispensedDate":"Wed, 29 Sep 2021 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142575,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00172-4741-70","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 16 May 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142577,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 21 Sep 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 22 Sep 2022 00:00:00 EDT","prescriptionNumber":"3636747","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142577,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ADEFOVIR DIPIVOXIL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 22 Oct 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142578,"sig":"TAKE + ONE TABLET EVERY MORNING, 30 MINUTES BEFORE MEAL FOR 30 DAYS WITH FULL GLASS + OF WATER, ONLY. DON''T LIE DOWN, EAT, DRINK, OR TAKE MEDS FOR ONE-HALF (1/2) + HOUR.","orderedDate":"Tue, 21 Sep 2021 00:00:00 EDT","quantity":30,"expirationDate":"Thu, + 22 Sep 2022 00:00:00 EDT","prescriptionNumber":"3636748","prescriptionName":"ALENDRONATE + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142578,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0936-58","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 13 Oct 2022 18:56:36 EDT","refillDate":"Sun, 11 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142579,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 27 Oct 2021 00:00:00 + EDT","quantity":15,"expirationDate":"Fri, 28 Oct 2022 00:00:00 EDT","prescriptionNumber":"3636711A","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142579,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636711","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMLODIPINE BESYLATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 13 Oct 2022 18:56:36 EDT","refillDate":"Wed, 27 Oct 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21363625,"sig":null,"orderedDate":"Sun, + 11 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711A","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21363625,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF9","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21297477,"sig":null,"orderedDate":"Sun, + 21 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711A","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297477,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF8","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21169023,"sig":null,"orderedDate":"Sat, + 09 Jul 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711A","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":"Fri, 05 Aug 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21169023,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF7","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142585,"sig":null,"orderedDate":"Mon, + 06 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711A","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142585,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF6","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":6,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142584,"sig":null,"orderedDate":"Sun, + 15 May 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711A","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142584,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF5","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":7,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142583,"sig":null,"orderedDate":"Sat, + 16 Apr 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711A","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142583,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142582,"sig":null,"orderedDate":"Mon, + 07 Mar 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711A","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142582,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142581,"sig":null,"orderedDate":"Thu, + 16 Dec 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711A","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142581,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142580,"sig":null,"orderedDate":"Tue, + 16 Nov 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711A","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142580,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 04 Nov 2022 16:34:42 EDT","refillDate":"Sat, 08 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142586,"sig":"TAKE + 1 TABLET BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Sat, 07 May 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 08 May 2023 00:00:00 EDT","prescriptionNumber":"3636846","prescriptionName":"LAMIVUDINE + 150MG/ZIDOVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142586,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0595-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LAMIVUDINE 150-ZIDOVUDINE 300MG ","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 04 Nov 2022 16:34:42 EDT","refillDate":"Mon, 06 Jun 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21461607,"sig":null,"orderedDate":"Sat, + 08 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636846","prescriptionName":"LAMIVUDINE + 150MG/ZIDOVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21461607,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0595-00","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 06 Jun 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21297478,"sig":null,"orderedDate":"Sun, + 21 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636846","prescriptionName":"LAMIVUDINE + 150MG/ZIDOVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297478,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0595-00","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 06 Jun 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142587,"sig":null,"orderedDate":"Sun, + 26 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636846","prescriptionName":"LAMIVUDINE + 150MG/ZIDOVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142587,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0595-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 11 Jan 2023 14:37:35 EST","refillDate":"Tue, 10 Jan 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142588,"sig":"ONE + TABLET AT BEDTIME FOR 30 DAYS","orderedDate":"Sun, 08 May 2022 00:00:00 EDT","quantity":30,"expirationDate":"Tue, + 09 May 2023 00:00:00 EDT","prescriptionNumber":"3636847","prescriptionName":"OLANZAPINE + 10MG RAPID DISINTEGRATING TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142588,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-4454-85","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"OLANZAPINE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 11 Jan 2023 14:37:35 EST","refillDate":"Tue, 07 Jun 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679738,"sig":null,"orderedDate":"Tue, + 10 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636847","prescriptionName":"OLANZAPINE + 10MG RAPID DISINTEGRATING TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679738,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-4454-85","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 07 Jun 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21297479,"sig":null,"orderedDate":"Sun, + 21 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636847","prescriptionName":"OLANZAPINE + 10MG RAPID DISINTEGRATING TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297479,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-4454-85","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Wed, 25 Jan 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142589,"sig":"INJECT + 1ML INTRAVENOUS ONCE FOR 30 DAYS","orderedDate":"Sun, 08 May 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Tue, 09 May 2023 00:00:00 EDT","prescriptionNumber":"3636848","prescriptionName":"PAMIDRONATE + DISODIUM 3MG/ML INJ 10ML","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142589,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"55390-0129-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PAMIDRONATE DISODIUM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Tue, 07 Jun 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836701,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636848","prescriptionName":"PAMIDRONATE + DISODIUM 3MG/ML INJ 10ML","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836701,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"55390-0129-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 07 Jun 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430392,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636848","prescriptionName":"PAMIDRONATE + DISODIUM 3MG/ML INJ 10ML","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430392,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"55390-0129-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 07 Jun 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21297480,"sig":null,"orderedDate":"Sun, + 21 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636848","prescriptionName":"PAMIDRONATE + DISODIUM 3MG/ML INJ 10ML","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297480,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"55390-0129-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 04 Aug 2022 13:57:59 EDT","refillDate":"Mon, 08 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142590,"sig":"TAKE + ONE CAPSULE TWO (2) TIMES PER DAY, WITH FOOD FOR 30 DAYS","orderedDate":"Mon, + 09 May 2022 00:00:00 EDT","quantity":60,"expirationDate":"Wed, 10 May 2023 + 00:00:00 EDT","prescriptionNumber":"3636853","prescriptionName":"OLSALAZINE + NA 250MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142590,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"53014-0726-71","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"OLSALAZINE NA 250MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Wed, 25 Jan 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142591,"sig":"DEVICE(S) + MISC YEARLY FOR 365 DAYS","orderedDate":"Sat, 14 May 2022 00:00:00 EDT","quantity":1,"expirationDate":"Mon, + 15 May 2023 00:00:00 EDT","prescriptionNumber":"3636855","prescriptionName":"YANKAUER + SUCTION TIP (EA)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142591,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SUCTION TIP YANKAUER ","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Sat, 14 May 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836702,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636855","prescriptionName":"YANKAUER + SUCTION TIP (EA)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836702,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489484,"sig":null,"orderedDate":"Mon, + 14 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636855","prescriptionName":"YANKAUER + SUCTION TIP (EA)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489484,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21297481,"sig":null,"orderedDate":"Sun, + 21 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636855","prescriptionName":"YANKAUER + SUCTION TIP (EA)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297481,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 01 Nov 2022 16:51:00 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142592,"sig":"TAKE + ONE TABLET TWO (2) TIMES A DAY FOR 30 DAYS","orderedDate":"Sat, 14 May 2022 + 00:00:00 EDT","quantity":60,"expirationDate":"Mon, 15 May 2023 00:00:00 EDT","prescriptionNumber":"3636856","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142592,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-1101-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CAPECITABINE 500MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430393,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636856","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430393,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-1101-50","reason":null,"prescriptionNumberIndex":"RF5","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21363626,"sig":null,"orderedDate":"Sun, + 11 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636856","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21363626,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-1101-50","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21297482,"sig":null,"orderedDate":"Sun, + 21 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636856","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297482,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-1101-50","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21161284,"sig":null,"orderedDate":"Tue, + 05 Jul 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636856","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":"Tue, 02 Aug 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21161284,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-1101-50","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142593,"sig":null,"orderedDate":"Fri, + 03 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636856","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":"Mon, 25 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142593,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-1101-50","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 17 Mar 2023 16:46:25 EDT","refillDate":"Fri, 07 Apr 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142594,"sig":"TAKE + ONE-HALF CAPSULE EVERY EIGHT (8) HOURS FOR 30 DAYS","orderedDate":"Sat, 14 + May 2022 00:00:00 EDT","quantity":45,"expirationDate":"Mon, 15 May 2023 00:00:00 + EDT","prescriptionNumber":"3636857","prescriptionName":"ZIDOVUDINE 100MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142594,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0108-55","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZIDOVUDINE 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 17 Mar 2023 16:46:25 EDT","refillDate":"Sat, 14 May 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21995835,"sig":null,"orderedDate":"Fri, + 07 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636857","prescriptionName":"ZIDOVUDINE + 100MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21995835,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0108-55","reason":null,"prescriptionNumberIndex":"RF5","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836703,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636857","prescriptionName":"ZIDOVUDINE + 100MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836703,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0108-55","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430394,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636857","prescriptionName":"ZIDOVUDINE + 100MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430394,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0108-55","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21297483,"sig":null,"orderedDate":"Sun, + 21 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636857","prescriptionName":"ZIDOVUDINE + 100MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297483,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0108-55","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142595,"sig":null,"orderedDate":"Sun, + 26 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636857","prescriptionName":"ZIDOVUDINE + 100MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142595,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0108-55","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Sat, + 07 May 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142597,"sig":"500MG + ORAL DAILY","orderedDate":"Mon, 06 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":"Fri, + 05 Aug 2022 00:00:00 EDT","prescriptionNumber":"2","prescriptionName":null,"dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142597,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 06 Nov 2024 15:46:41 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":null,"reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Documented + by VA","orderableItem":"L-ARGININE 500MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Fri, + 08 Apr 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142598,"sig":"10MG + MOUTH DAILY","orderedDate":"Sun, 08 May 2022 00:00:00 EDT","quantity":null,"expirationDate":"Mon, + 06 Jun 2022 00:00:00 EDT","prescriptionNumber":"3","prescriptionName":null,"dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142598,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 06 Nov 2024 15:46:41 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":null,"reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Documented + by VA","orderableItem":"BACAMPICILLIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"newOrder","refillSubmitDate":null,"refillDate":null,"refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142599,"sig":"CHEW + ONE TABLET BY MOUTH FOUR (4) TIMES A DAY, BEFORE MEALS AND AT BEDTIME","orderedDate":"Fri, + 07 Aug 2020 00:00:00 EDT","quantity":60,"expirationDate":null,"prescriptionNumber":"2394318","prescriptionName":"SIMETHICONE + 80MG CHEW TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142599,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 06 Nov 2024 15:46:41 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"NewOrder","ndc":"00603-0210-21","reason":null,"prescriptionNumberIndex":"PD","prescriptionSource":"PD","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SIMETHICONE 80MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 25 Aug 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142602,"sig":"INJECT + 1MG DAILY FOR 30 DAYS","orderedDate":"Mon, 26 Jul 2021 00:00:00 EDT","quantity":4,"expirationDate":"Wed, + 27 Jul 2022 00:00:00 EDT","prescriptionNumber":"2720287","prescriptionName":"PEGFILGRASTIM + 6MG/0.6ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142602,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"55513-0190-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PEGFILGRASTIM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 26 Jul 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142603,"sig":null,"orderedDate":"Wed, + 25 Aug 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720287","prescriptionName":"PEGFILGRASTIM + 6MG/0.6ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142603,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"55513-0190-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 21 Sep 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142604,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS --AVOID GRAPEFRUIT JUICE/AVOID ANTACIDS--","orderedDate":"Mon, + 02 Aug 2021 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 03 Aug 2022 + 00:00:00 EDT","prescriptionNumber":"2720291","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142604,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ATORVASTATIN 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 02 Aug 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142606,"sig":null,"orderedDate":"Tue, + 21 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720291","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142606,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 02 Aug 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142605,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720291","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142605,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 21 Oct 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142607,"sig":"INJECT + 2MG WEEKLY FOR 30 DAYS","orderedDate":"Wed, 01 Sep 2021 00:00:00 EDT","quantity":4,"expirationDate":"Fri, + 02 Sep 2022 00:00:00 EDT","prescriptionNumber":"2720292","prescriptionName":"CIPROFLOXACIN + 400MG PREMIXED 200ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142607,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00026-8554-63","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CIPROFLOXACIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 01 Sep 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142609,"sig":null,"orderedDate":"Thu, + 21 Oct 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720292","prescriptionName":"CIPROFLOXACIN + 400MG PREMIXED 200ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142609,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00026-8554-63","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 01 Sep 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142608,"sig":null,"orderedDate":"Tue, + 21 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720292","prescriptionName":"CIPROFLOXACIN + 400MG PREMIXED 200ML","dispensedDate":"Wed, 29 Sep 2021 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142608,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00026-8554-63","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142610,"sig":"TAKE + ONE TABLET BY MOUTH DAILY","orderedDate":"Wed, 27 Oct 2021 00:00:00 EDT","quantity":10,"expirationDate":"Fri, + 28 Oct 2022 00:00:00 EDT","prescriptionNumber":"2720192A","prescriptionName":"ACETAMINOPHEN + 325MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142610,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720192","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0488-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 07 Dec 2021 00:00:00 EST","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142612,"sig":"TAKE + 0.5ML BY MOUTH AFTER DINNER FOR 5 DAYS","orderedDate":"Wed, 27 Oct 2021 00:00:00 + EDT","quantity":10,"expirationDate":"Fri, 28 Oct 2022 00:00:00 EDT","prescriptionNumber":"2720108A","prescriptionName":"BERNA + VACCINE CAP B/P","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142612,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"RENEWED + FROM RX # 2720108","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VIVOTIF(TYPHOID)","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142613,"sig":null,"orderedDate":"Tue, + 07 Dec 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720108A","prescriptionName":"BERNA + VACCINE CAP B/P","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142613,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 15 Dec 2021 00:00:00 EST","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142614,"sig":"APPLY + LIBERAL AMOUNT TO AFFECTED AREA MONDAY,TUESDAY,FRIDAY,SATURDAY AT 5 PM TESTING","orderedDate":"Wed, + 27 Oct 2021 00:00:00 EDT","quantity":10,"expirationDate":"Fri, 28 Oct 2022 + 00:00:00 EDT","prescriptionNumber":"2720068A","prescriptionName":"NIVEA SKIN + OIL (8 OZ) ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142614,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"RENEWED + FROM RX # 2720068","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"72140-0001-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NIVEA","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142615,"sig":null,"orderedDate":"Wed, + 15 Dec 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720068A","prescriptionName":"NIVEA + SKIN OIL (8 OZ) ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142615,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"72140-0001-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 16 Dec 2021 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142616,"sig":"INJECT + 1ML IV WEEKLY FOR 30 DAYS","orderedDate":"Mon, 27 Sep 2021 00:00:00 EDT","quantity":4,"expirationDate":"Wed, + 28 Sep 2022 00:00:00 EDT","prescriptionNumber":"2720295","prescriptionName":"DEXTROSE + 10% IN WATER 1000ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142616,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DEXTROSE 10% IN WATER","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 27 Sep 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142618,"sig":null,"orderedDate":"Thu, + 16 Dec 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720295","prescriptionName":"DEXTROSE + 10% IN WATER 1000ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142618,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 27 Sep 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142617,"sig":null,"orderedDate":"Sun, + 17 Oct 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720295","prescriptionName":"DEXTROSE + 10% IN WATER 1000ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142617,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 17 Oct 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142619,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Mon, 27 Sep + 2021 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 28 Sep 2022 00:00:00 + EDT","prescriptionNumber":"2720296","prescriptionName":"NORFLOXACIN 400MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142619,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0705-68","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NORFLOXACIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 27 Sep 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142620,"sig":null,"orderedDate":"Sun, + 17 Oct 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720296","prescriptionName":"NORFLOXACIN + 400MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142620,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0705-68","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 26 Apr 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142621,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 26 Apr 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, + 27 Apr 2023 00:00:00 EDT","prescriptionNumber":"2720333","prescriptionName":"LABETALOL + HCL 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142621,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"REMARKS + TESTING BY BRENDEN","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0346-43","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LABETALOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 10 Oct 2022 18:53:05 EDT","refillDate":"Sat, 16 Jul 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142623,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 26 Apr 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 27 Apr 2023 00:00:00 EDT","prescriptionNumber":"2720334","prescriptionName":"LAMIVUDINE + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142623,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LAMIVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 26 Apr 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21161287,"sig":null,"orderedDate":"Sat, + 16 Jul 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720334","prescriptionName":"LAMIVUDINE + 100MG TAB","dispensedDate":"Tue, 02 Aug 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21161287,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 26 Apr 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142624,"sig":null,"orderedDate":"Sun, + 26 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720334","prescriptionName":"LAMIVUDINE + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142624,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 16 Sep 2022 14:38:37 EDT","refillDate":"Fri, 03 Jun 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142625,"sig":"TAKE + 5ML WEEKLY FOR 30 DAYS","orderedDate":"Sat, 14 May 2022 00:00:00 EDT","quantity":3,"expirationDate":"Mon, + 15 May 2023 00:00:00 EDT","prescriptionNumber":"2720338","prescriptionName":"IODOQUINOL + 650MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142625,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00516-0093-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"IODOQUINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142626,"sig":null,"orderedDate":"Fri, + 03 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720338","prescriptionName":"IODOQUINOL + 650MG TAB","dispensedDate":"Mon, 25 Jul 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142626,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00516-0093-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 16 Sep 2022 14:38:44 EDT","refillDate":"Sat, 14 May 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142627,"sig":"TAKE + ONE CAPSULE WEEKLY FOR 30 DAYS","orderedDate":"Sat, 14 May 2022 00:00:00 EDT","quantity":5,"expirationDate":"Mon, + 15 May 2023 00:00:00 EDT","prescriptionNumber":"2720339","prescriptionName":"ZIPRASIDONE + HCL 40MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142627,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00049-3970-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZIPRASIDONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142628,"sig":"INSTILL + 1 DROP WEEKLY FOR 30 DAYS","orderedDate":"Sat, 14 May 2022 00:00:00 EDT","quantity":2,"expirationDate":"Mon, + 15 May 2023 00:00:00 EDT","prescriptionNumber":"2720340","prescriptionName":"LATANOPROST + 0.005% OPH SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142628,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LATANOPROST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Wed, + 05 Aug 2020 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142630,"sig":"5MG + MOUTH MONDAY,TUESDAY,WEDNESDAY,FRIDAY AND SATURDAY","orderedDate":"Fri, 07 + Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"1","prescriptionName":"PILOCARPINE + HCL 5MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142630,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"Vista + patch - application changes test - Non VA meds","divisionName":null,"modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":"58063-0705-10","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":"Non-VA + medication not recommended by VA provider. Non-VA medication recommended by + VA provider. Patient wants to buy from Non-VA pharmacy. Medication prescribed + by Non-VA provider. ","indicationForUse":null,"indicationForUseFlag":null,"category":"Documented + by VA","orderableItem":"PILOCARPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":null,"refillRemaining":null,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142631,"sig":"1000MG + MOUTH ","orderedDate":"Wed, 16 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2","prescriptionName":"FLUCYTOSINE + 500MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142631,"userId":16955936,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":"00004-0079-01","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Documented + by VA","orderableItem":"FLUCYTOSINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Mon, + 06 Jun 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142632,"sig":"100MG + ORAL WEEKLY","orderedDate":"Mon, 06 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3","prescriptionName":"LAMOTRIGINE + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142632,"userId":16955936,"providerFirstName":"MOHAMMED","providerLastName":"ISLAM","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":"00173-0642-55","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Documented + by VA","orderableItem":"LAMOTRIGINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"newOrder","refillSubmitDate":null,"refillDate":null,"refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142634,"sig":"TAKE + TWO TABLETS BY NASOGASTRIC TUBE MONDAY,TUESDAY,THURSDAY,FRIDAY AND SATURDAY","orderedDate":"Fri, + 07 Aug 2020 00:00:00 EDT","quantity":10,"expirationDate":null,"prescriptionNumber":"2068187","prescriptionName":"RESERPINE + 0.1MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142634,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"NewOrder","ndc":"0083-0035-40","reason":null,"prescriptionNumberIndex":"PD","prescriptionSource":"PD","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RESERPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"newOrder","refillSubmitDate":null,"refillDate":null,"refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142635,"sig":"TAKE + ONE TABLET BY MOUTH MONDAY,TUESDAY,FRIDAY,SATURDAY AT 5 PM","orderedDate":"Tue, + 24 Nov 2020 00:00:00 EST","quantity":10,"expirationDate":null,"prescriptionNumber":"2068213","prescriptionName":"KETOROLAC + TROMETHAMINE 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142635,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"NewOrder","ndc":"0033-2435-42","reason":null,"prescriptionNumberIndex":"PD","prescriptionSource":"PD","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"KETOROLAC","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 15 Sep 2022 18:54:33 EDT","refillDate":"Tue, 20 Sep 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21168916,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Mon, 08 Aug 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Wed, 09 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636747A","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21168916,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636747","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ADEFOVIR DIPIVOXIL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 15 Sep 2022 18:57:02 EDT","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21168917,"sig":"TAKE + ONE TABLET EVERY MORNING, 30 MINUTES BEFORE MEAL FOR 30 DAYS WITH FULL GLASS + OF WATER, ONLY. DON''T LIE DOWN, EAT, DRINK, OR TAKE MEDS FOR ONE-HALF (1/2) + HOUR.","orderedDate":"Mon, 08 Aug 2022 00:00:00 EDT","quantity":30,"expirationDate":"Wed, + 09 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636748A","prescriptionName":"ALENDRONATE + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21168917,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636748","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0936-58","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 08 Aug 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21275643,"sig":null,"orderedDate":"Sun, + 28 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636748A","prescriptionName":"ALENDRONATE + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21275643,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0936-58","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 08 Aug 2022 10:49:43 EDT","refillDate":"Mon, 08 Aug 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21168918,"sig":"TAKE + 1/2 TEASPOONFUL (80 MGS/2.5 MLS) EVERY SIX (6) HOURS FOR 30 DAYS NOT MORE + THAN FOUR (4) GRAMS OF ACETAMINOPHEN PER DAY","orderedDate":"Mon, 08 Aug 2022 + 00:00:00 EDT","quantity":4,"expirationDate":"Wed, 09 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636713A","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21168918,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636713","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 160MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 08 Aug 2022 10:49:43 EDT","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21168919,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS TAKE WITH FOOD","orderedDate":"Mon, 08 Aug + 2022 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 09 Aug 2023 00:00:00 + EDT","prescriptionNumber":"3636691A","prescriptionName":"ALLOPURINOL 100MG + TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21168919,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636691","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 08 Aug 2022 10:49:43 EDT","refillDate":"Mon, 08 Aug 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21169342,"sig":null,"orderedDate":"Sun, + 28 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636691A","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":"Fri, 05 Aug 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21169342,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 11 Aug 2022 12:44:12 EDT","refillDate":"Thu, 11 Aug 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21168920,"sig":"TAKE + ONE TABLET AT BEDTIME FOR 30 DAYS","orderedDate":"Mon, 08 Aug 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Wed, 09 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636710A","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21168920,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636710","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMITRIPTYLINE HCL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 16 Sep 2022 14:38:32 EDT","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21168921,"sig":"TAKE + 2G EVERY EIGHT (8) HOURS FOR 30 DAYS , AND FINISH ALL MEDICATION.","orderedDate":"Mon, + 08 Aug 2022 00:00:00 EDT","quantity":4,"expirationDate":"Wed, 09 Aug 2023 + 00:00:00 EDT","prescriptionNumber":"3636712A","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(217)636-6712","cmopNdcNumber":null,"id":21168921,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636712","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"2176366712","dispStatus":"Discontinued","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN 250MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 08 Aug 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21254389,"sig":null,"orderedDate":"Sun, + 28 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636712A","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":"Sun, 04 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(217)636-6712","cmopNdcNumber":null,"id":21254389,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"2176366712","dispStatus":"Discontinued","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 22 Aug 2022 10:17:22 EDT","refillDate":"Mon, 22 Aug 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21168922,"sig":"TAKE + ONE TABLET EVERY EVENING FOR 30 DAYS","orderedDate":"Mon, 08 Aug 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Wed, 09 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636714A","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(417)363-6714","cmopNdcNumber":"00013264681","id":21168922,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636714","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"4173636714","dispStatus":"Discontinued","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ATORVASTATIN CALCIUM 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 25 Aug 2022 13:16:13 EDT","refillDate":"Mon, 08 Aug 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21168925,"sig":"TAKE + ONE TABLET BY MOUTH DAILY TEST TEST INDICATION TEST","orderedDate":"Mon, 08 + Aug 2022 00:00:00 EDT","quantity":10,"expirationDate":"Wed, 09 Aug 2023 00:00:00 + EDT","prescriptionNumber":"2720192B","prescriptionName":"ACETAMINOPHEN 325MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21168925,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720192A","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0488-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 08 Aug 2022 10:49:43 EDT","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21168926,"sig":"TAKE + 25 BY MOUTH 1XD FOR 60 DAYS","orderedDate":"Mon, 08 Aug 2022 00:00:00 EDT","quantity":30,"expirationDate":"Wed, + 09 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720187A","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21168926,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720187","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 08 Aug 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21169345,"sig":null,"orderedDate":"Sun, + 28 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720187A","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":"Sat, 06 Aug 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21169345,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 24 Aug 2022 11:26:28 EDT","refillDate":"Mon, 08 Aug 2022 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21168927,"sig":"APPLY + SMALL AMOUNT WEEKLY FOR 60 DAYS","orderedDate":"Mon, 08 Aug 2022 00:00:00 + EDT","quantity":6,"expirationDate":"Wed, 09 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720218A","prescriptionName":"ACYCLOVIR + 5% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21168927,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720218","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"64455-0993-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 22 Aug 2022 10:17:21 EDT","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21168928,"sig":"TAKE + TWO TABLETS BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Mon, 08 Aug 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Wed, 09 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720221A","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(122)272-2022","cmopNdcNumber":null,"id":21168928,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720221","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"1222722022","dispStatus":"Discontinued","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 08 Aug 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21215593,"sig":null,"orderedDate":"Sun, + 28 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720221A","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":"Fri, 19 Aug 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(122)272-2022","cmopNdcNumber":"00013264681","id":21215593,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1222722022","dispStatus":"Discontinued","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 15 Sep 2022 19:09:01 EDT","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21168929,"sig":"TAKE + 30 TABLETS BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Mon, + 08 Aug 2022 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 09 Aug 2023 + 00:00:00 EDT","prescriptionNumber":"2720194A","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(491)272-0194","cmopNdcNumber":null,"id":21168929,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720194","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"4912720194","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 08 Aug 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21254392,"sig":null,"orderedDate":"Sun, + 28 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720194A","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":"Sun, 04 Sep 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(491)272-0194","cmopNdcNumber":null,"id":21254392,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4912720194","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 07 Sep 2022 17:15:21 EDT","refillDate":"Mon, 08 Aug 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21168930,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 90 DAYS --TAKE WITH FOOD TO DECREASE GI IRRITATION/AVOID + ANTACIDS--","orderedDate":"Mon, 08 Aug 2022 00:00:00 EDT","quantity":30,"expirationDate":"Wed, + 09 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720200A","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21168930,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720200","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 16 Sep 2022 14:38:34 EDT","refillDate":"Mon, 08 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21168931,"sig":"TAKE + 1 TEASPOONFUL MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD--","orderedDate":"Mon, + 08 Aug 2022 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 09 Aug 2023 + 00:00:00 EDT","prescriptionNumber":"2720270A","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21168931,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720270","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 + 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 16 Sep 2022 14:38:39 EDT","refillDate":"Fri, 16 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21265321,"sig":"TAKE + ONE TABLET BY MOUTH 1 X DAILY FOR 30 DAYS --TAKE WITH FOOD TO INCREASE ABSORPTION--","orderedDate":"Wed, + 10 Aug 2022 00:00:00 EDT","quantity":30,"expirationDate":"Fri, 11 Aug 2023 + 00:00:00 EDT","prescriptionNumber":"2720370","prescriptionName":"NABUMETONE + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21265321,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00172-4098-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NABUMETONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 06 Oct 2022 11:21:16 EDT","refillDate":"Thu, 06 Oct 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21297488,"sig":"TAKE + 25 BY MOUTH 1XD FOR 60 DAYS","orderedDate":"Tue, 20 Sep 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, + 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720187B","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297488,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720187A","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 15:45:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 06 Oct 2022 11:28:09 EDT","refillDate":"Thu, 06 Oct 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21297489,"sig":"TAKE + TWO TABLETS BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 20 Sep 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720221B","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297489,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720221A","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 15:45:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 06 Oct 2022 11:56:52 EDT","refillDate":"Thu, 06 Oct 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21297490,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 20 Sep 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720257A","prescriptionName":"BENZONATATE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297490,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720257","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 15:45:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"50111-0851-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BENZONATATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 06 Oct 2022 20:30:31 EDT","refillDate":"Thu, 06 Oct 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21297491,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY 6 HOURS FOR 30 DAYS --TAKE WITH FOOD TO DECREASE + GI DISCOMFORT--","orderedDate":"Tue, 20 Sep 2022 00:00:00 EDT","quantity":120,"expirationDate":"Thu, + 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720258A","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297491,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720258","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 15:45:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CEPHALEXIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 06 Oct 2022 20:25:53 EDT","refillDate":"Thu, 06 Oct 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21297492,"sig":"INJECT + 1G WEEKLY FOR 30 DAYS","orderedDate":"Tue, 20 Sep 2022 00:00:00 EDT","quantity":4,"expirationDate":"Thu, + 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720259A","prescriptionName":"CIPROFLOXACIN + 200MG/20ML VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297492,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720259","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 15:45:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00026-8562-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CIPROFLOXACIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 04 Nov 2022 17:09:44 EDT","refillDate":"Fri, 04 Nov 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21297494,"sig":"INSTILL + 1 DROP WEEKLY FOR 30 DAYS","orderedDate":"Tue, 20 Sep 2022 00:00:00 EDT","quantity":2,"expirationDate":"Thu, + 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720340A","prescriptionName":"LATANOPROST + 0.005% OPH SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297494,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720340","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 15:45:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LATANOPROST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 27 Sep 2022 11:28:00 EDT","refillDate":"Sat, 17 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313781,"sig":"TAKE + 10MG BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Sun, 28 + Aug 2022 00:00:00 EDT","quantity":30,"expirationDate":"Tue, 29 Aug 2023 00:00:00 + EDT","prescriptionNumber":"2720378","prescriptionName":"ZALCITABINE 0.375MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(873)272-0378","cmopNdcNumber":null,"id":21313781,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"8732720378","dispStatus":"Discontinued","ndc":"00004-0220-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZALCITABINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313943,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720378","prescriptionName":"ZALCITABINE + 0.375MG TAB","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(873)272-0378","cmopNdcNumber":null,"id":21313943,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"8732720378","dispStatus":"Discontinued","ndc":"00004-0220-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 27 Sep 2022 11:28:00 EDT","refillDate":"Tue, 27 Sep 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313782,"sig":"USE + 1 PUFF WEEKLY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 EDT","quantity":4,"expirationDate":"Tue, + 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720379","prescriptionName":"ZANAMIVIR + 5MG DISHALER","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(973)272-0379","cmopNdcNumber":"00013264681","id":21313782,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"9732720379","dispStatus":"Discontinued","ndc":"00073-0681-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZANAMIVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313783,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Tue, 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720380","prescriptionName":"ZIDOVUDINE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21313783,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00081-0108-55","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZIDOVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + is in a Non-Renewable Status.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 27 Sep 2022 11:28:00 EDT","refillDate":"Sat, 17 Sep 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313784,"sig":"APPLY + MODERATE AMOUNT TO AFFECTED AREA WEEKLY FOR 30 DAYS TEST INDICATION","orderedDate":"Sun, + 28 Aug 2022 00:00:00 EDT","quantity":5,"expirationDate":"Tue, 29 Aug 2023 + 00:00:00 EDT","prescriptionNumber":"2720381","prescriptionName":"ZINC OXIDE + OINTMENT (oz)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(183)272-0381","cmopNdcNumber":null,"id":21313784,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Tue, 05 Sep 2023 10:55:16 + EDT","institutionId":null,"dialCmopDivisionPhone":"1832720381","dispStatus":"Expired","ndc":"00168-0062-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ZINC + OXIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313944,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720381","prescriptionName":"ZINC + OXIDE OINTMENT (oz)","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(183)272-0381","cmopNdcNumber":"00013264681","id":21313944,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1832720381","dispStatus":"Expired","ndc":"00168-0062-31","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 27 Sep 2022 11:28:00 EDT","refillDate":"Tue, 27 Sep 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313785,"sig":"USE + 1 ON AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Tue, 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720382","prescriptionName":"ZINC + GELATIN BANDAGE 3 INCH (EA)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(283)272-0382","cmopNdcNumber":"00013264681","id":21313785,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"2832720382","dispStatus":"Discontinued","ndc":"00003-6509-40","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZINC GELATIN BANDAGE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 27 Sep 2022 11:28:00 EDT","refillDate":"Sat, 17 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313786,"sig":"TAKE + ONE CAPSULE DAILY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 EDT","quantity":30,"expirationDate":"Tue, + 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720383","prescriptionName":"ZINC + SULFATE 220MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(383)272-0383","cmopNdcNumber":null,"id":21313786,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"3832720383","dispStatus":"Discontinued","ndc":"00677-0622-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZINC SULFATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313945,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720383","prescriptionName":"ZINC + SULFATE 220MG CAP","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(383)272-0383","cmopNdcNumber":null,"id":21313945,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"3832720383","dispStatus":"Discontinued","ndc":"00677-0622-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 27 Sep 2022 11:28:00 EDT","refillDate":"Sat, 17 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313808,"sig":"INSTILL + 100ML WEEKLY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 EDT","quantity":1,"expirationDate":"Tue, + 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720385","prescriptionName":"ZINCFRIN + OPHTH SOLN 15ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(583)272-0385","cmopNdcNumber":null,"id":21313808,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"5832720385","dispStatus":"Discontinued","ndc":"00065-0512-15","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PHENYLEPHRINE/ZINC SULFATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313946,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720385","prescriptionName":"ZINCFRIN + OPHTH SOLN 15ML","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(583)272-0385","cmopNdcNumber":null,"id":21313946,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"5832720385","dispStatus":"Discontinued","ndc":"00065-0512-15","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 05 Oct 2023 18:40:41 EDT","refillDate":"Tue, 03 Oct 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21360492,"sig":"TAKE + 1MG 30 MINUTES BEFORE MEALS AND AT BEDTIME FOR 30 DAYS","orderedDate":"Tue, + 11 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 12 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"3636874","prescriptionName":"TACRINE HCL + 10MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21360492,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0096-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"TACRINE HCL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 05 Oct 2023 18:40:41 EDT","refillDate":"Tue, 11 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559683,"sig":null,"orderedDate":"Tue, + 03 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636874","prescriptionName":"TACRINE + HCL 10MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559683,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0096-25","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Tue, 11 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836705,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636874","prescriptionName":"TACRINE + HCL 10MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836705,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0096-25","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 11 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430400,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636874","prescriptionName":"TACRINE + HCL 10MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430400,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0096-25","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 04 Nov 2022 15:26:49 EDT","refillDate":"Sun, 20 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21363628,"sig":"TAKE + TWO TABLETS EVERY DAY FOR 60 DAYS TEST INDICATION FOR MOBILE TESTING TEST + PATIENT INSTRUCTIONS FOR MOBILE TESTING","orderedDate":"Sun, 11 Sep 2022 00:00:00 + EDT","quantity":60,"expirationDate":"Tue, 12 Sep 2023 00:00:00 EDT","prescriptionNumber":"3636875","prescriptionName":"HYDROXYCHLOROQUINE + SULFATE 200MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21363628,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS FOR MOBILE TESTING","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00955-0790-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION FOR MOBILE TESTING","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"HYDROXYCHLOROQUINE + SULFATE 200MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 04 Nov 2022 15:26:49 EDT","refillDate":"Sun, 11 Sep 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21461610,"sig":null,"orderedDate":"Sun, + 20 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636875","prescriptionName":"HYDROXYCHLOROQUINE + SULFATE 200MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21461610,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00955-0790-05","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 11 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430401,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636875","prescriptionName":"HYDROXYCHLOROQUINE + SULFATE 200MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430401,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00955-0790-05","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 17 Oct 2022 13:32:20 EDT","refillDate":"Sun, 06 Nov 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21378245,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 60 DAYS","orderedDate":"Sat, 17 Sep 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 18 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720397","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(793)272-0397","cmopNdcNumber":null,"id":21378245,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 19 Sep 2023 10:16:29 EDT","institutionId":null,"dialCmopDivisionPhone":"7932720397","dispStatus":"Discontinued","ndc":"00054-4346-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HALOPERIDOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 17 Sep 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21378414,"sig":null,"orderedDate":"Sun, + 06 Nov 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720397","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(793)272-0397","cmopNdcNumber":"00013264681","id":21378414,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"7932720397","dispStatus":"Discontinued","ndc":"00054-4346-31","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 17 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21331562,"sig":"INSTILL + 100ML WEEKLY FOR 30 DAYS","orderedDate":"Mon, 03 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Wed, + 04 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720385A","prescriptionName":"ZINCFRIN + OPHTH SOLN 15ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21331562,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720385","divisionName":"DAYTON","modifiedDate":"Thu, 05 Oct 2023 + 11:34:22 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00065-0512-15","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PHENYLEPHRINE/ZINC SULFATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 10 Oct 2022 12:24:26 EDT","refillDate":"Fri, 23 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21331563,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Sat, 03 Sep 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 04 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720388","prescriptionName":"ZONISAMIDE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(883)272-0388","cmopNdcNumber":null,"id":21331563,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"8832720388","dispStatus":"Discontinued","ndc":"59075-0680-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZONISAMIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 03 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21331686,"sig":null,"orderedDate":"Fri, + 23 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720388","prescriptionName":"ZONISAMIDE + 100MG CAP","dispensedDate":"Sat, 01 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(883)272-0388","cmopNdcNumber":null,"id":21331686,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"8832720388","dispStatus":"Discontinued","ndc":"59075-0680-10","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 14 Oct 2022 16:26:04 EDT","refillDate":"Fri, 23 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21331564,"sig":"USE + 1MG INTRAVENEOUS USE WEEKLY FOR 30 DAYS","orderedDate":"Sat, 03 Sep 2022 00:00:00 + EDT","quantity":2,"expirationDate":"Mon, 04 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720389","prescriptionName":"ZOSYN + 2.25GM (ADD-A-VIAL) in NS 50ml","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21331564,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZOSYN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 03 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21331687,"sig":null,"orderedDate":"Fri, + 23 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720389","prescriptionName":"ZOSYN + 2.25GM (ADD-A-VIAL) in NS 50ml","dispensedDate":"Sat, 01 Oct 2022 00:00:00 + EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21331687,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 21 Oct 2022 15:19:46 EDT","refillDate":"Fri, 23 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21331565,"sig":"ONE + MOUTH DAILY FOR 30 DAYS","orderedDate":"Sat, 03 Sep 2022 00:00:00 EDT","quantity":30,"expirationDate":"Mon, + 04 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720390","prescriptionName":"ZYPREXA + ZYDIS 15MG","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21331565,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Discontinued","ndc":"00002-4455-85","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZYPREXA 15MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 03 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21331688,"sig":null,"orderedDate":"Fri, + 23 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720390","prescriptionName":"ZYPREXA + ZYDIS 15MG","dispensedDate":"Sat, 01 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21331688,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Discontinued","ndc":"00002-4455-85","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 17 Oct 2022 13:32:20 EDT","refillDate":"Sun, 06 Nov 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21378447,"sig":"APPLY + LIBERAL AMOUNT TO AFFECTED AREA WEEKLY FOR 60 DAYS","orderedDate":"Sat, 17 + Sep 2022 00:00:00 EDT","quantity":1,"expirationDate":"Mon, 18 Sep 2023 00:00:00 + EDT","prescriptionNumber":"2720398","prescriptionName":"HALCINONIDE 0.1% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(893)272-0398","cmopNdcNumber":null,"id":21378447,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 19 Sep 2023 10:16:29 EDT","institutionId":null,"dialCmopDivisionPhone":"8932720398","dispStatus":"Discontinued","ndc":"00003-0248-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HALCINONIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 17 Sep 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21381228,"sig":null,"orderedDate":"Sun, + 06 Nov 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720398","prescriptionName":"HALCINONIDE + 0.1% OINT","dispensedDate":"Sat, 15 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21381228,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00003-0248-20","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 17 Sep 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21378486,"sig":null,"orderedDate":"Fri, + 07 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720398","prescriptionName":"HALCINONIDE + 0.1% OINT","dispensedDate":"Fri, 07 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(893)272-0398","cmopNdcNumber":null,"id":21378486,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"8932720398","dispStatus":"Discontinued","ndc":"00003-0248-20","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 31 Oct 2022 13:58:52 EDT","refillDate":"Thu, 20 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21395466,"sig":"TAKE + ONE TABLET BY MOUTH 1X DAILY FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 + 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720400","prescriptionName":"AMOXAPINE + 150MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21395466,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 20 Oct 2023 10:58:00 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXAPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 01 Nov 2022 17:08:33 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21432443,"sig":"TAKE + 30 TABLETS BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 01 Nov 2023 + 00:00:00 EDT","prescriptionNumber":"2720194B","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432443,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720194A","divisionName":"DAYTON","modifiedDate":"Thu, 02 Nov 2023 + 12:11:26 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 01 Nov 2022 16:19:15 EDT","refillDate":"Tue, 01 Nov 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21432444,"sig":"TAKE + 1 TABLET BY MOUTH WEEKLY FOR 30 DAYS","orderedDate":"Sat, 01 Oct 2022 00:00:00 + EDT","quantity":4,"expirationDate":"Mon, 02 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720402","prescriptionName":"MAALOX + NO. 2 TAB ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432444,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 03 Oct 2023 10:11:48 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MAALOX N0.2","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 01 Nov 2022 16:19:15 EDT","refillDate":"Sat, 01 Oct 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21440888,"sig":null,"orderedDate":"Tue, + 01 Nov 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720402","prescriptionName":"MAALOX + NO. 2 TAB ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21440888,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 07 Nov 2022 12:27:50 EST","refillDate":"Fri, 25 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21432445,"sig":"APPLY + SMALL AMOUNT DAILY FOR 30 DAYS","orderedDate":"Thu, 06 Oct 2022 00:00:00 EDT","quantity":3,"expirationDate":"Sat, + 07 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720403","prescriptionName":"MAFENIDE + CREAM (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432445,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 09 Oct 2023 11:20:10 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MAFENIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 07 Nov 2022 12:27:50 EST","refillDate":"Thu, 06 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21461615,"sig":null,"orderedDate":"Fri, + 25 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720403","prescriptionName":"MAFENIDE + CREAM (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21461615,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21456249,"sig":null,"orderedDate":"Wed, + 26 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720403","prescriptionName":"MAFENIDE + CREAM (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21456249,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 31 Oct 2022 10:58:50 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430344,"sig":"TAKE + 1MG EVERY DAY FOR 30 DAYS","orderedDate":"Sat, 01 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Mon, + 02 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636876","prescriptionName":"PANCREASE + MT 16 EC CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430344,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00045-0343-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PANCREASE MT 16","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 17 Jul 2023 10:01:41 EDT","refillDate":"Tue, 18 Jul 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21432399,"sig":"INJECT + 1MG INTRAVENOUS OR INTRAMUSCULAR WEEKLY FOR 30 DAYS","orderedDate":"Sat, 01 + Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Mon, 02 Oct 2023 00:00:00 + EDT","prescriptionNumber":"3636879","prescriptionName":"WATER/BENZYL ALCOHOL + 0.9% INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432399,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00409-3977-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"WATER-BENZYL ALCOHOL 0.9% 30ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 17 Jul 2023 10:01:41 EDT","refillDate":"Sat, 01 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217203,"sig":null,"orderedDate":"Tue, + 18 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636879","prescriptionName":"WATER/BENZYL + ALCOHOL 0.9% INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217203,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00409-3977-03","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 01 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836706,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636879","prescriptionName":"WATER/BENZYL + ALCOHOL 0.9% INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836706,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00409-3977-03","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 28 Apr 2023 21:38:28 EDT","refillDate":"Sat, 10 Jun 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21432400,"sig":"APPLY + 10ML TO THE AFFECTED AREA WEEKLY FOR 30 DAYS TEST INDICATION","orderedDate":"Sat, + 01 Oct 2022 00:00:00 EDT","quantity":10,"expirationDate":"Mon, 02 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"3636880","prescriptionName":"UREA 10% + CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432400,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 + 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00064-2110-16","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"UREA + 10%","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 28 Apr 2023 21:38:28 EDT","refillDate":"Sat, 01 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217204,"sig":null,"orderedDate":"Sat, + 10 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636880","prescriptionName":"UREA + 10% CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217204,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00064-2110-16","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 01 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22085325,"sig":null,"orderedDate":"Tue, + 02 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636880","prescriptionName":"UREA + 10% CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22085325,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00064-2110-16","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 01 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836707,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636880","prescriptionName":"UREA + 10% CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836707,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00064-2110-16","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 01 Oct 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489485,"sig":null,"orderedDate":"Mon, + 14 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636880","prescriptionName":"UREA + 10% CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489485,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00064-2110-16","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 14 Feb 2023 13:37:20 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21432401,"sig":"TAKE + ONE TABLET BY MOUTH EVERY SIX (6) HOURS FOR 30 DAYS","orderedDate":"Sat, 01 + Oct 2022 00:00:00 EDT","quantity":120,"expirationDate":"Mon, 02 Oct 2023 00:00:00 + EDT","prescriptionNumber":"3636881","prescriptionName":"TRAMADOL HCL 50MG + TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432401,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 + 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"57664-0377-18","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"TRAMADOL HCL 50MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Provider + must have a valid DEA# or VA# for this Rx","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 14 Feb 2023 13:37:20 EST","refillDate":"Tue, 14 Feb 2023 00:00:00 EST","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21810062,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636881","prescriptionName":"TRAMADOL + HCL 50MG TAB","dispensedDate":"Sun, 12 Feb 2023 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6881","cmopNdcNumber":"00113002239","id":21810062,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366881","dispStatus":"Expired","ndc":"57664-0377-18","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"OVAL","color":"WHITE","frontImprint":"L022","backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Provider + must have a valid DEA# or VA# for this Rx","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 16 Nov 2022 13:07:04 EST","refillDate":"Sun, 04 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21432402,"sig":"INJECT + 0.5 GRAMS IV PIGGYBACK EVERY FOUR (4) HOURS FOR 30 DAYS","orderedDate":"Sat, + 01 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Mon, 02 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"3636882","prescriptionName":"NAFCILLIN + NA 1GM/VI INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432402,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00781-3124-95","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NAFCILLIN NA 1GM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 16 Nov 2022 13:07:04 EST","refillDate":"Sat, 01 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489734,"sig":null,"orderedDate":"Sun, + 04 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636882","prescriptionName":"NAFCILLIN + NA 1GM/VI INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489734,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00781-3124-95","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 01 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489486,"sig":null,"orderedDate":"Mon, + 14 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636882","prescriptionName":"NAFCILLIN + NA 1GM/VI INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489486,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00781-3124-95","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 16 Nov 2022 11:10:14 EST","refillDate":"Fri, 25 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21432403,"sig":"TAKE + ONE TABLET BY MOUTH AT BEDTIME FOR 60 DAYS","orderedDate":"Thu, 06 Oct 2022 + 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 07 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636883","prescriptionName":"IMIPRAMINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432403,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0054-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"IMIPRAMINE HCL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 16 Nov 2022 11:10:14 EST","refillDate":"Thu, 06 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489487,"sig":null,"orderedDate":"Fri, + 25 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636883","prescriptionName":"IMIPRAMINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489487,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0054-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21461611,"sig":null,"orderedDate":"Wed, + 26 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636883","prescriptionName":"IMIPRAMINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21461611,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0054-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 19 Jul 2023 18:37:13 EDT","refillDate":"Wed, 19 Jul 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21432404,"sig":"TAKE + ONE CAPSULE TWO (2) TIMES PER DAY, WITH FOOD FOR 30 DAYS","orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":60,"expirationDate":"Wed, 01 Nov 2023 + 00:00:00 EDT","prescriptionNumber":"3636853A","prescriptionName":"OLSALAZINE + NA 250MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432404,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636853","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53014-0726-71","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"OLSALAZINE NA 250MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 19 Jul 2023 18:37:13 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22331994,"sig":null,"orderedDate":"Wed, + 19 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636853A","prescriptionName":"OLSALAZINE + NA 250MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22331994,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53014-0726-71","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 31 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836708,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636853A","prescriptionName":"OLSALAZINE + NA 250MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836708,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53014-0726-71","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 31 Oct 2022 18:20:24 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21432405,"sig":"TAKE + 1/2 TEASPOONFUL (80 MGS/2.5 MLS) EVERY SIX (6) HOURS FOR 30 DAYS NOT MORE + THAN FOUR (4) GRAMS OF ACETAMINOPHEN PER DAY","orderedDate":"Mon, 31 Oct 2022 + 00:00:00 EDT","quantity":4,"expirationDate":"Wed, 01 Nov 2023 00:00:00 EDT","prescriptionNumber":"3636713B","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432405,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636713A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 160MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 04 Nov 2022 15:26:47 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21432406,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Mon, 31 Oct 2022 00:00:00 + EDT","quantity":15,"expirationDate":"Wed, 01 Nov 2023 00:00:00 EDT","prescriptionNumber":"3636736A","prescriptionName":"CITALOPRAM + HYDROBROMIDE 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432406,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636736","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00172-4741-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CITALOPRAM HYDROBROMIDE 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 14 Oct 2022 16:25:37 EDT","refillDate":"Sat, 17 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21314024,"sig":"TAKE + TWO CAPSULES DAILY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 EDT","quantity":30,"expirationDate":"Tue, + 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720386","prescriptionName":"ZIPRASIDONE + HCL 60MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(683)272-0386","cmopNdcNumber":null,"id":21314024,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"6832720386","dispStatus":"Discontinued","ndc":"00049-3980-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZIPRASIDONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21314098,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720386","prescriptionName":"ZIPRASIDONE + HCL 60MG CAP","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(683)272-0386","cmopNdcNumber":null,"id":21314098,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"6832720386","dispStatus":"Discontinued","ndc":"00049-3980-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 14 Oct 2022 16:25:51 EDT","refillDate":"Sat, 17 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21314025,"sig":"INJECT + 1ML INTRAVENEOUS USE WEEKLY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 + EDT","quantity":4,"expirationDate":"Tue, 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"2720387","prescriptionName":"ZOLEDRONIC + ACID 4MG VI","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(783)272-0387","cmopNdcNumber":null,"id":21314025,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"7832720387","dispStatus":"Discontinued","ndc":"00078-0350-84","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZOLEDRONIC","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21314099,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720387","prescriptionName":"ZOLEDRONIC + ACID 4MG VI","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(783)272-0387","cmopNdcNumber":null,"id":21314099,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"7832720387","dispStatus":"Discontinued","ndc":"00078-0350-84","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 07 Nov 2022 13:25:15 EST","refillDate":"Mon, 07 Nov 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21432446,"sig":"TAKE + 1 BOTTLE BY MOUTH WEEKLY FOR 30 DAYS TEST INDICATION TEST","orderedDate":"Sat, + 01 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Mon, 02 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"2720404","prescriptionName":"MAGNESIUM + CITRATE LIQUID","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432446,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Tue, 03 Oct 2023 10:11:48 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00869-2615-08","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"MAGNESIUM + CITRATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 07 Nov 2022 13:25:15 EST","refillDate":"Sat, 01 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21461616,"sig":null,"orderedDate":"Mon, + 07 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720404","prescriptionName":"MAGNESIUM + CITRATE LIQUID","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21461616,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00869-2615-08","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 06 Oct 2022 20:57:21 EDT","refillDate":"Thu, 06 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21345162,"sig":"TAKE + ONE TABLET BY MOUTH DAILY --TAKE WITH FOOD IF GI UPSET OCCURS--","orderedDate":"Tue, + 06 Sep 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 07 Sep 2023 + 00:00:00 EDT","prescriptionNumber":"2720394","prescriptionName":"NAPROXEN + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21345162,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 08 Sep 2023 09:16:36 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00781-1165-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NAPROXEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 06 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21347113,"sig":null,"orderedDate":"Thu, + 06 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720394","prescriptionName":"NAPROXEN + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21347113,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00781-1165-10","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 07 Nov 2022 13:26:02 EST","refillDate":"Mon, 07 Nov 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21432447,"sig":"TAKE + 1 TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Sat, 01 Oct 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 02 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720405","prescriptionName":"MAGNESIUM + COMPLEX 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432447,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 03 Oct 2023 10:11:48 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"16563-0017-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MAGNESIUM COMPLEX","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 07 Nov 2022 13:26:02 EST","refillDate":"Sat, 01 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21461617,"sig":null,"orderedDate":"Mon, + 07 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720405","prescriptionName":"MAGNESIUM + COMPLEX 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21461617,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"16563-0017-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 09 Nov 2022 15:05:37 EST","refillDate":"Wed, 09 Nov 2022 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21432448,"sig":"TAKE + 1 TEASPOONFUL BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Sat, 01 Oct 2022 + 00:00:00 EDT","quantity":4,"expirationDate":"Mon, 02 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720406","prescriptionName":"MAGNESIUM + HYDROXIDE 390MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21432448,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 03 Oct 2023 10:11:48 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00182-6084-40","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MILK OF MAGNESIA","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 09 Nov 2022 15:05:37 EST","refillDate":"Sat, 01 Oct 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21469306,"sig":null,"orderedDate":"Wed, + 09 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720406","prescriptionName":"MAGNESIUM + HYDROXIDE 390MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21469306,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00182-6084-40","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 04 Nov 2022 17:09:46 EDT","refillDate":"Sun, 20 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314357,"sig":"PLACE + 3 DROPS INTO EYE WEEKLY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Tue, 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636866","prescriptionName":"LATANOPROST + 0.005% OPH SOLN","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(668)636-6866","cmopNdcNumber":null,"id":21314357,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"6686366866","dispStatus":"Expired","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LATANOPROST 0.005% 2.5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 04 Nov 2022 17:09:46 EDT","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21461608,"sig":null,"orderedDate":"Sun, + 20 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636866","prescriptionName":"LATANOPROST + 0.005% OPH SOLN","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21461608,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430395,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636866","prescriptionName":"LATANOPROST + 0.005% OPH SOLN","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430395,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314685,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636866","prescriptionName":"LATANOPROST + 0.005% OPH SOLN","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(668)636-6866","cmopNdcNumber":null,"id":21314685,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"6686366866","dispStatus":"Expired","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 10 Oct 2022 12:20:24 EDT","refillDate":"Sat, 17 Sep 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314358,"sig":"APPLY + THIN LAYER TO AFFECTED AREA TO THE AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Sun, + 28 Aug 2022 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 29 Aug 2023 + 00:00:00 EDT","prescriptionNumber":"3636867","prescriptionName":"CASTOR OIL/PERUVIAN + BALSAM/TRYPSIN OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(768)636-6867","cmopNdcNumber":null,"id":21314358,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"7686366867","dispStatus":"Discontinued","ndc":"00064-3900-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CASTOR OIL/PERUVIAN BALSAM/TRYPSIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314686,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636867","prescriptionName":"CASTOR + OIL/PERUVIAN BALSAM/TRYPSIN OINT","dispensedDate":"Sun, 25 Sep 2022 00:00:00 + EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(768)636-6867","cmopNdcNumber":null,"id":21314686,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"7686366867","dispStatus":"Discontinued","ndc":"00064-3900-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 18 Oct 2022 11:52:35 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314360,"sig":"INJECT + 150ML UNDER THE SKIN WEEKLY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 + EDT","quantity":4,"expirationDate":"Tue, 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636869","prescriptionName":"OMALIZUMAB + 150MG/VIL INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(968)636-6869","cmopNdcNumber":null,"id":21314360,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"9686366869","dispStatus":"Expired","ndc":"50242-0040-62","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"OMALIZUMAB","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 18 Oct 2022 11:52:35 EDT","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430397,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636869","prescriptionName":"OMALIZUMAB + 150MG/VIL INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430397,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50242-0040-62","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314688,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636869","prescriptionName":"OMALIZUMAB + 150MG/VIL INJ","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(968)636-6869","cmopNdcNumber":null,"id":21314688,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9686366869","dispStatus":"Expired","ndc":"50242-0040-62","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 07 Nov 2022 12:26:42 EST","refillDate":"Sun, 20 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314361,"sig":"PUT + 3 MILLILITERS {0.63 MILLIGRAMS} INTO NEBULIZER, FOR INHALATION THREE (3) TIMES + A DAY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 EDT","quantity":1,"expirationDate":"Tue, + 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636870","prescriptionName":"LEVALBUTEROL + HCL 0.21MG/ML INHL SOLN 3ML","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(768)636-6870","cmopNdcNumber":null,"id":21314361,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"7686366870","dispStatus":"Expired","ndc":"63402-0512-24","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LEVALBUTEROL HCL 0.21MG/ML 3ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 07 Nov 2022 12:26:42 EST","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21461609,"sig":null,"orderedDate":"Sun, + 20 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636870","prescriptionName":"LEVALBUTEROL + HCL 0.21MG/ML INHL SOLN 3ML","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21461609,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"63402-0512-24","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430398,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636870","prescriptionName":"LEVALBUTEROL + HCL 0.21MG/ML INHL SOLN 3ML","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430398,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"63402-0512-24","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314689,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636870","prescriptionName":"LEVALBUTEROL + HCL 0.21MG/ML INHL SOLN 3ML","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(768)636-6870","cmopNdcNumber":null,"id":21314689,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"7686366870","dispStatus":"Expired","ndc":"63402-0512-24","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Wed, 25 Jan 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314362,"sig":"1OZ + BLOOD GLUCOSE TEST WEEKLY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 00:00:00 + EDT","quantity":4,"expirationDate":"Tue, 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636871","prescriptionName":"PRECISION + XTRA METER","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21314362,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"57599-8814-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PRECISION XTRA GLUCOSE METER","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836704,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636871","prescriptionName":"PRECISION + XTRA METER","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836704,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"57599-8814-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430399,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636871","prescriptionName":"PRECISION + XTRA METER","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430399,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"57599-8814-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314690,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636871","prescriptionName":"PRECISION + XTRA METER","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21314690,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"57599-8814-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 06 Oct 2022 20:55:43 EDT","refillDate":"Thu, 06 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21334358,"sig":"TAKE + 1MG BY MOUTH DAILY","orderedDate":"Sat, 03 Sep 2022 00:00:00 EDT","quantity":30,"expirationDate":"Mon, + 04 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720391","prescriptionName":"NALTREXONE + HCL 50MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21334358,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 05 Sep 2023 10:55:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00404-1170-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NALTREXONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 03 Sep 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21347112,"sig":null,"orderedDate":"Thu, + 06 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720391","prescriptionName":"NALTREXONE + HCL 50MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21347112,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00404-1170-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 18 Oct 2022 13:59:25 EDT","refillDate":"Tue, 27 Sep 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21313794,"sig":"TAKE + TWO CAPSULES BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Sep 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 28 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720384","prescriptionName":"ZIDOVUDINE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21313794,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"New + Order Created by editing Rx # 2720380.","divisionName":"DAYTON","modifiedDate":"Fri, + 29 Sep 2023 11:22:34 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00081-0108-55","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZIDOVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 14 Oct 2022 16:10:51 EDT","refillDate":"Sun, 04 Sep 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21335049,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY --AVOID GRAPEFRUIT JUICE-- TEST INDICATION","orderedDate":"Sun, + 04 Sep 2022 00:00:00 EDT","quantity":30,"expirationDate":"Tue, 05 Sep 2023 + 00:00:00 EDT","prescriptionNumber":"2720392","prescriptionName":"TACROLIMUS + 0.5MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21335049,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Wed, 06 Sep 2023 09:45:02 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00469-0607-67","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"TACROLIMUS","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 18 Oct 2022 13:59:25 EDT","refillDate":"Sun, 04 Sep 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21335050,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS, AND TAKE ONE CAPSULE DAILY FOR 30 + DAYS, THEN TAKE ONE CAPSULE DAILY FOR 30 DAYS --TAKE 30 MINUTES AFTER THE + SAME MEAL EACH DAY-- TEST INDICATION","orderedDate":"Sun, 04 Sep 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Tue, 05 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720393","prescriptionName":"TAMSULOSIN + HCL 0.4MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21335050,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Sep 2023 09:45:02 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00597-0058-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"TAMSULOSIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Tue, + 04 Oct 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21335051,"sig":"600MG + MOUTH BEFORE SUPPER","orderedDate":"Tue, 04 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"5","prescriptionName":"GABAPENTIN + 600MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21335051,"userId":16955936,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":"Test + Comment","divisionName":null,"modifiedDate":"Wed, 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":"00071-0513-24","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":"UNKNOWN","indicationForUseFlag":null,"category":"Documented + by VA","orderableItem":"GABAPENTIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Sat, + 24 Dec 2022 08:59:10 EST","refillDate":"Sat, 07 Jan 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489667,"sig":"TAKE + ONE-HALF TABLET BY MOUTH AT BEDTIME FOR 30 DAYS","orderedDate":"Mon, 17 Oct + 2022 00:00:00 EDT","quantity":15,"expirationDate":"Wed, 18 Oct 2023 00:00:00 + EDT","prescriptionNumber":"3636891","prescriptionName":"HALOPERIDOL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(198)636-6891","cmopNdcNumber":null,"id":21489667,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"1986366891","dispStatus":"Expired","ndc":"00781-1397-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HALOPERIDOL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Sat, + 24 Dec 2022 08:59:10 EST","refillDate":"Mon, 17 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21651505,"sig":null,"orderedDate":"Sat, + 07 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636891","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21651505,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00781-1397-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 17 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21603131,"sig":null,"orderedDate":"Sun, + 18 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636891","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21603131,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00781-1397-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 17 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489736,"sig":null,"orderedDate":"Mon, + 14 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636891","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":"Mon, 14 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6891","cmopNdcNumber":null,"id":21489736,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366891","dispStatus":"Expired","ndc":"00781-1397-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 20 Jun 2023 17:12:20 EDT","refillDate":"Tue, 20 Jun 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21496760,"sig":"TAKE + ONE TABLET EVERY DAY, 30 MINUTES BEFORE A MEAL FOR 30 DAYS TEST INDICATION + TEST PATIENT INTRCUTIONS","orderedDate":"Tue, 18 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, + 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636899","prescriptionName":"RABEPRAZOLE + NA 20MG EC TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496760,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 + 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"62856-0243-90","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"RABEPRAZOLE + NA 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 20 Jun 2023 17:12:20 EDT","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217205,"sig":null,"orderedDate":"Tue, + 20 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636899","prescriptionName":"RABEPRAZOLE + NA 20MG EC TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217205,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"62856-0243-90","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21995880,"sig":null,"orderedDate":"Fri, + 07 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636899","prescriptionName":"RABEPRAZOLE + NA 20MG EC TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21995880,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"62856-0243-90","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 18 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836709,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636899","prescriptionName":"RABEPRAZOLE + NA 20MG EC TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836709,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"62856-0243-90","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 06 Jul 2023 10:12:45 EDT","refillDate":"Wed, 12 Jul 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21496761,"sig":"TAKE + 1MG EVERY DAY FOR 60 DAYS","orderedDate":"Thu, 13 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Sat, + 14 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636900","prescriptionName":"NORETHINDRONE + 0.35MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496761,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"52544-0235-28","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NORETHINDRONE 0.35MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 06 Jul 2023 10:12:45 EDT","refillDate":"Thu, 13 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217206,"sig":null,"orderedDate":"Wed, + 12 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636900","prescriptionName":"NORETHINDRONE + 0.35MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217206,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"52544-0235-28","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 13 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22085326,"sig":null,"orderedDate":"Tue, + 02 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636900","prescriptionName":"NORETHINDRONE + 0.35MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22085326,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"52544-0235-28","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 13 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836710,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636900","prescriptionName":"NORETHINDRONE + 0.35MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836710,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"52544-0235-28","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 02 Aug 2023 11:56:31 EDT","refillDate":"Sun, 30 Jul 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21496762,"sig":"INJECT + 10ML INTO THE MUSCLE ONCE FOR 90 DAYS","orderedDate":"Sun, 23 Oct 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Tue, 24 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636901","prescriptionName":"RABIES + VACCINE 2.5 UNITS/VIAL KIT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496762,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53905-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RABIES 2.5 UNITS VACCINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 02 Aug 2023 11:56:31 EDT","refillDate":"Sun, 23 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362079,"sig":null,"orderedDate":"Sun, + 30 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636901","prescriptionName":"RABIES + VACCINE 2.5 UNITS/VIAL KIT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362079,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53905-0501-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 23 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21995881,"sig":null,"orderedDate":"Fri, + 07 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636901","prescriptionName":"RABIES + VACCINE 2.5 UNITS/VIAL KIT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21995881,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53905-0501-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 23 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836711,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636901","prescriptionName":"RABIES + VACCINE 2.5 UNITS/VIAL KIT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836711,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53905-0501-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 02 Aug 2023 11:56:31 EDT","refillDate":"Wed, 02 Aug 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21496763,"sig":"TAKE + 20MG FOUR TIMES A DAY IF NEEDED FOR 30 DAYS * SAFE IF SWALLOWED. AVOID FOOD + OR DRINK FOR AT LEAST ONE (1) HOUR FOLLOWING USE.*","orderedDate":"Tue, 18 + Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 00:00:00 + EDT","prescriptionNumber":"3636902","prescriptionName":"RADIACARE WOUND RINSE + SUSP ORAL","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496763,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53303-0011-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RADIACARE WOUND RINSE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 02 Aug 2023 11:56:31 EDT","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217207,"sig":null,"orderedDate":"Wed, + 02 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636902","prescriptionName":"RADIACARE + WOUND RINSE SUSP ORAL","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217207,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53303-0011-01","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 18 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22085327,"sig":null,"orderedDate":"Tue, + 02 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636902","prescriptionName":"RADIACARE + WOUND RINSE SUSP ORAL","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22085327,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53303-0011-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 18 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21995882,"sig":null,"orderedDate":"Fri, + 07 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636902","prescriptionName":"RADIACARE + WOUND RINSE SUSP ORAL","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21995882,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53303-0011-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 18 Oct 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836712,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636902","prescriptionName":"RADIACARE + WOUND RINSE SUSP ORAL","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836712,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53303-0011-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 28 Jun 2023 09:46:56 EDT","refillDate":"Wed, 12 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21496764,"sig":"TAKE + ONE TABLET WEEKLY FOR 30 DAYS","orderedDate":"Thu, 20 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Sat, + 21 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636903","prescriptionName":"RALOXIFENE + HCL 60MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496764,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-4165-02","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RALOXIFENE HCL 60MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 28 Jun 2023 09:46:56 EDT","refillDate":"Thu, 20 Oct 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217208,"sig":null,"orderedDate":"Wed, + 12 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636903","prescriptionName":"RALOXIFENE + HCL 60MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217208,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-4165-02","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 20 Oct 2022 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836713,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636903","prescriptionName":"RALOXIFENE + HCL 60MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836713,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-4165-02","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Sat, 04 Mar 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21496765,"sig":"TAKE + ONE CAPSULE EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 16 Oct 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Tue, 17 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636904","prescriptionName":"RAMIPRIL + 1.25MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496765,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"61570-0110-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RAMIPRIL 1.25MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Sun, 16 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836714,"sig":null,"orderedDate":"Sat, + 04 Mar 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636904","prescriptionName":"RAMIPRIL + 1.25MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836714,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"61570-0110-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 16 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801664,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636904","prescriptionName":"RAMIPRIL + 1.25MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801664,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"61570-0110-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 11 Jan 2023 14:44:57 EST","refillDate":"Wed, 11 Jan 2023 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21496768,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, + 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720418","prescriptionName":"NADOLOL + 40MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496768,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 20 Oct 2023 10:58:00 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00003-0207-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NADOLOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 11 Jan 2023 14:44:57 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679757,"sig":null,"orderedDate":"Wed, + 11 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720418","prescriptionName":"NADOLOL + 40MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679757,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00003-0207-50","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 15 Feb 2023 15:45:35 EST","refillDate":"Wed, 15 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21496769,"sig":"INJECT + 1ML IVPB WEEKLY FOR 30 DAYS TEST INDICATIONJ TEST PATIENT INTRU","orderedDate":"Thu, + 13 Oct 2022 00:00:00 EDT","quantity":4,"expirationDate":"Sat, 14 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"2720419","prescriptionName":"NAFCILLIN + 1GM INJ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496769,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Mon, 16 Oct 2023 10:20:40 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00015-7225-99","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATIONJ","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"NAFCILLIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 15 Feb 2023 15:45:35 EST","refillDate":"Thu, 13 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21810065,"sig":null,"orderedDate":"Wed, + 15 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720419","prescriptionName":"NAFCILLIN + 1GM INJ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21810065,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00015-7225-99","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 23 Jan 2023 14:26:23 EST","refillDate":"Mon, 23 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21496770,"sig":"INJECT + 10MG DAILY FOR 60 DAYS","orderedDate":"Sun, 23 Oct 2022 00:00:00 EDT","quantity":5,"expirationDate":"Tue, + 24 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720420","prescriptionName":"NALBUPHINE + HCL 10MG/ML INJ 10ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496770,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 25 Oct 2023 09:19:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NALBUPHINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 23 Jan 2023 14:26:23 EST","refillDate":"Sun, 23 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21723022,"sig":null,"orderedDate":"Mon, + 23 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720420","prescriptionName":"NALBUPHINE + HCL 10MG/ML INJ 10ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21723022,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 30 Jan 2023 11:13:49 EST","refillDate":"Mon, 30 Jan 2023 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21496771,"sig":"TAKE + 20MG WEEKLY FOR 30 DAYS --TAKE WITH FOOD TO PREVENT GI DISTRESS/AVOID ANTACIDS--","orderedDate":"Tue, + 18 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"2720421","prescriptionName":"NALIDIXIC + ACID 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496771,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 20 Oct 2023 10:58:00 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00024-1322-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NALIDIXIC ACID","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 30 Jan 2023 11:13:49 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21759327,"sig":null,"orderedDate":"Mon, + 30 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720421","prescriptionName":"NALIDIXIC + ACID 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21759327,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00024-1322-06","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 12 Dec 2022 13:11:38 EST","refillDate":"Thu, 17 Nov 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21496772,"sig":"TAKE + 5ML WEEKLY FOR 30 DAYS","orderedDate":"Thu, 17 Nov 2022 00:00:00 EST","quantity":3,"expirationDate":"Sat, + 18 Nov 2023 00:00:00 EST","prescriptionNumber":"2720338A","prescriptionName":"IODOQUINOL + 650MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496772,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720338","divisionName":"DAYTON","modifiedDate":"Mon, 20 Nov 2023 + 09:35:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00516-0093-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"IODOQUINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 22 Dec 2022 15:54:27 EST","refillDate":"Thu, 17 Nov 2022 00:00:00 EST","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21496774,"sig":"INJECT + 1G WEEKLY FOR 30 DAYS","orderedDate":"Thu, 17 Nov 2022 00:00:00 EST","quantity":4,"expirationDate":"Sat, + 18 Nov 2023 00:00:00 EST","prescriptionNumber":"2720259B","prescriptionName":"CIPROFLOXACIN + 200MG/20ML VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496774,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720259A","divisionName":"DAYTON","modifiedDate":"Mon, 20 Nov 2023 + 09:35:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00026-8562-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CIPROFLOXACIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 11 Jan 2023 14:44:57 EST","refillDate":"Wed, 11 Jan 2023 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21496775,"sig":"TAKE + ONE TABLET BY MOUTH 1 X DAILY FOR 30 DAYS --TAKE WITH FOOD TO INCREASE ABSORPTION--","orderedDate":"Thu, + 17 Nov 2022 00:00:00 EST","quantity":30,"expirationDate":"Sat, 18 Nov 2023 + 00:00:00 EST","prescriptionNumber":"2720370A","prescriptionName":"NABUMETONE + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496775,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720370","divisionName":"DAYTON","modifiedDate":"Mon, 20 Nov 2023 + 09:35:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-4098-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NABUMETONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 11 Jan 2023 14:44:57 EST","refillDate":"Thu, 17 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679758,"sig":null,"orderedDate":"Wed, + 11 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720370A","prescriptionName":"NABUMETONE + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679758,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-4098-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530887,"sig":"TAKE + 1 BY MOUTH WEEKLY FOR 30 DAYS","orderedDate":"Sun, 30 Oct 2022 00:00:00 EDT","quantity":4,"expirationDate":"Tue, + 31 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720422","prescriptionName":"ULTRACAL + 8 OZ CAN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530887,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 01 Nov 2023 11:36:19 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00087-4359-41","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ULTRACAL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Sun, 30 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825020,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720422","prescriptionName":"ULTRACAL + 8 OZ CAN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825020,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00087-4359-41","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530888,"sig":"USE + 1MG IVPB DAILY FOR 30 DAYS","orderedDate":"Sun, 30 Oct 2022 00:00:00 EDT","quantity":3,"expirationDate":"Tue, + 31 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720423","prescriptionName":"UNASYN + 1.5GM (ADD-A-VIAL) in NS 50ml","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530888,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 01 Nov 2023 11:36:19 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"UNASYN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Sun, 30 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825021,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720423","prescriptionName":"UNASYN + 1.5GM (ADD-A-VIAL) in NS 50ml","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825021,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 08 Dec 2022 12:21:53 EST","refillDate":"Thu, 08 Dec 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530889,"sig":"USE + PAD(S) AS DIRECTED WEEKLY FOR 30 DAYS","orderedDate":"Sun, 30 Oct 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Tue, 31 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720424","prescriptionName":"UNDERPAD,BED + LARGE","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530889,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 01 Nov 2023 11:36:19 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"UNDERPAD","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530890,"sig":"USE + 1 BANDAGE ON AS DIRECTED DAILY FOR 30 DAYS","orderedDate":"Sun, 30 Oct 2022 + 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 31 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720425","prescriptionName":"UNNA + BOOT,WITHOUT CALAMINE 4IN X 10YDS","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530890,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 01 Nov 2023 11:36:19 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00036-5094-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"UNNA BOOT WITHOUT CALAMINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Sun, 30 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825022,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720425","prescriptionName":"UNNA + BOOT,WITHOUT CALAMINE 4IN X 10YDS","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825022,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00036-5094-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 01 Dec 2022 14:37:28 EST","refillDate":"Mon, 19 Dec 2022 00:00:00 EST","refillRemaining":10,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21530870,"sig":"TAKE + 1/2 TEASPOONFUL (80 MGS/2.5 MLS) EVERY SIX (6) HOURS FOR 30 DAYS NOT MORE + THAN FOUR (4) GRAMS OF ACETAMINOPHEN PER DAY","orderedDate":"Tue, 29 Nov 2022 + 00:00:00 EST","quantity":4,"expirationDate":"Thu, 30 Nov 2023 00:00:00 EST","prescriptionNumber":"3636713C","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(198)636-6891","cmopNdcNumber":null,"id":21530870,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636713B","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"1986366891","dispStatus":"Discontinued","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 160MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 01 Dec 2022 14:37:28 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":10,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21539939,"sig":null,"orderedDate":"Mon, + 19 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636713C","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":"Wed, 30 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6891","cmopNdcNumber":"00113002239","id":21539939,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366891","dispStatus":"Discontinued","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"OVAL","color":"WHITE","frontImprint":"L022","backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 11 Jan 2023 14:37:35 EST","refillDate":"Sun, 01 Jan 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21530871,"sig":"APPLY + THIN LAYER TO AFFECTED AREA TO THE AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Tue, + 29 Nov 2022 00:00:00 EST","quantity":1,"expirationDate":"Thu, 30 Nov 2023 + 00:00:00 EST","prescriptionNumber":"3636867A","prescriptionName":"CASTOR OIL/PERUVIAN + BALSAM/TRYPSIN OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530871,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636867","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00064-3900-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CASTOR OIL/PERUVIAN BALSAM/TRYPSIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 11 Jan 2023 14:37:35 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21651506,"sig":null,"orderedDate":"Sun, + 01 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636867A","prescriptionName":"CASTOR + OIL/PERUVIAN BALSAM/TRYPSIN OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21651506,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00064-3900-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 20 Dec 2022 00:00:00 EST","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21530872,"sig":"TAKE + 1MG EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 29 Nov 2022 00:00:00 EST","quantity":30,"expirationDate":"Thu, + 30 Nov 2023 00:00:00 EST","prescriptionNumber":"3636876A","prescriptionName":"PANCREASE + MT 16 EC CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530872,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636876","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00045-0343-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PANCREASE MT 16","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 20 Jun 2023 17:12:20 EDT","refillDate":"Sat, 08 Jul 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21530873,"sig":"TAKE + ONE CAPSULE TWO (2) TIMES PER DAY, WITH FOOD FOR 30 DAYS","orderedDate":"Sun, + 30 Oct 2022 00:00:00 EDT","quantity":60,"expirationDate":"Tue, 31 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"3636905","prescriptionName":"URSODIOL + 300MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530873,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00591-3159-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"URSODIOL 300MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 20 Jun 2023 17:12:20 EDT","refillDate":"Sun, 30 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22223152,"sig":null,"orderedDate":"Sat, + 08 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636905","prescriptionName":"URSODIOL + 300MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22223152,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00591-3159-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 30 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217571,"sig":null,"orderedDate":"Sun, + 18 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636905","prescriptionName":"URSODIOL + 300MG CAP","dispensedDate":"Mon, 19 Jun 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217571,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00591-3159-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 30 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836715,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636905","prescriptionName":"URSODIOL + 300MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836715,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00591-3159-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 02 Dec 2022 19:11:10 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530876,"sig":"TAKE + ONE TABLET BY MOUTH DAILY TEST TEST INDICATION TEST","orderedDate":"Tue, 29 + Nov 2022 00:00:00 EST","quantity":10,"expirationDate":"Thu, 30 Nov 2023 00:00:00 + EST","prescriptionNumber":"2720192C","prescriptionName":"ACETAMINOPHEN 325MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530876,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720192B","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0488-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 19 Dec 2022 14:10:12 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530877,"sig":"TAKE + 25 BY MOUTH 1XD FOR 60 DAYS","orderedDate":"Tue, 29 Nov 2022 00:00:00 EST","quantity":30,"expirationDate":"Thu, + 30 Nov 2023 00:00:00 EST","prescriptionNumber":"2720187C","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530877,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720187B","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 19 Dec 2022 14:10:12 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530878,"sig":"APPLY + SMALL AMOUNT WEEKLY FOR 60 DAYS","orderedDate":"Tue, 29 Nov 2022 00:00:00 + EST","quantity":6,"expirationDate":"Thu, 30 Nov 2023 00:00:00 EST","prescriptionNumber":"2720218B","prescriptionName":"ACYCLOVIR + 5% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530878,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720218A","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"64455-0993-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 20 Dec 2022 13:43:11 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530879,"sig":"TAKE + TWO TABLETS BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 29 Nov 2022 00:00:00 + EST","quantity":30,"expirationDate":"Thu, 30 Nov 2023 00:00:00 EST","prescriptionNumber":"2720221C","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530879,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720221B","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Sat, + 24 Dec 2022 08:58:29 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530880,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 90 DAYS --TAKE WITH FOOD TO DECREASE GI IRRITATION/AVOID + ANTACIDS--","orderedDate":"Tue, 29 Nov 2022 00:00:00 EST","quantity":30,"expirationDate":"Thu, + 30 Nov 2023 00:00:00 EST","prescriptionNumber":"2720200B","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530880,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720200A","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 20 Dec 2022 13:43:11 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530881,"sig":"TAKE + 1 TEASPOONFUL MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD--","orderedDate":"Tue, + 29 Nov 2022 00:00:00 EST","quantity":30,"expirationDate":"Thu, 30 Nov 2023 + 00:00:00 EST","prescriptionNumber":"2720270B","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530881,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720270A","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 12 Dec 2022 13:11:38 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530882,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 29 Nov 2022 00:00:00 EST","quantity":30,"expirationDate":"Thu, + 30 Nov 2023 00:00:00 EST","prescriptionNumber":"2720333B","prescriptionName":"LABETALOL + HCL 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530882,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720333A","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0346-43","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LABETALOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530884,"sig":"USE + 1 PUFF WEEKLY FOR 30 DAYS","orderedDate":"Tue, 29 Nov 2022 00:00:00 EST","quantity":4,"expirationDate":"Thu, + 30 Nov 2023 00:00:00 EST","prescriptionNumber":"2720379A","prescriptionName":"ZANAMIVIR + 5MG DISHALER","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530884,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720379","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00073-0681-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZANAMIVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825018,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720379A","prescriptionName":"ZANAMIVIR + 5MG DISHALER","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825018,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00073-0681-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530885,"sig":"TAKE + ONE CAPSULE WEEKLY FOR 30 DAYS","orderedDate":"Tue, 29 Nov 2022 00:00:00 EST","quantity":5,"expirationDate":"Thu, + 30 Nov 2023 00:00:00 EST","prescriptionNumber":"2720339A","prescriptionName":"ZIPRASIDONE + HCL 40MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530885,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720339","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00049-3970-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZIPRASIDONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825019,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720339A","prescriptionName":"ZIPRASIDONE + HCL 40MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825019,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00049-3970-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 02 Feb 2023 21:29:06 EST","refillDate":"Thu, 02 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530886,"sig":"ONE + MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 29 Nov 2022 00:00:00 EST","quantity":30,"expirationDate":"Thu, + 30 Nov 2023 00:00:00 EST","prescriptionNumber":"2720390A","prescriptionName":"ZYPREXA + ZYDIS 15MG","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530886,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720390","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-4455-85","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZYPREXA 15MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 02 Feb 2023 21:29:06 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21765508,"sig":null,"orderedDate":"Thu, + 02 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720390A","prescriptionName":"ZYPREXA + ZYDIS 15MG","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21765508,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-4455-85","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 22 Nov 2022 16:32:02 EST","refillDate":"Wed, 16 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489447,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 16 Nov 2022 00:00:00 + EST","quantity":30,"expirationDate":"Fri, 17 Nov 2023 00:00:00 EST","prescriptionNumber":"3636747B","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489447,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636747A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ADEFOVIR DIPIVOXIL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 22 Nov 2022 16:49:06 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489448,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS TAKE WITH FOOD","orderedDate":"Wed, 16 Nov + 2022 00:00:00 EST","quantity":30,"expirationDate":"Fri, 17 Nov 2023 00:00:00 + EST","prescriptionNumber":"3636691B","prescriptionName":"ALLOPURINOL 100MG + TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489448,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636691A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 28 Nov 2022 18:58:44 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489449,"sig":"TAKE + ONE TABLET AT BEDTIME FOR 30 DAYS","orderedDate":"Wed, 16 Nov 2022 00:00:00 + EST","quantity":30,"expirationDate":"Fri, 17 Nov 2023 00:00:00 EST","prescriptionNumber":"3636710B","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489449,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636710A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMITRIPTYLINE HCL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 16 Nov 2022 13:07:04 EST","refillDate":"Tue, 06 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489450,"sig":"INJECT + 1ML INTO THE MUSCLE ONCE FOR 30 DAYS","orderedDate":"Mon, 17 Oct 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Wed, 18 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636890","prescriptionName":"HAEMOPHILUS + B CONJUGATE VACCINE INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489450,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49281-0545-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HAEMOPHILUS B CONJUGATE VACCINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 16 Nov 2022 13:07:04 EST","refillDate":"Mon, 17 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489735,"sig":null,"orderedDate":"Tue, + 06 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636890","prescriptionName":"HAEMOPHILUS + B CONJUGATE VACCINE INJ","dispensedDate":"Mon, 14 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489735,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49281-0545-05","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 17 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21489488,"sig":null,"orderedDate":"Mon, + 14 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636890","prescriptionName":"HAEMOPHILUS + B CONJUGATE VACCINE INJ","dispensedDate":"Mon, 14 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489488,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49281-0545-05","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Sat, + 24 Dec 2022 08:59:10 EST","refillDate":"Tue, 01 Nov 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21539906,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 01 Nov 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, + 02 Nov 2023 00:00:00 EDT","prescriptionNumber":"2720427","prescriptionName":"MAPROTILINE + 25MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21539906,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 03 Nov 2023 12:18:10 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00083-0110-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MAPROTILINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 11 Jan 2023 14:44:57 EST","refillDate":"Wed, 11 Jan 2023 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21539907,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS TEST INDICATION TEST PATIENT INTRUCTIONS","orderedDate":"Wed, + 02 Nov 2022 00:00:00 EDT","quantity":30,"expirationDate":"Fri, 03 Nov 2023 + 00:00:00 EDT","prescriptionNumber":"2720428","prescriptionName":"MAPROTILINE + 50MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21539907,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Mon, 06 Nov 2023 08:58:18 + EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00083-0026-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"MAPROTILINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 11 Jan 2023 14:44:57 EST","refillDate":"Wed, 02 Nov 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679759,"sig":null,"orderedDate":"Wed, + 11 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720428","prescriptionName":"MAPROTILINE + 50MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679759,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00083-0026-30","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 08 Dec 2022 12:21:53 EST","refillDate":"Thu, 08 Dec 2022 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21539942,"sig":"CHEW + 10ML BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Sun, 30 Oct 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Tue, 31 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720429","prescriptionName":"MEBENDAZOLE + 100MG CHEWABLE TABS 12''S","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21539942,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 01 Nov 2023 11:36:19 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00093-9107-29","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MEBENDAZOLE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 30 Jan 2023 11:13:49 EST","refillDate":"Mon, 30 Jan 2023 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21539943,"sig":"INJECT + 20MG MOUTH WEEKLY FOR 60 DAYS","orderedDate":"Tue, 01 Nov 2022 00:00:00 EDT","quantity":4,"expirationDate":"Thu, + 02 Nov 2023 00:00:00 EDT","prescriptionNumber":"2720430","prescriptionName":"MECHLORETHAMINE + 10MG 20ML ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21539943,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 03 Nov 2023 12:18:10 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-7753-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MECHLORETHAMINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 30 Jan 2023 11:13:49 EST","refillDate":"Tue, 01 Nov 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21759328,"sig":null,"orderedDate":"Mon, + 30 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720430","prescriptionName":"MECHLORETHAMINE + 10MG 20ML ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21759328,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-7753-31","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 30 Jan 2023 11:13:49 EST","refillDate":"Mon, 30 Jan 2023 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21539944,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 03 Nov 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Sat, 04 Nov 2023 00:00:00 EDT","prescriptionNumber":"2720431","prescriptionName":"MECLIZINE + HCL 25MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21539944,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 06 Nov 2023 08:58:18 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0035-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MECLIZINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 30 Jan 2023 11:13:49 EST","refillDate":"Thu, 03 Nov 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21759329,"sig":null,"orderedDate":"Mon, + 30 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720431","prescriptionName":"MECLIZINE + HCL 25MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21759329,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0035-10","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 17 Jul 2023 10:01:41 EDT","refillDate":"Sat, 15 Jul 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21602921,"sig":"TAKE + 10MG BY TUBE CHECK EVERY SHIFT FOR 30 DAYS TEST INDICATION 122022 TEST PATIENT + INTRUCTIONS 122022022","orderedDate":"Sun, 20 Nov 2022 00:00:00 EST","quantity":30,"expirationDate":"Tue, + 21 Nov 2023 00:00:00 EST","prescriptionNumber":"3636906","prescriptionName":"NUTRITION + SUPL JEVITY/TUBE FEEDING LIQ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21602921,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS 122022","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 + Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"70074-0401-43","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 122022","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"JEVITY + (TUBE FEED) DIET SUPMT","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 17 Jul 2023 10:01:41 EDT","refillDate":"Sun, 20 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22320629,"sig":null,"orderedDate":"Sat, + 15 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636906","prescriptionName":"NUTRITION + SUPL JEVITY/TUBE FEEDING LIQ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22320629,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"70074-0401-43","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836716,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636906","prescriptionName":"NUTRITION + SUPL JEVITY/TUBE FEEDING LIQ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836716,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"70074-0401-43","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21603132,"sig":null,"orderedDate":"Sun, + 18 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636906","prescriptionName":"NUTRITION + SUPL JEVITY/TUBE FEEDING LIQ","dispensedDate":"Sun, 18 Dec 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21603132,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"70074-0401-43","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21668185,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST INDICATION","orderedDate":"Sat, + 10 Dec 2022 00:00:00 EST","quantity":30,"expirationDate":"Mon, 11 Dec 2023 + 00:00:00 EST","prescriptionNumber":"2720432","prescriptionName":"RABEPRAZOLE + NA 20MG EC TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21668185,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Tue, 12 Dec 2023 02:22:17 + EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"62856-0243-90","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"RABEPRAZOLE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Sat, 10 Dec 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825023,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720432","prescriptionName":"RABEPRAZOLE + NA 20MG EC TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825023,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"62856-0243-90","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 25 Jan 2023 16:27:17 EST","refillDate":"Wed, 25 Jan 2023 00:00:00 EST","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679765,"sig":"APPLY + LIBERAL AMOUNT TO AFFECTED AREA MONDAY,TUESDAY,FRIDAY,SATURDAY AT 5 PM TESTING","orderedDate":"Thu, + 12 Jan 2023 00:00:00 EST","quantity":10,"expirationDate":"Sat, 13 Jan 2024 + 00:00:00 EST","prescriptionNumber":"2720068B","prescriptionName":"NIVEA SKIN + OIL (8 OZ) ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679765,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"RENEWED + FROM RX # 2720068A","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"72140-0001-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NIVEA","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 25 Jan 2023 16:27:17 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21731744,"sig":null,"orderedDate":"Wed, + 25 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720068B","prescriptionName":"NIVEA + SKIN OIL (8 OZ) ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21731744,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"72140-0001-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 25 Jan 2023 16:27:17 EST","refillDate":"Wed, 01 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679766,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY --AVOID GRAPEFRUIT JUICE-- TEST INDICATION","orderedDate":"Thu, + 12 Jan 2023 00:00:00 EST","quantity":30,"expirationDate":"Sat, 13 Jan 2024 + 00:00:00 EST","prescriptionNumber":"2720392A","prescriptionName":"TACROLIMUS + 0.5MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679766,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720392","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00469-0607-67","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"TACROLIMUS","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 25 Jan 2023 16:27:17 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21731745,"sig":null,"orderedDate":"Wed, + 01 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720392A","prescriptionName":"TACROLIMUS + 0.5MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21731745,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00469-0607-67","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 25 Jan 2023 16:27:16 EST","refillDate":"Wed, 01 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679767,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS, AND TAKE ONE CAPSULE DAILY FOR 30 + DAYS, THEN TAKE ONE CAPSULE DAILY FOR 30 DAYS --TAKE 30 MINUTES AFTER THE + SAME MEAL EACH DAY-- TEST INDICATION","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"2720393A","prescriptionName":"TAMSULOSIN + HCL 0.4MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679767,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720393","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00597-0058-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"TAMSULOSIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 25 Jan 2023 16:27:16 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21731746,"sig":null,"orderedDate":"Wed, + 01 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720393A","prescriptionName":"TAMSULOSIN + HCL 0.4MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21731746,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00597-0058-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 25 Jan 2023 16:27:17 EST","refillDate":"Wed, 01 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679768,"sig":"USE + PAD(S) AS DIRECTED WEEKLY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":1,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"2720424A","prescriptionName":"UNDERPAD,BED + LARGE","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679768,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720424","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"UNDERPAD","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 25 Jan 2023 16:27:17 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21731747,"sig":null,"orderedDate":"Wed, + 01 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720424A","prescriptionName":"UNDERPAD,BED + LARGE","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21731747,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 02 Feb 2023 21:29:06 EST","refillDate":"Thu, 02 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679769,"sig":"TAKE + 10MG BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Thu, 12 + Jan 2023 00:00:00 EST","quantity":30,"expirationDate":"Sat, 13 Jan 2024 00:00:00 + EST","prescriptionNumber":"2720378A","prescriptionName":"ZALCITABINE 0.375MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679769,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720378","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00004-0220-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZALCITABINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 02 Feb 2023 21:29:06 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21765509,"sig":null,"orderedDate":"Thu, + 02 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720378A","prescriptionName":"ZALCITABINE + 0.375MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21765509,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00004-0220-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 02 Feb 2023 21:29:06 EST","refillDate":"Thu, 02 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679770,"sig":"TAKE + TWO CAPSULES BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"2720384A","prescriptionName":"ZIDOVUDINE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679770,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720384","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00081-0108-55","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZIDOVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 02 Feb 2023 21:29:06 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21765510,"sig":null,"orderedDate":"Thu, + 02 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720384A","prescriptionName":"ZIDOVUDINE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21765510,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00081-0108-55","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679771,"sig":"USE + 1 ON AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":1,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"2720382A","prescriptionName":"ZINC + GELATIN BANDAGE 3 INCH (EA)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679771,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720382","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00003-6509-40","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZINC GELATIN BANDAGE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679772,"sig":"TAKE + ONE CAPSULE DAILY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 EST","quantity":30,"expirationDate":"Sat, + 13 Jan 2024 00:00:00 EST","prescriptionNumber":"2720383A","prescriptionName":"ZINC + SULFATE 220MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679772,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720383","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00677-0622-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZINC SULFATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825028,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720383A","prescriptionName":"ZINC + SULFATE 220MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825028,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00677-0622-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679773,"sig":"INSTILL + 100ML WEEKLY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 EST","quantity":1,"expirationDate":"Sat, + 13 Jan 2024 00:00:00 EST","prescriptionNumber":"2720385B","prescriptionName":"ZINCFRIN + OPHTH SOLN 15ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679773,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720385A","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00065-0512-15","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PHENYLEPHRINE/ZINC SULFATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825029,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720385B","prescriptionName":"ZINCFRIN + OPHTH SOLN 15ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825029,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00065-0512-15","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679774,"sig":"TAKE + TWO CAPSULES DAILY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 EST","quantity":30,"expirationDate":"Sat, + 13 Jan 2024 00:00:00 EST","prescriptionNumber":"2720386A","prescriptionName":"ZIPRASIDONE + HCL 60MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679774,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720386","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00049-3980-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZIPRASIDONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825030,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720386A","prescriptionName":"ZIPRASIDONE + HCL 60MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825030,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00049-3980-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Sun, + 20 Nov 2022 00:00:00 EST","refillRemaining":null,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21602982,"sig":"20Z + TOPICAL WEEKLY","orderedDate":"Sun, 20 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"4","prescriptionName":"JAR, + OINTMENT 2OZ SCWCP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21602982,"userId":16955936,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 06 Nov 2024 15:46:41 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":null,"reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":"TEST + INDICATION 122022","indicationForUseFlag":null,"category":"Documented by VA","orderableItem":"JEVITY + (TUBE FEED) DIET SUPMT","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679775,"sig":"INJECT + 1ML INTRAVENEOUS USE WEEKLY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":4,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"2720387A","prescriptionName":"ZOLEDRONIC + ACID 4MG VI","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679775,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720387","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0350-84","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZOLEDRONIC","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679776,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"2720388A","prescriptionName":"ZONISAMIDE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679776,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720388","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"59075-0680-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZONISAMIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825031,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720388A","prescriptionName":"ZONISAMIDE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825031,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"59075-0680-10","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679777,"sig":"USE + 1MG INTRAVENEOUS USE WEEKLY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":2,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"2720389A","prescriptionName":"ZOSYN + 2.25GM (ADD-A-VIAL) in NS 50ml","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679777,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720389","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jan 2024 + 09:18:58 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZOSYN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825032,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720389A","prescriptionName":"ZOSYN + 2.25GM (ADD-A-VIAL) in NS 50ml","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825032,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 18 Jan 2023 00:00:00 EST","refillRemaining":11,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679739,"sig":"TAKE + 1/2 TEASPOONFUL (80 MGS/2.5 MLS) EVERY SIX (6) HOURS FOR 30 DAYS NOT MORE + THAN FOUR (4) GRAMS OF ACETAMINOPHEN PER DAY","orderedDate":"Thu, 12 Jan 2023 + 00:00:00 EST","quantity":4,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"3636713D","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679739,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636713C","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 160MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 25 Jan 2023 13:40:42 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679740,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"3636747C","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679740,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636747B","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ADEFOVIR DIPIVOXIL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 25 Jan 2023 13:40:42 EST","refillDate":"Thu, 12 Jan 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801665,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636747C","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801665,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 15 Feb 2023 15:48:45 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679741,"sig":"TAKE + ONE TABLET EVERY MORNING, 30 MINUTES BEFORE MEAL FOR 30 DAYS WITH FULL GLASS + OF WATER, ONLY. DON''T LIE DOWN, EAT, DRINK, OR TAKE MEDS FOR ONE-HALF (1/2) + HOUR.","orderedDate":"Thu, 12 Jan 2023 00:00:00 EST","quantity":30,"expirationDate":"Sat, + 13 Jan 2024 00:00:00 EST","prescriptionNumber":"3636748B","prescriptionName":"ALENDRONATE + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679741,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636748A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0936-58","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 12 Jan 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801666,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636748B","prescriptionName":"ALENDRONATE + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801666,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0936-58","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 15 Feb 2023 15:48:45 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":10,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679743,"sig":"TAKE + ONE TABLET AT BEDTIME FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"3636710C","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679743,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636710B","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMITRIPTYLINE HCL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 12 Jan 2023 00:00:00 EST","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801667,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636710C","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801667,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 15 Feb 2023 15:48:45 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":10,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679744,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":15,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"3636711B","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679744,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636711A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMLODIPINE BESYLATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 12 Jan 2023 00:00:00 EST","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801668,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711B","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801668,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 15 Feb 2023 15:48:45 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":10,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679745,"sig":"TAKE + 2G EVERY EIGHT (8) HOURS FOR 30 DAYS , AND FINISH ALL MEDICATION.","orderedDate":"Thu, + 12 Jan 2023 00:00:00 EST","quantity":4,"expirationDate":"Sat, 13 Jan 2024 + 00:00:00 EST","prescriptionNumber":"3636712B","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679745,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636712A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN 250MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 12 Jan 2023 00:00:00 EST","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801669,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636712B","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801669,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 25 Jan 2023 16:01:12 EST","refillDate":"Tue, 14 Feb 2023 00:00:00 EST","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679746,"sig":"TAKE + ONE TABLET EVERY EVENING FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"3636714B","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679746,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636714A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ATORVASTATIN CALCIUM 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 15 Feb 2023 15:48:45 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679747,"sig":"TAKE + ONE TABLET TWO (2) TIMES A DAY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 + 00:00:00 EST","quantity":60,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"3636856A","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679747,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636856","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-1101-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CAPECITABINE 500MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 12 Jan 2023 00:00:00 EST","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801670,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636856A","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801670,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-1101-50","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 21 Jan 2023 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679748,"sig":"APPLY + THIN LAYER TO AFFECTED AREA TO THE AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Thu, + 12 Jan 2023 00:00:00 EST","quantity":1,"expirationDate":"Sat, 13 Jan 2024 + 00:00:00 EST","prescriptionNumber":"3636867B","prescriptionName":"CASTOR OIL/PERUVIAN + BALSAM/TRYPSIN OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679748,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636867A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00064-3900-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CASTOR OIL/PERUVIAN BALSAM/TRYPSIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 04 Jan 2024 13:59:22 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679749,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Thu, 12 Jan 2023 00:00:00 + EST","quantity":15,"expirationDate":"Sat, 13 Jan 2024 00:00:00 EST","prescriptionNumber":"3636736B","prescriptionName":"CITALOPRAM + HYDROBROMIDE 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679749,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636736A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-4741-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CITALOPRAM HYDROBROMIDE 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 12 Jan 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801671,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636736B","prescriptionName":"CITALOPRAM + HYDROBROMIDE 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801671,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-4741-70","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 15 Feb 2023 15:48:45 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679750,"sig":"APPLY + APPLICATION(S) TO THE AFFECTED AREA EVERY TWELVE (12) HOURS FOR 30 DAYS TEST + INDICATION 011223 TEST PATIENT INTRUCTIONS 011223","orderedDate":"Tue, 13 + Dec 2022 00:00:00 EST","quantity":1,"expirationDate":"Thu, 14 Dec 2023 00:00:00 + EST","prescriptionNumber":"3636907","prescriptionName":"ECONAZOLE NITRATE + 1% CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679750,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS 011223","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 + Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0312-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 011223","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ECONAZOLE + NITRATE 1% 30GM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 13 Dec 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801672,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636907","prescriptionName":"ECONAZOLE + NITRATE 1% CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801672,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0312-30","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 15 Feb 2023 15:48:45 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679751,"sig":"INJECT + 1MG UNDER THE SKIN EVERY WEEK FOR 30 DAYS","orderedDate":"Tue, 13 Dec 2022 + 00:00:00 EST","quantity":1,"expirationDate":"Thu, 14 Dec 2023 00:00:00 EST","prescriptionNumber":"3636908","prescriptionName":"EFALIZUMAB + 125MG/1.25ML INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679751,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS 011223","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 + Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50242-0058-04","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"EFALIZUMAB","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 13 Dec 2022 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801673,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636908","prescriptionName":"EFALIZUMAB + 125MG/1.25ML INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801673,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50242-0058-04","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 15 Feb 2023 15:48:45 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679752,"sig":"USE + 1FT ON THE AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Tue, 13 Dec 2022 + 00:00:00 EST","quantity":1,"expirationDate":"Thu, 14 Dec 2023 00:00:00 EST","prescriptionNumber":"3636909","prescriptionName":"ELASTOPLAST + 1IN","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679752,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"10356-0025-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ELASTOPLAST 1 in","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 13 Dec 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801674,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636909","prescriptionName":"ELASTOPLAST + 1IN","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801674,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"10356-0025-93","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 15 Feb 2023 15:48:45 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679753,"sig":"USE + PAD(S) THE AFFECTED AREA EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 13 Dec + 2022 00:00:00 EST","quantity":3,"expirationDate":"Thu, 14 Dec 2023 00:00:00 + EST","prescriptionNumber":"3636910","prescriptionName":"ELECTRODE PAD, REUSE. + 1.25x2in 4''s(PG)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679753,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ELECTRODE, REUSE 1.25in x 2in ","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 13 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801675,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636910","prescriptionName":"ELECTRODE + PAD, REUSE. 1.25x2in 4''s(PG)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801675,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 15 Feb 2023 15:48:45 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679754,"sig":"TAKE + 1 TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 13 Dec 2022 00:00:00 EST","quantity":30,"expirationDate":"Thu, + 14 Dec 2023 00:00:00 EST","prescriptionNumber":"3636911","prescriptionName":"EMTRICITABINE + 200-TENOFOVIR 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679754,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"61958-0701-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"EMTRICITABINE 200-TENOFOVIR 300M","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 13 Dec 2022 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801676,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636911","prescriptionName":"EMTRICITABINE + 200-TENOFOVIR 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801676,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"61958-0701-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679760,"sig":"INHALE + 10MG NOSE DAILY FOR 30 DAYS TEST INDICATION 011223 TEST PATIENT INTRUCTIONS + 011223","orderedDate":"Tue, 13 Dec 2022 00:00:00 EST","quantity":30,"expirationDate":"Thu, + 14 Dec 2023 00:00:00 EST","prescriptionNumber":"2720434","prescriptionName":"RACEPINEPHRINE + 2.25% INHAL SOL 1ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679760,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS 011223","divisionName":"DAYTON","modifiedDate":"Fri, 15 Dec 2023 09:16:00 + EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00487-5901-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 011223","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"RACEPINEPHRINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Tue, 13 Dec 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825024,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720434","prescriptionName":"RACEPINEPHRINE + 2.25% INHAL SOL 1ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825024,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00487-5901-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679761,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 13 Dec 2022 00:00:00 + EST","quantity":30,"expirationDate":"Thu, 14 Dec 2023 00:00:00 EST","prescriptionNumber":"2720435","prescriptionName":"RALOXIFENE + HCL 60MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679761,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 15 Dec 2023 09:16:00 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-4165-02","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RALOXIFEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Tue, 13 Dec 2022 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825025,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720435","prescriptionName":"RALOXIFENE + HCL 60MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825025,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-4165-02","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679762,"sig":"TAKE + ONE CAPSULE BY MOUTH WEEKLY FOR 60 DAYS","orderedDate":"Sun, 11 Dec 2022 00:00:00 + EST","quantity":5,"expirationDate":"Tue, 12 Dec 2023 00:00:00 EST","prescriptionNumber":"2720436","prescriptionName":"RAMIPRIL + 1.25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679762,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 13 Dec 2023 14:54:24 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"61570-0110-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RAMIPRIL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679763,"sig":"TAKE + 1 TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 15 Dec 2022 00:00:00 + EST","quantity":4,"expirationDate":"Sat, 16 Dec 2023 00:00:00 EST","prescriptionNumber":"2720437","prescriptionName":"RAMIPRIL-GUPTA","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679763,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Sun, + 17 Dec 2023 15:24:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RAMIPRIL-GUPTA","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 15 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825026,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720437","prescriptionName":"RAMIPRIL-GUPTA","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825026,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Thu, 16 Feb 2023 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21679764,"sig":"DISSOLVE + 100MG MOUTH WEEKLY FOR 30 DAYS","orderedDate":"Tue, 13 Dec 2022 00:00:00 EST","quantity":4,"expirationDate":"Thu, + 14 Dec 2023 00:00:00 EST","prescriptionNumber":"2720438","prescriptionName":"RANITIDINE + HCL 150MG EFFER TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679764,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 15 Dec 2023 09:16:00 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0427-02","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RANITIDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 16 Feb 2023 11:46:30 EST","refillDate":"Tue, 13 Dec 2022 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21825027,"sig":null,"orderedDate":"Thu, + 16 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720438","prescriptionName":"RANITIDINE + HCL 150MG EFFER TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21825027,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0427-02","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 01 Mar 2023 19:49:25 EST","refillDate":"Fri, 24 Feb 2023 00:00:00 EST","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21836679,"sig":"TAKE + 25 BY MOUTH 1XD FOR 60 DAYS","orderedDate":"Fri, 24 Feb 2023 00:00:00 EST","quantity":30,"expirationDate":"Sun, + 25 Feb 2024 00:00:00 EST","prescriptionNumber":"2720187D","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836679,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720187C","divisionName":"DAYTON","modifiedDate":"Mon, 26 Feb 2024 + 13:56:36 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 01 Mar 2023 19:49:25 EST","refillDate":"Fri, 24 Feb 2023 00:00:00 EST","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21836680,"sig":"TAKE + 0.5ML BY MOUTH AFTER DINNER FOR 5 DAYS","orderedDate":"Fri, 24 Feb 2023 00:00:00 + EST","quantity":10,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"2720108B","prescriptionName":"BERNA + VACCINE CAP B/P","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836680,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"RENEWED + FROM RX # 2720108A","divisionName":"DAYTON","modifiedDate":"Mon, 26 Feb 2024 + 13:56:36 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VIVOTIF(TYPHOID)","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 10 Mar 2023 16:40:38 EST","refillDate":"Fri, 24 Feb 2023 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21836681,"sig":"APPLY + SMALL AMOUNT WEEKLY FOR 60 DAYS","orderedDate":"Fri, 24 Feb 2023 00:00:00 + EST","quantity":6,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"2720218C","prescriptionName":"ACYCLOVIR + 5% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836681,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720218B","divisionName":"DAYTON","modifiedDate":"Mon, 26 Feb 2024 + 13:56:36 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"64455-0993-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 10 Mar 2023 16:40:38 EST","refillDate":"Fri, 24 Feb 2023 00:00:00 EST","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21836682,"sig":"TAKE + TWO TABLETS BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Fri, 24 Feb 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"2720221D","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836682,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720221C","divisionName":"DAYTON","modifiedDate":"Mon, 26 Feb 2024 + 13:56:36 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 13 Mar 2023 17:24:10 EDT","refillDate":"Fri, 24 Feb 2023 00:00:00 EST","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21836683,"sig":"TAKE + 30 TABLETS BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Fri, + 24 Feb 2023 00:00:00 EST","quantity":30,"expirationDate":"Sun, 25 Feb 2024 + 00:00:00 EST","prescriptionNumber":"2720194C","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836683,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720194B","divisionName":"DAYTON","modifiedDate":"Mon, 26 Feb 2024 + 13:56:36 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 15 Mar 2023 17:27:00 EDT","refillDate":"Wed, 15 Mar 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21836684,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 90 DAYS --TAKE WITH FOOD TO DECREASE GI IRRITATION/AVOID + ANTACIDS--","orderedDate":"Fri, 24 Feb 2023 00:00:00 EST","quantity":30,"expirationDate":"Sun, + 25 Feb 2024 00:00:00 EST","prescriptionNumber":"2720200C","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836684,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720200B","divisionName":"DAYTON","modifiedDate":"Mon, 26 Feb 2024 + 13:56:36 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 12 Apr 2023 17:27:02 EDT","refillDate":"Wed, 12 Apr 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21836685,"sig":"TAKE + ONE TABLET BY MOUTH 1X DAILY FOR 30 DAYS","orderedDate":"Fri, 24 Feb 2023 + 00:00:00 EST","quantity":30,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"2720400A","prescriptionName":"AMOXAPINE + 150MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836685,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720400","divisionName":"DAYTON","modifiedDate":"Mon, 26 Feb 2024 + 13:56:36 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXAPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 28 Apr 2023 21:43:00 EDT","refillDate":"Fri, 28 Apr 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21836687,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Fri, 24 Feb 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"2720257B","prescriptionName":"BENZONATATE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836687,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720257A","divisionName":"DAYTON","modifiedDate":"Mon, 26 Feb 2024 + 13:56:36 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"50111-0851-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BENZONATATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 01 Mar 2023 19:48:26 EST","refillDate":"Tue, 07 Mar 2023 00:00:00 EST","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836728,"sig":"TAKE + 1/2 TEASPOONFUL (80 MGS/2.5 MLS) EVERY SIX (6) HOURS FOR 30 DAYS NOT MORE + THAN FOUR (4) GRAMS OF ACETAMINOPHEN PER DAY","orderedDate":"Fri, 24 Feb 2023 + 00:00:00 EST","quantity":4,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"3636713E","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836728,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636713D","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 160MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 15 Mar 2023 17:26:56 EDT","refillDate":"Mon, 10 Apr 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836756,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Fri, 24 Feb 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"3636747D","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836756,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636747C","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ADEFOVIR DIPIVOXIL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 15 Mar 2023 17:26:56 EDT","refillDate":"Mon, 10 Apr 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836757,"sig":"TAKE + ONE TABLET EVERY MORNING, 30 MINUTES BEFORE MEAL FOR 30 DAYS WITH FULL GLASS + OF WATER, ONLY. DON''T LIE DOWN, EAT, DRINK, OR TAKE MEDS FOR ONE-HALF (1/2) + HOUR.","orderedDate":"Fri, 24 Feb 2023 00:00:00 EST","quantity":30,"expirationDate":"Sun, + 25 Feb 2024 00:00:00 EST","prescriptionNumber":"3636748C","prescriptionName":"ALENDRONATE + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836757,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636748B","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0936-58","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 30 Mar 2023 15:56:48 EDT","refillDate":"Mon, 10 Apr 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836759,"sig":"TAKE + ONE TABLET AT BEDTIME FOR 30 DAYS","orderedDate":"Fri, 24 Feb 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"3636710D","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836759,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636710C","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMITRIPTYLINE HCL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 01 Mar 2023 19:48:26 EST","refillDate":"Tue, 07 Mar 2023 00:00:00 EST","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836760,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Fri, 24 Feb 2023 00:00:00 + EST","quantity":15,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"3636711C","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836760,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636711B","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMLODIPINE BESYLATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 23 Mar 2023 19:57:58 EDT","refillDate":"Mon, 10 Apr 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836761,"sig":"TAKE + 2G EVERY EIGHT (8) HOURS FOR 30 DAYS , AND FINISH ALL MEDICATION.","orderedDate":"Fri, + 24 Feb 2023 00:00:00 EST","quantity":4,"expirationDate":"Sun, 25 Feb 2024 + 00:00:00 EST","prescriptionNumber":"3636712C","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836761,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636712B","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN 250MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 23 Mar 2023 19:57:58 EDT","refillDate":"Mon, 10 Apr 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836762,"sig":"TAKE + ONE TABLET EVERY EVENING FOR 30 DAYS","orderedDate":"Fri, 24 Feb 2023 00:00:00 + EST","quantity":30,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"3636714C","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836762,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636714B","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ATORVASTATIN CALCIUM 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 28 Apr 2023 21:38:28 EDT","refillDate":"Thu, 04 May 2023 00:00:00 EDT","refillRemaining":6,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836763,"sig":"TAKE + ONE TABLET TWO (2) TIMES A DAY FOR 30 DAYS","orderedDate":"Fri, 24 Feb 2023 + 00:00:00 EST","quantity":60,"expirationDate":"Sun, 25 Feb 2024 00:00:00 EST","prescriptionNumber":"3636856B","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836763,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636856A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00004-1101-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CAPECITABINE 500MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 12 Apr 2023 17:26:35 EDT","refillDate":"Thu, 13 Apr 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836764,"sig":"APPLY + THIN LAYER TO AFFECTED AREA TO THE AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Fri, + 24 Feb 2023 00:00:00 EST","quantity":1,"expirationDate":"Sun, 25 Feb 2024 + 00:00:00 EST","prescriptionNumber":"3636867C","prescriptionName":"CASTOR OIL/PERUVIAN + BALSAM/TRYPSIN OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836764,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636867B","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00064-3900-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CASTOR OIL/PERUVIAN BALSAM/TRYPSIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 12 Apr 2023 17:27:02 EDT","refillDate":"Mon, 10 Apr 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22004690,"sig":"USE + 1 WEEKLY FOR 30 DAYS","orderedDate":"Mon, 13 Mar 2023 00:00:00 EDT","quantity":1,"expirationDate":"Wed, + 13 Mar 2024 00:00:00 EDT","prescriptionNumber":"2720476","prescriptionName":"ABSORBABLE + GELATIN SPONGE Sz 12-7 (12''s)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22004690,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Thu, + 14 Mar 2024 08:38:37 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00009-0315-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"GELATIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 13 Mar 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22004719,"sig":null,"orderedDate":"Mon, + 10 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720476","prescriptionName":"ABSORBABLE + GELATIN SPONGE Sz 12-7 (12''s)","dispensedDate":"Tue, 11 Apr 2023 00:00:00 + EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22004719,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00009-0315-03","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 06 Oct 2022 20:59:58 EDT","refillDate":"Thu, 06 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21297493,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 20 Sep 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, + 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720333A","prescriptionName":"LABETALOL + HCL 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21297493,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720333","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 15:45:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0346-43","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LABETALOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 12 Dec 2022 13:11:38 EST","refillDate":"Tue, 29 Nov 2022 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21530883,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 29 Nov 2022 00:00:00 + EST","quantity":30,"expirationDate":"Thu, 30 Nov 2023 00:00:00 EST","prescriptionNumber":"2720334A","prescriptionName":"LAMIVUDINE + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21530883,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720334","divisionName":"DAYTON","modifiedDate":"Fri, 01 Dec 2023 + 11:14:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LAMIVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Thu, + 15 Jun 2023 20:23:05 EDT","refillDate":"Sun, 26 Mar 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22050445,"sig":"TAKE + 1 CAPSULE TWO (2) TIMES A DAY FOR 30 DAYS TEST PATIENT INTRUCTIONS","orderedDate":"Sun, + 26 Mar 2023 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 26 Mar 2024 + 00:00:00 EDT","prescriptionNumber":"3636927","prescriptionName":"I SENSE OCU-S + CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22050445,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 26 Mar 2024 + 10:43:05 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"17478-0808-61","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 04252023","indicationForUseFlag":"0","category":"Rx Medication","orderableItem":"I + SENSE OCU-S","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 24 May 2023 12:56:23 EDT","refillDate":"Wed, 19 Apr 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22044715,"sig":"INJECT + 10ML INTRAVENEOUS USE WEEKLY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Sat, + 25 Mar 2023 00:00:00 EDT","quantity":3,"expirationDate":"Mon, 25 Mar 2024 + 00:00:00 EDT","prescriptionNumber":"2720488","prescriptionName":"LEUCOVORIN + CALCIUM 50MG INJ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22044715,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Tue, 26 Mar 2024 10:15:11 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00205-5330-92","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"LEUCOVORIN + CALCIUM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 25 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22044848,"sig":null,"orderedDate":"Wed, + 19 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720488","prescriptionName":"LEUCOVORIN + CALCIUM 50MG INJ","dispensedDate":"Wed, 19 Apr 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22044848,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00205-5330-92","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 02 Jun 2023 10:57:40 EDT","refillDate":"Wed, 19 Apr 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22044716,"sig":"INJECT + 20MG DAILY FOR 30 DAYS","orderedDate":"Thu, 30 Mar 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sat, + 30 Mar 2024 00:00:00 EDT","prescriptionNumber":"2720489","prescriptionName":"LEUPROLIDE + 1MG/0.2ML 2.8ML KIT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22044716,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 01 Apr 2024 11:30:38 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00300-3626-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LEUPROLIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 30 Mar 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22044849,"sig":null,"orderedDate":"Wed, + 19 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720489","prescriptionName":"LEUPROLIDE + 1MG/0.2ML 2.8ML KIT","dispensedDate":"Thu, 20 Apr 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0479","cmopNdcNumber":"00013264681","id":22044849,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720479","dispStatus":"Discontinued","ndc":"00300-3626-30","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 06 Jul 2023 10:12:45 EDT","refillDate":"Tue, 11 Jul 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22044770,"sig":"TAKE + 1 CAN BY SWISH AND SWALLOW WEEKLY FOR 30 DAYS","orderedDate":"Mon, 27 Mar + 2023 00:00:00 EDT","quantity":1,"expirationDate":"Wed, 27 Mar 2024 00:00:00 + EDT","prescriptionNumber":"3636925","prescriptionName":"LIDO-DIPHEN-ALUM-MAG + HYD SUSP 300ML (BT)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22044770,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Thu, 28 Mar 2024 16:59:03 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"COUMPOUNDED","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LIDO-DIPHEN-ALUM-MAG HYD SUSP ","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 06 Jul 2023 10:12:45 EDT","refillDate":"Mon, 27 Mar 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22302717,"sig":null,"orderedDate":"Tue, + 11 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636925","prescriptionName":"LIDO-DIPHEN-ALUM-MAG + HYD SUSP 300ML (BT)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22302717,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"COUMPOUNDED","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 27 Mar 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217209,"sig":null,"orderedDate":"Sat, + 10 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636925","prescriptionName":"LIDO-DIPHEN-ALUM-MAG + HYD SUSP 300ML (BT)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217209,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"COUMPOUNDED","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 27 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22044844,"sig":null,"orderedDate":"Fri, + 21 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636925","prescriptionName":"LIDO-DIPHEN-ALUM-MAG + HYD SUSP 300ML (BT)","dispensedDate":"Fri, 21 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22044844,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"COUMPOUNDED","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 10 May 2023 09:59:29 EDT","refillDate":"Thu, 18 May 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22044771,"sig":"APPLY + APPLICATION(S) WEEKLY FOR 30 DAYS","orderedDate":"Wed, 29 Mar 2023 00:00:00 + EDT","quantity":1,"expirationDate":"Fri, 29 Mar 2024 00:00:00 EDT","prescriptionNumber":"3636926","prescriptionName":"LIDOCAINE + 2.5/PRILOCAINE 2.5% CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22044771,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Mon, 01 Apr 2024 11:30:36 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00781-7058-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LIDOCAINE 2.5-PRILOCAINE 2.5% 30GM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 10 May 2023 09:59:29 EDT","refillDate":"Wed, 29 Mar 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22121274,"sig":null,"orderedDate":"Thu, + 18 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636926","prescriptionName":"LIDOCAINE + 2.5/PRILOCAINE 2.5% CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22121274,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00781-7058-03","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 29 Mar 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22044845,"sig":null,"orderedDate":"Fri, + 21 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636926","prescriptionName":"LIDOCAINE + 2.5/PRILOCAINE 2.5% CREAM","dispensedDate":"Sat, 22 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6926","cmopNdcNumber":"00113002239","id":22044845,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366926","dispStatus":"Expired","ndc":"00781-7058-03","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"OVAL","color":"WHITE","frontImprint":"L022","backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 23 Jan 2023 17:10:43 EST","refillDate":"Tue, 14 Feb 2023 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21679742,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS TAKE WITH FOOD","orderedDate":"Thu, 12 Jan + 2023 00:00:00 EST","quantity":30,"expirationDate":"Sat, 13 Jan 2024 00:00:00 + EST","prescriptionNumber":"3636691C","prescriptionName":"ALLOPURINOL 100MG + TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21679742,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636691B","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 28 Jun 2023 09:46:56 EDT","refillDate":null,"refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22225367,"sig":"TAKE + ONE TABLET EVERY SIX (6) HOURS FOR 30 DAYS","orderedDate":"Sat, 03 Jun 2023 + 00:00:00 EDT","quantity":120,"expirationDate":"Mon, 03 Jul 2023 00:00:00 EDT","prescriptionNumber":"3636939","prescriptionName":"FELBAMATE + 600MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22225367,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00037-0431-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"FELBAMATE 600MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 13 Oct 2022 18:50:25 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314359,"sig":"APPLY + 3OZ TO THE AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Sun, 28 Aug 2022 + 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 29 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636868","prescriptionName":"DRESSING,XEROFORM + 5IN X 9IN SMC#433605","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(868)636-6868","cmopNdcNumber":null,"id":21314359,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"8686366868","dispStatus":"Discontinued","ndc":"08884-4371-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"XEROFORM 5IN X 9IN SMC#433605","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 13 Oct 2022 18:50:25 EDT","refillDate":"Sun, 28 Aug 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430396,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636868","prescriptionName":"DRESSING,XEROFORM + 5IN X 9IN SMC#433605","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430396,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"08884-4371-00","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 28 Aug 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21314687,"sig":null,"orderedDate":"Sat, + 17 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636868","prescriptionName":"DRESSING,XEROFORM + 5IN X 9IN SMC#433605","dispensedDate":"Sun, 25 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(868)636-6868","cmopNdcNumber":null,"id":21314687,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"8686366868","dispStatus":"Discontinued","ndc":"08884-4371-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 23 Jun 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22225375,"sig":"APPLY + 3OZ TO THE AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Fri, 23 Jun 2023 + 00:00:00 EDT","quantity":1,"expirationDate":"Sun, 23 Jul 2023 00:00:00 EDT","prescriptionNumber":"3636868A","prescriptionName":"DRESSING,XEROFORM + 5IN X 9IN SMC#433605","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22225375,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636868","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"08884-4371-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"XEROFORM 5IN X 9IN SMC#433605","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 24 Jul 2023 11:48:49 EDT","refillDate":"Fri, 04 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22332759,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Fri, 14 Jul 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Sun, 14 Jul 2024 00:00:00 EDT","prescriptionNumber":"2720542","prescriptionName":"ONDANSETRON + 8 MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22332759,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 15 Jul 2024 11:00:55 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-9447-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ONDANSETRON","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 24 Jul 2023 11:48:49 EDT","refillDate":"Sat, 15 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22332828,"sig":null,"orderedDate":"Fri, + 04 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720542","prescriptionName":"ONDANSETRON + 8 MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22332828,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-9447-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Tue, + 20 Jun 2023 17:12:20 EDT","refillDate":"Tue, 20 Jun 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217097,"sig":"TAKE + ONE TABLET BY MOUTH EVERY EIGHT (8) HOURS FOR 30 DAYS TEST INDICATION 06202023 + TEST PATIENT INST","orderedDate":"Sun, 21 May 2023 00:00:00 EDT","quantity":90,"expirationDate":"Tue, + 21 May 2024 00:00:00 EDT","prescriptionNumber":"3636935","prescriptionName":"FAMCICLOVIR + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217097,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 21 May 2024 + 11:23:52 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00078-0368-15","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 06202023","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"FAMCICLOVIR + 500MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 20 Jun 2023 17:12:20 EDT","refillDate":"Wed, 21 Jun 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217098,"sig":"TAKE + ONE TABLET BY MOUTH EVERY TWELVE (12) HOURS FOR 30 DAYS TEST INDICATION TEST + PATIENT INSTRUCTIONS","orderedDate":"Wed, 31 May 2023 00:00:00 EDT","quantity":60,"expirationDate":"Fri, + 31 May 2024 00:00:00 EDT","prescriptionNumber":"3636936","prescriptionName":"FAMOTIDINE + 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217098,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Mon, 03 Jun 2024 17:08:46 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0963-87","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"FAMOTIDINE + 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 21 Jun 2023 15:18:00 EDT","refillDate":"Wed, 21 Jun 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22217099,"sig":"1 + MISCORAL WEEKLY FOR 30 DAYS","orderedDate":"Fri, 26 May 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sun, + 25 Jun 2023 00:00:00 EDT","prescriptionNumber":"3636937","prescriptionName":"FEEDING + BAG,1000ML KENDAL #8884773600","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22217099,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"08884-7736-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"FEEDING 1000ML KENDALL 773600","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 11 Jun 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362034,"sig":"TAKE + ONE TABLET EVERY SIX (6) HOURS, IF NEEDED FOR 30 DAYS NOT MORE THAN FOUR (4) + GRAMS OF ACETAMINOPHEN PER DAY (8 TABLETS).","orderedDate":"Sat, 08 May 2021 + 00:00:00 EDT","quantity":1,"expirationDate":"Mon, 09 May 2022 00:00:00 EDT","prescriptionNumber":"3636696","prescriptionName":"ACETAMINOPHEN + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362034,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0489-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 500MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 08 May 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362035,"sig":null,"orderedDate":"Fri, + 11 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636696","prescriptionName":"ACETAMINOPHEN + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362035,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0489-93","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 15 Jul 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362036,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 09 May 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Tue, 10 May 2022 00:00:00 EDT","prescriptionNumber":"3636697","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362036,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ADEFOVIR DIPIVOXIL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 09 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362038,"sig":null,"orderedDate":"Thu, + 15 Jul 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636697","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362038,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 09 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362037,"sig":null,"orderedDate":"Fri, + 11 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636697","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362037,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 30 Nov 2021 00:00:00 EST","refillRemaining":7,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362039,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 09 May 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Tue, 10 May 2022 00:00:00 EDT","prescriptionNumber":"3636698","prescriptionName":"DAPSONE + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362039,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49938-0101-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DAPSONE 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 09 May 2021 00:00:00 EDT","refillRemaining":7,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362043,"sig":null,"orderedDate":"Tue, + 30 Nov 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636698","prescriptionName":"DAPSONE + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362043,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49938-0101-01","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 09 May 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362042,"sig":null,"orderedDate":"Thu, + 30 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636698","prescriptionName":"DAPSONE + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362042,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49938-0101-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 09 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362041,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636698","prescriptionName":"DAPSONE + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362041,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49938-0101-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 09 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362040,"sig":null,"orderedDate":"Fri, + 11 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636698","prescriptionName":"DAPSONE + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362040,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49938-0101-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 01 Sep 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362044,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Mon, 10 May 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Wed, 11 May 2022 00:00:00 EDT","prescriptionNumber":"3636699","prescriptionName":"ERLOTINIB + HCL 150MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362044,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50242-0064-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ERLOTINIB HCL 150MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362046,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636699","prescriptionName":"ERLOTINIB + HCL 150MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362046,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50242-0064-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362045,"sig":null,"orderedDate":"Fri, + 11 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636699","prescriptionName":"ERLOTINIB + HCL 150MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362045,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50242-0064-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 17 Jan 2022 00:00:00 EST","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362047,"sig":"INJECT + 250 MILLIGRAMS IV PIGGYBACK EVERY DAY FOR 30 DAYS","orderedDate":"Mon, 10 + May 2021 00:00:00 EDT","quantity":1,"expirationDate":"Wed, 11 May 2022 00:00:00 + EDT","prescriptionNumber":"3636700","prescriptionName":"ERYTHROMYCIN LACTOBIONATE + 500MG INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362047,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00074-6482-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ERYTHROMYCIN LACTOBIONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362050,"sig":null,"orderedDate":"Mon, + 17 Jan 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636700","prescriptionName":"ERYTHROMYCIN + LACTOBIONATE 500MG INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362050,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00074-6482-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362049,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636700","prescriptionName":"ERYTHROMYCIN + LACTOBIONATE 500MG INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362049,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00074-6482-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362048,"sig":null,"orderedDate":"Fri, + 11 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636700","prescriptionName":"ERYTHROMYCIN + LACTOBIONATE 500MG INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362048,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00074-6482-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 15 Apr 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361982,"sig":"INJECT + 50MCG INTRAVENOUS EVENING FOR 5 DAYS TESTING","orderedDate":"Wed, 15 Apr 2020 + 00:00:00 EDT","quantity":10,"expirationDate":"Fri, 16 Apr 2021 00:00:00 EDT","prescriptionNumber":"3636565","prescriptionName":"SARGRAMOSTIM + 500MCG LYPH 1ML INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361982,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50419-0595-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SARGRAMOSTIM (GM-CSF)","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 15 Apr 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361983,"sig":"TAKE + ONE-HALF TABLET BY MOUTH AFTER DINNER FOR 5 DAYS TEST","orderedDate":"Wed, + 15 Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Fri, 16 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"3636566","prescriptionName":"TORSEMIDE + 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361983,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00054-0077-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"TORSEMIDE 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 27 Sep 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361984,"sig":"TAKE + ONE TABLET BY MOUTH EVERY DAY FOR 5 DAYS TEST","orderedDate":"Sat, 18 Apr + 2020 00:00:00 EDT","quantity":5,"expirationDate":"Mon, 19 Apr 2021 00:00:00 + EDT","prescriptionNumber":"3636567","prescriptionName":"SIROLIMUS 1MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361984,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00008-1041-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SIROLIMUS 1MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 18 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361985,"sig":null,"orderedDate":"Sun, + 27 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636567","prescriptionName":"SIROLIMUS + 1MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361985,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00008-1041-05","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 27 Sep 2020 00:00:00 EDT","refillRemaining":7,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361986,"sig":"TAKE + 10MG BY MOUTH MORNING FOR 5 DAYS TEST","orderedDate":"Mon, 20 Apr 2020 00:00:00 + EDT","quantity":10,"expirationDate":"Wed, 21 Apr 2021 00:00:00 EDT","prescriptionNumber":"3636568","prescriptionName":"CREON + 10 CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361986,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"testing + Async changes","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb + 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00032-1210-07","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PANCRELIPASE 33200/10000/37500UNT","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 20 Apr 2020 00:00:00 EDT","refillRemaining":7,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361990,"sig":null,"orderedDate":"Sun, + 27 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636568","prescriptionName":"CREON + 10 CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361990,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00032-1210-07","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 20 Apr 2020 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361989,"sig":null,"orderedDate":"Mon, + 24 Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636568","prescriptionName":"CREON + 10 CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361989,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00032-1210-07","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 20 Apr 2020 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361988,"sig":null,"orderedDate":"Thu, + 06 Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636568","prescriptionName":"CREON + 10 CAP","dispensedDate":"Fri, 07 Aug 2020 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361988,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00032-1210-07","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 20 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361987,"sig":null,"orderedDate":"Mon, + 27 Apr 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636568","prescriptionName":"CREON + 10 CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361987,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00032-1210-07","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 17 Apr 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361991,"sig":"TAKE + ONE TABLET BY MOUTH TWO (2) TIMES A DAY FOR 5 DAYS TESTING ASYNC CHANGES","orderedDate":"Fri, + 17 Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Sun, 18 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"3636569","prescriptionName":"RANITIDINE + HCL 150MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361991,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0544-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RANITIDINE HCL 150MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 27 Sep 2020 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361992,"sig":"TAKE + ONE TABLET BY MOUTH TWO (2) TIMES A DAY FOR 5 DAYS TEST","orderedDate":"Sun, + 19 Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Tue, 20 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"3636570","prescriptionName":"ABACAVIR + SULFATE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361992,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0661-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ABACAVIR SULFATE 300MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 19 Apr 2020 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361994,"sig":null,"orderedDate":"Sun, + 27 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636570","prescriptionName":"ABACAVIR + SULFATE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361994,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0661-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 19 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361993,"sig":null,"orderedDate":"Mon, + 24 Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636570","prescriptionName":"ABACAVIR + SULFATE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361993,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0661-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 27 Sep 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361995,"sig":"TAKE + ONE TABLET BY MOUTH TWO (2) TIMES A DAY FOR 5 DAYS TEST","orderedDate":"Fri, + 17 Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Sun, 18 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"3636571","prescriptionName":"NEVIRAPINE + 200MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361995,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"Async + refresh test","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb + 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00597-0046-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NEVIRAPINE 200MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 17 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361996,"sig":null,"orderedDate":"Sun, + 27 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636571","prescriptionName":"NEVIRAPINE + 200MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361996,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00597-0046-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 27 Sep 2020 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361997,"sig":"TAKE + ONE TABLET BY MOUTH EVERY DAY FOR 5 DAYS TEST","orderedDate":"Mon, 20 Apr + 2020 00:00:00 EDT","quantity":10,"expirationDate":"Wed, 21 Apr 2021 00:00:00 + EDT","prescriptionNumber":"3636572","prescriptionName":"KETOCONAZOLE 200MG + TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361997,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"51672-4026-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"KETOCONAZOLE 200MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 20 Apr 2020 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362000,"sig":null,"orderedDate":"Sun, + 27 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636572","prescriptionName":"KETOCONAZOLE + 200MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362000,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"51672-4026-06","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 20 Apr 2020 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361999,"sig":null,"orderedDate":"Mon, + 24 Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636572","prescriptionName":"KETOCONAZOLE + 200MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361999,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"51672-4026-06","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 20 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22361998,"sig":null,"orderedDate":"Thu, + 06 Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636572","prescriptionName":"KETOCONAZOLE + 200MG TAB","dispensedDate":"Fri, 07 Aug 2020 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22361998,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"51672-4026-06","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 27 Sep 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362001,"sig":"PLACE + 15ML OPTHALMIC MORNING FOR 5 DAYS TESTING ASYNC REFRESH","orderedDate":"Mon, + 20 Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Wed, 21 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"3636573","prescriptionName":"DIPIVEFRIN + HCL 0.1% OPH SOLN","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362001,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"24208-0540-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DIPIVEFRIN HCL 0.1% 10ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 20 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362002,"sig":null,"orderedDate":"Sun, + 27 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636573","prescriptionName":"DIPIVEFRIN + HCL 0.1% OPH SOLN","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362002,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"24208-0540-10","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 17 Apr 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362003,"sig":"TAKE + ONE TABLET BY MOUTH EVERY TWELVE (12) HOURS FOR 5 DAYS TESTING","orderedDate":"Fri, + 17 Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Sun, 18 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"3636574","prescriptionName":"PINDOLOL + 5MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362003,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-4217-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PINDOLOL 5MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 08 Apr 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362004,"sig":"TAKE + ONE TABLET BY MOUTH EVERY TWELVE (12) HOURS FOR 5 DAYS TESTING","orderedDate":"Wed, + 08 Apr 2020 00:00:00 EDT","quantity":15,"expirationDate":"Fri, 09 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"3636575","prescriptionName":"TRIMETHOPRIM + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362004,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00591-5571-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"TRIMETHOPRIM 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 14 Apr 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362005,"sig":"TAKE + ONE-HALF TABLET BY MOUTH MORNING FOR 5 DAYS TEST","orderedDate":"Tue, 14 Apr + 2020 00:00:00 EDT","quantity":10,"expirationDate":"Thu, 15 Apr 2021 00:00:00 + EDT","prescriptionNumber":"3636576","prescriptionName":"VALGANCICLOVIR HCL + 450MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362005,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00004-0038-22","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VALGANCICLOVIR HCL 450MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 28 Nov 2020 00:00:00 EST","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362006,"sig":"ONE + TABLET MOUTH AFTER DINNER FOR 5 DAYS TEST","orderedDate":"Thu, 16 Apr 2020 + 00:00:00 EDT","quantity":10,"expirationDate":"Sat, 17 Apr 2021 00:00:00 EDT","prescriptionNumber":"3636577","prescriptionName":"ONDANSETRON + 8MG ORAL DISINTEGRATING TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362006,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"testing","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0570-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ONDANSETRON 8MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 16 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362007,"sig":null,"orderedDate":"Sat, + 28 Nov 2020 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636577","prescriptionName":"ONDANSETRON + 8MG ORAL DISINTEGRATING TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362007,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0570-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 28 Nov 2020 00:00:00 EST","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362008,"sig":"TAKE + 5ML BY MOUTH EVERY DAY FOR 5 DAYS TEST","orderedDate":"Thu, 16 Apr 2020 00:00:00 + EDT","quantity":10,"expirationDate":"Sat, 17 Apr 2021 00:00:00 EDT","prescriptionNumber":"3636578","prescriptionName":"DILTIAZEM + (INWOOD) 120MG SA CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362008,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"testing","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00258-3687-90","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DILTIAZEM (INWOOD) 120MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 16 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362009,"sig":null,"orderedDate":"Sat, + 28 Nov 2020 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636578","prescriptionName":"DILTIAZEM + (INWOOD) 120MG SA CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362009,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00258-3687-90","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 16 Apr 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362010,"sig":"TAKE + ONE TABLET BY MOUTH EVERY SIX (6) HOURS FOR 5 DAYS TESTING","orderedDate":"Thu, + 16 Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Sat, 17 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"3636579","prescriptionName":"PROMETHAZINE + HCL 25MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362010,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00591-5307-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PROMETHAZINE HCL 25MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 01 Sep 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362011,"sig":"TAKE + ONE TABLET BY MOUTH EVERY DAY FOR 5 DAYS TEST","orderedDate":"Tue, 20 Oct + 2020 00:00:00 EDT","quantity":10,"expirationDate":"Thu, 21 Oct 2021 00:00:00 + EDT","prescriptionNumber":"3636659","prescriptionName":"RESERPINE 0.1MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362011,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"TEST","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00185-0032-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RESERPINE 0.1MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 22 Oct 2020 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362014,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636659","prescriptionName":"RESERPINE + 0.1MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362014,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00185-0032-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 22 Oct 2020 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362013,"sig":null,"orderedDate":"Fri, + 11 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636659","prescriptionName":"RESERPINE + 0.1MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362013,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00185-0032-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 22 Oct 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362012,"sig":null,"orderedDate":"Sat, + 28 Nov 2020 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636659","prescriptionName":"RESERPINE + 0.1MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362012,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00185-0032-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 21 Sep 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362015,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS TAKE WITH FOOD","orderedDate":"Mon, 03 May + 2021 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 04 May 2022 00:00:00 + EDT","prescriptionNumber":"3636691","prescriptionName":"ALLOPURINOL 100MG + TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362015,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 03 May 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362018,"sig":null,"orderedDate":"Tue, + 21 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636691","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":"Mon, 06 Sep 2021 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362018,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 03 May 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362017,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636691","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362017,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 03 May 2021 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362016,"sig":null,"orderedDate":"Thu, + 15 Jul 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636691","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362016,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 11 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362019,"sig":"TAKE + 1G EVERY DAY FOR 30 DAYS","orderedDate":"Mon, 03 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Wed, + 04 May 2022 00:00:00 EDT","prescriptionNumber":"3636692","prescriptionName":"ACITRETIN + 10MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362019,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"63032-0090-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN 10MG ","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 03 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362020,"sig":null,"orderedDate":"Fri, + 11 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636692","prescriptionName":"ACITRETIN + 10MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362020,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"63032-0090-25","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 15 Jul 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362021,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS WITH FULL GLASS OF WATER, ONLY. DON''T + LIE DOWN, EAT, DRINK, OR TAKE MEDS FOR ONE-HALF (1/2) HOUR.","orderedDate":"Wed, + 05 May 2021 00:00:00 EDT","quantity":15,"expirationDate":"Fri, 06 May 2022 + 00:00:00 EDT","prescriptionNumber":"3636693","prescriptionName":"ALENDRONATE + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362021,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0936-58","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 05 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362022,"sig":null,"orderedDate":"Thu, + 15 Jul 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636693","prescriptionName":"ALENDRONATE + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362022,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0936-58","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 05 Mar 2022 00:00:00 EST","refillRemaining":6,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362023,"sig":"TAKE + ONE TABLET EVERY TWELVE (12) HOURS FOR 30 DAYS","orderedDate":"Thu, 06 May + 2021 00:00:00 EDT","quantity":60,"expirationDate":"Sat, 07 May 2022 00:00:00 + EDT","prescriptionNumber":"3636694","prescriptionName":"ZAFIRLUKAST 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362023,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0402-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZAFIRLUKAST 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 May 2021 00:00:00 EDT","refillRemaining":6,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362028,"sig":null,"orderedDate":"Sat, + 05 Mar 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636694","prescriptionName":"ZAFIRLUKAST + 20MG TAB","dispensedDate":"Mon, 25 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362028,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0402-60","reason":null,"prescriptionNumberIndex":"RF5","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 May 2021 00:00:00 EDT","refillRemaining":7,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362027,"sig":null,"orderedDate":"Thu, + 16 Dec 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636694","prescriptionName":"ZAFIRLUKAST + 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362027,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0402-60","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 May 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362026,"sig":null,"orderedDate":"Tue, + 12 Oct 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636694","prescriptionName":"ZAFIRLUKAST + 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362026,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0402-60","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362025,"sig":null,"orderedDate":"Wed, + 22 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636694","prescriptionName":"ZAFIRLUKAST + 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362025,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0402-60","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362024,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636694","prescriptionName":"ZAFIRLUKAST + 20MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362024,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0402-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 20 Oct 2021 00:00:00 EDT","refillRemaining":7,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362029,"sig":"TAKE + ONE CAPSULE AT BEDTIME FOR 30 DAYS","orderedDate":"Thu, 06 May 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Sat, 07 May 2022 00:00:00 EDT","prescriptionNumber":"3636695","prescriptionName":"DOXEPIN + HCL 100MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362029,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0221-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DOXEPIN HCL 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 May 2021 00:00:00 EDT","refillRemaining":7,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362033,"sig":null,"orderedDate":"Wed, + 20 Oct 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636695","prescriptionName":"DOXEPIN + HCL 100MG CAP","dispensedDate":"Wed, 20 Oct 2021 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362033,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0221-01","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 May 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362032,"sig":null,"orderedDate":"Thu, + 30 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636695","prescriptionName":"DOXEPIN + HCL 100MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362032,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0221-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362031,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636695","prescriptionName":"DOXEPIN + HCL 100MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362031,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0221-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362030,"sig":null,"orderedDate":"Fri, + 11 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636695","prescriptionName":"DOXEPIN + HCL 100MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362030,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0221-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 22 Mar 2022 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362051,"sig":"TAKE + ONE TABLET EVERY TWELVE (12) HOURS FOR 30 DAYS","orderedDate":"Tue, 11 May + 2021 00:00:00 EDT","quantity":60,"expirationDate":"Thu, 12 May 2022 00:00:00 + EDT","prescriptionNumber":"3636701","prescriptionName":"NORFLOXACIN 400MG + TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362051,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0705-68","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NORFLOXACIN 400MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 11 May 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362054,"sig":null,"orderedDate":"Tue, + 22 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636701","prescriptionName":"NORFLOXACIN + 400MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362054,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0705-68","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 11 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362053,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636701","prescriptionName":"NORFLOXACIN + 400MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362053,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0705-68","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 11 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362052,"sig":null,"orderedDate":"Fri, + 11 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636701","prescriptionName":"NORFLOXACIN + 400MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362052,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0705-68","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 11 May 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362055,"sig":"INJECT + 6 MILLIGRAMS UNDER THE SKIN ONCE FOR 10 DAYS","orderedDate":"Tue, 11 May 2021 + 00:00:00 EDT","quantity":10,"expirationDate":"Thu, 10 Jun 2021 00:00:00 EDT","prescriptionNumber":"3636702","prescriptionName":"PEGFILGRASTIM + 10MG/ML (6MG) 0.6ML SYR","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362055,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"55513-0190-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PEGFILGRASTIM 6MG/0.6ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 28 Sep 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362056,"sig":"INJECT + 1G INTRAVENOUS EVERY DAY FOR 30 DAYS","orderedDate":"Thu, 13 May 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Sat, 14 May 2022 00:00:00 EDT","prescriptionNumber":"3636703","prescriptionName":"SARGRAMOSTIM + 500MCG LYPH 1ML INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362056,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50419-0595-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SARGRAMOSTIM (GM-CSF)","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 13 May 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362059,"sig":null,"orderedDate":"Tue, + 28 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636703","prescriptionName":"SARGRAMOSTIM + 500MCG LYPH 1ML INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362059,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50419-0595-05","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 13 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362058,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636703","prescriptionName":"SARGRAMOSTIM + 500MCG LYPH 1ML INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362058,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50419-0595-05","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 13 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362057,"sig":null,"orderedDate":"Fri, + 11 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636703","prescriptionName":"SARGRAMOSTIM + 500MCG LYPH 1ML INJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362057,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50419-0595-05","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 27 Oct 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362060,"sig":"TAKE + ONE TABLET AT BEDTIME FOR 30 DAYS","orderedDate":"Tue, 18 May 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 19 May 2022 00:00:00 EDT","prescriptionNumber":"3636710","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362060,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMITRIPTYLINE HCL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 18 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362062,"sig":null,"orderedDate":"Wed, + 27 Oct 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636710","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362062,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 18 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362061,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636710","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362061,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 01 Sep 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362063,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 19 May 2021 00:00:00 + EDT","quantity":15,"expirationDate":"Fri, 20 May 2022 00:00:00 EDT","prescriptionNumber":"3636711","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362063,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMLODIPINE BESYLATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 19 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362064,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362064,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 20 Oct 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362065,"sig":"TAKE + 2G EVERY EIGHT (8) HOURS FOR 30 DAYS , AND FINISH ALL MEDICATION.","orderedDate":"Sun, + 23 May 2021 00:00:00 EDT","quantity":4,"expirationDate":"Tue, 24 May 2022 + 00:00:00 EDT","prescriptionNumber":"3636712","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362065,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN 250MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 23 May 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362068,"sig":null,"orderedDate":"Wed, + 20 Oct 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636712","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362068,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 23 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362067,"sig":null,"orderedDate":"Thu, + 30 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636712","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362067,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 23 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362066,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636712","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362066,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 14 May 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362170,"sig":"TAKE + ONE-HALF TABLET BY MOUTH DAILY FOR 30 DAYS --TO THIN BLOOD--","orderedDate":"Sat, + 14 May 2022 00:00:00 EDT","quantity":30,"expirationDate":"Mon, 13 Jun 2022 + 00:00:00 EDT","prescriptionNumber":"2720341","prescriptionName":"WARFARIN + (COUMADIN) NA 10MG WHITE TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362170,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00056-0174-75","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"WARFARIN 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 14 Jul 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362069,"sig":"TAKE + 1/2 TEASPOONFUL (80 MGS/2.5 MLS) EVERY SIX (6) HOURS FOR 30 DAYS NOT MORE + THAN FOUR (4) GRAMS OF ACETAMINOPHEN PER DAY","orderedDate":"Tue, 25 May 2021 + 00:00:00 EDT","quantity":4,"expirationDate":"Thu, 26 May 2022 00:00:00 EDT","prescriptionNumber":"3636713","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362069,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 160MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 25 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362071,"sig":null,"orderedDate":"Wed, + 14 Jul 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636713","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362071,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 25 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362070,"sig":null,"orderedDate":"Wed, + 23 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636713","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362070,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 20 Oct 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362072,"sig":"TAKE + ONE TABLET EVERY EVENING FOR 30 DAYS","orderedDate":"Fri, 28 May 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Sun, 29 May 2022 00:00:00 EDT","prescriptionNumber":"3636714","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362072,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ATORVASTATIN CALCIUM 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 28 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362074,"sig":null,"orderedDate":"Wed, + 20 Oct 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636714","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362074,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 28 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362073,"sig":null,"orderedDate":"Thu, + 30 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636714","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362073,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":null,"refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362075,"sig":"TAKE + ONE TABLET EVERY SIX (6) HOURS, IF NEEDED FOR 30 DAYS NOT MORE THAN FOUR (4) + GRAMS OF ACETAMINOPHEN PER DAY (8 TABLETS).","orderedDate":"Tue, 21 Sep 2021 + 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 21 Oct 2021 00:00:00 EDT","prescriptionNumber":"3636745","prescriptionName":"ACETAMINOPHEN + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362075,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0489-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 500MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 22 Sep 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362076,"sig":"TAKE + 1MG EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 21 Sep 2021 00:00:00 EDT","quantity":30,"expirationDate":"Thu, + 21 Oct 2021 00:00:00 EDT","prescriptionNumber":"3636746","prescriptionName":"ACITRETIN + 10MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362076,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"63032-0090-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN 10MG ","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":null,"refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362077,"sig":"TAKE + ONE TABLET EVERY SIX (6) HOURS, IF NEEDED FOR 30 DAYS NOT MORE THAN FOUR (4) + GRAMS OF ACETAMINOPHEN PER DAY (8 TABLETS).","orderedDate":"Wed, 27 Oct 2021 + 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 26 Nov 2021 00:00:00 EST","prescriptionNumber":"3636745A","prescriptionName":"ACETAMINOPHEN + 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362077,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636745","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"51111-0489-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 500MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 15 Nov 2021 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22362078,"sig":"TAKE + 1MG EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 27 Oct 2021 00:00:00 EDT","quantity":30,"expirationDate":"Fri, + 26 Nov 2021 00:00:00 EST","prescriptionNumber":"3636746A","prescriptionName":"ACITRETIN + 10MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362078,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636746","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:50 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"63032-0090-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN 10MG ","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 23 Mar 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362082,"sig":"TAKE + ONE TABLET BY MOUTH AFTER LUNCH FOR 5 DAYS TEST","orderedDate":"Mon, 23 Mar + 2020 00:00:00 EDT","quantity":10,"expirationDate":"Wed, 24 Mar 2021 00:00:00 + EDT","prescriptionNumber":"2719917","prescriptionName":"DAPSONE 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362082,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49938-0101-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DAPSONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 16 Mar 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362083,"sig":"TAKE + ONE TABLET BY MOUTH AFTER DINNER FOR 5 DAYS --TAKE WITH FOOD TO DECREASE GI + UPSET--","orderedDate":"Mon, 16 Mar 2020 00:00:00 EDT","quantity":15,"expirationDate":"Wed, + 17 Mar 2021 00:00:00 EDT","prescriptionNumber":"2719918","prescriptionName":"CYPROHEPTADINE + HCL 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362083,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"testing","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0062-68","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CYPROHEPTADINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 20 Mar 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362084,"sig":"TAKE + ONE-HALF TABLET BY MOUTH AFTER DINNER FOR 5 DAYS TEST","orderedDate":"Fri, + 20 Mar 2020 00:00:00 EDT","quantity":10,"expirationDate":"Sun, 21 Mar 2021 + 00:00:00 EDT","prescriptionNumber":"2719919","prescriptionName":"RISPERIDONE + 1MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362084,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"testing","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"50458-0300-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"RISPERIDONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 21 Mar 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362085,"sig":"TAKE + ONE TABLET BY MOUTH AFTER LUNCH FOR 5 DAYS TEST","orderedDate":"Sat, 21 Mar + 2020 00:00:00 EDT","quantity":10,"expirationDate":"Mon, 22 Mar 2021 00:00:00 + EDT","prescriptionNumber":"2719920","prescriptionName":"VENLAFAXINE HCL 25MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362085,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"testing","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00008-0701-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VENLAFAXINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 03 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362086,"sig":"TAKE + ONE TABLET BY MOUTH AFTER LUNCH FOR 5 DAYS TESTING","orderedDate":"Tue, 17 + Mar 2020 00:00:00 EDT","quantity":10,"expirationDate":"Thu, 18 Mar 2021 00:00:00 + EDT","prescriptionNumber":"2719921","prescriptionName":"IMATINIB MESYLATE + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362086,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0401-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"IMATINIB","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 17 Mar 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362087,"sig":null,"orderedDate":"Fri, + 03 Apr 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719921","prescriptionName":"IMATINIB + MESYLATE 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362087,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0401-05","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 31 Mar 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362088,"sig":"TAKE + 250MG BY MOUTH AFTER DINNER FOR 5 DAYS --TAKE WITH FOOD TO DECREASE GI DISTRESS--","orderedDate":"Tue, + 31 Mar 2020 00:00:00 EDT","quantity":10,"expirationDate":"Thu, 01 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"2719937","prescriptionName":"ERYTHROMYCIN + 250MG EC TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362088,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"testing","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00044-0207-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ERYTHROMYCIN BASE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 18 Aug 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362089,"sig":"TAKE + ONE CAPSULE BY MOUTH AFTER LUNCH FOR 5 DAYS TEST","orderedDate":"Tue, 31 Mar + 2020 00:00:00 EDT","quantity":15,"expirationDate":"Thu, 01 Apr 2021 00:00:00 + EDT","prescriptionNumber":"2719938","prescriptionName":"ACEBUTOLOL CAPSULES + 200MG","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362089,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0587-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACEBUTOLOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 31 Mar 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362090,"sig":null,"orderedDate":"Tue, + 18 Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719938","prescriptionName":"ACEBUTOLOL + CAPSULES 200MG","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362090,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0587-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 31 Mar 2020 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362091,"sig":"TAKE + ONE CAPSULE BY MOUTH AFTER DINNER FOR 5 DAYS TEST","orderedDate":"Tue, 31 + Mar 2020 00:00:00 EDT","quantity":10,"expirationDate":"Thu, 01 Apr 2021 00:00:00 + EDT","prescriptionNumber":"2719939","prescriptionName":"TERAZOSIN HCL 2MG + CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362091,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00781-2052-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"TERAZOSIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 28 Aug 2020 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362092,"sig":"INJECT + 5ML IVP AFTER DINNER FOR 5 DAYS TEST","orderedDate":"Sun, 19 Apr 2020 00:00:00 + EDT","quantity":10,"expirationDate":"Tue, 20 Apr 2021 00:00:00 EDT","prescriptionNumber":"2719962","prescriptionName":"VERAPAMIL + 5MG/2ML INJ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362092,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00025-1853-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VERAPAMIL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 19 Apr 2020 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362094,"sig":null,"orderedDate":"Fri, + 28 Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719962","prescriptionName":"VERAPAMIL + 5MG/2ML INJ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362094,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00025-1853-10","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 19 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362093,"sig":null,"orderedDate":"Wed, + 05 Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719962","prescriptionName":"VERAPAMIL + 5MG/2ML INJ","dispensedDate":"Thu, 06 Aug 2020 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362093,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00025-1853-10","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 15 Sep 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362095,"sig":"TAKE + ONE TABLET BY MOUTH MORNING FOR 5 DAYS TEST","orderedDate":"Sun, 19 Apr 2020 + 00:00:00 EDT","quantity":10,"expirationDate":"Tue, 20 Apr 2021 00:00:00 EDT","prescriptionNumber":"2719963","prescriptionName":"IVERMECTIN + 3MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362095,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"testing","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0032-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"IVERMECTIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 19 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362096,"sig":null,"orderedDate":"Tue, + 15 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719963","prescriptionName":"IVERMECTIN + 3MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362096,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0032-20","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 28 Oct 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362097,"sig":"TAKE + 10ML BY MOUTH AFTER LUNCH FOR 5 DAYS --TAKE WITH FOOD/DO NOT CRUSH OR CHEW--","orderedDate":"Fri, + 17 Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Sun, 18 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"2719964","prescriptionName":"AMYLASE/LIPASE/PROTEASE + 30-8-30 CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362097,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00052-0381-95","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PANCRELIPASE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 17 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362098,"sig":null,"orderedDate":"Wed, + 28 Oct 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719964","prescriptionName":"AMYLASE/LIPASE/PROTEASE + 30-8-30 CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362098,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00052-0381-95","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 01 Sep 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362099,"sig":"TAKE + ONE TABLET BY MOUTH AFTER DINNER FOR 5 DAYS --KEEP REFRIGERATED AT ALL TIMES--","orderedDate":"Fri, + 17 Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Sun, 18 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"2719965","prescriptionName":"CHLORAMBUCIL + 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362099,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0635-35","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CHLORAMBUCIL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 17 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362100,"sig":null,"orderedDate":"Tue, + 01 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719965","prescriptionName":"CHLORAMBUCIL + 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362100,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0635-35","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 29 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362101,"sig":"TAKE + ONE TABLET BY MOUTH TWICE A DAY FOR 5 DAYS TESTING","orderedDate":"Sat, 18 + Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Mon, 19 Apr 2021 00:00:00 + EDT","prescriptionNumber":"2719966","prescriptionName":"GEMFIBROZIL 600MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362101,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00093-0670-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"GEMFIBROZIL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 18 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362102,"sig":null,"orderedDate":"Wed, + 29 Apr 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719966","prescriptionName":"GEMFIBROZIL + 600MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362102,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00093-0670-05","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 29 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362103,"sig":"TAKE + ONE TABLET BY MOUTH MORNING FOR 5 DAYS --TAKE WITH FOOD--","orderedDate":"Sat, + 18 Apr 2020 00:00:00 EDT","quantity":10,"expirationDate":"Mon, 19 Apr 2021 + 00:00:00 EDT","prescriptionNumber":"2719967","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362103,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2408-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BACLOFEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 18 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362104,"sig":null,"orderedDate":"Wed, + 29 Apr 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719967","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362104,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2408-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 23 Sep 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362105,"sig":"TAKE + ONE TABLET BY MOUTH MORNING FOR 5 DAYS TEST","orderedDate":"Sat, 18 Apr 2020 + 00:00:00 EDT","quantity":10,"expirationDate":"Mon, 19 Apr 2021 00:00:00 EDT","prescriptionNumber":"2719968","prescriptionName":"SPIRONOLACTONE + 25MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362105,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53489-0143-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SPIRONOLACTONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 18 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362106,"sig":null,"orderedDate":"Wed, + 23 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719968","prescriptionName":"SPIRONOLACTONE + 25MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362106,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53489-0143-10","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 14 Aug 2020 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362107,"sig":"TAKE + ONE TABLET BY MOUTH MORNING FOR 5 DAYS TEST","orderedDate":"Mon, 20 Apr 2020 + 00:00:00 EDT","quantity":10,"expirationDate":"Wed, 21 Apr 2021 00:00:00 EDT","prescriptionNumber":"2719980","prescriptionName":"METOLAZONE + 2.5MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362107,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53014-0975-71","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"METOLAZONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 20 Apr 2020 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362109,"sig":null,"orderedDate":"Fri, + 14 Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719980","prescriptionName":"METOLAZONE + 2.5MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362109,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53014-0975-71","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 20 Apr 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362108,"sig":null,"orderedDate":"Wed, + 05 Aug 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2719980","prescriptionName":"METOLAZONE + 2.5MG TAB","dispensedDate":"Thu, 06 Aug 2020 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362108,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53014-0975-71","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 01 Sep 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362110,"sig":"TAKE + 50MG BY MOUTH DAILY --DO NOT CRUSH OR CHEW/AVOID ANTACIDS--","orderedDate":"Sat, + 06 Jun 2020 00:00:00 EDT","quantity":10,"expirationDate":"Mon, 07 Jun 2021 + 00:00:00 EDT","prescriptionNumber":"2720013","prescriptionName":"ASPIRIN 325MG + EC TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362110,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test + batch job","divisionName":"DAYTON","modifiedDate":"Mon, 14 Aug 2023 11:45:16 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-0167-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ASPIRIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 06 Jun 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362111,"sig":null,"orderedDate":"Tue, + 01 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720013","prescriptionName":"ASPIRIN + 325MG EC TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362111,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-0167-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 03 Sep 2020 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362112,"sig":"APPLY + LIBERAL AMOUNT TO AFFECTED AREA MONDAY,TUESDAY,FRIDAY,SATURDAY AT 5 PM TESTING","orderedDate":"Fri, + 28 Aug 2020 00:00:00 EDT","quantity":10,"expirationDate":"Sun, 29 Aug 2021 + 00:00:00 EDT","prescriptionNumber":"2720068","prescriptionName":"NIVEA SKIN + OIL (8 OZ) ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362112,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"72140-0001-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NIVEA","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 28 Aug 2020 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362113,"sig":null,"orderedDate":"Thu, + 03 Sep 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720068","prescriptionName":"NIVEA + SKIN OIL (8 OZ) ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362113,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"72140-0001-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 28 Oct 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362114,"sig":"TAKE + 0.5ML BY MOUTH AFTER DINNER FOR 5 DAYS","orderedDate":"Wed, 21 Oct 2020 00:00:00 + EDT","quantity":10,"expirationDate":"Fri, 22 Oct 2021 00:00:00 EDT","prescriptionNumber":"2720108","prescriptionName":"BERNA + VACCINE CAP B/P","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362114,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"TEST","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VIVOTIF(TYPHOID)","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 22 Oct 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362115,"sig":null,"orderedDate":"Wed, + 28 Oct 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720108","prescriptionName":"BERNA + VACCINE CAP B/P","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362115,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 09 Apr 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362116,"sig":"TAKE + ONE TABLET BY MOUTH MONDAY AND FRIDAY TESTING","orderedDate":"Tue, 24 Nov + 2020 00:00:00 EST","quantity":15,"expirationDate":"Thu, 25 Nov 2021 00:00:00 + EST","prescriptionNumber":"2720128","prescriptionName":"LAMIVUDINE 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362116,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LAMIVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 24 Nov 2020 00:00:00 EST","refillRemaining":8,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362117,"sig":null,"orderedDate":"Fri, + 09 Apr 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720128","prescriptionName":"LAMIVUDINE + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362117,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 27 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362118,"sig":"TAKE + 25 BY MOUTH 1XD FOR 60 DAYS","orderedDate":"Fri, 07 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Sun, + 08 May 2022 00:00:00 EDT","prescriptionNumber":"2720187","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":"Thu, 06 May 2021 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362118,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 07 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362119,"sig":null,"orderedDate":"Thu, + 27 May 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720187","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362119,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 21 Apr 2021 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362120,"sig":"TAKE + ONE TABLET BY MOUTH DAILY","orderedDate":"Wed, 21 Apr 2021 00:00:00 EDT","quantity":10,"expirationDate":"Fri, + 22 Apr 2022 00:00:00 EDT","prescriptionNumber":"2720192","prescriptionName":"ACETAMINOPHEN + 325MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362120,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0488-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 24 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362121,"sig":"TAKE + 4G MOUTH DAILY FOR 60 DAYS","orderedDate":"Wed, 21 Apr 2021 00:00:00 EDT","quantity":30,"expirationDate":"Fri, + 22 Apr 2022 00:00:00 EDT","prescriptionNumber":"2720193","prescriptionName":"CHOLESTYRAMINE + 4GM/5GM (LIGHT) ORAL PWD","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362121,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00087-0589-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CHOLESTYRAMINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 21 Apr 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362122,"sig":null,"orderedDate":"Mon, + 24 May 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720193","prescriptionName":"CHOLESTYRAMINE + 4GM/5GM (LIGHT) ORAL PWD","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362122,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00087-0589-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 24 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362123,"sig":"TAKE + 30 TABLETS BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Wed, + 21 Apr 2021 00:00:00 EDT","quantity":30,"expirationDate":"Fri, 22 Apr 2022 + 00:00:00 EDT","prescriptionNumber":"2720194","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362123,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 21 Apr 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362124,"sig":null,"orderedDate":"Mon, + 24 May 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720194","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362124,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 10 Jul 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362125,"sig":"TAKE + 30 TABLETS BY MOUTH DAILY FOR 90 DAYS","orderedDate":"Wed, 21 Apr 2021 00:00:00 + EDT","quantity":90,"expirationDate":"Fri, 22 Apr 2022 00:00:00 EDT","prescriptionNumber":"2720195","prescriptionName":"MELPHALAN + 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362125,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0045-35","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MELPHALAN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 21 Apr 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362126,"sig":null,"orderedDate":"Sat, + 10 Jul 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720195","prescriptionName":"MELPHALAN + 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362126,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0045-35","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Jun 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362127,"sig":"TAKE + 4G DAILY FOR 60 DAYS --AVOID ANTACIDS--","orderedDate":"Sat, 01 May 2021 00:00:00 + EDT","quantity":11,"expirationDate":"Mon, 02 May 2022 00:00:00 EDT","prescriptionNumber":"2720196","prescriptionName":"PENICILLAMINE + 125MG CAP ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362127,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0672-68","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PENICILLAMINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 01 May 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362128,"sig":null,"orderedDate":"Sun, + 20 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720196","prescriptionName":"PENICILLAMINE + 125MG CAP ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362128,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0672-68","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 15 Jul 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362129,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 90 DAYS","orderedDate":"Mon, 26 Apr 2021 00:00:00 + EDT","quantity":10,"expirationDate":"Wed, 27 Apr 2022 00:00:00 EDT","prescriptionNumber":"2720197","prescriptionName":"TAMOXIFEN + CITRATE 10MG TAB","dispensedDate":"Mon, 31 May 2021 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362129,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0600-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"TAMOXIFEN CITRATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 26 Apr 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362130,"sig":null,"orderedDate":"Thu, + 15 Jul 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720197","prescriptionName":"TAMOXIFEN + CITRATE 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362130,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0600-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 30 Jun 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362131,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 60 DAYS","orderedDate":"Tue, 11 May 2021 00:00:00 + EDT","quantity":60,"expirationDate":"Thu, 12 May 2022 00:00:00 EDT","prescriptionNumber":"2720198","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362131,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00054-4346-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HALOPERIDOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 11 May 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362132,"sig":null,"orderedDate":"Wed, + 30 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720198","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362132,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00054-4346-31","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 25 Jun 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362133,"sig":"TAKE + TWO TABLETS BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 06 May 2021 00:00:00 + EDT","quantity":60,"expirationDate":"Sat, 07 May 2022 00:00:00 EDT","prescriptionNumber":"2720199","prescriptionName":"COLCHICINE + 0.6MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362133,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00143-1201-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"COLCHICINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 06 May 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362134,"sig":null,"orderedDate":"Fri, + 25 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720199","prescriptionName":"COLCHICINE + 0.6MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362134,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00143-1201-10","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 05 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362135,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 90 DAYS --TAKE WITH FOOD TO DECREASE GI IRRITATION/AVOID + ANTACIDS--","orderedDate":"Sun, 16 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Tue, + 17 May 2022 00:00:00 EDT","prescriptionNumber":"2720200","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362135,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 16 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362136,"sig":null,"orderedDate":"Sat, + 05 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720200","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362136,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 04 Aug 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362137,"sig":"APPLY + MODERATE AMOUNT TO MOUTH WEEKLY FOR 90 DAYS","orderedDate":"Sun, 16 May 2021 + 00:00:00 EDT","quantity":10,"expirationDate":"Tue, 17 May 2022 00:00:00 EDT","prescriptionNumber":"2720201","prescriptionName":"FLUOCINOLONE + ACETONIDE 0.01% TOP OIL 4OZ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362137,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"28105-0149-04","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"FLUOCINOLONE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 16 May 2021 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362138,"sig":null,"orderedDate":"Wed, + 04 Aug 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720201","prescriptionName":"FLUOCINOLONE + ACETONIDE 0.01% TOP OIL 4OZ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362138,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"28105-0149-04","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 07 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362139,"sig":"APPLY + 4G TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Tue, 18 May 2021 00:00:00 + EDT","quantity":1,"expirationDate":"Thu, 19 May 2022 00:00:00 EDT","prescriptionNumber":"2720202","prescriptionName":"KARAYA + PASTE 4.5 OZ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362139,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"KARAYA","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 18 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362140,"sig":null,"orderedDate":"Mon, + 07 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720202","prescriptionName":"KARAYA + PASTE 4.5 OZ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362140,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 09 Jul 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362141,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 60 DAYS --TAKE WITH FOOD--","orderedDate":"Thu, + 20 May 2021 00:00:00 EDT","quantity":10,"expirationDate":"Sat, 21 May 2022 + 00:00:00 EDT","prescriptionNumber":"2720203","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362141,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2408-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BACLOFEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 20 May 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362142,"sig":null,"orderedDate":"Fri, + 09 Jul 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720203","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362142,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2408-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 02 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362143,"sig":"TAKE + ONE CAPSULE DAILY FOR 30 DAYS","orderedDate":"Wed, 05 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Fri, + 06 May 2022 00:00:00 EDT","prescriptionNumber":"2720214","prescriptionName":"DOXEPIN + HCL 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362143,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00591-5630-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DOXEPIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 05 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362144,"sig":null,"orderedDate":"Wed, + 02 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720214","prescriptionName":"DOXEPIN + HCL 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362144,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00591-5630-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 02 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362145,"sig":"TAKE + TWO TABLETS DAILY FOR 30 DAYS","orderedDate":"Wed, 05 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Fri, + 06 May 2022 00:00:00 EDT","prescriptionNumber":"2720215","prescriptionName":"ZAFIRLUKAST + 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362145,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0402-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZAFIRLUKAST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 05 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362146,"sig":null,"orderedDate":"Wed, + 02 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720215","prescriptionName":"ZAFIRLUKAST + 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362146,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0402-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 02 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362147,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Wed, + 05 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Fri, 06 May 2022 + 00:00:00 EDT","prescriptionNumber":"2720216","prescriptionName":"ALENDRONATE + 70MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362147,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0031-44","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 05 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362148,"sig":null,"orderedDate":"Wed, + 02 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720216","prescriptionName":"ALENDRONATE + 70MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362148,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0031-44","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 02 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362149,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS --TAKE WITH FOOD TO DECREASE GI IRRITATION/AVOID + ANTACIDS--","orderedDate":"Wed, 05 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Fri, + 06 May 2022 00:00:00 EDT","prescriptionNumber":"2720217","prescriptionName":"ALLOPURINOL + 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362149,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2116-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 05 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362150,"sig":null,"orderedDate":"Wed, + 02 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720217","prescriptionName":"ALLOPURINOL + 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362150,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2116-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 24 Jun 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362151,"sig":"APPLY + SMALL AMOUNT WEEKLY FOR 60 DAYS","orderedDate":"Wed, 05 May 2021 00:00:00 + EDT","quantity":6,"expirationDate":"Fri, 06 May 2022 00:00:00 EDT","prescriptionNumber":"2720218","prescriptionName":"ACYCLOVIR + 5% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362151,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"64455-0993-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 05 May 2021 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362152,"sig":null,"orderedDate":"Thu, + 24 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720218","prescriptionName":"ACYCLOVIR + 5% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362152,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"64455-0993-94","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 02 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362153,"sig":"INSTILL + 3G IN FOR OPTHALMIC USE WEEKLY FOR 30 DAYS","orderedDate":"Wed, 05 May 2021 + 00:00:00 EDT","quantity":4,"expirationDate":"Fri, 06 May 2022 00:00:00 EDT","prescriptionNumber":"2720219","prescriptionName":"DIPIVEFRIN + HCL 0.1% OPH SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362153,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00023-0260-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DIPIVEFRIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 05 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362154,"sig":null,"orderedDate":"Wed, + 02 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720219","prescriptionName":"DIPIVEFRIN + HCL 0.1% OPH SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362154,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00023-0260-10","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 02 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362155,"sig":"INJECT + 2G DAILY FOR 30 DAYS","orderedDate":"Wed, 05 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Fri, + 06 May 2022 00:00:00 EDT","prescriptionNumber":"2720220","prescriptionName":"COLCHICINE + INJ 1MG/2ML AMPUL ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362155,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-1443-16","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"COLCHICINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 05 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362156,"sig":null,"orderedDate":"Wed, + 02 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720220","prescriptionName":"COLCHICINE + INJ 1MG/2ML AMPUL ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362156,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00002-1443-16","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 02 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362157,"sig":"TAKE + TWO TABLETS BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Wed, 05 May 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Fri, 06 May 2022 00:00:00 EDT","prescriptionNumber":"2720221","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362157,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 05 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362158,"sig":null,"orderedDate":"Wed, + 02 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720221","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362158,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 22 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362159,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Wed, 02 Jun 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Fri, 03 Jun 2022 00:00:00 EDT","prescriptionNumber":"2720257","prescriptionName":"BENZONATATE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362159,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"50111-0851-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BENZONATATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 02 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362160,"sig":null,"orderedDate":"Tue, + 22 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720257","prescriptionName":"BENZONATATE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362160,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"50111-0851-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Thu, + 24 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362161,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY 6 HOURS FOR 30 DAYS --TAKE WITH FOOD TO DECREASE + GI DISCOMFORT--","orderedDate":"Fri, 04 Jun 2021 00:00:00 EDT","quantity":120,"expirationDate":"Sun, + 05 Jun 2022 00:00:00 EDT","prescriptionNumber":"2720258","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362161,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CEPHALEXIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 04 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362162,"sig":null,"orderedDate":"Thu, + 24 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720258","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362162,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 25 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362163,"sig":"INJECT + 1G WEEKLY FOR 30 DAYS","orderedDate":"Sat, 05 Jun 2021 00:00:00 EDT","quantity":4,"expirationDate":"Mon, + 06 Jun 2022 00:00:00 EDT","prescriptionNumber":"2720259","prescriptionName":"CIPROFLOXACIN + 200MG/20ML VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362163,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00026-8562-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CIPROFLOXACIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 05 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362164,"sig":null,"orderedDate":"Fri, + 25 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720259","prescriptionName":"CIPROFLOXACIN + 200MG/20ML VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362164,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00026-8562-20","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 30 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362165,"sig":"TAKE + ONE-HALF TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 10 Jun 2021 + 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 11 Jun 2022 00:00:00 EDT","prescriptionNumber":"2720260","prescriptionName":"CITALOPRAM + 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362165,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00258-3697-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CITALOPRAM 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Thu, + 10 Jun 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362166,"sig":null,"orderedDate":"Wed, + 30 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720260","prescriptionName":"CITALOPRAM + 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362166,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00258-3697-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 17 Jan 2022 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362167,"sig":"TAKE + 1 TEASPOONFUL MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD--","orderedDate":"Sat, + 29 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Mon, 30 May 2022 + 00:00:00 EDT","prescriptionNumber":"2720270","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362167,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 11:45:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 29 May 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362169,"sig":null,"orderedDate":"Mon, + 17 Jan 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720270","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362169,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 29 May 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22362168,"sig":null,"orderedDate":"Mon, + 28 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720270","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22362168,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Tue, + 28 May 2024 12:07:59 EDT","refillDate":"Thu, 13 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22377949,"sig":"TAKE + ONE TABLET BY MOUTH EVERY TWELVE (12) HOURS FOR 30 DAYS","orderedDate":"Wed, + 12 Jul 2023 00:00:00 EDT","quantity":60,"expirationDate":"Fri, 12 Jul 2024 + 00:00:00 EDT","prescriptionNumber":"3636954","prescriptionName":"LABETALOL + HCL 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22377949,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Fri, 12 Jul 2024 13:06:49 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00172-4366-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LABETALOL HCL 300MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 19 Jun 2024 21:45:43 EDT","refillDate":"Tue, 11 Jun 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22377950,"sig":"APPLY + 10MG TO THE AFFECTED AREA EVERY DAY FOR 45 DAYS TEST IN TEST PI","orderedDate":"Fri, + 07 Jul 2023 00:00:00 EDT","quantity":4,"expirationDate":"Sun, 07 Jul 2024 + 00:00:00 EDT","prescriptionNumber":"3636955","prescriptionName":"LANOLIN ANHYDROUS + OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22377950,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TestRE","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Mon, 08 Jul 2024 10:01:12 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0052-16","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + IN","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"LANOLIN + ANHYDROUS","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 10 Oct 2023 10:50:20 EDT","refillDate":"Sat, 08 Jul 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22567660,"sig":null,"orderedDate":"Tue, + 11 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636955","prescriptionName":"LANOLIN + ANHYDROUS OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567660,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0052-16","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 14:55:38 EDT","refillDate":"Sat, 08 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559684,"sig":null,"orderedDate":"Tue, + 03 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636955","prescriptionName":"LANOLIN + ANHYDROUS OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559684,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0052-16","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 16 Aug 2023 22:53:57 EDT","refillDate":"Tue, 18 Jul 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22377951,"sig":"DEVICE(S) + TRACH WEEKLY FOR 60 DAYS","orderedDate":"Mon, 17 Jul 2023 00:00:00 EDT","quantity":1,"expirationDate":"Wed, + 17 Jul 2024 00:00:00 EDT","prescriptionNumber":"3636956","prescriptionName":"LARYNG + TUBE, CANNULA #8 LGT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22377951,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Fri, 19 Jul 2024 15:30:30 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LARYNG TUBE, CANNULA #8 LGT","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 23 Aug 2023 12:50:24 EDT","refillDate":"Wed, 23 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22377954,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Fri, + 07 Jul 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sun, 07 Jul 2024 + 00:00:00 EDT","prescriptionNumber":"2720552","prescriptionName":"MEFLOQUINE + HCL 250MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22377954,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"DAYTON","modifiedDate":"Mon, 08 Jul 2024 10:01:14 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00054-0025-11","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"MEFLOQUINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 23 Aug 2023 12:50:24 EDT","refillDate":"Sat, 08 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22411154,"sig":null,"orderedDate":"Wed, + 23 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720552","prescriptionName":"MEFLOQUINE + HCL 250MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22411154,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00054-0025-11","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 15:11:02 EDT","refillDate":"Wed, 04 Oct 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22377955,"sig":"TAKE + 1 TEASPOONFUL DAILY FOR 30 DAYS","orderedDate":"Mon, 17 Jul 2023 00:00:00 + EDT","quantity":1,"expirationDate":"Wed, 17 Jul 2024 00:00:00 EDT","prescriptionNumber":"2720553","prescriptionName":"MEGESTROL + ACETATE 200MG/5ML ORAL SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22377955,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 19 Jul 2024 15:30:32 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00015-0508-42","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MEGESTROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 15:11:02 EDT","refillDate":"Tue, 18 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22548357,"sig":null,"orderedDate":"Wed, + 04 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720553","prescriptionName":"MEGESTROL + ACETATE 200MG/5ML ORAL SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22548357,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00015-0508-42","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 04 Oct 2023 15:12:41 EDT","refillDate":"Wed, 02 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22377956,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Wed, 12 Jul 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Fri, 12 Jul 2024 00:00:00 EDT","prescriptionNumber":"2720554","prescriptionName":"MELOXICAM + 15MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22377956,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 15 Jul 2024 11:00:55 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00597-0030-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MELOXICAM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 15 Aug 2023 13:47:10 EDT","refillDate":"Thu, 13 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22389068,"sig":null,"orderedDate":"Wed, + 02 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720554","prescriptionName":"MELOXICAM + 15MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22389068,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00597-0030-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 11 Sep 2023 00:00:00 EDT","refillDate":"Sun, 13 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22453793,"sig":"TAKE + ONE TABLET BY MOUTH EVERY DAY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Sat, + 12 Aug 2023 00:00:00 EDT","quantity":30,"expirationDate":"Mon, 12 Aug 2024 + 00:00:00 EDT","prescriptionNumber":"3636965","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":"Mon, 14 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22453793,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 13 Aug 2024 09:38:48 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00677-1359-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ALBUTEROL + SULFATE 2MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 11 Sep 2023 00:00:00 EDT","refillDate":"Fri, 18 Aug 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22453794,"sig":"APPLY + 10MG TO THE AFFECTED AREA WEEKLY FOR 45 DAYS","orderedDate":"Thu, 17 Aug 2023 + 00:00:00 EDT","quantity":1,"expirationDate":"Sat, 17 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636966","prescriptionName":"ALCLOMETASONE + DIPROPION 0.05% TOP CREAM","dispensedDate":"Sat, 19 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22453794,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Mon, 19 Aug 2024 07:48:55 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0401-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALCLOMETASONE DIPROPION 0.05%","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 12 Oct 2023 00:00:00 EDT","refillDate":"Mon, 23 Oct 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22453795,"sig":"INJECT + 1ML INTRAVENOUS EVERY DAY FOR 60 DAYS","orderedDate":"Tue, 22 Aug 2023 00:00:00 + EDT","quantity":1,"expirationDate":"Thu, 22 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636967","prescriptionName":"ALDESLEUKIN + 22MILLION UNT/VIL INJ (VI)","dispensedDate":"Tue, 29 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22453795,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 28 Aug 2024 12:43:10 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"53905-0991-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALDESLEUKIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 12 Oct 2023 00:00:00 EDT","refillDate":"Wed, 23 Aug 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22574443,"sig":null,"orderedDate":"Mon, + 23 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636967","prescriptionName":"ALDESLEUKIN + 22MILLION UNT/VIL INJ (VI)","dispensedDate":"Fri, 13 Oct 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22574443,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"53905-0991-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 03 Oct 2023 00:00:00 EDT","refillDate":"Wed, 23 Aug 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559685,"sig":null,"orderedDate":"Tue, + 03 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636967","prescriptionName":"ALDESLEUKIN + 22MILLION UNT/VIL INJ (VI)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559685,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"53905-0991-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Wed, 01 Nov 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22462237,"sig":"DEVICE(S) + TRACH WEEKLY FOR 60 DAYS","orderedDate":"Tue, 12 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, + 12 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636956A","prescriptionName":"LARYNG + TUBE, CANNULA #8 LGT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22462237,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636956","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, + 13 Sep 2024 13:05:06 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LARYNG TUBE, CANNULA #8 LGT","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 17 Oct 2023 00:00:00 EDT","refillDate":"Tue, 12 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22584207,"sig":null,"orderedDate":"Wed, + 01 Nov 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636956A","prescriptionName":"LARYNG + TUBE, CANNULA #8 LGT","dispensedDate":"Tue, 17 Oct 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22584207,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Tue, 12 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559686,"sig":null,"orderedDate":"Tue, + 03 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636956A","prescriptionName":"LARYNG + TUBE, CANNULA #8 LGT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559686,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 15 Sep 2023 00:00:00 EDT","refillDate":"Tue, 12 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22463298,"sig":"USE + 1 WEEKLY FOR 30 DAYS","orderedDate":"Fri, 11 Aug 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sun, + 11 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720476A","prescriptionName":"ABSORBABLE + GELATIN SPONGE Sz 12-7 (12''s)","dispensedDate":"Sun, 13 Aug 2023 00:00:00 + EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22463298,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720476","divisionName":"DAYTON","modifiedDate":"Mon, 12 Aug 2024 + 06:30:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00009-0315-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"GELATIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 15 Sep 2023 00:00:00 EDT","refillDate":"Sat, 12 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22468511,"sig":null,"orderedDate":"Tue, + 12 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720476A","prescriptionName":"ABSORBABLE + GELATIN SPONGE Sz 12-7 (12''s)","dispensedDate":"Wed, 13 Sep 2023 00:00:00 + EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0476","cmopNdcNumber":"00013264681","id":22468511,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720476","dispStatus":"Discontinued","ndc":"00009-0315-03","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 27 Sep 2023 00:00:00 EDT","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22463299,"sig":"TAKE + ONE TABLET BY MOUTH DAILY TEST TEST INDICATION TEST","orderedDate":"Wed, 13 + Sep 2023 00:00:00 EDT","quantity":10,"expirationDate":"Fri, 13 Sep 2024 00:00:00 + EDT","prescriptionNumber":"2720192E","prescriptionName":"ACETAMINOPHEN 325MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22463299,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720192D","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0488-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 25 Sep 2023 00:00:00 EDT","refillDate":"Mon, 25 Sep 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22463300,"sig":"TAKE + 25 BY MOUTH 1XD FOR 60 DAYS","orderedDate":"Wed, 13 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Fri, + 13 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720187E","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22463300,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720187D","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 15 Sep 2023 00:00:00 EDT","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22463301,"sig":"APPLY + SMALL AMOUNT WEEKLY FOR 60 DAYS","orderedDate":"Wed, 13 Sep 2023 00:00:00 + EDT","quantity":6,"expirationDate":"Fri, 13 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720218D","prescriptionName":"ACYCLOVIR + 5% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22463301,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720218C","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"64455-0993-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 27 Sep 2023 00:00:00 EDT","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22463302,"sig":"TAKE + TWO TABLETS BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Wed, 13 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Fri, 13 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720221E","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22463302,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720221D","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 01 Mar 2023 19:49:25 EST","refillDate":"Fri, 24 Feb 2023 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21836678,"sig":"TAKE + ONE TABLET BY MOUTH DAILY TEST TEST INDICATION TEST","orderedDate":"Fri, 24 + Feb 2023 00:00:00 EST","quantity":10,"expirationDate":"Sun, 25 Feb 2024 00:00:00 + EST","prescriptionNumber":"2720192D","prescriptionName":"ACETAMINOPHEN 325MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836678,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720192C","divisionName":"DAYTON","modifiedDate":"Mon, 26 Feb 2024 + 13:56:36 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0488-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 23 Mar 2023 19:57:58 EDT","refillDate":"Mon, 10 Apr 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21836758,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS TAKE WITH FOOD","orderedDate":"Fri, 24 Feb + 2023 00:00:00 EST","quantity":30,"expirationDate":"Sun, 25 Feb 2024 00:00:00 + EST","prescriptionNumber":"3636691D","prescriptionName":"ALLOPURINOL 100MG + TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836758,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636691C","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 18:29:51 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 25 Sep 2023 00:00:00 EDT","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22465244,"sig":"TAKE + 1/2 TEASPOONFUL (80 MGS/2.5 MLS) EVERY SIX (6) HOURS FOR 30 DAYS NOT MORE + THAN FOUR (4) GRAMS OF ACETAMINOPHEN PER DAY","orderedDate":"Thu, 14 Sep 2023 + 00:00:00 EDT","quantity":4,"expirationDate":"Sat, 14 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636713F","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22465244,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636713E","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 16 Sep 2024 10:17:58 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 160MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 27 Sep 2023 00:00:00 EDT","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22465245,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Thu, 14 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Sat, 14 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636747E","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22465245,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636747D","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 16 Sep 2024 10:17:58 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ADEFOVIR DIPIVOXIL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":null,"refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22465246,"sig":"TAKE + ONE TABLET EVERY MORNING, 30 MINUTES BEFORE MEAL FOR 30 DAYS WITH FULL GLASS + OF WATER, ONLY. DON''T LIE DOWN, EAT, DRINK, OR TAKE MEDS FOR ONE-HALF (1/2) + HOUR.","orderedDate":"Thu, 14 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sat, + 14 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636748D","prescriptionName":"ALENDRONATE + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22465246,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636748C","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 16 Sep 2024 10:17:58 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00006-0936-58","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 09 May 2024 00:00:00 EDT","refillDate":"Fri, 17 May 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22465247,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS TAKE WITH FOOD","orderedDate":"Thu, 14 Sep + 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 14 Sep 2024 00:00:00 + EDT","prescriptionNumber":"3636691E","prescriptionName":"ALLOPURINOL 100MG + TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22465247,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636691D","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 16 Sep 2024 10:17:58 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 14 Mar 2024 00:00:00 EDT","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23281644,"sig":null,"orderedDate":"Fri, + 17 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636691E","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23281644,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 13 Nov 2023 00:00:00 EST","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22662274,"sig":null,"orderedDate":"Sun, + 04 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636691E","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22662274,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 31 Oct 2023 00:00:00 EDT","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22641833,"sig":null,"orderedDate":"Mon, + 06 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636691E","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22641833,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559687,"sig":null,"orderedDate":"Wed, + 04 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636691E","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559687,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":null,"refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22465248,"sig":"TAKE + ONE TABLET AT BEDTIME FOR 30 DAYS","orderedDate":"Thu, 14 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Sat, 14 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636710E","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22465248,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636710D","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 16 Sep 2024 10:17:58 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMITRIPTYLINE HCL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Mon, + 04 Nov 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24634103,"sig":"TAKE + 100 BY MOUTH WEEKLY FOR 30 DAYS TEST","orderedDate":"Mon, 04 Nov 2024 00:00:00 + EST","quantity":5,"expirationDate":"Wed, 05 Nov 2025 00:00:00 EST","prescriptionNumber":"2721191","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ELIXIR (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24634103,"userId":16955936,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00054-3010-63","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 08 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355211,"sig":"TAKE + 1 DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":200,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720874","prescriptionName":"AMOXICILLIN + 250MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355211,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00047-2501-17","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN SUSPENSION 250MG/5ML 100 ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 07 May 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355212,"sig":"TAKE + 1 TEASPOONFUL MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD--","orderedDate":"Tue, + 27 Feb 2024 00:00:00 EST","quantity":3,"expirationDate":"Thu, 27 Feb 2025 + 00:00:00 EST","prescriptionNumber":"2720875","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355212,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 15 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355213,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS --AVOID GRAPEFRUIT JUICE/AVOID ANTACIDS--","orderedDate":"Tue, + 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 + 00:00:00 EST","prescriptionNumber":"2720876","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355213,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ATORVASTATIN 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355214,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 + EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720877","prescriptionName":"BENZONATATE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355214,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"50111-0851-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BENZONATATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 10 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23636336,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720877","prescriptionName":"BENZONATATE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23636336,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"50111-0851-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"submitted","refillSubmitDate":"Thu, + 31 Oct 2024 00:00:00 EDT","refillDate":"Sat, 26 Oct 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23037516,"sig":"125MG + NASAL GASTRIC TUBE THREE (3) TIMES A DAY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Tue, + 06 Feb 2024 00:00:00 EST","quantity":1,"expirationDate":"Thu, 06 Feb 2025 + 00:00:00 EST","prescriptionNumber":"3637014","prescriptionName":"PHENYTOIN + (DILANTIN) 125MG/5ML SUSP","dispensedDate":"Thu, 08 Feb 2024 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23037516,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, 06 Nov 2024 15:46:41 + EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Submitted","ndc":"00071-2214-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"PHENYTOIN + (DILANTIN) 125MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"submitted","refillSubmitDate":"Mon, + 21 Oct 2024 00:00:00 EDT","refillDate":"Wed, 07 Feb 2024 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24616591,"sig":null,"orderedDate":"Sat, + 26 Oct 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637014","prescriptionName":"PHENYTOIN + (DILANTIN) 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24616591,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Submitted","ndc":"00071-2214-20","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"submitted","refillSubmitDate":"Thu, + 14 Mar 2024 00:00:00 EDT","refillDate":"Wed, 07 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23281652,"sig":null,"orderedDate":"Fri, + 20 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637014","prescriptionName":"PHENYTOIN + (DILANTIN) 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23281652,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Submitted","ndc":"00071-2214-20","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 01 Mar 2024 00:00:00 EST","refillDate":"Fri, 01 Mar 2024 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22950025,"sig":"TAKE + 1 TABLET BY MOUTH EVERY DAY FOR 60 DAYS","orderedDate":"Tue, 06 Feb 2024 00:00:00 + EST","quantity":3,"expirationDate":"Thu, 12 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636974A","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22950025,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST","divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Fri, 13 Sep 2024 13:05:06 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"PF1","prescriptionSource":"PF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ABACAVIR 600/LAMIVUDINE 300MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 01 Mar 2024 00:00:00 EST","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23064568,"sig":null,"orderedDate":"Fri, + 01 Mar 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636974A","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23064568,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 25 Oct 2023 00:00:00 EDT","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22626402,"sig":null,"orderedDate":"Sun, + 04 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636974A","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22626402,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22567664,"sig":null,"orderedDate":"Wed, + 04 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636974A","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567664,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 30 May 2024 00:00:00 EDT","refillDate":"Mon, 27 May 2024 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23848887,"sig":"TAKE + 1 TEASPOONFUL BY AS DIRECTED DAILY FOR 30 DAYS TEST","orderedDate":"Tue, 30 + Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Thu, 01 May 2025 00:00:00 + EDT","prescriptionNumber":"2721024","prescriptionName":"ACCU-CHEK COMFORT + CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23848887,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"GLUCOSE TEST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 30 May 2024 00:00:00 EDT","refillDate":"Tue, 30 Apr 2024 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23849030,"sig":null,"orderedDate":"Mon, + 27 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721024","prescriptionName":"ACCU-CHEK + COMFORT CV GLUCOSE SOLN","dispensedDate":"Tue, 28 May 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(783)272-1024","cmopNdcNumber":"00013264681","id":23849030,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"7832721024","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 18 Sep 2023 00:00:00 EDT","refillDate":"Wed, 09 Aug 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22473560,"sig":"APPLY + APPLICATION(S) TO THE AFFECTED AREA EVERY DAY FOR 30 DAYS TEST INDICATION + 09152023 TEST PATIENT INSTRUCTIONS 09152023","orderedDate":"Tue, 08 Aug 2023 + 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 08 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636973","prescriptionName":"A + & D OINT","dispensedDate":"Thu, 10 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22473560,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 09 Aug 2024 + 09:00:53 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0035-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 09152023","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"VITAMIN + A & D 60GM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 20 Sep 2023 00:00:00 EDT","refillDate":"Tue, 26 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22473561,"sig":"TAKE + 1 TABLET BY MOUTH EVERY DAY FOR 60 DAYS","orderedDate":"Thu, 10 Aug 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Sat, 10 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636974","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22473561,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Sun, 11 Aug 2024 21:28:12 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ABACAVIR 600/LAMIVUDINE 300MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 25 Sep 2023 00:00:00 EDT","refillDate":"Tue, 22 Aug 2023 00:00:00 EDT","refillRemaining":6,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22473562,"sig":"APPLY + 10MG TO THE AFFECTED AREA WEEKLY FOR 45 DAYS TEST & INDI TEST & PI","orderedDate":"Mon, + 21 Aug 2023 00:00:00 EDT","quantity":1,"expirationDate":"Wed, 21 Aug 2024 + 00:00:00 EDT","prescriptionNumber":"3636975","prescriptionName":"ABSORBASE + TOP OINT","dispensedDate":"Wed, 23 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22473562,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + & REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, 28 Aug 2024 + 12:43:10 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"46287-0507-16","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + & INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ABSORBASE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 25 Sep 2023 00:00:00 EDT","refillDate":"Sun, 27 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22473563,"sig":"TAKE + 5 TABLETS BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Sat, 26 Aug 2023 + 00:00:00 EDT","quantity":30,"expirationDate":"Mon, 26 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636976","prescriptionName":"ABACAVIR300/LAMIVUDINE150/ZDV + 300MG TAB","dispensedDate":"Mon, 28 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22473563,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 28 Aug 2024 12:43:10 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0691-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ABACAVIR 300/LAMIVUDINE 150/ZDV 300MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 26 Mar 2024 00:00:00 EDT","refillDate":"Wed, 20 Mar 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23299040,"sig":"TAKE + 1 BY MOUTH DAILY FOR 30 DAYS TEST","orderedDate":"Wed, 20 Mar 2024 00:00:00 + EDT","quantity":30,"expirationDate":"Fri, 21 Mar 2025 00:00:00 EDT","prescriptionNumber":"2720709A","prescriptionName":"ABACAVIR + SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23299040,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720709","divisionName":"DAYTON","modifiedDate":"Wed, 06 Nov 2024 + 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ABACAVIR/LAMIVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, + 20 Mar 2024 00:00:00 EDT","refillDate":"Sun, 17 Mar 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23299041,"sig":"APPLY + GEL TO AFFECTED AREA DAILY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Mon, + 19 Feb 2024 00:00:00 EST","quantity":1,"expirationDate":"Wed, 19 Feb 2025 + 00:00:00 EST","prescriptionNumber":"2720849","prescriptionName":"SALICYLIC + ACID 6% GEL 30 GM","dispensedDate":"Wed, 21 Feb 2024 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(983)272-0849","cmopNdcNumber":"00093721410","id":23299041,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"DAYTON","modifiedDate":"Wed, 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"9832720849","dispStatus":"Active: + Refill in Process","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"SALICYLIC + ACID","shape":"OVAL","color":"WHITE","frontImprint":"9,3","backImprint":"72,14","dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 20 Mar 2024 00:00:00 EDT","refillDate":"Tue, 20 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23299131,"sig":null,"orderedDate":"Sun, + 17 Mar 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720849","prescriptionName":"SALICYLIC + ACID 6% GEL 30 GM","dispensedDate":"Mon, 18 Mar 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0849","cmopNdcNumber":"00093721410","id":23299131,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720849","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"OVAL","color":"WHITE","frontImprint":"9,3","backImprint":"72,14","dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"newOrder","refillSubmitDate":null,"refillDate":null,"refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24626013,"sig":"TAKE + ONE TABLET BY MOUTH BEFORE SUPPER","orderedDate":"Thu, 31 Oct 2024 00:00:00 + EDT","quantity":30,"expirationDate":null,"prescriptionNumber":"2068224","prescriptionName":"PAROXETINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24626013,"userId":16955936,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"NewOrder","ndc":"49884-0876-11","reason":null,"prescriptionNumberIndex":"PD","prescriptionSource":"PD","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":null,"category":"Rx Medication","orderableItem":"PAROXETINE + 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 23 Jan 2024 00:00:00 EST","refillDate":"Sat, 28 Oct 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22697647,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS TEST --TAKE WITH FOOD TO DECREASE GI IRRITATION/AVOID + ANTACIDS--","orderedDate":"Sat, 28 Oct 2023 00:00:00 EDT","quantity":30,"expirationDate":"Mon, + 28 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720711","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22697647,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 29 Oct 2024 12:05:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ALLOPURINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 23 Feb 2024 00:00:00 EST","refillDate":"Sat, 28 Oct 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22697648,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS TEST","orderedDate":"Sat, 28 Oct 2023 + 00:00:00 EDT","quantity":30,"expirationDate":"Mon, 28 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720712","prescriptionName":"BENZONATATE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22697648,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 29 Oct 2024 12:05:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"50111-0851-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"BENZONATATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 31 Jan 2024 00:00:00 EST","refillDate":"Sun, 10 Dec 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22697649,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY 6 HOURS FOR 30 DAYS TEST --TAKE WITH FOOD TO DECREASE + GI DISCOMFORT--","orderedDate":"Sat, 28 Oct 2023 00:00:00 EDT","quantity":4,"expirationDate":"Mon, + 28 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720713","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22697649,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 29 Oct 2024 12:05:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"CEPHALEXIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 08 Jan 2024 00:00:00 EST","refillDate":"Sat, 28 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22837650,"sig":null,"orderedDate":"Sun, + 10 Dec 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720713","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22837650,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, + 29 Mar 2024 00:00:00 EDT","refillDate":"Fri, 29 Mar 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355195,"sig":"USE + 1 INHALATION BY ORAL INHALATION DAILY FOR 30 DAYS","orderedDate":"Tue, 27 + Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 00:00:00 + EST","prescriptionNumber":"2720858","prescriptionName":"SALMETEROL 50MCG/BLSTR + PO INHL DISKUS 60","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355195,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00173-0521-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SALMETEROL DISKUS","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, + 29 Mar 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23451350,"sig":null,"orderedDate":"Fri, + 29 Mar 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720858","prescriptionName":"SALMETEROL + 50MCG/BLSTR PO INHL DISKUS 60","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23451350,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00173-0521-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 29 Mar 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355196,"sig":"TAKE + 1 TEASPOONFUL BY AS DIRECTED DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb + 2024 00:00:00 EST","quantity":3,"expirationDate":"Thu, 27 Feb 2025 00:00:00 + EST","prescriptionNumber":"2720859","prescriptionName":"ACCU-CHEK COMFORT + CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355196,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"GLUCOSE TEST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355197,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 + EST","quantity":30,"expirationDate":"Thu, 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720860","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355197,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00085-0252-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355198,"sig":"TUBE + AS DIRECTED DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720861","prescriptionName":"LARYNGECTOMY + TUBE STAIN STL SIZE 8","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355198,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LARYNGECTOMY STAIN STL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, + 18 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675644,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720861","prescriptionName":"LARYNGECTOMY + TUBE STAIN STL SIZE 8","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675644,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 29 Mar 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355199,"sig":"USE + 1 DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":12,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720862","prescriptionName":"ABSORBABLE + GELATIN SPONGE Sz 12-7 (12''s)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355199,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00009-0315-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"GELATIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 09 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675092,"sig":"TAKE + 1 TEASPOONFUL BY AS DIRECTED DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr + 2024 00:00:00 EDT","quantity":2,"expirationDate":"Sat, 19 Apr 2025 00:00:00 + EDT","prescriptionNumber":"2720927","prescriptionName":"ACCU-CHEK COMFORT + CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675092,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"GLUCOSE TEST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"activeParked","refillSubmitDate":"Mon, + 03 Jun 2024 00:00:00 EDT","refillDate":"Fri, 14 Jun 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675093,"sig":"INSERT + 1 SUPPOSITORY(IES) IN RECTUM DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr + 2024 00:00:00 EDT","quantity":12,"expirationDate":"Sat, 19 Apr 2025 00:00:00 + EDT","prescriptionNumber":"2720928","prescriptionName":"ACETAMINOPHEN 325MG + RTL SUPP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675093,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Parked","ndc":"00713-0164-12","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"activeParked","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844891,"sig":null,"orderedDate":"Fri, + 14 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720928","prescriptionName":"ACETAMINOPHEN + 325MG RTL SUPP","dispensedDate":"Fri, 31 May 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)777-0928","cmopNdcNumber":"00093721410","id":23844891,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9837770928","dispStatus":"Active: + Parked","ndc":"00713-0164-12","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"OVAL","color":"WHITE","frontImprint":"9,3","backImprint":"72,14","dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"activeParked","refillSubmitDate":"Mon, + 22 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23687490,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720928","prescriptionName":"ACETAMINOPHEN + 325MG RTL SUPP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23687490,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Parked","ndc":"00713-0164-12","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 08 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675094,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr 2024 00:00:00 + EDT","quantity":2,"expirationDate":"Sat, 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720929","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675094,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ADEFOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 22 Apr 2024 00:00:00 EDT","refillDate":"Wed, 08 May 2024 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675095,"sig":"INHALE + 1 DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr 2024 00:00:00 EDT","quantity":200,"expirationDate":"Sat, + 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720930","prescriptionName":"ALBUTEROL + 200MCG INHL CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675095,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0389-02","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 22 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23687492,"sig":null,"orderedDate":"Wed, + 08 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720930","prescriptionName":"ALBUTEROL + 200MCG INHL CAP","dispensedDate":"Sun, 21 Apr 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23687492,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0389-02","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 28 May 2024 00:00:00 EDT","refillDate":"Wed, 08 May 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675096,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 90 DAYS --AVOID ANTACIDS--","orderedDate":"Thu, + 18 Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Sat, 19 Apr 2025 + 00:00:00 EDT","prescriptionNumber":"2720931","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675096,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 22 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23703935,"sig":null,"orderedDate":"Wed, + 08 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720931","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23703935,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Sat, 25 May 2024 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675097,"sig":"TAKE + ONE TABLET DAILY FOR 90 DAYS --TAKE WITH FOOD TO DECREASE GI IRRITATION/AVOID + ANTACIDS--","orderedDate":"Thu, 18 Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Sat, + 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720932","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675097,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 22 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23703936,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720932","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23703936,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, + 14 Aug 2024 00:00:00 EDT","refillDate":"Wed, 14 Aug 2024 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675098,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr 2024 00:00:00 + EDT","quantity":2,"expirationDate":"Sat, 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720933","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675098,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMITRIPTYLINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844893,"sig":null,"orderedDate":"Wed, + 14 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720933","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844893,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743753,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720933","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743753,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, + 30 Aug 2024 00:00:00 EDT","refillDate":"Fri, 30 Aug 2024 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675099,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Sat, + 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720934","prescriptionName":"AMOXAPINE + 150MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675099,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXAPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743754,"sig":null,"orderedDate":"Fri, + 30 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720934","prescriptionName":"AMOXAPINE + 150MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743754,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Sat, 25 May 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675100,"sig":"TAKE + 1 DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr 2024 00:00:00 EDT","quantity":200,"expirationDate":"Sat, + 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720935","prescriptionName":"AMOXICILLIN + 250MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675100,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00047-2501-17","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN SUSPENSION 250MG/5ML 100 ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743755,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720935","prescriptionName":"AMOXICILLIN + 250MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743755,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00047-2501-17","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, + 20 Sep 2024 00:00:00 EDT","refillDate":"Fri, 20 Sep 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675101,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS --AVOID GRAPEFRUIT JUICE/AVOID ANTACIDS--","orderedDate":"Thu, + 18 Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Sat, 19 Apr 2025 + 00:00:00 EDT","prescriptionNumber":"2720936","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675101,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ATORVASTATIN 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844896,"sig":null,"orderedDate":"Fri, + 20 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720936","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844896,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743757,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720936","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743757,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 12 Oct 2023 00:00:00 EDT","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559692,"sig":"APPLY + APPLICATION(S) TO THE AFFECTED AREA EVERY DAY FOR 30 DAYS TEST INDICATION + 09152023 TEST PATIENT INSTRUCTIONS 09152023","orderedDate":"Sun, 10 Sep 2023 + 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 10 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636973A","prescriptionName":"A + & D OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559692,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636973","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 11 Sep 2024 08:33:58 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0035-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 09152023","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"VITAMIN + A ","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 12 Oct 2023 00:00:00 EDT","refillDate":"Mon, 11 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22574444,"sig":null,"orderedDate":"Tue, + 31 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636973A","prescriptionName":"A + & D OINT","dispensedDate":"Wed, 11 Oct 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6973","cmopNdcNumber":"00113002239","id":22574444,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366973","dispStatus":"Discontinued","ndc":"00168-0035-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"OVAL","color":"WHITE","frontImprint":"L022","backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Mon, 11 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22567663,"sig":null,"orderedDate":"Wed, + 04 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636973A","prescriptionName":"A + & D OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567663,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0035-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 01 Mar 2024 00:00:00 EST","refillDate":"Fri, 01 Mar 2024 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559693,"sig":"TAKE + 1 TABLET BY MOUTH EVERY DAY FOR 60 DAYS","orderedDate":"Tue, 12 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 12 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636974A","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559693,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636974","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, + 13 Sep 2024 13:05:06 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ABACAVIR 600/LAMIVUDINE 300MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 01 Mar 2024 00:00:00 EST","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23064568,"sig":null,"orderedDate":"Fri, + 01 Mar 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636974A","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23064568,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 25 Oct 2023 00:00:00 EDT","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22626402,"sig":null,"orderedDate":"Sun, + 04 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636974A","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22626402,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22567664,"sig":null,"orderedDate":"Wed, + 04 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636974A","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567664,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 09 Aug 2024 00:00:00 EDT","refillDate":"Sun, 04 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559694,"sig":"TAKE + 5 TABLETS BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Sat, 26 Aug 2023 + 00:00:00 EDT","quantity":30,"expirationDate":"Mon, 26 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636976A","prescriptionName":"ABACAVIR300/LAMIVUDINE150/ZDV + 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559694,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636976","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 28 Aug 2024 12:43:10 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0691-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ABACAVIR 300/LAMIVUDINE 150/ZDV 300MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 12 Oct 2023 00:00:00 EDT","refillDate":"Sun, 27 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22574445,"sig":null,"orderedDate":"Sun, + 04 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636976A","prescriptionName":"ABACAVIR300/LAMIVUDINE150/ZDV + 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22574445,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0691-00","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Sun, 27 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22567665,"sig":null,"orderedDate":"Wed, + 04 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636976A","prescriptionName":"ABACAVIR300/LAMIVUDINE150/ZDV + 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567665,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0691-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 26 Jul 2024 00:00:00 EDT","refillDate":"Sun, 04 Feb 2024 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559695,"sig":"APPLY + 10MG TO THE AFFECTED AREA WEEKLY FOR 45 DAYS TEST & INDI TEST & PI","orderedDate":"Thu, + 14 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sat, 14 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"3636975A","prescriptionName":"ABSORBASE + TOP OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559695,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636975","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 16 Sep 2024 10:17:58 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"46287-0507-16","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + & INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ABSORBASE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 12 Oct 2023 00:00:00 EDT","refillDate":"Fri, 15 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22574446,"sig":null,"orderedDate":"Sun, + 04 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636975A","prescriptionName":"ABSORBASE + TOP OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22574446,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"46287-0507-16","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Fri, 15 Sep 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22567666,"sig":null,"orderedDate":"Thu, + 05 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636975A","prescriptionName":"ABSORBASE + TOP OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567666,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"46287-0507-16","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 28 Jun 2024 00:00:00 EDT","refillDate":"Tue, 11 Jun 2024 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559696,"sig":"TAKE + 1/2 TEASPOONFUL (80 MGS/2.5 MLS) EVERY SIX (6) HOURS FOR 30 DAYS NOT MORE + THAN FOUR (4) GRAMS OF ACETAMINOPHEN PER DAY","orderedDate":"Sat, 16 Sep 2023 + 00:00:00 EDT","quantity":4,"expirationDate":"Mon, 16 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636713G","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559696,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636713F","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 17 Sep 2024 10:22:41 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN 160MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 14 Mar 2024 00:00:00 EDT","refillDate":"Sun, 17 Sep 2023 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23281648,"sig":null,"orderedDate":"Tue, + 11 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636713G","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23281648,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 19 Oct 2023 00:00:00 EDT","refillDate":"Sun, 17 Sep 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22599525,"sig":null,"orderedDate":"Sun, + 04 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636713G","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22599525,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Sun, 17 Sep 2023 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22567667,"sig":null,"orderedDate":"Sat, + 07 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636713G","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ALC-F LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567667,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49348-0266-34","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, + 08 Aug 2024 00:00:00 EDT","refillDate":"Mon, 23 Sep 2024 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22949469,"sig":"APPLY + APPLICATION(S) TO THE AFFECTED AREA EVERY DAY FOR 30 DAYS TEST INDICATION + 09152023 TEST PATIENT INSTRUCTIONS 09152023","orderedDate":"Tue, 06 Feb 2024 + 00:00:00 EST","quantity":1,"expirationDate":"Thu, 06 Feb 2025 00:00:00 EST","prescriptionNumber":"3636973B","prescriptionName":"A + & D OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22949469,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636973A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 06 Nov 2024 15:46:41 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00168-0035-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 09152023","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"VITAMIN + A & D 60GM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"hold","refillSubmitDate":"Tue, + 06 Feb 2024 00:00:00 EST","refillDate":"Mon, 26 Feb 2024 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22949470,"sig":"INJECT + 1ML INTRAVENOUS EVERY DAY FOR 60 DAYS","orderedDate":"Tue, 06 Feb 2024 00:00:00 + EST","quantity":1,"expirationDate":"Thu, 06 Feb 2025 00:00:00 EST","prescriptionNumber":"3636967A","prescriptionName":"ALDESLEUKIN + 22MILLION UNT/VIL INJ (VI)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22949470,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636967","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 06 Nov 2024 15:46:41 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + On Hold","ndc":"53905-0991-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALDESLEUKIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + is in a Non-Renewable Status.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"hold","refillSubmitDate":"Tue, + 06 Feb 2024 00:00:00 EST","refillDate":"Tue, 06 Feb 2024 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22949935,"sig":null,"orderedDate":"Mon, + 26 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636967A","prescriptionName":"ALDESLEUKIN + 22MILLION UNT/VIL INJ (VI)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22949935,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + On Hold","ndc":"53905-0991-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + is in a Non-Renewable Status.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":"Thu, + 03 Oct 2024 00:00:00 EDT","refillDate":"Sat, 26 Oct 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22949471,"sig":"APPLY + APPLICATION(S) TO THE AFFECTED AREA EVERY DAY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Sun, + 07 Jan 2024 00:00:00 EST","quantity":1,"expirationDate":"Tue, 07 Jan 2025 + 00:00:00 EST","prescriptionNumber":"3637008","prescriptionName":"HEXACHLOROPHENE + 3% TOP LIQUID","dispensedDate":"Tue, 09 Jan 2024 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22949471,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 06 Nov 2024 15:46:41 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00024-1535-02","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"HEXACHLOROPHENE + 3%","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"active","refillSubmitDate":"Thu, + 03 Oct 2024 00:00:00 EDT","refillDate":"Mon, 08 Jan 2024 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24616588,"sig":null,"orderedDate":"Sat, + 26 Oct 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637008","prescriptionName":"HEXACHLOROPHENE + 3% TOP LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24616588,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00024-1535-02","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Tue, + 06 Feb 2024 00:00:00 EST","refillDate":"Mon, 08 Jan 2024 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22950026,"sig":null,"orderedDate":"Fri, + 20 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637008","prescriptionName":"HEXACHLOROPHENE + 3% TOP LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22950026,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00024-1535-02","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Tue, + 06 Feb 2024 00:00:00 EST","refillDate":"Mon, 08 Jan 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22949914,"sig":null,"orderedDate":"Tue, + 06 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3637008","prescriptionName":"HEXACHLOROPHENE + 3% TOP LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22949914,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00024-1535-02","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675102,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Sat, + 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720937","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675102,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00004-1101-16","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CAPECITABINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, + 11 Jul 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24222232,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720937","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24222232,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00004-1101-16","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844897,"sig":null,"orderedDate":"Sun, + 30 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720937","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844897,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00004-1101-16","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743758,"sig":null,"orderedDate":"Mon, + 10 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720937","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743758,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00004-1101-16","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675103,"sig":"TAKE + 1 TEASPOONFUL BY MOUTH DAILY FOR 90 DAYS","orderedDate":"Thu, 18 Apr 2024 + 00:00:00 EDT","quantity":2,"expirationDate":"Sat, 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720938","prescriptionName":"CASTOR + OIL 30 ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675103,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00054-8133-04","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CASTOR OIL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844898,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720938","prescriptionName":"CASTOR + OIL 30 ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844898,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00054-8133-04","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743759,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720938","prescriptionName":"CASTOR + OIL 30 ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743759,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00054-8133-04","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 28 May 2024 00:00:00 EDT","refillDate":"Wed, 08 May 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675104,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY 6 HOURS FOR 90 DAYS --TAKE WITH FOOD TO DECREASE + GI DISCOMFORT--","orderedDate":"Thu, 18 Apr 2024 00:00:00 EDT","quantity":120,"expirationDate":"Sat, + 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720939","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675104,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CEPHALEXIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743760,"sig":null,"orderedDate":"Wed, + 08 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720939","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743760,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, + 16 Aug 2024 00:00:00 EDT","refillDate":"Fri, 16 Aug 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675105,"sig":"INJECT + 1 DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr 2024 00:00:00 EDT","quantity":3,"expirationDate":"Sat, + 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720940","prescriptionName":"CIPROFLOXACIN + 200MG/20ML VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675105,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00026-8562-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CIPROFLOXACIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, + 16 Aug 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24334885,"sig":null,"orderedDate":"Fri, + 16 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720940","prescriptionName":"CIPROFLOXACIN + 200MG/20ML VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24334885,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00026-8562-20","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844899,"sig":null,"orderedDate":"Mon, + 08 Jul 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720940","prescriptionName":"CIPROFLOXACIN + 200MG/20ML VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844899,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00026-8562-20","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743761,"sig":null,"orderedDate":"Tue, + 11 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720940","prescriptionName":"CIPROFLOXACIN + 200MG/20ML VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743761,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00026-8562-20","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, + 12 Sep 2024 00:00:00 EDT","refillDate":"Thu, 12 Sep 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675106,"sig":"TAKE + ONE-HALF TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr 2024 + 00:00:00 EDT","quantity":3,"expirationDate":"Sat, 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720941","prescriptionName":"CITALOPRAM + 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675106,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00258-3697-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CITALOPRAM 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844900,"sig":null,"orderedDate":"Thu, + 12 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720941","prescriptionName":"CITALOPRAM + 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844900,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00258-3697-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743762,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720941","prescriptionName":"CITALOPRAM + 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743762,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00258-3697-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675107,"sig":"APPLY + SMALL AMOUNT TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr + 2024 00:00:00 EDT","quantity":3,"expirationDate":"Sat, 19 Apr 2025 00:00:00 + EDT","prescriptionNumber":"2720942","prescriptionName":"ECONAZOLE NITRATE + 1% CREAM","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675107,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00168-0312-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ECONAZOLE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844901,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720942","prescriptionName":"ECONAZOLE + NITRATE 1% CREAM","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844901,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00168-0312-30","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743763,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720942","prescriptionName":"ECONAZOLE + NITRATE 1% CREAM","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743763,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00168-0312-30","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675108,"sig":"USE + 1 DAILY FOR 30 DAYS","orderedDate":"Thu, 18 Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Sat, + 19 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720943","prescriptionName":"ELASTOPLAST + BANDAGE 1 IN ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675108,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"10012-3503-62","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ELASTOPLAST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844902,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720943","prescriptionName":"ELASTOPLAST + BANDAGE 1 IN ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844902,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"10012-3503-62","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Mon, + 22 Apr 2024 00:00:00 EDT","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23703937,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720943","prescriptionName":"ELASTOPLAST + BANDAGE 1 IN ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23703937,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"10012-3503-62","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675109,"sig":"TAKE + 1 CAPSULE BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 19 Mar 2024 00:00:00 + EDT","quantity":2,"expirationDate":"Thu, 20 Mar 2025 00:00:00 EDT","prescriptionNumber":"2720944","prescriptionName":"ASPIRIN + 25MG/DIPYRDAMOLE 200MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675109,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00597-0001-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ASPIRIN/DIPYRIDAMOLE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Tue, 19 Mar 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844903,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720944","prescriptionName":"ASPIRIN + 25MG/DIPYRDAMOLE 200MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844903,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00597-0001-60","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Tue, + 28 May 2024 00:00:00 EDT","refillDate":"Tue, 19 Mar 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23840345,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720944","prescriptionName":"ASPIRIN + 25MG/DIPYRDAMOLE 200MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23840345,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00597-0001-60","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Tue, 19 Mar 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743764,"sig":null,"orderedDate":"Tue, + 23 Apr 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720944","prescriptionName":"ASPIRIN + 25MG/DIPYRDAMOLE 200MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743764,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00597-0001-60","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675110,"sig":"INJECT + 1 INTRAMUSCULAR DAILY","orderedDate":"Tue, 19 Mar 2024 00:00:00 EDT","quantity":2,"expirationDate":"Thu, + 20 Mar 2025 00:00:00 EDT","prescriptionNumber":"2720945","prescriptionName":"ALTEPLASE + for INJ 100mg VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675110,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"50242-0044-13","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALTEPLASE 100MG VIAL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Tue, 19 Mar 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844904,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720945","prescriptionName":"ALTEPLASE + for INJ 100mg VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844904,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"50242-0044-13","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Mon, + 22 Apr 2024 00:00:00 EDT","refillDate":"Tue, 19 Mar 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23703938,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720945","prescriptionName":"ALTEPLASE + for INJ 100mg VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23703938,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"50242-0044-13","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 14 Dec 2023 00:00:00 EST","refillDate":"Sun, 04 Feb 2024 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559697,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Mon, 18 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Wed, 18 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636747F","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559697,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636747E","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Thu, + 19 Sep 2024 11:29:13 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ADEFOVIR DIPIVOXIL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Sun, + 29 Oct 2023 00:00:00 EDT","refillDate":"Tue, 19 Sep 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22626403,"sig":null,"orderedDate":"Sun, + 04 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636747F","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22626403,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 28 May 2024 00:00:00 EDT","refillDate":"Tue, 11 Jun 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559698,"sig":"TAKE + ONE TABLET BY MOUTH EVERY DAY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Mon, + 25 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 25 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"3636965A","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559698,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636965","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Sun, + 29 Sep 2024 19:57:41 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00677-1359-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ALBUTEROL + SULFATE 2MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 08 Mar 2024 00:00:00 EST","refillDate":"Tue, 26 Sep 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23281649,"sig":null,"orderedDate":"Tue, + 11 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636965A","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23281649,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00677-1359-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 13 Nov 2023 00:00:00 EST","refillDate":"Tue, 26 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22662277,"sig":null,"orderedDate":"Fri, + 01 Mar 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636965A","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22662277,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00677-1359-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 30 Oct 2023 00:00:00 EDT","refillDate":"Tue, 26 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22626404,"sig":null,"orderedDate":"Tue, + 31 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636965A","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22626404,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00677-1359-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 06 Dec 2023 00:00:00 EST","refillDate":"Tue, 26 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559701,"sig":"USE + 1 WEEKLY FOR 30 DAYS","orderedDate":"Tue, 05 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, + 05 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720476B","prescriptionName":"ABSORBABLE + GELATIN SPONGE Sz 12-7 (12''s)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559701,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720476A","divisionName":"DAYTON","modifiedDate":"Fri, 06 Sep 2024 + 16:13:49 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00009-0315-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"GELATIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Wed, 06 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22567670,"sig":null,"orderedDate":"Tue, + 26 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720476B","prescriptionName":"ABSORBABLE + GELATIN SPONGE Sz 12-7 (12''s)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567670,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00009-0315-03","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 06 Dec 2023 00:00:00 EST","refillDate":"Fri, 08 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559702,"sig":"TAKE + ONE TABLET BY MOUTH DAILY TEST TEST INDICATION TEST","orderedDate":"Thu, 07 + Sep 2023 00:00:00 EDT","quantity":10,"expirationDate":"Sat, 07 Sep 2024 00:00:00 + EDT","prescriptionNumber":"2720192F","prescriptionName":"ACETAMINOPHEN 325MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559702,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720192E","divisionName":"DAYTON","modifiedDate":"Sun, 08 Sep 2024 + 13:29:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0488-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 26 Jan 2024 00:00:00 EST","refillDate":"Sat, 30 Dec 2023 00:00:00 EST","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559703,"sig":"TAKE + 25 BY MOUTH 1XD FOR 60 DAYS","orderedDate":"Fri, 08 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sun, + 08 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720187F","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559703,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720187E","divisionName":"DAYTON","modifiedDate":"Mon, 09 Sep 2024 + 10:49:38 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 22 Jan 2024 00:00:00 EST","refillDate":"Sat, 09 Sep 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22897240,"sig":null,"orderedDate":"Sat, + 30 Dec 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720187F","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22897240,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Sat, 09 Sep 2023 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22567672,"sig":null,"orderedDate":"Sun, + 10 Dec 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720187F","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567672,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 20 Nov 2023 00:00:00 EST","refillDate":"Mon, 01 Jan 2024 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559704,"sig":"APPLY + SMALL AMOUNT WEEKLY FOR 60 DAYS","orderedDate":"Tue, 10 Oct 2023 00:00:00 + EDT","quantity":6,"expirationDate":"Thu, 10 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720218E","prescriptionName":"ACYCLOVIR + 5% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559704,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720218D","divisionName":"DAYTON","modifiedDate":"Mon, 07 Oct 2024 + 11:43:39 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"64455-0993-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 20 Nov 2023 00:00:00 EST","refillDate":"Mon, 20 Nov 2023 00:00:00 EST","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559705,"sig":"TAKE + TWO TABLETS BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Sat, 30 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 30 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720221F","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559705,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720221E","divisionName":"DAYTON","modifiedDate":"Tue, 01 Oct 2024 + 11:13:06 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 15 Dec 2023 00:00:00 EST","refillDate":"Fri, 01 Sep 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559706,"sig":"TAKE + 30 TABLETS BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Thu, + 31 Aug 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 31 Aug 2024 + 00:00:00 EDT","prescriptionNumber":"2720194E","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559706,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720194D","divisionName":"DAYTON","modifiedDate":"Mon, 02 Sep 2024 + 04:55:23 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 20 Nov 2023 00:00:00 EST","refillDate":"Mon, 20 Nov 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559707,"sig":"TAKE + ONE TABLET BY MOUTH 1X DAILY FOR 30 DAYS","orderedDate":"Tue, 10 Oct 2023 + 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 10 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720400C","prescriptionName":"AMOXAPINE + 150MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559707,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720400B","divisionName":"DAYTON","modifiedDate":"Mon, 07 Oct 2024 + 11:43:39 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXAPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, + 12 Sep 2024 00:00:00 EDT","refillDate":"Thu, 12 Sep 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23669990,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 60 DAYS","orderedDate":"Wed, 17 Apr 2024 00:00:00 + EDT","quantity":2,"expirationDate":"Fri, 18 Apr 2025 00:00:00 EDT","prescriptionNumber":"2720868A","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23669990,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720868","divisionName":"DAYTON","modifiedDate":"Wed, 06 Nov 2024 + 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00085-0252-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, + 18 Apr 2024 00:00:00 EDT","refillDate":"Wed, 17 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23675645,"sig":null,"orderedDate":"Thu, + 12 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720868A","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23675645,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00085-0252-03","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 11 Dec 2023 00:00:00 EST","refillDate":"Fri, 17 Nov 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22695977,"sig":"TAKE + 1 BY MOUTH DAILY FOR 30 DAYS TEST","orderedDate":"Sat, 28 Oct 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 28 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720709","prescriptionName":"ABACAVIR + SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22695977,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 29 Oct 2024 12:05:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ABACAVIR/LAMIVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 28 Nov 2023 00:00:00 EST","refillDate":"Sat, 28 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22702021,"sig":null,"orderedDate":"Fri, + 17 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720709","prescriptionName":"ABACAVIR + SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22702021,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22695978,"sig":"APPLY + LIBERAL AMOUNT DAILY FOR 30 DAYS TEST","orderedDate":"Sat, 28 Oct 2023 00:00:00 + EDT","quantity":4,"expirationDate":"Mon, 28 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720710","prescriptionName":"LIDOCAINE + 5% OINT 35 Gm / 1.25 oz","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22695978,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 29 Oct 2024 12:05:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0204-37","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"LIDOCAINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 22 Jan 2024 00:00:00 EST","refillDate":"Sat, 28 Oct 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22897241,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720710","prescriptionName":"LIDOCAINE + 5% OINT 35 Gm / 1.25 oz","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22897241,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0204-37","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 16 Jan 2024 00:00:00 EST","refillDate":"Sat, 28 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22875519,"sig":null,"orderedDate":"Sat, + 13 Jan 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720710","prescriptionName":"LIDOCAINE + 5% OINT 35 Gm / 1.25 oz","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22875519,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0204-37","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, + 12 Sep 2024 00:00:00 EDT","refillDate":"Thu, 12 Sep 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844910,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST","orderedDate":"Mon, 29 Apr 2024 + 00:00:00 EDT","quantity":3,"expirationDate":"Wed, 30 Apr 2025 00:00:00 EDT","prescriptionNumber":"2721007","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844910,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ADEFOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, + 03 Jun 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23858549,"sig":null,"orderedDate":"Thu, + 12 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721007","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23858549,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23845987,"sig":null,"orderedDate":"Thu, + 30 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721007","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":"Sat, 01 Jun 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23845987,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, + 20 Sep 2024 00:00:00 EDT","refillDate":"Fri, 20 Sep 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844911,"sig":"INHALE + 1 DAILY FOR 30 DAYS TEST","orderedDate":"Mon, 29 Apr 2024 00:00:00 EDT","quantity":200,"expirationDate":"Wed, + 30 Apr 2025 00:00:00 EDT","prescriptionNumber":"2721008","prescriptionName":"ALBUTEROL + 200MCG INHL CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844911,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00173-0389-02","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, + 08 Aug 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24307536,"sig":null,"orderedDate":"Fri, + 20 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721008","prescriptionName":"ALBUTEROL + 200MCG INHL CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24307536,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00173-0389-02","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Thu, + 30 May 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23849029,"sig":null,"orderedDate":"Wed, + 19 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721008","prescriptionName":"ALBUTEROL + 200MCG INHL CAP","dispensedDate":"Tue, 28 May 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23849029,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00173-0389-02","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Thu, + 30 May 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23848885,"sig":null,"orderedDate":"Thu, + 30 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721008","prescriptionName":"ALBUTEROL + 200MCG INHL CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23848885,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00173-0389-02","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 22 Feb 2024 00:00:00 EST","refillDate":"Wed, 29 Nov 2023 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22704988,"sig":"TAKE + 1 TABLET BY MOUTH WEEKLY FOR 30 DAYS","orderedDate":"Wed, 29 Nov 2023 00:00:00 + EST","quantity":4,"expirationDate":"Fri, 29 Nov 2024 00:00:00 EST","prescriptionNumber":"2720402A","prescriptionName":"MAALOX + NO. 2 TAB ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22704988,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720402","divisionName":"DAYTON","modifiedDate":"Wed, 06 Nov 2024 + 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MAALOX N0.2","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Thu, + 24 Oct 2024 00:00:00 EDT","refillDate":"Sat, 26 Oct 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22949936,"sig":"INSERT + 10MG IN RECTUM WEEKLY FOR 30 DAYS","orderedDate":"Sun, 07 Jan 2024 00:00:00 + EST","quantity":1,"expirationDate":"Tue, 07 Jan 2025 00:00:00 EST","prescriptionNumber":"3637009","prescriptionName":"HEMORRHOIDAL + RTL SUPP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22949936,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 06 Nov 2024 15:46:41 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00904-7688-22","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HEMORRHOIDAL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"active","refillSubmitDate":"Thu, + 24 Oct 2024 00:00:00 EDT","refillDate":"Mon, 08 Jan 2024 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24616589,"sig":null,"orderedDate":"Sat, + 26 Oct 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637009","prescriptionName":"HEMORRHOIDAL + RTL SUPP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24616589,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00904-7688-22","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Thu, + 14 Mar 2024 00:00:00 EDT","refillDate":"Mon, 08 Jan 2024 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23281650,"sig":null,"orderedDate":"Fri, + 20 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637009","prescriptionName":"HEMORRHOIDAL + RTL SUPP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23281650,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00904-7688-22","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Tue, + 06 Feb 2024 00:00:00 EST","refillDate":"Mon, 08 Jan 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22950027,"sig":null,"orderedDate":"Tue, + 06 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3637009","prescriptionName":"HEMORRHOIDAL + RTL SUPP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22950027,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00904-7688-22","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355399,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720878","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355399,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-1101-16","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CAPECITABINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 16 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355400,"sig":"TAKE + 1 TEASPOONFUL BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 + 00:00:00 EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720879","prescriptionName":"CASTOR + OIL 30 ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355400,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00054-8133-04","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CASTOR OIL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Fri, 14 Jun 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355401,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 + EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720880","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355401,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00054-4346-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HALOPERIDOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844887,"sig":null,"orderedDate":"Fri, + 14 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720880","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844887,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00054-4346-31","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Wed, + 17 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23669985,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720880","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23669985,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00054-4346-31","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 15 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355402,"sig":"USE + 1 DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720881","prescriptionName":"ELASTOPLAST + BANDAGE 1 IN ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355402,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"10012-3503-62","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ELASTOPLAST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355403,"sig":"1 + TEASPOONFUL MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD IF GI UPSET OCCURS--","orderedDate":"Tue, + 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 + 00:00:00 EST","prescriptionNumber":"2720882","prescriptionName":"IBUPROFEN + 100MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355403,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00045-0448-17","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"IBUPROFEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844888,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720882","prescriptionName":"IBUPROFEN + 100MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844888,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00045-0448-17","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Wed, + 17 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23669986,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720882","prescriptionName":"IBUPROFEN + 100MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23669986,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00045-0448-17","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355404,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720883","prescriptionName":"IMIPRAMINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355404,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00536-3929-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"IMIPRAMINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844889,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720883","prescriptionName":"IMIPRAMINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844889,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00536-3929-10","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Wed, + 17 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23669987,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720883","prescriptionName":"IMIPRAMINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23669987,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00536-3929-10","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, + 12 Sep 2024 00:00:00 EDT","refillDate":"Thu, 12 Sep 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844912,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Mon, + 29 Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Wed, 30 Apr 2025 + 00:00:00 EDT","prescriptionNumber":"2721009","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844912,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23845988,"sig":null,"orderedDate":"Thu, + 12 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721009","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23845988,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844913,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY 6 HOURS FOR 30 DAYS TEST --TAKE WITH FOOD TO DECREASE + GI DISCOMFORT--","orderedDate":"Mon, 29 Apr 2024 00:00:00 EDT","quantity":120,"expirationDate":"Wed, + 30 Apr 2025 00:00:00 EDT","prescriptionNumber":"2721010","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844913,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"CEPHALEXIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24339861,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721010","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24339861,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Mon, + 03 Jun 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23858550,"sig":null,"orderedDate":"Tue, + 18 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721010","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":"Sat, 01 Jun 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23858550,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Thu, + 30 May 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23848886,"sig":null,"orderedDate":"Sun, + 19 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721010","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)777-1010","cmopNdcNumber":"00093721410","id":23848886,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9837771010","dispStatus":"Suspended","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"OVAL","color":"WHITE","frontImprint":"9,3","backImprint":"72,14","dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844914,"sig":"TAKE + 1 TEASPOONFUL BY AS DIRECTED DAILY FOR 30 DAYS TEST","orderedDate":"Mon, 29 + Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Wed, 30 Apr 2025 00:00:00 + EDT","prescriptionNumber":"2721011","prescriptionName":"ACCU-CHEK COMFORT + CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844914,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"GLUCOSE TEST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844915,"sig":"INJECT + 1 INTRAVENEOUS USE DAILY FOR 30 DAYS TEST","orderedDate":"Mon, 29 Apr 2024 + 00:00:00 EDT","quantity":2,"expirationDate":"Wed, 30 Apr 2025 00:00:00 EDT","prescriptionNumber":"2721012","prescriptionName":"LEUCOVORIN + CALCIUM 50MG INJ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844915,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00205-5330-92","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"LEUCOVORIN CALCIUM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23845990,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721012","prescriptionName":"LEUCOVORIN + CALCIUM 50MG INJ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23845990,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00205-5330-92","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Wed, 29 May 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844916,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST","orderedDate":"Mon, 29 Apr 2024 + 00:00:00 EDT","quantity":2,"expirationDate":"Wed, 30 Apr 2025 00:00:00 EDT","prescriptionNumber":"2721013","prescriptionName":"MELOXICAM + 15MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844916,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00597-0030-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"MELOXICAM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23845991,"sig":null,"orderedDate":"Wed, + 29 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721013","prescriptionName":"MELOXICAM + 15MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23845991,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00597-0030-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":"Tue, + 29 Oct 2024 00:00:00 EDT","refillDate":"Sat, 26 Oct 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23018083,"sig":"TAKE + ONE TABLET BY MOUTH TWO (2) TIMES PER DAY, WITH FOOD FOR 30 DAYS TEST INDI + TEST PI","orderedDate":"Sat, 03 Feb 2024 00:00:00 EST","quantity":60,"expirationDate":"Mon, + 03 Feb 2025 00:00:00 EST","prescriptionNumber":"3637012","prescriptionName":"METFORMIN + HCL 500MG TAB","dispensedDate":"Mon, 05 Feb 2024 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23018083,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, 06 Nov 2024 15:46:41 + EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"57664-0397-18","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"METFORMIN + HCL 500MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"active","refillSubmitDate":"Tue, + 29 Oct 2024 00:00:00 EDT","refillDate":"Sun, 04 Feb 2024 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24616590,"sig":null,"orderedDate":"Sat, + 26 Oct 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637012","prescriptionName":"METFORMIN + HCL 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24616590,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"57664-0397-18","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Wed, + 10 Jul 2024 00:00:00 EDT","refillDate":"Sun, 04 Feb 2024 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24461633,"sig":null,"orderedDate":"Fri, + 20 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637012","prescriptionName":"METFORMIN + HCL 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24461633,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"57664-0397-18","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Thu, + 14 Mar 2024 00:00:00 EDT","refillDate":"Sun, 04 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23281651,"sig":null,"orderedDate":"Tue, + 11 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637012","prescriptionName":"METFORMIN + HCL 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23281651,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"57664-0397-18","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":"Tue, + 28 May 2024 00:00:00 EDT","refillDate":"Tue, 11 Jun 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23018084,"sig":"INJECT + 1ML INTO THE MUSCLE ONCE FOR 30 DAYS","orderedDate":"Sat, 03 Feb 2024 00:00:00 + EST","quantity":1,"expirationDate":"Mon, 03 Feb 2025 00:00:00 EST","prescriptionNumber":"3637013","prescriptionName":"M-M-R + II [USP] VACCINE","dispensedDate":"Sun, 04 Feb 2024 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23018084,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 06 Nov 2024 15:46:41 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00006-4681-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"M-M-R II USP VACCINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"active","refillSubmitDate":"Tue, + 26 Mar 2024 00:00:00 EDT","refillDate":null,"refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23759004,"sig":null,"orderedDate":"Tue, + 11 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637013","prescriptionName":"M-M-R + II [USP] VACCINE","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23759004,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00006-4681-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 10 May 2023 17:28:13 EDT","refillDate":"Wed, 10 May 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21836686,"sig":"TAKE + 1 TEASPOONFUL MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD--","orderedDate":"Fri, + 24 Feb 2023 00:00:00 EST","quantity":30,"expirationDate":"Sun, 25 Feb 2024 + 00:00:00 EST","prescriptionNumber":"2720270C","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21836686,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720270B","divisionName":"DAYTON","modifiedDate":"Mon, 26 Feb 2024 + 13:56:36 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 02 Jun 2023 10:57:40 EDT","refillDate":"Mon, 08 May 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22094889,"sig":"APPLY + SMALL AMOUNT TO AFFECTED AREA DAILY FOR 30 DAYS TEST INDICATION","orderedDate":"Mon, + 08 May 2023 00:00:00 EDT","quantity":1,"expirationDate":"Wed, 08 May 2024 + 00:00:00 EDT","prescriptionNumber":"2720496","prescriptionName":"KETOCONAZOLE + 1% CREAM ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22094889,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Thu, 09 May 2024 09:38:25 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"50458-0221-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"KETOCONAZOLE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 29 Mar 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355200,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720863","prescriptionName":"ABACAVIR + SULFATE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355200,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0661-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ABACAVIR 300 MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355201,"sig":"INJECT + 1 DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720864","prescriptionName":"LIDOCAINE + 0.5% 50ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355201,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00186-0135-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LIDOCAINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, + 15 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23657548,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720864","prescriptionName":"LIDOCAINE + 0.5% 50ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23657548,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00186-0135-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 11 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355202,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 + EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720865","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355202,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ADEFOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 11 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355204,"sig":"TAKE + 1 DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720867","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355204,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 12 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355205,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 60 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 + EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720868","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355205,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00085-0252-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 12 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355206,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Tue, + 27 Feb 2024 00:00:00 EST","quantity":30,"expirationDate":"Thu, 27 Feb 2025 + 00:00:00 EST","prescriptionNumber":"2720869","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355206,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 12 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355207,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS --TAKE WITH FOOD TO DECREASE GI IRRITATION/AVOID + ANTACIDS--","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720870","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355207,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 12 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355208,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 + EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720871","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355208,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMITRIPTYLINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, + 30 Aug 2024 00:00:00 EDT","refillDate":"Fri, 30 Aug 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355209,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS --AVOID GRAPEFRUIT JUICE--","orderedDate":"Tue, + 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 + 00:00:00 EST","prescriptionNumber":"2720872","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355209,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMLODIPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, + 12 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23651395,"sig":null,"orderedDate":"Fri, + 30 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720872","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23651395,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 23 Sep 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23301674,"sig":"TAKE + 1 INHALATION BY MOUTH EVERY TWELVE (12) HOURS FOR 30 DAYS TEST INDI 1 TEST + PI ONE (1)","orderedDate":"Sun, 10 Mar 2024 00:00:00 EST","quantity":1,"expirationDate":"Tue, + 11 Mar 2025 00:00:00 EDT","prescriptionNumber":"3637019","prescriptionName":"SALMETEROL + 50MCG/BLSTR PO INHL DISKUS 60","dispensedDate":"Tue, 12 Mar 2024 00:00:00 + EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(410)636-7019","cmopNdcNumber":"00093721410","id":23301674,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE 1","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, 06 Nov 2024 15:46:41 + EST","institutionId":null,"dialCmopDivisionPhone":"4106367019","dispStatus":"Active: + Refill in Process","ndc":"00173-0521-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI 1","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"SALMETEROL + 50MCG DISK","shape":"OVAL","color":"WHITE","frontImprint":"9,3","backImprint":"72,14","dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 11 Mar 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24461634,"sig":null,"orderedDate":"Mon, + 23 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637019","prescriptionName":"SALMETEROL + 50MCG/BLSTR PO INHL DISKUS 60","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24461634,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00173-0521-00","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Wed, + 20 Mar 2024 00:00:00 EDT","refillDate":"Mon, 11 Mar 2024 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23301817,"sig":null,"orderedDate":"Sun, + 31 Mar 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3637019","prescriptionName":"SALMETEROL + 50MCG/BLSTR PO INHL DISKUS 60","dispensedDate":"Mon, 18 Mar 2024 00:00:00 + EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)999-7019","cmopNdcNumber":"00093721410","id":23301817,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4109997019","dispStatus":"Suspended","ndc":"00173-0521-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"OVAL","color":"WHITE","frontImprint":"9,3","backImprint":"72,14","dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 15 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355468,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720884","prescriptionName":"CAPECITABINE + 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355468,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-1101-16","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CAPECITABINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 17 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355469,"sig":"TAKE + ONE-HALF TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 + 00:00:00 EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720885","prescriptionName":"CITALOPRAM + 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355469,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00258-3697-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CITALOPRAM 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, + 11 Sep 2024 00:00:00 EDT","refillDate":"Wed, 11 Sep 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24013098,"sig":"TAKE + 1 TEASPOONFUL BY AS DIRECTED DAILY FOR 30 DAYS TEST","orderedDate":"Wed, 22 + May 2024 00:00:00 EDT","quantity":3,"expirationDate":"Fri, 23 May 2025 00:00:00 + EDT","prescriptionNumber":"2721073","prescriptionName":"ACCU-CHEK COMFORT + CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24013098,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"GLUCOSE TEST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, + 24 Jun 2024 00:00:00 EDT","refillDate":"Wed, 22 May 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24160638,"sig":null,"orderedDate":"Wed, + 11 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721073","prescriptionName":"ACCU-CHEK + COMFORT CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24160638,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23604733,"sig":"TAKE + 10MG BY MOUTH DAILY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Thu, 28 + Mar 2024 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 29 Mar 2025 00:00:00 + EDT","prescriptionNumber":"2720905","prescriptionName":"LACTOBACILLUS ACIDOPHILUS + CAP","dispensedDate":"Sat, 30 Mar 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(983)272-0905","cmopNdcNumber":"00093721410","id":23604733,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"DAYTON","modifiedDate":"Wed, 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"9832720905","dispStatus":"Active: + Refill in Process","ndc":"00585-0105-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"BACID","shape":"OVAL","color":"WHITE","frontImprint":"9,3","backImprint":"72,14","dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Fri, 29 Mar 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24339860,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720905","prescriptionName":"LACTOBACILLUS + ACIDOPHILUS CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24339860,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00585-0105-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, + 05 Apr 2024 00:00:00 EDT","refillDate":"Fri, 29 Mar 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23607901,"sig":null,"orderedDate":"Thu, + 18 Apr 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720905","prescriptionName":"LACTOBACILLUS + ACIDOPHILUS CAP","dispensedDate":"Wed, 03 Apr 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)777-0905","cmopNdcNumber":"00093721410","id":23607901,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9837770905","dispStatus":"Suspended","ndc":"00585-0105-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"OVAL","color":"WHITE","frontImprint":"9,3","backImprint":"72,14","dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 12 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355210,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720873","prescriptionName":"AMOXAPINE + 150MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355210,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXAPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 11 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355203,"sig":"TAKE + 1 BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720866","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ELIXIR (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355203,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00054-3010-63","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 01 Jan 2024 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22695015,"sig":"APPLY + SMALL AMOUNT WEEKLY FOR 60 DAYS","orderedDate":"Mon, 27 Nov 2023 00:00:00 + EST","quantity":6,"expirationDate":"Wed, 27 Nov 2024 00:00:00 EST","prescriptionNumber":"2720218F","prescriptionName":"ACYCLOVIR + 5% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22695015,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720218E","divisionName":"DAYTON","modifiedDate":"Wed, 06 Nov 2024 + 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"64455-0993-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 20 Sep 2024 00:00:00 EDT","refillDate":"Fri, 20 Sep 2024 00:00:00 EDT","refillRemaining":8,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22695016,"sig":"TAKE + TWO TABLETS BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Sat, 28 Oct 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 28 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720221G","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22695016,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720221F","divisionName":"DAYTON","modifiedDate":"Tue, 29 Oct 2024 + 12:05:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALBUTEROL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Sun, 29 Oct 2023 00:00:00 EDT","refillRemaining":8,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844885,"sig":null,"orderedDate":"Fri, + 20 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720221G","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844885,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 04 Dec 2023 00:00:00 EST","refillDate":"Sun, 29 Oct 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22718688,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720221G","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22718688,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 27 Nov 2023 00:00:00 EST","refillDate":"Sun, 29 Oct 2023 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22695145,"sig":null,"orderedDate":"Mon, + 27 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720221G","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":"Mon, 27 Nov 2023 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22695145,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00085-0573-03","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 16 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23660401,"sig":"TAKE + 1 BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 16 Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Thu, + 16 May 2024 00:00:00 EDT","prescriptionNumber":"2720866A","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ELIXIR (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23660401,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720866","divisionName":"DAYTON","modifiedDate":"Fri, 17 May 2024 + 09:22:33 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00054-3010-63","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 16 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23660402,"sig":"TAKE + ONE TABLET BY MOUTH DAILY TEST TEST INDICATION TEST","orderedDate":"Tue, 16 + Apr 2024 00:00:00 EDT","quantity":10,"expirationDate":"Mon, 15 Jul 2024 00:00:00 + EDT","prescriptionNumber":"2720192G","prescriptionName":"ACETAMINOPHEN 325MG + TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23660402,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720192F","divisionName":"DAYTON","modifiedDate":"Tue, 16 Jul 2024 + 12:20:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51111-0488-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 16 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23660403,"sig":"TAKE + 1 DAILY FOR 30 DAYS","orderedDate":"Tue, 16 Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Thu, + 16 May 2024 00:00:00 EDT","prescriptionNumber":"2720867A","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23660403,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720867","divisionName":"DAYTON","modifiedDate":"Fri, 17 May 2024 + 09:22:33 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACITRETIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 16 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23660404,"sig":"APPLY + LIBERAL AMOUNT DAILY FOR 30 DAYS TEST","orderedDate":"Tue, 16 Apr 2024 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 16 May 2024 00:00:00 EDT","prescriptionNumber":"2720707A","prescriptionName":"ACYCLOVIR + 5% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23660404,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720707","divisionName":"DAYTON","modifiedDate":"Fri, 17 May 2024 + 09:22:33 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"64455-0993-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 02 Oct 2023 00:00:00 EDT","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22465251,"sig":"TAKE + 30 TABLETS BY MOUTH DAILY FOR 30 DAYS --AVOID ANTACIDS--","orderedDate":"Thu, + 14 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 14 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"2720194D","prescriptionName":"ALENDRONATE + 35MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22465251,"userId":16955936,"providerFirstName":"JOSHUA","providerLastName":"HARPEL","remarks":"RENEWED + FROM RX # 2720194C","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00006-0077-44","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALENDRONATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22465252,"sig":"TAKE + ONE TABLET BY MOUTH 1X DAILY FOR 30 DAYS","orderedDate":"Thu, 14 Sep 2023 + 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 14 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720400B","prescriptionName":"AMOXAPINE + 150MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22465252,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720400A","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXAPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 14 Mar 2024 00:00:00 EDT","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22465253,"sig":"TAKE + 1 TEASPOONFUL MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD--","orderedDate":"Thu, + 14 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 14 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"2720270D","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22465253,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720270C","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 05 Oct 2023 00:00:00 EDT","refillDate":"Thu, 05 Oct 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22465254,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 14 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Sat, 14 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720257C","prescriptionName":"BENZONATATE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22465254,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720257B","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"50111-0851-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BENZONATATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 31 May 2024 00:00:00 EDT","refillDate":"Wed, 29 May 2024 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22465255,"sig":"TAKE + 0.5ML BY MOUTH AFTER DINNER FOR 5 DAYS","orderedDate":"Thu, 14 Sep 2023 00:00:00 + EDT","quantity":10,"expirationDate":"Sat, 14 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720108C","prescriptionName":"BERNA + VACCINE CAP B/P","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22465255,"userId":16955936,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"RENEWED + FROM RX # 2720108B","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VIVOTIF(TYPHOID)","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844882,"sig":null,"orderedDate":"Wed, + 29 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720108C","prescriptionName":"BERNA + VACCINE CAP B/P","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844882,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22548361,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720108C","prescriptionName":"BERNA + VACCINE CAP B/P","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22548361,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 04 Jul 2024 19:23:12 EDT","refillDate":"Tue, 11 Jun 2024 00:00:00 EDT","refillRemaining":7,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22467490,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 06 Aug 2023 00:00:00 + EDT","quantity":15,"expirationDate":"Tue, 06 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636711D","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22467490,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636711C","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 07 Aug 2024 10:49:18 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMLODIPINE BESYLATE 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 14 Mar 2024 13:53:11 EDT","refillDate":"Mon, 07 Aug 2023 00:00:00 EDT","refillRemaining":7,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23281645,"sig":null,"orderedDate":"Tue, + 11 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711D","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23281645,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 13 Nov 2023 15:44:01 EST","refillDate":"Mon, 07 Aug 2023 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22662275,"sig":null,"orderedDate":"Fri, + 01 Mar 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711D","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22662275,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 31 Oct 2023 12:47:54 EDT","refillDate":"Mon, 07 Aug 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22641834,"sig":null,"orderedDate":"Mon, + 06 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711D","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22641834,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 12:40:53 EDT","refillDate":"Mon, 07 Aug 2023 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559688,"sig":null,"orderedDate":"Tue, + 03 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636711D","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559688,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00069-1540-68","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 27 Jun 2024 00:00:00 EDT","refillDate":"Tue, 11 Jun 2024 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22467491,"sig":"TAKE + 2G EVERY EIGHT (8) HOURS FOR 30 DAYS , AND FINISH ALL MEDICATION.","orderedDate":"Fri, + 11 Aug 2023 00:00:00 EDT","quantity":4,"expirationDate":"Sun, 11 Aug 2024 + 00:00:00 EDT","prescriptionNumber":"3636712D","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22467491,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636712C","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 12 Aug 2024 06:30:22 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN 250MG/5ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 13 Nov 2023 00:00:00 EST","refillDate":"Sat, 12 Aug 2023 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22662276,"sig":null,"orderedDate":"Tue, + 11 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636712D","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22662276,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 31 Oct 2023 00:00:00 EDT","refillDate":"Sat, 12 Aug 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22641835,"sig":null,"orderedDate":"Mon, + 06 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636712D","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22641835,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Sat, 12 Aug 2023 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559689,"sig":null,"orderedDate":"Tue, + 03 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636712D","prescriptionName":"AMOXICILLIN 250MG/5ML + SUSP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559689,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00029-6009-22","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 10 Jul 2024 00:00:00 EDT","refillDate":"Tue, 11 Jun 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22467492,"sig":"APPLY + APPLICATION(S) TO THE AFFECTED AREA WEEKLY FOR 30 DAYS TEST INDI 09132023 + TEST PI 09152023","orderedDate":"Tue, 12 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, + 12 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636971","prescriptionName":"LIDOCAINE + 5% OINT","dispensedDate":"Thu, 14 Sep 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22467492,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS 09152023","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 13 + Sep 2024 13:05:06 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0204-37","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI 09132023","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"LIDOCAINE + 5% 35GM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22567661,"sig":null,"orderedDate":"Tue, + 11 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636971","prescriptionName":"LIDOCAINE + 5% OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567661,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0204-37","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Wed, 13 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559690,"sig":null,"orderedDate":"Tue, + 03 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636971","prescriptionName":"LIDOCAINE + 5% OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559690,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0204-37","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 10 Jul 2024 00:00:00 EDT","refillDate":"Tue, 11 Jun 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22467493,"sig":"APPLY + 1MG TO THE AFFECTED AREA ONCE FOR 30 DAYS","orderedDate":"Sun, 10 Sep 2023 + 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 10 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636972","prescriptionName":"LINDANE + 1% LOTION","dispensedDate":"Tue, 12 Sep 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":"(410)636-6972","cmopNdcNumber":"00113002239","id":22467493,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 11 Sep 2024 08:33:58 EDT","institutionId":null,"dialCmopDivisionPhone":"4106366972","dispStatus":"Expired","ndc":"68188-0935-90","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LINDANE 1% 60ML","shape":"OVAL","color":"WHITE","frontImprint":"L022","backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Mon, 11 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22567662,"sig":null,"orderedDate":"Tue, + 11 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636972","prescriptionName":"LINDANE + 1% LOTION","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567662,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"68188-0935-90","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Mon, 11 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559691,"sig":null,"orderedDate":"Tue, + 03 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636972","prescriptionName":"LINDANE + 1% LOTION","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559691,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"68188-0935-90","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Fri, 15 Sep 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22467497,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY 6 HOURS FOR 30 DAYS --TAKE WITH FOOD TO DECREASE + GI DISCOMFORT--","orderedDate":"Fri, 15 Sep 2023 00:00:00 EDT","quantity":120,"expirationDate":"Sun, + 15 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720258C","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22467497,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720258B","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CEPHALEXIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 27 Feb 2024 00:00:00 EST","refillDate":"Fri, 15 Sep 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22467498,"sig":"INJECT + 1G WEEKLY FOR 30 DAYS","orderedDate":"Fri, 15 Sep 2023 00:00:00 EDT","quantity":4,"expirationDate":"Sun, + 15 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720259C","prescriptionName":"CIPROFLOXACIN + 200MG/20ML VIAL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22467498,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720259B","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00026-8562-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CIPROFLOXACIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 06 Oct 2023 00:00:00 EDT","refillDate":"Fri, 06 Oct 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22467499,"sig":"APPLY + LIBERAL AMOUNT TO AFFECTED AREA WEEKLY FOR 60 DAYS","orderedDate":"Fri, 15 + Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sun, 15 Sep 2024 00:00:00 + EDT","prescriptionNumber":"2720398A","prescriptionName":"HALCINONIDE 0.1% + OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22467499,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720398","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00003-0248-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HALCINONIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 19 Mar 2024 00:00:00 EDT","refillDate":"Fri, 15 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22467500,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 60 DAYS","orderedDate":"Fri, 15 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Sun, 15 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720397A","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22467500,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720397","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00054-4346-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HALOPERIDOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22467501,"sig":"TAKE + 5ML WEEKLY FOR 30 DAYS","orderedDate":"Fri, 15 Sep 2023 00:00:00 EDT","quantity":3,"expirationDate":"Sun, + 15 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720338B","prescriptionName":"IODOQUINOL + 650MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22467501,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720338A","divisionName":"DAYTON","modifiedDate":"Mon, 16 Sep 2024 + 10:17:59 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00516-0093-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"IODOQUINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Fri, 15 Sep 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844883,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720338B","prescriptionName":"IODOQUINOL + 650MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844883,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00516-0093-01","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Fri, 15 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23743752,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720338B","prescriptionName":"IODOQUINOL + 650MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23743752,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00516-0093-01","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Fri, 15 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22548364,"sig":null,"orderedDate":"Sun, + 24 Mar 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720338B","prescriptionName":"IODOQUINOL + 650MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22548364,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00516-0093-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 26 Apr 2024 00:00:00 EDT","refillDate":"Sun, 24 Mar 2024 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22467502,"sig":"APPLY + SMALL AMOUNT TO AFFECTED AREA DAILY FOR 30 DAYS TEST INDICATION","orderedDate":"Wed, + 16 Aug 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 16 Aug 2024 + 00:00:00 EDT","prescriptionNumber":"2720496A","prescriptionName":"KETOCONAZOLE + 1% CREAM ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22467502,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720496","divisionName":"DAYTON","modifiedDate":"Mon, 19 Aug 2024 + 07:48:56 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50458-0221-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"KETOCONAZOLE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Thu, 17 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22548365,"sig":null,"orderedDate":"Sun, + 24 Mar 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720496A","prescriptionName":"KETOCONAZOLE + 1% CREAM ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22548365,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50458-0221-30","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Wed, 29 May 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23839141,"sig":"TAKE + 1 TEASPOONFUL BY AS DIRECTED DAILY FOR 30 DAYS TEST","orderedDate":"Sun, 28 + Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Tue, 29 Apr 2025 00:00:00 + EDT","prescriptionNumber":"2721000","prescriptionName":"ACCU-CHEK COMFORT + CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23839141,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"GLUCOSE TEST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Sun, 28 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844905,"sig":null,"orderedDate":"Wed, + 29 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721000","prescriptionName":"ACCU-CHEK + COMFORT CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844905,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Wed, 29 May 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23839142,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST","orderedDate":"Sun, 28 Apr 2024 + 00:00:00 EDT","quantity":3,"expirationDate":"Tue, 29 Apr 2025 00:00:00 EDT","prescriptionNumber":"2721001","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23839142,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ADEFOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Sun, 28 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844906,"sig":null,"orderedDate":"Wed, + 29 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721001","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844906,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"61958-0501-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, + 12 Sep 2024 00:00:00 EDT","refillDate":"Thu, 12 Sep 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23839143,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS TEST","orderedDate":"Sun, 28 Apr 2024 00:00:00 + EDT","quantity":3,"expirationDate":"Tue, 29 Apr 2025 00:00:00 EDT","prescriptionNumber":"2721002","prescriptionName":"LABETALOL + HCL 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23839143,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00173-0346-43","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"LABETALOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, + 31 May 2024 00:00:00 EDT","refillDate":"Sun, 28 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23858293,"sig":null,"orderedDate":"Thu, + 12 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721002","prescriptionName":"LABETALOL + HCL 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23858293,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00173-0346-43","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Sun, 28 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844907,"sig":null,"orderedDate":"Wed, + 29 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721002","prescriptionName":"LABETALOL + HCL 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844907,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00173-0346-43","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23839144,"sig":"TAKE + 1 TEASPOONFUL MOUTH DAILY FOR 30 DAYS TEST --TAKE WITH FOOD--","orderedDate":"Sun, + 28 Apr 2024 00:00:00 EDT","quantity":3,"expirationDate":"Tue, 29 Apr 2025 + 00:00:00 EDT","prescriptionNumber":"2721003","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23839144,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"AMOXICILLIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Sun, 28 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23845986,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721003","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23845986,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Sun, 28 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844908,"sig":null,"orderedDate":"Wed, + 29 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721003","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844908,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23839145,"sig":"APPLY + LIBERAL AMOUNT DAILY FOR 30 DAYS TEST","orderedDate":"Sun, 28 Apr 2024 00:00:00 + EDT","quantity":60,"expirationDate":"Tue, 29 Apr 2025 00:00:00 EDT","prescriptionNumber":"2721004","prescriptionName":"HALCINONIDE + 0.1% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23839145,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00003-0248-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"HALCINONIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, + 30 May 2024 00:00:00 EDT","refillDate":"Sun, 28 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23848884,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721004","prescriptionName":"HALCINONIDE + 0.1% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23848884,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00003-0248-20","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Sun, 28 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844909,"sig":null,"orderedDate":"Wed, + 29 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721004","prescriptionName":"HALCINONIDE + 0.1% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844909,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00003-0248-20","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 22 Dec 2022 15:54:27 EST","refillDate":"Thu, 17 Nov 2022 00:00:00 EST","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21496773,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY 6 HOURS FOR 30 DAYS --TAKE WITH FOOD TO DECREASE + GI DISCOMFORT--","orderedDate":"Thu, 17 Nov 2022 00:00:00 EST","quantity":120,"expirationDate":"Sat, + 18 Nov 2023 00:00:00 EST","prescriptionNumber":"2720258B","prescriptionName":"CEPHALEXIN + 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21496773,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720258A","divisionName":"DAYTON","modifiedDate":"Mon, 20 Nov 2023 + 09:35:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00093-3145-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CEPHALEXIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 30 Nov 2023 00:00:00 EST","refillDate":"Sat, 28 Oct 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22695954,"sig":"APPLY + LIBERAL AMOUNT DAILY FOR 30 DAYS TEST","orderedDate":"Sat, 28 Oct 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 28 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720707","prescriptionName":"ACYCLOVIR + 5% OINT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22695954,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 29 Oct 2024 12:05:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"64455-0993-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 22 Feb 2024 00:00:00 EST","refillDate":"Sat, 28 Oct 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22695955,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS TEST","orderedDate":"Sat, 28 Oct 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 28 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720708","prescriptionName":"AMOXAPINE + 150MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22695955,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 29 Oct 2024 12:05:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"AMOXAPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 25 Apr 2024 00:00:00 EDT","refillDate":"Mon, 22 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22467503,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Mon, 21 Aug 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, + 21 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720333C","prescriptionName":"LABETALOL + HCL 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22467503,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720333B","divisionName":"DAYTON","modifiedDate":"Wed, 28 Aug 2024 + 12:43:11 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0346-43","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LABETALOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 25 Apr 2024 00:00:00 EDT","refillDate":"Tue, 22 Aug 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23736705,"sig":null,"orderedDate":"Mon, + 22 Apr 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720333C","prescriptionName":"LABETALOL + HCL 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23736705,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0346-43","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 19 Mar 2024 00:00:00 EDT","refillDate":"Tue, 22 Aug 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23295878,"sig":null,"orderedDate":"Sun, + 24 Mar 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720333C","prescriptionName":"LABETALOL + HCL 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23295878,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0346-43","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 04 Oct 2023 00:00:00 EDT","refillDate":"Tue, 22 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22548366,"sig":null,"orderedDate":"Sun, + 07 Jan 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720333C","prescriptionName":"LABETALOL + HCL 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22548366,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00173-0346-43","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 26 Mar 2024 00:00:00 EDT","refillDate":"Wed, 01 May 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559825,"sig":"APPLY + 10MG TO THE AFFECTED AREA WEEKLY FOR 45 DAYS","orderedDate":"Wed, 06 Sep 2023 + 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 06 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636966A","prescriptionName":"ALCLOMETASONE + DIPROPION 0.05% TOP CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559825,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636966","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Sun, + 08 Sep 2024 13:29:19 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0401-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALCLOMETASONE DIPROPION 0.05%","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 26 Mar 2024 00:00:00 EDT","refillDate":"Thu, 07 Sep 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23759003,"sig":null,"orderedDate":"Wed, + 01 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636966A","prescriptionName":"ALCLOMETASONE + DIPROPION 0.05% TOP CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23759003,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0401-06","reason":null,"prescriptionNumberIndex":"RF5","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 19 Mar 2024 00:00:00 EDT","refillDate":"Thu, 07 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":23301739,"sig":null,"orderedDate":"Sun, + 17 Mar 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636966A","prescriptionName":"ALCLOMETASONE + DIPROPION 0.05% TOP CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23301739,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0401-06","reason":null,"prescriptionNumberIndex":"RF4","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 13 Nov 2023 00:00:00 EST","refillDate":"Thu, 07 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22662278,"sig":null,"orderedDate":"Sun, + 04 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636966A","prescriptionName":"ALCLOMETASONE + DIPROPION 0.05% TOP CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22662278,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0401-06","reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 31 Oct 2023 00:00:00 EDT","refillDate":"Thu, 07 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22641836,"sig":null,"orderedDate":"Mon, + 06 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636966A","prescriptionName":"ALCLOMETASONE + DIPROPION 0.05% TOP CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22641836,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0401-06","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 12 Oct 2023 00:00:00 EDT","refillDate":"Thu, 07 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22574447,"sig":null,"orderedDate":"Fri, + 13 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636966A","prescriptionName":"ALCLOMETASONE + DIPROPION 0.05% TOP CREAM","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22574447,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0401-06","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 23 Sep 2024 00:00:00 EDT","refillRemaining":11,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22559826,"sig":"TAKE + ONE TABLET EVERY EVENING FOR 30 DAYS","orderedDate":"Tue, 10 Oct 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 10 Oct 2024 00:00:00 EDT","prescriptionNumber":"3636714D","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559826,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636714C","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 07 Oct 2024 11:43:38 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00071-0155-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ATORVASTATIN CALCIUM 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Sat, 25 May 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559829,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Fri, 11 Aug 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Sun, 11 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720334B","prescriptionName":"LAMIVUDINE + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559829,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720334A","divisionName":"DAYTON","modifiedDate":"Mon, 12 Aug 2024 + 06:30:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LAMIVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 23 Apr 2024 00:00:00 EDT","refillDate":"Sat, 12 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23718683,"sig":null,"orderedDate":"Sat, + 25 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720334B","prescriptionName":"LAMIVUDINE + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23718683,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 31 Oct 2023 00:00:00 EDT","refillDate":"Sat, 12 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22626407,"sig":null,"orderedDate":"Sun, + 24 Mar 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720334B","prescriptionName":"LAMIVUDINE + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22626407,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 21 Nov 2023 00:00:00 EST","refillDate":"Tue, 21 Nov 2023 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559830,"sig":"INJECT + 10ML INTRAVENEOUS USE WEEKLY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Tue, + 10 Oct 2023 00:00:00 EDT","quantity":3,"expirationDate":"Thu, 10 Oct 2024 + 00:00:00 EDT","prescriptionNumber":"2720488A","prescriptionName":"LEUCOVORIN + CALCIUM 50MG INJ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559830,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720488","divisionName":"DAYTON","modifiedDate":"Mon, 07 Oct 2024 + 11:43:39 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00205-5330-92","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"LEUCOVORIN + CALCIUM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559831,"sig":"INJECT + 20MG DAILY FOR 30 DAYS","orderedDate":"Tue, 29 Aug 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, + 29 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720489A","prescriptionName":"LEUPROLIDE + 1MG/0.2ML 2.8ML KIT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559831,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720489","divisionName":"DAYTON","modifiedDate":"Fri, 30 Aug 2024 + 11:58:37 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00300-3626-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LEUPROLIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 14 Mar 2024 00:00:00 EDT","refillDate":"Tue, 29 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23129652,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720489A","prescriptionName":"LEUPROLIDE + 1MG/0.2ML 2.8ML KIT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23129652,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00300-3626-30","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 31 Oct 2023 00:00:00 EDT","refillDate":"Tue, 29 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22626408,"sig":null,"orderedDate":"Sun, + 07 Jan 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720489A","prescriptionName":"LEUPROLIDE + 1MG/0.2ML 2.8ML KIT","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22626408,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00300-3626-30","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559832,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Sun, 17 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Tue, + 17 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720427A","prescriptionName":"MAPROTILINE + 25MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559832,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720427","divisionName":"DAYTON","modifiedDate":"Wed, 18 Sep 2024 + 11:23:26 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00083-0110-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MAPROTILINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 31 Oct 2023 00:00:00 EDT","refillDate":"Mon, 18 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22626409,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720427A","prescriptionName":"MAPROTILINE + 25MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22626409,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00083-0110-30","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Mon, 18 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22567673,"sig":null,"orderedDate":"Sun, + 08 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720427A","prescriptionName":"MAPROTILINE + 25MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567673,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00083-0110-30","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 08 Aug 2024 00:00:00 EDT","refillDate":"Thu, 08 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22559833,"sig":"INSTILL + 1 DROP WEEKLY FOR 30 DAYS","orderedDate":"Tue, 03 Oct 2023 00:00:00 EDT","quantity":2,"expirationDate":"Thu, + 03 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720340B","prescriptionName":"LATANOPROST + 0.005% OPH SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22559833,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720340A","divisionName":"DAYTON","modifiedDate":"Fri, 04 Oct 2024 + 09:16:47 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LATANOPROST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 23 Apr 2024 00:00:00 EDT","refillDate":"Wed, 04 Oct 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23718684,"sig":null,"orderedDate":"Thu, + 08 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720340B","prescriptionName":"LATANOPROST + 0.005% OPH SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23718684,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 10 Oct 2023 00:00:00 EDT","refillDate":"Wed, 04 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22567674,"sig":null,"orderedDate":"Sun, + 24 Mar 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720340B","prescriptionName":"LATANOPROST + 0.005% OPH SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22567674,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 17 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355675,"sig":"APPLY + SMALL AMOUNT TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Tue, 27 Feb + 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, 27 Feb 2025 00:00:00 + EST","prescriptionNumber":"2720886","prescriptionName":"ECONAZOLE NITRATE + 1% CREAM","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355675,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0312-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ECONAZOLE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 12 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355676,"sig":"TAKE + 1 TABLET BY MOUTH DAILY","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720887","prescriptionName":"MAALOX + NO. 2 TAB ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355676,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MAALOX N0.2","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355677,"sig":"APPLY + SMALL AMOUNT DAILY","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720888","prescriptionName":"MAFENIDE + CREAM (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355677,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MAFENIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, + 12 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23651398,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720888","prescriptionName":"MAFENIDE + CREAM (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23651398,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23355678,"sig":"TAKE + ONE TABLET BY MOUTH DAILY","orderedDate":"Tue, 27 Feb 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, + 27 Feb 2025 00:00:00 EST","prescriptionNumber":"2720889","prescriptionName":"MAGNESIUM + OXIDE 420MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23355678,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"10706-0837-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MAGNESIUM OXIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, + 11 Apr 2024 00:00:00 EDT","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23641566,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720889","prescriptionName":"MAGNESIUM + OXIDE 420MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23641566,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"10706-0837-01","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23849031,"sig":"TAKE + 1 TABLET BY MOUTH DAILY FOR 30 DAYS TEST","orderedDate":"Tue, 30 Apr 2024 + 00:00:00 EDT","quantity":2,"expirationDate":"Thu, 01 May 2025 00:00:00 EDT","prescriptionNumber":"2721025","prescriptionName":"MAALOX + NO. 2 TAB ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23849031,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"MAALOX N0.2","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, + 03 Jun 2024 00:00:00 EDT","refillDate":"Tue, 30 Apr 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23861786,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721025","prescriptionName":"MAALOX + NO. 2 TAB ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23861786,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, + 31 May 2024 00:00:00 EDT","refillDate":"Tue, 30 Apr 2024 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23858294,"sig":null,"orderedDate":"Mon, + 20 May 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721025","prescriptionName":"MAALOX + NO. 2 TAB ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23858294,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 07 Jun 2024 00:00:00 EDT","refillDate":"Sat, 04 May 2024 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23861787,"sig":"TAKE + 1 TEASPOONFUL BY AS DIRECTED DAILY FOR 30 DAYS TEST","orderedDate":"Sat, 04 + May 2024 00:00:00 EDT","quantity":20,"expirationDate":"Mon, 05 May 2025 00:00:00 + EDT","prescriptionNumber":"2721043","prescriptionName":"ACCU-CHEK COMFORT + CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23861787,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"GLUCOSE TEST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, + 12 Sep 2024 00:00:00 EDT","refillDate":"Thu, 12 Sep 2024 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23861788,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST","orderedDate":"Sat, 04 May 2024 + 00:00:00 EDT","quantity":1,"expirationDate":"Mon, 05 May 2025 00:00:00 EDT","prescriptionNumber":"2721044","prescriptionName":"ACETAMINOPHEN + 325MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23861788,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"51111-0488-93","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ACETAMINOPHEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, + 07 Jun 2024 00:00:00 EDT","refillDate":"Sat, 04 May 2024 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23889853,"sig":null,"orderedDate":"Thu, + 12 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721044","prescriptionName":"ACETAMINOPHEN + 325MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23889853,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"51111-0488-93","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, + 20 Sep 2024 00:00:00 EDT","refillDate":"Fri, 20 Sep 2024 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23861789,"sig":"TAKE + 1 BY MOUTH DAILY TEST","orderedDate":"Sat, 04 May 2024 00:00:00 EDT","quantity":3,"expirationDate":"Mon, + 05 May 2025 00:00:00 EDT","prescriptionNumber":"2721045","prescriptionName":"ABACAVIR + SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23861789,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ABACAVIR/LAMIVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, + 11 Jun 2024 00:00:00 EDT","refillDate":"Sat, 04 May 2024 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23896984,"sig":null,"orderedDate":"Fri, + 20 Sep 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721045","prescriptionName":"ABACAVIR + SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23896984,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23861790,"sig":"TAKE + 2 BY MOUTH DAILY FOR 60 DAYS","orderedDate":"Sat, 04 May 2024 00:00:00 EDT","quantity":4,"expirationDate":"Mon, + 05 May 2025 00:00:00 EDT","prescriptionNumber":"2721046","prescriptionName":"BERNA + VACCINE CAP B/P","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23861790,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VIVOTIF(TYPHOID)","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, + 04 Jun 2024 00:00:00 EDT","refillDate":"Sat, 04 May 2024 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23869023,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721046","prescriptionName":"BERNA + VACCINE CAP B/P","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23869023,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23861791,"sig":"TAKE + ONE TABLET DAILY --TAKE WITH FOOD TO DECREASE GI IRRITATION/AVOID ANTACIDS--","orderedDate":"Sat, + 04 May 2024 00:00:00 EDT","quantity":6,"expirationDate":"Mon, 05 May 2025 + 00:00:00 EDT","prescriptionNumber":"2721047","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23861791,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ALLOPURINOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, + 06 Jun 2024 00:00:00 EDT","refillDate":"Sat, 04 May 2024 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23878074,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721047","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23878074,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00603-2115-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 19 Aug 2024 00:00:00 EDT","refillDate":"Mon, 19 Aug 2024 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23861792,"sig":"TAKE + 2 DAILY","orderedDate":"Sat, 04 May 2024 00:00:00 EDT","quantity":200,"expirationDate":"Mon, + 05 May 2025 00:00:00 EDT","prescriptionNumber":"2721048","prescriptionName":"AMOXICILLIN + 250MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23861792,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 06 Nov 2024 15:46:42 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00047-2501-17","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"AMOXICILLIN SUSPENSION 250MG/5ML 100 ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, + 06 Jun 2024 00:00:00 EDT","refillDate":"Sat, 04 May 2024 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23878075,"sig":null,"orderedDate":"Mon, + 19 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721048","prescriptionName":"AMOXICILLIN + 250MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23878075,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00047-2501-17","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 16 Apr 2024 14:29:43 EDT","refillDate":"Tue, 16 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23660350,"sig":"TAKE + 1 TEASPOONFUL BY AS DIRECTED DAILY FOR 30 DAYS","orderedDate":"Tue, 16 Apr + 2024 00:00:00 EDT","quantity":3,"expirationDate":"Thu, 16 May 2024 00:00:00 + EDT","prescriptionNumber":"2720859A","prescriptionName":"ACCU-CHEK COMFORT + CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23660350,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720859","divisionName":"DAYTON","modifiedDate":"Fri, 17 May 2024 + 09:22:33 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"GLUCOSE TEST","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 16 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23660332,"sig":"TAKE + 1 BY MOUTH DAILY FOR 30 DAYS TEST","orderedDate":"Tue, 16 Apr 2024 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 16 May 2024 00:00:00 EDT","prescriptionNumber":"2720709B","prescriptionName":"ABACAVIR + SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23660332,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720709A","divisionName":"DAYTON","modifiedDate":"Fri, 17 May 2024 + 09:22:32 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"ABACAVIR/LAMIVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 16 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23660333,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Tue, 16 Apr 2024 00:00:00 EDT","quantity":2,"expirationDate":"Thu, + 16 May 2024 00:00:00 EDT","prescriptionNumber":"2720863A","prescriptionName":"ABACAVIR + SULFATE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23660333,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720863","divisionName":"DAYTON","modifiedDate":"Fri, 17 May 2024 + 09:22:32 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0661-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ABACAVIR 300 MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 16 Apr 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23660334,"sig":"USE + 1 DAILY FOR 30 DAYS","orderedDate":"Tue, 16 Apr 2024 00:00:00 EDT","quantity":12,"expirationDate":"Thu, + 16 May 2024 00:00:00 EDT","prescriptionNumber":"2720862A","prescriptionName":"ABSORBABLE + GELATIN SPONGE Sz 12-7 (12''s)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23660334,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720862","divisionName":"DAYTON","modifiedDate":"Fri, 17 May 2024 + 09:22:33 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00009-0315-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"GELATIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"errors":[],"infoMessages":[]}' + recorded_at: Wed, 06 Nov 2024 22:13:08 GMT +recorded_with: VCR 6.3.1