From bc55c198c5e483397ef045697023890c0624c258 Mon Sep 17 00:00:00 2001 From: kanchanasuriya <89944361+kanchanasuriya@users.noreply.github.com> Date: Thu, 12 Dec 2024 08:29:35 -0800 Subject: [PATCH 01/57] 96413 EPS create draft appointment implementation (#19731) Co-authored-by: kanchanasuriya --- .../app/services/eps/appointment_service.rb | 11 ++++ .../services/eps/appointment_service_spec.rb | 54 ++++++++++++++++--- 2 files changed, 59 insertions(+), 6 deletions(-) diff --git a/modules/vaos/app/services/eps/appointment_service.rb b/modules/vaos/app/services/eps/appointment_service.rb index bdd06b6d556..092bcd11d39 100644 --- a/modules/vaos/app/services/eps/appointment_service.rb +++ b/modules/vaos/app/services/eps/appointment_service.rb @@ -12,5 +12,16 @@ def get_appointments {}, headers) OpenStruct.new(response.body) end + + ## + # Create draft appointment in EPS + # + # @return OpenStruct response from EPS create draft appointment endpoint + # + def create_draft_appointment(referral_id:) + response = perform(:post, "/#{config.base_path}/appointments", + { patientId: patient_id, referralId: referral_id }, headers) + OpenStruct.new(response.body) + end end end diff --git a/modules/vaos/spec/services/eps/appointment_service_spec.rb b/modules/vaos/spec/services/eps/appointment_service_spec.rb index c4bbb453b30..2169fff4757 100644 --- a/modules/vaos/spec/services/eps/appointment_service_spec.rb +++ b/modules/vaos/spec/services/eps/appointment_service_spec.rb @@ -17,15 +17,16 @@ } ] }) end + let(:referral_id) { 'test-referral-id' } let(:memory_store) { ActiveSupport::Cache.lookup_store(:memory_store) } - describe 'get_appointments' do - before do - allow(Rails.cache).to receive(:fetch).and_return(memory_store) - Rails.cache.clear - end + before do + allow(Rails.cache).to receive(:fetch).and_return(memory_store) + Rails.cache.clear + end - context 'when requesting appointments for a given patient_id' do + describe 'get_appointments' do + context 'when requesting appointments for a logged in user' do before do allow_any_instance_of(VAOS::SessionService).to receive(:perform).and_return(successful_appt_response) end @@ -56,4 +57,45 @@ end end end + + describe 'create_draft_appointment' do + let(:successful_draft_appt_response) do + double('Response', status: 200, body: { 'id' => icn, + 'state' => 'draft', + 'patientId' => 'test-patient-id' }) + end + + context 'when creating draft appointment for a given referral_id' do + before do + allow_any_instance_of(VAOS::SessionService).to receive(:perform).and_return(successful_draft_appt_response) + end + + it 'returns the appointments scheduled' do + exp_response = OpenStruct.new(successful_draft_appt_response.body) + + expect(service.create_draft_appointment(referral_id:)).to eq(exp_response) + end + end + + context 'when the endpoint fails to return appointments' do + let(:failed_response) do + double('Response', status: 500, body: 'Unknown service exception') + end + let(:exception) do + Common::Exceptions::BackendServiceException.new(nil, {}, failed_response.status, + failed_response.body) + end + + before do + allow_any_instance_of(VAOS::SessionService).to receive(:perform).and_raise(exception) + end + + it 'throws exception' do + expect do + service.create_draft_appointment(referral_id:) + end.to raise_error(Common::Exceptions::BackendServiceException, + /VA900/) + end + end + end end From 5d2e7848ac587535359aff3cccc37b0a8c2370fc Mon Sep 17 00:00:00 2001 From: Tyler Date: Thu, 12 Dec 2024 08:31:11 -0800 Subject: [PATCH 02/57] [API-43151] Add ID and type to /power-of-attorney-request create docs (#19756) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * add poa requests table * add model; add id to response * has_many → has_one * update test * add id and type; remove proc_id * remove unneeded attributes * fix test --- .../app/swagger/claims_api/v2/dev/swagger.json | 14 ++++++++++---- .../v2/veterans/rswag_power_of_attorney_spec.rb | 8 +++----- .../request_representative/submit.json | 11 ++++++++--- 3 files changed, 21 insertions(+), 12 deletions(-) diff --git a/modules/claims_api/app/swagger/claims_api/v2/dev/swagger.json b/modules/claims_api/app/swagger/claims_api/v2/dev/swagger.json index 6a745e9fa67..be2b52c0dd3 100644 --- a/modules/claims_api/app/swagger/claims_api/v2/dev/swagger.json +++ b/modules/claims_api/app/swagger/claims_api/v2/dev/swagger.json @@ -17546,7 +17546,8 @@ "HIV", "ALCOHOLISM" ], - "procId": "3857415" + "id": "12e13134-7229-4e44-90ae-bcea2a4525fa", + "type": "power-of-attorney-request" } } }, @@ -17828,10 +17829,15 @@ "description": "AUTHORIZATION FOR REPRESENTATIVE TO ACT ON CLAIMANT'S BEHALF TO CHANGE CLAIMANT'S ADDRESS.", "type": "boolean" }, - "procId": { - "description": "The process ID of the new Power of Attorney request.", + "id": { + "description": "The ID of the new Power of Attorney request.", "type": "string", - "example": "12345" + "example": "12e13134-7229-4e44-90ae-bcea2a4525fa" + }, + "type": { + "description": "The type of Power of Attorney request.", + "type": "string", + "example": "power-of-attorney-request" } } } diff --git a/modules/claims_api/spec/requests/v2/veterans/rswag_power_of_attorney_spec.rb b/modules/claims_api/spec/requests/v2/veterans/rswag_power_of_attorney_spec.rb index 086123a0ce6..0f6e8117e31 100644 --- a/modules/claims_api/spec/requests/v2/veterans/rswag_power_of_attorney_spec.rb +++ b/modules/claims_api/spec/requests/v2/veterans/rswag_power_of_attorney_spec.rb @@ -1053,9 +1053,10 @@ 'power_of_attorney', 'request_representative', 'submit.json'))) before do |example| + allow(Flipper).to receive(:enabled?).with(:lighthouse_claims_v2_poa_requests_skip_bgs).and_return false allow_any_instance_of(ClaimsApi::PowerOfAttorneyRequestService::Orchestrator) .to receive(:submit_request) - .and_return(true) + .and_return({ 'procId' => '12345' }) FactoryBot.create(:veteran_representative, representative_id: '999999999999', poa_codes: ['067'], first_name: 'Abraham', last_name: 'Lincoln', user_types: ['veteran_service_officer']) @@ -1069,10 +1070,7 @@ after do |example| example.metadata[:response][:content] = { 'application/json' => { - example: JSON.parse(response.body, symbolize_names: true).tap do |json| - json[:data][:attributes] - .merge!(procId: '3857415') - end + example: JSON.parse(response.body, symbolize_names: true) } } end diff --git a/spec/support/schemas/claims_api/v2/veterans/power_of_attorney/request_representative/submit.json b/spec/support/schemas/claims_api/v2/veterans/power_of_attorney/request_representative/submit.json index cf96cf0ff0c..be5be59d540 100644 --- a/spec/support/schemas/claims_api/v2/veterans/power_of_attorney/request_representative/submit.json +++ b/spec/support/schemas/claims_api/v2/veterans/power_of_attorney/request_representative/submit.json @@ -268,10 +268,15 @@ "description": "AUTHORIZATION FOR REPRESENTATIVE TO ACT ON CLAIMANT'S BEHALF TO CHANGE CLAIMANT'S ADDRESS.", "type": "boolean" }, - "procId": { - "description": "The process ID of the new Power of Attorney request.", + "id": { + "description": "The ID of the new Power of Attorney request.", "type": "string", - "example": "12345" + "example": "12e13134-7229-4e44-90ae-bcea2a4525fa" + }, + "type": { + "description": "The type of Power of Attorney request.", + "type": "string", + "example": "power-of-attorney-request" } } } From 680e4dab9c637572341dd763e140f5c15b14572c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:35:28 +0000 Subject: [PATCH 03/57] Bump mock_redis from 0.46.0 to 0.49.0 (#19854) Bumps [mock_redis](https://github.com/sds/mock_redis) from 0.46.0 to 0.49.0. - [Release notes](https://github.com/sds/mock_redis/releases) - [Changelog](https://github.com/sds/mock_redis/blob/main/CHANGELOG.md) - [Commits](https://github.com/sds/mock_redis/compare/v0.46.0...v0.49.0) --- updated-dependencies: - dependency-name: mock_redis dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Gemfile.lock | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index e7c65a94b00..c77cb9d90b6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -667,7 +667,8 @@ GEM mini_mime (1.1.5) mini_portile2 (2.8.8) minitest (5.25.4) - mock_redis (0.46.0) + mock_redis (0.49.0) + redis (~> 5) msgpack (1.7.2) msgpack (1.7.2-java) multi_json (1.15.0) From 5f9f27276647794f466656e11fa6ba6e5dacdee0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:35:37 +0000 Subject: [PATCH 04/57] Bump googleauth from 1.11.2 to 1.12.0 (#19855) Bumps [googleauth](https://github.com/googleapis/google-auth-library-ruby) from 1.11.2 to 1.12.0. - [Release notes](https://github.com/googleapis/google-auth-library-ruby/releases) - [Changelog](https://github.com/googleapis/google-auth-library-ruby/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-auth-library-ruby/compare/googleauth/v1.11.2...googleauth/v1.12.0) --- updated-dependencies: - dependency-name: googleauth dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Gemfile.lock | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index c77cb9d90b6..6c53c7c5129 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -526,6 +526,7 @@ GEM thor (>= 0.20, < 2.a) google-cloud-env (2.2.1) faraday (>= 1.0, < 3.a) + google-logging-utils (0.1.0) google-protobuf (4.28.3) bigdecimal rake (>= 13) @@ -534,9 +535,10 @@ GEM ffi (~> 1) ffi-compiler (~> 1) rake (>= 13) - googleauth (1.11.2) + googleauth (1.12.0) faraday (>= 1.0, < 3.a) - google-cloud-env (~> 2.1) + google-cloud-env (~> 2.2) + google-logging-utils (~> 0.1) jwt (>= 1.4, < 3.0) multi_json (~> 1.11) os (>= 0.9, < 2.0) @@ -677,7 +679,7 @@ GEM mutex_m (0.3.0) nap (1.1.0) nenv (0.3.0) - net-http (0.4.1) + net-http (0.6.0) uri net-imap (0.5.1) date @@ -1069,7 +1071,7 @@ GEM tzinfo (>= 1.0.0) uber (0.1.0) unicode-display_width (2.6.0) - uri (0.13.1) + uri (1.0.2) useragent (0.16.11) utf8-cleaner (1.0.0) activesupport From 5bcdd41c9248a8333527d4d18d200e7e356cc266 Mon Sep 17 00:00:00 2001 From: Nathan Wright Date: Thu, 12 Dec 2024 09:36:38 -0700 Subject: [PATCH 05/57] Fix bug with callback keys (#19850) --- modules/va_notify/lib/va_notify/service.rb | 6 +++-- modules/va_notify/spec/lib/service_spec.rb | 27 ++++++++++++++++++++++ 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/modules/va_notify/lib/va_notify/service.rb b/modules/va_notify/lib/va_notify/service.rb index 3b8d9a78e7e..29a45426f57 100644 --- a/modules/va_notify/lib/va_notify/service.rb +++ b/modules/va_notify/lib/va_notify/service.rb @@ -110,11 +110,13 @@ def create_notification(response, template_id) return end + # when the class is used directly we can pass symbols as keys + # when it comes from a sidekiq job all the keys get converted to strings (because sidekiq serializes it's args) notification = VANotify::Notification.new( notification_id: response.id, source_location: find_caller_locations, - callback_klass: callback_options[:callback_klass], - callback_metadata: callback_options[:callback_metadata], + callback_klass: callback_options[:callback_klass] || callback_options['callback_klass'], + callback_metadata: callback_options[:callback_metadata] || callback_options['callback_metadata'], template_id: template_id ) diff --git a/modules/va_notify/spec/lib/service_spec.rb b/modules/va_notify/spec/lib/service_spec.rb index e67a87141f9..2fa13051534 100644 --- a/modules/va_notify/spec/lib/service_spec.rb +++ b/modules/va_notify/spec/lib/service_spec.rb @@ -144,6 +144,33 @@ end end + it 'with string callback data' do + VCR.use_cassette('va_notify/success_email') do + subject = described_class.new(test_api_key, + { 'callback_klass' => 'TestCallback', + 'callback_metadata' => 'optional_metadata' }) + allow(Flipper).to receive(:enabled?).with(:va_notify_notification_creation).and_return(true) + allow(Rails.logger).to receive(:info) + + subject.send_email(send_email_parameters) + expect(VANotify::Notification.count).to eq(1) + notification = VANotify::Notification.first + + expect(Rails.logger).to have_received(:info).with( + "VANotify notification: #{notification.id} saved", + { + callback_klass: 'TestCallback', + callback_metadata: 'optional_metadata', + source_location: anything, + template_id: '1234' + } + ) + expect(notification.source_location).to include('modules/va_notify/spec/lib/service_spec.rb') + expect(notification.callback_klass).to eq('TestCallback') + expect(notification.callback_metadata).to eq('optional_metadata') + end + end + it 'with callback data' do VCR.use_cassette('va_notify/success_email') do subject = described_class.new(test_api_key, From f63a4392e901b6b8ea10d012cc45a2789b636f00 Mon Sep 17 00:00:00 2001 From: Michael Clement <18408628+michaelclement@users.noreply.github.com> Date: Thu, 12 Dec 2024 10:44:00 -0600 Subject: [PATCH 06/57] new pdf decrypt function and test (#19840) --- config/features.yml | 3 ++ .../ivc_champva/v1/uploads_controller.rb | 34 ++++++++++++++++++- .../app/services/ivc_champva/attachments.rb | 8 ++++- .../ivc_champva/v1/forms/uploads_spec.rb | 32 +++++++++++++++++ .../spec/services/attachments_spec.rb | 6 ++++ 5 files changed, 81 insertions(+), 2 deletions(-) diff --git a/config/features.yml b/config/features.yml index 59e93844a1b..ed006ae3ce0 100644 --- a/config/features.yml +++ b/config/features.yml @@ -176,6 +176,9 @@ features: champva_enhanced_monitor_logging: actor_type: user description: Enables using the new IVC CHAMPVA Monitoring logging class for enhanced Stats D info. + champva_pdf_decrypt: + actor_type: user + description: Enables unlocking password protected file submissions in IVC CHAMPVA forms. check_in_experience_enabled: actor_type: user description: Enables the health care check-in experiences diff --git a/modules/ivc_champva/app/controllers/ivc_champva/v1/uploads_controller.rb b/modules/ivc_champva/app/controllers/ivc_champva/v1/uploads_controller.rb index e453aaaf9bd..df96337a7df 100644 --- a/modules/ivc_champva/app/controllers/ivc_champva/v1/uploads_controller.rb +++ b/modules/ivc_champva/app/controllers/ivc_champva/v1/uploads_controller.rb @@ -36,10 +36,42 @@ def submit render json: { error_message: "Error: #{e.message}" }, status: :internal_server_error end + # Modified from claim_documents_controller.rb: + def unlock_file(file, file_password) + return file unless File.extname(file) == '.pdf' && file_password + + pdftk = PdfForms.new(Settings.binaries.pdftk) + tmpf = Tempfile.new(['decrypted_form_attachment', '.pdf']) + + begin + pdftk.call_pdftk(file.tempfile.path, 'input_pw', file_password, 'output', tmpf.path) + rescue PdfForms::PdftkError => e + file_regex = %r{/(?:\w+/)*[\w-]+\.pdf\b} + password_regex = /(input_pw).*?(output)/ + sanitized_message = e.message.gsub(file_regex, '[FILTERED FILENAME]').gsub(password_regex, '\1 [FILTERED] \2') + log_message_to_sentry(sanitized_message, 'warn') + raise Common::Exceptions::UnprocessableEntity.new( + detail: I18n.t('errors.messages.uploads.pdf.incorrect_password'), + source: 'IvcChampva::V1::UploadsController' + ) + end + + file.tempfile.unlink + file.tempfile = tmpf + file + end + def submit_supporting_documents if %w[10-10D 10-7959C 10-7959F-2 10-7959A].include?(params[:form_id]) attachment = PersistentAttachments::MilitaryRecords.new(form_id: params[:form_id]) - attachment.file = params['file'] + + if Flipper.enabled?(:champva_pdf_decrypt, @current_user) + unlocked = unlock_file(params['file'], params['password']) + attachment.file = params['password'] ? unlocked : params['file'] + else + attachment.file = params['file'] + end + raise Common::Exceptions::ValidationErrors, attachment unless attachment.valid? attachment.save diff --git a/modules/ivc_champva/app/services/ivc_champva/attachments.rb b/modules/ivc_champva/app/services/ivc_champva/attachments.rb index 3720f51aead..f5e5627f192 100644 --- a/modules/ivc_champva/app/services/ivc_champva/attachments.rb +++ b/modules/ivc_champva/app/services/ivc_champva/attachments.rb @@ -15,7 +15,13 @@ def handle_attachments(file_path) else "#{uuid}_#{form_id}_supporting_doc-#{index}.pdf" end - new_file_path = File.join(File.dirname(attachment), new_file_name) + + new_file_path = if Flipper.enabled?(:champva_pdf_decrypt, @current_user) + File.join('tmp', new_file_name) + else + File.join(File.dirname(attachment), new_file_name) + end + File.rename(attachment, new_file_path) file_paths << new_file_path end diff --git a/modules/ivc_champva/spec/requests/ivc_champva/v1/forms/uploads_spec.rb b/modules/ivc_champva/spec/requests/ivc_champva/v1/forms/uploads_spec.rb index 5f7b9cd9c76..138f3af99dd 100644 --- a/modules/ivc_champva/spec/requests/ivc_champva/v1/forms/uploads_spec.rb +++ b/modules/ivc_champva/spec/requests/ivc_champva/v1/forms/uploads_spec.rb @@ -127,6 +127,38 @@ end end + describe '#unlock_file' do + before do + allow(Flipper).to receive(:enabled?) + .with(:champva_pdf_decrypt, @current_user) + .and_return(true) + end + + context 'with locked PDF and no provided password' do + let(:locked_file) { fixture_file_upload('locked_pdf_password_is_test.pdf', 'application/pdf') } + + it 'rejects locked PDFs if no password is provided' do + post '/ivc_champva/v1/forms/submit_supporting_documents', params: { form_id: '10-10D', file: locked_file } + expect(response).to have_http_status(:unprocessable_entity) + expect( + response.parsed_body['errors'].first['title'] + ).to eq("File #{I18n.t('errors.messages.uploads.pdf.invalid')}") + end + + it 'accepts locked PDFs with the correct password' do + post '/ivc_champva/v1/forms/submit_supporting_documents', + params: { form_id: '10-10D', file: locked_file, password: 'test' } + expect(response).to have_http_status(:ok) + end + + it 'rejects locked PDFs with the incorrect password' do + post '/ivc_champva/v1/forms/submit_supporting_documents', + params: { form_id: '10-10D', file: locked_file, password: 'bad' } + expect(response).to have_http_status(:unprocessable_entity) + end + end + end + describe '#supporting_document_ids' do it 'returns the correct supporting document ids' do documents = [double('Document', id: 1), double('Document', id: 2)] diff --git a/modules/ivc_champva/spec/services/attachments_spec.rb b/modules/ivc_champva/spec/services/attachments_spec.rb index b759188d0d2..5ca272f7312 100644 --- a/modules/ivc_champva/spec/services/attachments_spec.rb +++ b/modules/ivc_champva/spec/services/attachments_spec.rb @@ -14,6 +14,12 @@ def initialize(form_id, uuid, data) end RSpec.describe IvcChampva::Attachments do + before do + allow(Flipper).to receive(:enabled?) + .with(:champva_pdf_decrypt, @current_user) + .and_return(false) + end + # Mocking a class to include the Attachments module let(:form_id) { 'vha_10_7959c' } let(:uuid) { 'f4ae6102-7f05-485a-948c-c0d9ef028983' } From 1b971a1d12842bdb27b63bff7a18063ea2bbadd6 Mon Sep 17 00:00:00 2001 From: Andrew Rodiek <25368370+Dr-Pongo@users.noreply.github.com> Date: Thu, 12 Dec 2024 11:51:14 -0500 Subject: [PATCH 07/57] Updating to latest vets-json-schema (24.7.0) (#19858) --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 6c53c7c5129..ac987230eab 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -74,10 +74,10 @@ GIT GIT remote: https://github.com/department-of-veterans-affairs/vets-json-schema - revision: 3a6965b5d60abdb99dc2d21fcd15784c52a51927 + revision: a84abd360072a0d4aaa8b1984cee2c33e1844335 branch: master specs: - vets_json_schema (24.6.1) + vets_json_schema (24.7.0) multi_json (~> 1.0) script_utils (= 0.0.4) From 00082a77cd8b806ce5c80b62bec6eb380bb796cc Mon Sep 17 00:00:00 2001 From: Penelope Lischer <102491809+penny-lischer@users.noreply.github.com> Date: Thu, 12 Dec 2024 08:51:29 -0800 Subject: [PATCH 08/57] #94834 - Account for blank error message saved to 5655 submission (#19841) * #94834 - Account for blank error message saved to 5655 submission * Add spec fix --------- Co-authored-by: Derek Dyer <4297274+digitaldrk@users.noreply.github.com> --- .../app/models/debts_api/v0/form5655_submission.rb | 5 ++++- .../spec/models/debt_api/v0/form5655_submission_spec.rb | 9 ++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/modules/debts_api/app/models/debts_api/v0/form5655_submission.rb b/modules/debts_api/app/models/debts_api/v0/form5655_submission.rb index e4b578a14c2..e09a3f25242 100644 --- a/modules/debts_api/app/models/debts_api/v0/form5655_submission.rb +++ b/modules/debts_api/app/models/debts_api/v0/form5655_submission.rb @@ -73,7 +73,7 @@ def set_vha_completed_state(status, options) submission.submitted! StatsD.increment("#{STATS_KEY}.vha.success") else - submission.failed! + submission.register_failure("VHA set completed state: #{status.failure_info}") StatsD.increment("#{STATS_KEY}.vha.failure") Rails.logger.error('Batch FSR Processing Failed', status.failure_info) end @@ -81,6 +81,9 @@ def set_vha_completed_state(status, options) def register_failure(message) failed! + if message.blank? + message = "An unknown error occurred while submitting the form from call_location: #{caller_locations&.first}" + end update(error_message: message) Rails.logger.error("Form5655Submission id: #{id} failed", message) StatsD.increment("#{STATS_KEY}.failure") diff --git a/modules/debts_api/spec/models/debt_api/v0/form5655_submission_spec.rb b/modules/debts_api/spec/models/debt_api/v0/form5655_submission_spec.rb index 929a557b1b0..fc465ce2415 100644 --- a/modules/debts_api/spec/models/debt_api/v0/form5655_submission_spec.rb +++ b/modules/debts_api/spec/models/debt_api/v0/form5655_submission_spec.rb @@ -153,7 +153,7 @@ it 'sets the submission as failed' do allow(Rails.logger).to receive(:error) described_class.new.set_vha_completed_state(status, { 'submission_id' => form5655_submission.id }) - expect(form5655_submission.failed?).to eq(true) + expect(form5655_submission.error_message).to eq("VHA set completed state: [\"#{id}\"]") expect(Rails.logger).to have_received(:error).with('Batch FSR Processing Failed', [id]) end end @@ -173,6 +173,13 @@ expect(form5655_submission.error_message).to eq(message) end + it 'saves generic error message with call_location when message is blank' do + form5655_submission.register_failure(nil) + expect(form5655_submission.error_message).to start_with( + 'An unknown error occurred while submitting the form from call_location:' + ) + end + context 'combined form' do it 'saves error message and logs error' do form5655_submission.public_metadata = { combined: true } From 28c6dcccfb0fdec5a085c5a8acfc00cec290c48d Mon Sep 17 00:00:00 2001 From: Brandon Cooper Date: Thu, 12 Dec 2024 11:59:32 -0500 Subject: [PATCH 09/57] [10-10EZ/EZR] Add additional specs to raise spec coverage percentage (#19799) * add spec file for hca_attachment_uploader * update codeowners * fix codeowner name * added new client_spec for lighthouse facilities v1 --- .github/CODEOWNERS | 1 + .../lighthouse/facilities/v1/client_spec.rb | 89 ++++++++++++++ .../uploaders/hca_attachment_uploader_spec.rb | 111 ++++++++++++++++++ 3 files changed, 201 insertions(+) create mode 100644 spec/lib/lighthouse/facilities/v1/client_spec.rb create mode 100644 spec/uploaders/hca_attachment_uploader_spec.rb diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 6ec7d621946..0379e45a098 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -2141,6 +2141,7 @@ spec/swagger_helper.rb @department-of-veterans-affairs/va-api-engineers @departm spec/uploaders/evss_claim_document_uploader_base_spec.rb @department-of-veterans-affairs/vfs-authenticated-experience-backend @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/uploaders/evss_claim_document_uploader_spec.rb @department-of-veterans-affairs/vfs-authenticated-experience-backend @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/uploaders/form1010cg @department-of-veterans-affairs/vfs-10-10 @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group +spec/uploaders/hca_attachment_uploader_spec.rb @department-of-veterans-affairs/vfs-10-10 @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/uploaders/form1010cg/poa_uploader_spec.rb @department-of-veterans-affairs/vfs-10-10 @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/uploaders/supporting_evidence_attachment_uploader_spec.rb @department-of-veterans-affairs/Disability-Experience @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/uploaders/uploader_virus_scan_spec.rb @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group diff --git a/spec/lib/lighthouse/facilities/v1/client_spec.rb b/spec/lib/lighthouse/facilities/v1/client_spec.rb new file mode 100644 index 00000000000..dea5cdc5ea4 --- /dev/null +++ b/spec/lib/lighthouse/facilities/v1/client_spec.rb @@ -0,0 +1,89 @@ +# frozen_string_literal: true + +require 'rails_helper' +require 'lighthouse/facilities/v1/client' + +RSpec.describe Lighthouse::Facilities::V1::Client do + let(:client) { described_class.new } + let(:params) { { bbox: [60.99, 10.54, 180.00, 20.55] } } + let(:data) do + [ + { 'id' => 'vha_042', + 'attributes' => { + 'name' => 'Facility One', + 'facilityType' => 'va_health_facility', + 'mobile' => true + } }, + { 'id' => 'vha_043', 'attributes' => { + 'name' => 'Facility Two', + 'facilityType' => 'va_health_facility' + } } + ] + end + + let(:meta) do + { + 'pagination' => { + 'currentPage' => 1, + 'perPage' => 10, + 'totalEntries' => 20 + }, + 'distances' => [ + { 'distance' => 5.0 }, + { 'distance' => 10.0 } + ] + } + end + + let(:mock_response_body) do + { + 'links' => {}, + 'meta' => meta, + 'data' => data + }.to_json + end + + let(:mock_response) { instance_double(Faraday::Response, body: mock_response_body, status: 200) } + + describe '#get_facilities' do + context 'when exclude_mobile is not specified' do + it 'returns all facilities' do + allow(client).to receive(:perform).with(:get, '/services/va_facilities/v1/facilities', + params).and_return(mock_response) + + facilities = client.get_facilities(params) + + expect(facilities).to be_an(Array) + expect(facilities.size).to eq(2) + expect(facilities.map(&:id)).to include('vha_042', 'vha_043') + end + end + + context 'when exclude_mobile is specified' do + it 'filters out mobile facilities' do + params_with_exclude_mobile = params.merge('exclude_mobile' => true) + allow(client).to receive(:perform).with(:get, '/services/va_facilities/v1/facilities', + params_with_exclude_mobile).and_return(mock_response) + + facilities = client.get_facilities(params_with_exclude_mobile) + + expect(facilities).to be_an(Array) + expect(facilities.size).to eq(1) + expect(facilities.first.id).to eq('vha_043') + end + end + end + + describe '#get_paginated_facilities' do + it 'returns a response object' do + allow(client).to receive(:perform).with(:get, '/services/va_facilities/v1/facilities', + params).and_return(mock_response) + + response = client.get_paginated_facilities(params) + + expect(response).to be_a(Lighthouse::Facilities::V1::Response) + expect(response.facilities).to be_an(Array) + expect(response.meta).to eq meta + end + end +end diff --git a/spec/uploaders/hca_attachment_uploader_spec.rb b/spec/uploaders/hca_attachment_uploader_spec.rb new file mode 100644 index 00000000000..83cfbcf7c4b --- /dev/null +++ b/spec/uploaders/hca_attachment_uploader_spec.rb @@ -0,0 +1,111 @@ +# frozen_string_literal: true + +require 'rails_helper' +require 'carrierwave/test/matchers' + +RSpec.describe HCAAttachmentUploader, type: :uploader do + include CarrierWave::Test::Matchers + + let(:uploader) { described_class.new(guid) } + + let(:guid) { 'test-guid' } + let(:file) do + Rack::Test::UploadedFile.new( + Rails.root.join('spec', 'fixtures', 'files', 'doctors-note.png'), + 'image/png' + ) + end + + before do + CarrierWave.configure do |config| + config.enable_processing = true + end + uploader.store!(file) + end + + after do + uploader.remove! + CarrierWave.configure do |config| + config.enable_processing = false + end + end + + describe '#initialize' do + context 'when Rails.env is production' do + let(:settings) do + OpenStruct.new( + aws_access_key_id: 'access-key', + aws_secret_access_key: 'shh-its-a-secret', + region: 'my-region', + bucket: 'bucket/path' + ) + end + + before do + allow(Settings).to receive(:hca).and_return(OpenStruct.new(s3: settings)) + allow(Rails.env).to receive(:production?).and_return(true) + end + + it 'sets AWS config with production settings' do + expect_any_instance_of(HCAAttachmentUploader).to receive(:set_aws_config).with( + Settings.hca.s3.aws_access_key_id, + Settings.hca.s3.aws_secret_access_key, + Settings.hca.s3.region, + Settings.hca.s3.bucket + ) + + described_class.new('test-guid') + end + end + + context 'when Rails.env is not production' do + before do + allow(Rails.env).to receive(:production?).and_return(false) + end + + it 'does not set AWS config' do + expect_any_instance_of(HCAAttachmentUploader).not_to receive(:set_aws_config) + + described_class.new('test-guid') + end + end + end + + describe '#size_range' do + it 'has a valid size range' do + expect(uploader.size_range).to eq((1.byte)...(10.megabytes)) + end + end + + describe '#extension_allowlist' do + it 'allows valid file extensions' do + expect(uploader.extension_allowlist).to include('pdf', 'doc', 'docx', 'jpg', 'jpeg', 'rtf', 'png') + end + + it 'does not allow invalid file extensions' do + expect(uploader.extension_allowlist).not_to include('exe', 'bat', 'zip') + end + end + + describe '#store_dir' do + it 'sets the correct store directory' do + expect(uploader.store_dir).to eq('hca_attachments') + end + end + + describe '#filename' do + it 'sets the filename to the guid' do + expect(uploader.filename).to eq(guid) + end + end + + describe 'processing' do + context 'when the file is a PNG' do + it 'converts the file to JPG' do + expect(uploader).to receive(:convert).with('jpg') + + uploader.store!(file) + end + end + end +end From 4957602158d81259bc89f313e147427e88e93602 Mon Sep 17 00:00:00 2001 From: Kyle Henson <145150351+khenson-oddball@users.noreply.github.com> Date: Thu, 12 Dec 2024 10:03:56 -0700 Subject: [PATCH 10/57] Update VetVerificationStatusesController to use existing settings (#19834) --- .../v0/profile/vet_verification_statuses_controller.rb | 7 +------ config/settings/test.yml | 6 ------ 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/app/controllers/v0/profile/vet_verification_statuses_controller.rb b/app/controllers/v0/profile/vet_verification_statuses_controller.rb index fcc93710f5d..7f6aed1ca8a 100644 --- a/app/controllers/v0/profile/vet_verification_statuses_controller.rb +++ b/app/controllers/v0/profile/vet_verification_statuses_controller.rb @@ -7,8 +7,7 @@ class VetVerificationStatusesController < ApplicationController before_action { authorize :lighthouse, :access? } def show - access_token = settings.access_token - response = service.get_vet_verification_status(@current_user.icn, access_token.client_id, access_token.rsa_key) + response = service.get_vet_verification_status(@current_user.icn) response['data']['id'] = '' render json: response @@ -19,10 +18,6 @@ def show def service @service ||= VeteranVerification::Service.new end - - def settings - Settings.lighthouse.veteran_verification['status'] - end end end end diff --git a/config/settings/test.yml b/config/settings/test.yml index b87aff55faf..35f28fbb40a 100644 --- a/config/settings/test.yml +++ b/config/settings/test.yml @@ -246,12 +246,6 @@ lighthouse: client_id: abc123456 rsa_key: path/to/key use_mocks: false - status: - host: https://sandbox-api.va.gov - access_token: - client_id: ~ - rsa_key: ~ - use_mocks: false benefits_claims: host: https://sandbox-api.va.gov aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi3u00gw66b9Ojk2p7/v1/token From 03d0101d6774cca9828415bc5d1216c4abea46b9 Mon Sep 17 00:00:00 2001 From: Adrian Rollett <101649+acrollet@users.noreply.github.com> Date: Thu, 12 Dec 2024 10:04:03 -0700 Subject: [PATCH 11/57] Update sorting logic for allergies and vitals; add tests for recordedDate and effectiveDateTime (#19849) --- lib/medical_records/lighthouse_client.rb | 52 ++++--------------- .../v1/medical_records/allergies_spec.rb | 5 ++ .../v1/medical_records/vitals_spec.rb | 8 ++- .../get_a_list_of_allergies_oh_data_path.yml | 4 +- .../get_a_list_of_vitals_oh_data_path.yml | 6 +-- 5 files changed, 26 insertions(+), 49 deletions(-) diff --git a/lib/medical_records/lighthouse_client.rb b/lib/medical_records/lighthouse_client.rb index 094e7ebbe9e..11de0edaf42 100644 --- a/lib/medical_records/lighthouse_client.rb +++ b/lib/medical_records/lighthouse_client.rb @@ -36,7 +36,7 @@ def list_vitals(from_date = nil, to_date = nil) params[:date] = ["ge#{from_date}", "le#{to_date}"] if from_date && to_date bundle = lighthouse_client.list_observations(params) bundle = Oj.load(bundle[:body].to_json, symbol_keys: true) - sort_bundle(bundle, :recordedDate, :desc) + sort_bundle(bundle, :effectiveDateTime, :desc) end def list_allergies @@ -118,55 +118,21 @@ def paginate_bundle_entries(entries, page_size, page_num) end ## - # Sort the FHIR::Bundle entries on a given field and sort order. If a field is not present, that entry - # is sorted to the end. + # Sort FHIR entries on a given field and sort order. If a field is not present, + # that entry is sorted to the end. # - # @param bundle [FHIR::Bundle] the bundle to sort - # @param field [Symbol, String] the field to sort on (supports nested fields with dot notation) + # @param bundle [Hash] the bundle to sort + # @param field [Symbol] the field to sort on # @param order [Symbol] the sort order, :asc (default) or :desc # def sort_bundle(bundle, field, order = :asc) - field = field.to_s - sort_bundle_with_criteria(bundle, order) do |resource| - fetch_nested_value(resource, field) - end - end - - ## - # Sort the FHIR::Bundle entries based on a provided block. The block should handle different resource types - # and define how to extract the sorting value from each. - # - # @param bundle [FHIR::Bundle] the bundle to sort - # @param order [Symbol] the sort order, :asc (default) or :desc - # - def sort_bundle_with_criteria(bundle, order = :asc) - sorted_entries = bundle[:entry].sort do |entry1, entry2| - value1 = yield(entry1[:resource]) - value2 = yield(entry2[:resource]) - if value2.nil? - -1 - elsif value1.nil? - 1 - else - order == :asc ? value1 <=> value2 : value2 <=> value1 - end - end - bundle[:entry] = sorted_entries + # Sort bundle[:entry] based on the field + bundle[:entry].sort_by! { |entry| entry[:resource][field] } + # reverse the order if descending + bundle[:entry].reverse! if order == :desc bundle end - ## - # Fetches the value of a potentially nested field from a given object. - # - # @param object [Object] the object to fetch the value from - # @param field_path [String] the dot-separated path to the field - # - def fetch_nested_value(object, field_path) - field_path.split('.').reduce(object) do |obj, method| - obj.respond_to?(method) ? obj.send(method) : nil - end - end - def measure_duration(event: 'default', tags: []) # Use time since boot to avoid clock skew issues # https://github.com/sidekiq/sidekiq/issues/3999 diff --git a/modules/my_health/spec/requests/my_health/v1/medical_records/allergies_spec.rb b/modules/my_health/spec/requests/my_health/v1/medical_records/allergies_spec.rb index e673cd664ef..793670bf644 100644 --- a/modules/my_health/spec/requests/my_health/v1/medical_records/allergies_spec.rb +++ b/modules/my_health/spec/requests/my_health/v1/medical_records/allergies_spec.rb @@ -121,9 +121,14 @@ expect(response.body).to be_a(String) body = JSON.parse(response.body) + expect(body['entry']).to be_an(Array) expect(body['entry'].size).to be 2 + # Verify that items are sorted by recordedDate in descending order + expect(body['entry'][0]['resource']['recordedDate']).to eq('1967-05-28T12:25:29Z') + expect(body['entry'][1]['resource']['recordedDate']).to eq('1967-05-28T12:24:29Z') + item = body['entry'][1] expect(item['resource']['resourceType']).to eq('AllergyIntolerance') expect(item['resource']['category'][0]).to eq('food') diff --git a/modules/my_health/spec/requests/my_health/v1/medical_records/vitals_spec.rb b/modules/my_health/spec/requests/my_health/v1/medical_records/vitals_spec.rb index 510e7a20316..d32d7891524 100644 --- a/modules/my_health/spec/requests/my_health/v1/medical_records/vitals_spec.rb +++ b/modules/my_health/spec/requests/my_health/v1/medical_records/vitals_spec.rb @@ -105,12 +105,18 @@ expect(response.body).to be_a(String) body = JSON.parse(response.body) + expect(body['entry']).to be_an(Array) expect(body['entry'].size).to be 6 + # Verify that items are sorted by effectiveDateTime in descending order + expect(body['entry'][0]['resource']['effectiveDateTime']).to eq('2019-11-30T08:34:29Z') + expect(body['entry'][2]['resource']['effectiveDateTime']).to eq('2019-11-30T08:24:29Z') + expect(body['entry'][5]['resource']['effectiveDateTime']).to eq('2019-11-30T07:28:29Z') + item = body['entry'][2] expect(item['resource']['resourceType']).to eq('Observation') - expect(item['resource']['code']['text']).to eq('Body Weight') + expect(item['resource']['code']['text']).to eq('Blood Pressure') end end end diff --git a/spec/support/vcr_cassettes/mr_client/get_a_list_of_allergies_oh_data_path.yml b/spec/support/vcr_cassettes/mr_client/get_a_list_of_allergies_oh_data_path.yml index 96935a5514e..ffd81072efa 100644 --- a/spec/support/vcr_cassettes/mr_client/get_a_list_of_allergies_oh_data_path.yml +++ b/spec/support/vcr_cassettes/mr_client/get_a_list_of_allergies_oh_data_path.yml @@ -121,9 +121,9 @@ http_interactions: body: encoding: UTF-8 string: '{"resourceType":"Bundle","type":"searchset","link":[{"relation":"self","url":"/services/fhir/v0/r4/AllergyIntolerance?patient=23000219&-pageToken=1~6Z807QTZrKsurkk"}],"entry":[{"fullUrl":"/services/fhir/v0/r4/AllergyIntolerance/4-6Z8D6dAzA9QPmy8","resource":{"resourceType":"AllergyIntolerance","id":"4-6Z8D6dAzA9QPmy8","meta":{"lastUpdated":"2022-11-25T00:00:00Z"},"clinicalStatus":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical","code":"active"}]},"verificationStatus":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification","code":"confirmed"}]},"type":"allergy","category":["medication"],"code":{"coding":[{"system":"http://www.nlm.nih.gov/research/umls/rxnorm","code":"25037","display":"cefdinir"}],"text":"cefdinir"},"patient":{"reference":"/services/fhir/v0/r4/Patient/23000219","display":"Mr. - Dexter530 Victor265 Schneider199"},"recordedDate":"1967-05-28T12:24:29Z","recorder":{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79MgdpowOn","display":"Dr. + Dexter530 Victor265 Schneider199"},"recordedDate":"1967-05-28T12:25:29Z","recorder":{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79MgdpowOn","display":"Dr. Regina408 Dietrich576"},"note":[{"authorReference":{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79MgdpowOn","display":"Dr. - Regina408 Dietrich576"},"time":"1967-05-28T12:24:29Z","text":"cefdinir"}]},"search":{"mode":"match"}},{"fullUrl":"/services/fhir/v0/r4/AllergyIntolerance/4-6Z8D6dAzABlkPZA","resource":{"resourceType":"AllergyIntolerance","id":"4-6Z8D6dAzABlkPZA","meta":{"lastUpdated":"2022-11-25T00:00:00Z"},"clinicalStatus":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical","code":"active"}]},"verificationStatus":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification","code":"confirmed"}]},"type":"allergy","category":["food"],"code":{"coding":[{"system":"http://snomed.info/sct","code":"44027008","display":"Seafood + Regina408 Dietrich576"},"time":"1967-05-28T12:25:29Z","text":"cefdinir"}]},"search":{"mode":"match"}},{"fullUrl":"/services/fhir/v0/r4/AllergyIntolerance/4-6Z8D6dAzABlkPZA","resource":{"resourceType":"AllergyIntolerance","id":"4-6Z8D6dAzABlkPZA","meta":{"lastUpdated":"2022-11-25T00:00:00Z"},"clinicalStatus":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical","code":"active"}]},"verificationStatus":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification","code":"confirmed"}]},"type":"allergy","category":["food"],"code":{"coding":[{"system":"http://snomed.info/sct","code":"44027008","display":"Seafood (substance)"}],"text":"Seafood (substance)"},"patient":{"reference":"/services/fhir/v0/r4/Patient/23000219","display":"Mr. Dexter530 Victor265 Schneider199"},"recordedDate":"1967-05-28T12:24:29Z","recorder":{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79Mgdyt0Mj","display":"Dr. Marietta439 Schmeler639 MD"},"note":[{"authorReference":{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79Mgdyt0Mj","display":"Dr. diff --git a/spec/support/vcr_cassettes/mr_client/get_a_list_of_vitals_oh_data_path.yml b/spec/support/vcr_cassettes/mr_client/get_a_list_of_vitals_oh_data_path.yml index cc2755f718f..fa5a73d3203 100644 --- a/spec/support/vcr_cassettes/mr_client/get_a_list_of_vitals_oh_data_path.yml +++ b/spec/support/vcr_cassettes/mr_client/get_a_list_of_vitals_oh_data_path.yml @@ -123,7 +123,7 @@ http_interactions: string: '{"resourceType":"Bundle","type":"searchset","link":[{"relation":"self","url":"/services/fhir/v0/r4/Observation?date=ge2019-11&date=le2019-11&patient=23000219&-pageToken=1~6Z807QTZrKsurkk&category=vital-signs"}],"entry":[{"fullUrl":"/services/fhir/v0/r4/Observation/4-1bKloYjorOvJVl","resource":{"resourceType":"Observation","id":"4-1bKloYjorOvJVl","meta":{"lastUpdated":"2019-12-30T08:24:29Z"},"status":"final","category":[{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/observation-category","code":"vital-signs","display":"Vital Signs"}],"text":"Vital Signs"}],"code":{"coding":[{"system":"http://loinc.org","code":"8302-2","display":"Body Height"}],"text":"Body Height"},"subject":{"reference":"/services/fhir/v0/r4/Patient/23000219","display":"Mr. - Dexter530 Victor265 Schneider199"},"encounter":{"reference":"/services/fhir/v0/r4/Encounter/4-1abOMcOPHkP7a7"},"effectiveDateTime":"2019-11-30T08:24:29Z","issued":"2019-11-30T08:24:29Z","performer":[{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79MfQtfImP","display":"Dr. + Dexter530 Victor265 Schneider199"},"encounter":{"reference":"/services/fhir/v0/r4/Encounter/4-1abOMcOPHkP7a7"},"effectiveDateTime":"2019-11-30T08:34:29Z","issued":"2019-11-30T08:24:29Z","performer":[{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79MfQtfImP","display":"Dr. Hayden835 Lehner980 MD"},{"reference":"/services/fhir/v0/r4/Organization/4-5pFm5AlwLJx","display":"TEST VAMC"}],"valueQuantity":{"value":166.8,"unit":"cm","system":"http://unitsofmeasure.org","code":"cm"},"interpretation":[{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation","code":"A","display":"Abnormal"}],"text":"A"}]},"search":{"mode":"match"}},{"fullUrl":"/services/fhir/v0/r4/Observation/4-1bKloYjorOvaYn","resource":{"resourceType":"Observation","id":"4-1bKloYjorOvaYn","meta":{"lastUpdated":"2019-12-30T08:24:29Z"},"status":"final","category":[{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/observation-category","code":"vital-signs","display":"Vital Signs"}],"text":"Vital Signs"}],"code":{"coding":[{"system":"http://loinc.org","code":"72514-3","display":"Pain @@ -134,7 +134,7 @@ http_interactions: VAMC"}],"valueQuantity":{"value":3.0,"unit":"Score","system":"http://unitsofmeasure.org","code":"{score}"},"interpretation":[{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation","code":"A","display":"Abnormal"}],"text":"A"}],"referenceRange":[{"low":{"value":20.0,"unit":"Score","system":"http://unitsofmeasure.org","code":"{score}"},"high":{"value":182.0,"unit":"Score","system":"http://unitsofmeasure.org","code":"{score}"}}]},"search":{"mode":"match"}},{"fullUrl":"/services/fhir/v0/r4/Observation/4-1bKloYjorOvrbp","resource":{"resourceType":"Observation","id":"4-1bKloYjorOvrbp","meta":{"lastUpdated":"2019-12-30T08:24:29Z"},"status":"final","category":[{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/observation-category","code":"vital-signs","display":"Vital Signs"}],"text":"Vital Signs"}],"code":{"coding":[{"system":"http://loinc.org","code":"29463-7","display":"Body Weight"}],"text":"Body Weight"},"subject":{"reference":"/services/fhir/v0/r4/Patient/23000219","display":"Mr. - Dexter530 Victor265 Schneider199"},"encounter":{"reference":"/services/fhir/v0/r4/Encounter/4-1abOMcOPHkP7a7"},"effectiveDateTime":"2019-11-30T08:24:29Z","issued":"2019-11-30T08:24:29Z","performer":[{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79MfQtfImP","display":"Dr. + Dexter530 Victor265 Schneider199"},"encounter":{"reference":"/services/fhir/v0/r4/Encounter/4-1abOMcOPHkP7a7"},"effectiveDateTime":"2019-11-30T08:14:29Z","issued":"2019-11-30T08:24:29Z","performer":[{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79MfQtfImP","display":"Dr. Hayden835 Lehner980 MD"},{"reference":"/services/fhir/v0/r4/Organization/4-5pFm5AlwLJx","display":"TEST VAMC"}],"valueQuantity":{"value":81.8,"unit":"kg","system":"http://unitsofmeasure.org","code":"kg"},"interpretation":[{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation","code":"A","display":"Abnormal"}],"text":"A"}]},"search":{"mode":"match"}},{"fullUrl":"/services/fhir/v0/r4/Observation/4-1bKloYjorOwPht","resource":{"resourceType":"Observation","id":"4-1bKloYjorOwPht","meta":{"lastUpdated":"2019-12-30T08:24:29Z"},"status":"final","category":[{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/observation-category","code":"vital-signs","display":"Vital Signs"}],"text":"Vital Signs"}],"code":{"coding":[{"system":"http://loinc.org","code":"85354-9","display":"Blood @@ -148,7 +148,7 @@ http_interactions: Hg","system":"http://unitsofmeasure.org","code":"mm[Hg]"}}]},"search":{"mode":"match"}},{"fullUrl":"/services/fhir/v0/r4/Observation/4-1bKloYjorOwgkv","resource":{"resourceType":"Observation","id":"4-1bKloYjorOwgkv","meta":{"lastUpdated":"2019-12-30T08:24:29Z"},"status":"final","category":[{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/observation-category","code":"vital-signs","display":"Vital Signs"}],"text":"Vital Signs"}],"code":{"coding":[{"system":"http://loinc.org","code":"8867-4","display":"Heart rate"}],"text":"Heart rate"},"subject":{"reference":"/services/fhir/v0/r4/Patient/23000219","display":"Mr. - Dexter530 Victor265 Schneider199"},"encounter":{"reference":"/services/fhir/v0/r4/Encounter/4-1abOMcOPHkP7a7"},"effectiveDateTime":"2019-11-30T08:24:29Z","issued":"2019-11-30T08:24:29Z","performer":[{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79MfQtfImP","display":"Dr. + Dexter530 Victor265 Schneider199"},"encounter":{"reference":"/services/fhir/v0/r4/Encounter/4-1abOMcOPHkP7a7"},"effectiveDateTime":"2019-11-30T07:28:29Z","issued":"2019-11-30T08:24:29Z","performer":[{"reference":"/services/fhir/v0/r4/Practitioner/4-Nn79MfQtfImP","display":"Dr. Hayden835 Lehner980 MD"},{"reference":"/services/fhir/v0/r4/Organization/4-5pFm5AlwLJx","display":"TEST VAMC"}],"valueQuantity":{"value":96.0,"unit":"/min","system":"http://unitsofmeasure.org","code":"/min"},"interpretation":[{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation","code":"A","display":"Abnormal"}],"text":"A"}]},"search":{"mode":"match"}},{"fullUrl":"/services/fhir/v0/r4/Observation/4-1bKloYjorOwxnx","resource":{"resourceType":"Observation","id":"4-1bKloYjorOwxnx","meta":{"lastUpdated":"2019-12-30T08:24:29Z"},"status":"final","category":[{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/observation-category","code":"vital-signs","display":"Vital Signs"}],"text":"Vital Signs"}],"code":{"coding":[{"system":"http://loinc.org","code":"9279-1","display":"Respiratory From 911af5d54e20ccc4a07172ab78db0aa635ddf86f Mon Sep 17 00:00:00 2001 From: robertbylight <107279507+robertbylight@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:19:19 -0500 Subject: [PATCH 12/57] Mhv 64657 grouping meds list (#19848) * [MHV-64657] added new field to presctiption details model and serializer. * [MHV-64657] working on implementing grouping using a helper function and calling it from the controller. * added new file for grouping logic * reorganizes and improves logic * [MHV-64657] added schema for grouping, and Flipper for grouping. * [MHV-64657] added unit test for grouping, fixed failing unit test by regenerating cassette. * [MHV-64657] added flipper to unit test. * [MHV-64657] removed grouping meds from prescription_helper file since it was moved to its own helper. * [MHV-64657] rubocop fixes. * [MHV-64657] rubocop fixes. * [MHV-64657] rubocop fixes. * [MHV-64657] rubocop fixes. * [MHV-64657] rubocop fixes. * [MHV-64657] rubocop fixes. * [MHV-64657] rubocop fixes, added todo for refactoring index. * [MHV-64657] added rubocop enable after disabled method length rule. * fix rubocop issues --------- Co-authored-by: agravell047 --- app/models/prescription_details.rb | 1 + .../my_health/v1/prescriptions_controller.rb | 6 +- .../helpers/my_health/rx_grouping_helper.rb | 80 + .../v1/prescription_details_serializer.rb | 1 + .../my_health/v1/prescriptions_spec.rb | 29 + .../v1/prescription_details.json | 256 +- .../v1/prescription_details.json | 131 +- ...aginated_list_of_grouped_prescriptions.yml | 3465 ++++++ .../gets_sorted_list_by_prescription_name.yml | 9489 +++++++++++++---- 9 files changed, 11542 insertions(+), 1916 deletions(-) create mode 100644 modules/my_health/app/helpers/my_health/rx_grouping_helper.rb create mode 100644 spec/support/vcr_cassettes/rx_client/prescriptions/gets_a_paginated_list_of_grouped_prescriptions.yml diff --git a/app/models/prescription_details.rb b/app/models/prescription_details.rb index 51dd21ba03a..ac495b8c1ec 100644 --- a/app/models/prescription_details.rb +++ b/app/models/prescription_details.rb @@ -31,6 +31,7 @@ class PrescriptionDetails < Prescription attribute :color, String attribute :back_imprint, String attribute :front_imprint, String + attribute :grouped_medications, Array[String] def sorted_dispensed_date has_refills = try(:rx_rf_records).present? 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 eaf311c59d6..47ae567349f 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 @@ -5,6 +5,7 @@ module V1 class PrescriptionsController < RxController include Filterable include MyHealth::PrescriptionHelper::Filtering + include MyHealth::RxGroupingHelper # This index action supports various parameters described below, all are optional # This comment can be removed once documentation is finalized # @param refill_status - one refill status to filter on @@ -14,11 +15,11 @@ class PrescriptionsController < RxController # (ie: ?sort[]=refill_status&sort[]=-prescription_id) def index resource = collection_resource + resource.data = group_prescriptions(resource.data) if Flipper.enabled?(:mhv_medications_display_grouping) resource.data = filter_non_va_meds(resource.data) filter_count = set_filter_metadata(resource.data) - renewal_params = 'Active,Expired' resource = if params[:filter].present? - if filter_params[:disp_status]&.[](:eq) == renewal_params + if filter_params[:disp_status]&.[](:eq) == 'Active,Expired' # renewal params filter_renewals(resource) else resource.find_by(filter_params) @@ -31,7 +32,6 @@ def index resource.data = params[:include_image].present? ? fetch_and_include_images(resource.data) : resource.data resource = is_using_pagination ? resource.paginate(**pagination_params) : resource options = { meta: resource.metadata.merge(filter_count) } - options[:links] = pagination_links(resource) if is_using_pagination render json: MyHealth::V1::PrescriptionDetailsSerializer.new(resource.data, options) end diff --git a/modules/my_health/app/helpers/my_health/rx_grouping_helper.rb b/modules/my_health/app/helpers/my_health/rx_grouping_helper.rb new file mode 100644 index 00000000000..8719f1ccd02 --- /dev/null +++ b/modules/my_health/app/helpers/my_health/rx_grouping_helper.rb @@ -0,0 +1,80 @@ +# frozen_string_literal: true + +module MyHealth + module RxGroupingHelper + def group_prescriptions(prescriptions) + prescriptions ||= [] + grouped_prescriptions = [] + + prescriptions.sort_by!(&:prescription_number) + + while prescriptions.any? + prescription = prescriptions[0] + + related_prescriptions = select_related_rxs(prescriptions, prescription) + + if related_prescriptions.length <= 1 + add_solo_med_and_delete(grouped_prescriptions, prescriptions, prescription) + next + end + + base_prescription, related_prescriptions = find_base_prescription(related_prescriptions, prescription) + related_prescriptions = sort_related_prescriptions(related_prescriptions) + base_prescription.grouped_medications ||= [] + add_group_meds_and_delete(related_prescriptions, base_prescription, prescriptions) + + grouped_prescriptions << base_prescription + prescriptions.delete(base_prescription) + end + + grouped_prescriptions + end + + private + + def add_solo_med_and_delete(grouped_prescriptions, prescriptions, prescription) + grouped_prescriptions << prescription + prescriptions.delete(prescription) + end + + def add_group_meds_and_delete(related_prescriptions, base_prescription, prescriptions) + related_prescriptions.each do |renewal| + base_prescription.grouped_medications << renewal + prescriptions.delete(renewal) + end + end + + def select_related_rxs(prescriptions, prescription) + prescriptions.select do |p| + base_prescription = prescription.prescription_number.sub(/[A-Z]$/, '') + current_prescription_number = p.prescription_number.sub(/[A-Z]$/, '') + current_prescription_number == base_prescription && p.station_number == prescription.station_number + end + end + + def find_base_prescription(related_prescriptions, current_prescription) + all_prescriptions = [current_prescription] + related_prescriptions + highest_prescription = all_prescriptions.max_by { |p| [p.prescription_number] } + + related_prescriptions.delete(highest_prescription) + [highest_prescription, related_prescriptions] + end + + def sort_related_prescriptions(related_prescriptions) + related_prescriptions.sort do |rx1, rx2| + suffix1 = rx1.prescription_number[/[A-Z]+$/] || '' + suffix2 = rx2.prescription_number[/[A-Z]+$/] || '' + + if suffix1 == suffix2 + base_number1 = rx1.prescription_number.sub(/[A-Z]+$/, '').to_i + base_number2 = rx2.prescription_number.sub(/[A-Z]+$/, '').to_i + base_number1 <=> base_number2 + else + suffix2 <=> suffix1 + end + end + end + + module_function :group_prescriptions + end +end diff --git a/modules/my_health/app/serializers/my_health/v1/prescription_details_serializer.rb b/modules/my_health/app/serializers/my_health/v1/prescription_details_serializer.rb index 600382295bd..d671385657d 100644 --- a/modules/my_health/app/serializers/my_health/v1/prescription_details_serializer.rb +++ b/modules/my_health/app/serializers/my_health/v1/prescription_details_serializer.rb @@ -48,6 +48,7 @@ class PrescriptionDetailsSerializer < PrescriptionSerializer attribute :color attribute :back_imprint attribute :front_imprint + attribute :grouped_medications end end end 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 82d33101277..7692ef099a0 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 @@ -108,6 +108,35 @@ expect(item_index).not_to be_nil end + context 'grouping medications' do + before do + Flipper.enable('mhv_medications_display_grouping') + end + + it 'responds to GET #index by grouping medications and removes grouped medications from original list' do + VCR.use_cassette('rx_client/prescriptions/gets_a_paginated_list_of_grouped_prescriptions') do + get '/my_health/v1/prescriptions?page=1&per_page=20' + end + + expect(response).to be_successful + expect(response.body).to be_a(String) + expect(response).to match_response_schema('my_health/prescriptions/v1/prescriptions_list_paginated') + expect(JSON.parse(response.body)['data']).to be_truthy + + grouped_med_list = (JSON.parse(response.body)['data']) + first_rx = grouped_med_list.find do |rx| + rx['attributes']['grouped_medications'].present? + end + rx_num_of_grouped_rx = first_rx['attributes']['grouped_medications'].first['prescription_number'] + find_grouped_rx_in_base_list = grouped_med_list.find do |rx| + rx['attributes']['prescription_number'] == rx_num_of_grouped_rx + end + expect(find_grouped_rx_in_base_list).to be_falsey + end + + Flipper.disable('mhv_medications_display_grouping') + end + it 'responds to GET #get_prescription_image with image' do VCR.use_cassette('rx_client/prescriptions/gets_a_prescription_image_v1') do get '/my_health/v1/prescriptions?/prescriptions/get_prescription_image/00013264681' diff --git a/spec/support/schemas/my_health/prescriptions/v1/prescription_details.json b/spec/support/schemas/my_health/prescriptions/v1/prescription_details.json index 41f71c07ab1..ccaba3cd94f 100644 --- a/spec/support/schemas/my_health/prescriptions/v1/prescription_details.json +++ b/spec/support/schemas/my_health/prescriptions/v1/prescription_details.json @@ -175,7 +175,261 @@ "tracking": { "type": ["boolean", "null"] }, "orderable_item": { "type": ["string", "null"] }, "sorted_dispensed_date": { "type": ["string", "null"], "format": "date" }, - "prescription_image": { "type": ["string", "null"] } + "prescription_image": { "type": ["string", "null"] }, + "grouped_medications": { + "type": ["array", "null"], + "properties": { + "properties": { + "prescription_id": { "type": ["integer", "null"] }, + "prescription_number": { "type": ["string", "null"] }, + "prescription_name": { "type": ["string", "null"] }, + "refill_status": { "type": ["string", "null"]}, + "refill_submit_date": { "type": ["string", "null"], "format": "date" }, + "refill_date": { "type": ["string", "null"], "format": "date" }, + "refill_remaining": { "type": ["integer", "null"] }, + "facility_name": { "type": ["string", "null"] }, + "ordered_date": { "type": "string", "format": "date" }, + "quantity": { "type": ["integer", "null"] }, + "expiration_date": { "type": ["string", "null"], "format": "date" }, + "dispensed_date": { "type": ["string", "null"], "format": "date" }, + "station_number": { "type": ["string", "null"] }, + "is_refillable": { "type": ["boolean", "null"] }, + "is_trackable": { "type": ["boolean", "null"] }, + "sig": { "type": ["string", "null"] }, + "cmop_division_phone": { "type": ["string", "null"] }, + "in_cerner_transition": { "type": ["boolean", "null"] }, + "not_refillable_display_message": { "type": ["string", "null"] }, + "cmop_ndc_number": { "type": ["string", "null"] }, + "user_id": { "type": ["integer", "null"] }, + "provider_first_name": { "type": ["string", "null"] }, + "provider_last_name": { "type": ["string", "null"]}, + "remarks": { "type": ["string", "null"] }, + "division_name": { "type": ["string", "null"] }, + "modified_date": { "type": ["string", "null"], "format": "date" }, + "institution_id": { "type": ["string", "null"] }, + "dial_cmop_division_phone": { "type": ["string", "null"] }, + "disp_status": { "type": ["string", "null"] }, + "ndc": { "type": ["string", "null"] }, + "reason": { "type": ["string", "null"] }, + "prescription_number_index": { "type": ["string", "null"] }, + "prescription_source": { "type": ["string", "null"] }, + "disclaimer": { "type": ["string", "null"] }, + "indication_for_use": { "type": ["string", "null"] }, + "indication_for_use_flag": { "type": ["string", "null"] }, + "category": { "type": ["string", "null"] }, + "color": { "type": ["string", "null"] }, + "shape": { "type": ["string", "null"] }, + "back_imprint": { "type": ["string", "null"] }, + "front_imprint": { "type": ["string", "null"] }, + "tracking_list": { + "type": "array", + "items": { + "tracking": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { "type": "integer" }, + "station_number": { "type": "string" }, + "rx_number": { "type": "string" }, + "carrier": { "type": "string" }, + "tracking_number": { "type": "string" }, + "complete_date_time": { "type": "string", "format": "date" }, + "division_phone": { "type": "string" }, + "ndc": { "type": "string" }, + "date_loaded": { "type": "string", "format": "date" }, + "is_local_tracking": { "type": "boolean" }, + "others_in_same_package": { "type": "boolean" }, + "view_image_displayed": { "type": "boolean" } + } + } + } + } + }, + "rx_rf_records": { + "type": "array", + "items": { + "rf_record": { + "type": "array", + "items": { + "type": "object", + "properties": { + "prescription_id": { "type": "integer" }, + "prescription_number": { "type": "string" }, + "prescription_name": { "type": "string" }, + "refill_status": { "type": "string" }, + "refill_submit_date": { "type": ["string", "null"], "format": "date" }, + "refill_date": { "type": "string", "format": "date" }, + "refill_remaining": { "type": "integer" }, + "facility_name": { "type": "string" }, + "ordered_date": { "type": "string", "format": "date" }, + "quantity": { "type": "integer" }, + "expiration_date": { "type": "string", "format": "date" }, + "dispensed_date": { "type": ["string", "null"], "format": "date" }, + "station_number": { "type": "string" }, + "is_refillable": { "type": "boolean" }, + "is_trackable": { "type": "boolean" }, + "in_cerner_transition": { "type": "boolean" }, + "not_refillable_display_message": { "type": "string" }, + "cmop_ndc_number": { "type": ["string", "null"] }, + "user_id": { "type": "integer" }, + "provider_first_name": { "type": "string" }, + "provider_last_name": { "type": "string" }, + "remarks": { "type": "string" }, + "division_name": { "type": "string" }, + "modified_date": { "type": ["string", "null"], "format": "date" }, + "institution_id": { "type": ["string", "null"] }, + "dial_cmop_division_phone": { "type": "string" }, + "disp_status": { "type": "string" }, + "ndc": { "type": "string" }, + "reason": { "type": "string" }, + "prescription_number_index": { "type": "string" }, + "prescription_source": { "type": "string" }, + "disclaimer": { "type": "string" }, + "indication_for_use": { "type": "string" }, + "indication_for_use_flag": { "type": "string" }, + "category": { "type": "string" }, + "tracking": { "type": "boolean" } + } + } + } + } + }, + "tracking": { "type": ["boolean", "null"] }, + "orderable_item": { "type": ["string", "null"] }, + "sorted_dispensed_date": { "type": ["string", "null"], "format": "date" }, + "prescription_image": { "type": ["string", "null"] }, + "grouped_medications": { + "type": "array", + "properties": { + "prescription_id": { "type": ["integer", "null"] }, + "prescription_number": { "type": ["string", "null"] }, + "prescription_name": { "type": ["string", "null"] }, + "refill_status": { "type": ["string", "null"]}, + "refill_submit_date": { "type": ["string", "null"], "format": "date" }, + "refill_date": { "type": ["string", "null"], "format": "date" }, + "refill_remaining": { "type": ["integer", "null"] }, + "facility_name": { "type": ["string", "null"] }, + "ordered_date": { "type": "string", "format": "date" }, + "quantity": { "type": ["integer", "null"] }, + "expiration_date": { "type": ["string", "null"], "format": "date" }, + "dispensed_date": { "type": ["string", "null"], "format": "date" }, + "station_number": { "type": ["string", "null"] }, + "is_refillable": { "type": ["boolean", "null"] }, + "is_trackable": { "type": ["boolean", "null"] }, + "sig": { "type": ["string", "null"] }, + "cmop_division_phone": { "type": ["string", "null"] }, + "in_cerner_transition": { "type": ["boolean", "null"] }, + "not_refillable_display_message": { "type": ["string", "null"] }, + "cmop_ndc_number": { "type": ["string", "null"] }, + "user_id": { "type": ["integer", "null"] }, + "provider_first_name": { "type": ["string", "null"] }, + "provider_last_name": { "type": ["string", "null"]}, + "remarks": { "type": ["string", "null"] }, + "division_name": { "type": ["string", "null"] }, + "modified_date": { "type": ["string", "null"], "format": "date" }, + "institution_id": { "type": ["string", "null"] }, + "dial_cmop_division_phone": { "type": ["string", "null"] }, + "disp_status": { "type": ["string", "null"] }, + "ndc": { "type": ["string", "null"] }, + "reason": { "type": ["string", "null"] }, + "prescription_number_index": { "type": ["string", "null"] }, + "prescription_source": { "type": ["string", "null"] }, + "disclaimer": { "type": ["string", "null"] }, + "indication_for_use": { "type": ["string", "null"] }, + "indication_for_use_flag": { "type": ["string", "null"] }, + "category": { "type": ["string", "null"] }, + "color": { "type": ["string", "null"] }, + "shape": { "type": ["string", "null"] }, + "back_imprint": { "type": ["string", "null"] }, + "front_imprint": { "type": ["string", "null"] }, + "tracking_list": { + "type": "array", + "items": { + "tracking": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { "type": "integer" }, + "station_number": { "type": "string" }, + "rx_number": { "type": "string" }, + "carrier": { "type": "string" }, + "tracking_number": { "type": "string" }, + "complete_date_time": { "type": "string", "format": "date" }, + "division_phone": { "type": "string" }, + "ndc": { "type": "string" }, + "date_loaded": { "type": "string", "format": "date" }, + "is_local_tracking": { "type": "boolean" }, + "others_in_same_package": { "type": "boolean" }, + "view_image_displayed": { "type": "boolean" } + } + } + } + } + }, + "rx_rf_records": { + "type": "array", + "items": { + "rf_record": { + "type": "array", + "items": { + "type": "object", + "properties": { + "prescription_id": { "type": "integer" }, + "prescription_number": { "type": "string" }, + "prescription_name": { "type": "string" }, + "refill_status": { "type": "string" }, + "refill_submit_date": { "type": ["string", "null"], "format": "date" }, + "refill_date": { "type": "string", "format": "date" }, + "refill_remaining": { "type": "integer" }, + "facility_name": { "type": "string" }, + "ordered_date": { "type": "string", "format": "date" }, + "quantity": { "type": "integer" }, + "expiration_date": { "type": "string", "format": "date" }, + "dispensed_date": { "type": ["string", "null"], "format": "date" }, + "station_number": { "type": "string" }, + "is_refillable": { "type": "boolean" }, + "is_trackable": { "type": "boolean" }, + "in_cerner_transition": { "type": "boolean" }, + "not_refillable_display_message": { "type": "string" }, + "cmop_ndc_number": { "type": ["string", "null"] }, + "user_id": { "type": "integer" }, + "provider_first_name": { "type": "string" }, + "provider_last_name": { "type": "string" }, + "remarks": { "type": "string" }, + "division_name": { "type": "string" }, + "modified_date": { "type": ["string", "null"], "format": "date" }, + "institution_id": { "type": ["string", "null"] }, + "dial_cmop_division_phone": { "type": "string" }, + "disp_status": { "type": "string" }, + "ndc": { "type": "string" }, + "reason": { "type": "string" }, + "prescription_number_index": { "type": "string" }, + "prescription_source": { "type": "string" }, + "disclaimer": { "type": "string" }, + "indication_for_use": { "type": "string" }, + "indication_for_use_flag": { "type": "string" }, + "category": { "type": "string" }, + "tracking": { "type": "boolean" } + } + } + } + } + }, + "tracking": { "type": ["boolean", "null"] }, + "orderable_item": { "type": ["string", "null"] }, + "sorted_dispensed_date": { "type": ["string", "null"], "format": "date" }, + "prescription_image": { "type": ["string", "null"] }, + "grouped_medications": { + "type": ["array", "null"], + "properties": {} + } + } + } + } + } + } } }, "links": { diff --git a/spec/support/schemas_camelized/my_health/prescriptions/v1/prescription_details.json b/spec/support/schemas_camelized/my_health/prescriptions/v1/prescription_details.json index cfcc4d56f33..324a8128396 100644 --- a/spec/support/schemas_camelized/my_health/prescriptions/v1/prescription_details.json +++ b/spec/support/schemas_camelized/my_health/prescriptions/v1/prescription_details.json @@ -176,7 +176,136 @@ "tracking": { "type": ["boolean", "null"] }, "orderableItem": { "type": ["string", "null"] }, "sortedDispensedDate": { "type": ["string", "null"], "format": "date" }, - "prescriptionImage": { "type": ["string", "null"] } + "prescriptionImage": { "type": ["string", "null"] }, + "groupedMedications": { + "type": ["array", "null"], + "properties": { + "prescriptionId": { "type": ["integer", "null"] }, + "prescriptionNumber": { "type": ["string", "null"] }, + "prescriptionName": { "type": ["string", "null"] }, + "refillStatus": { "type": ["string", "null"] }, + "refillSubmitDate": { "type": ["string", "null"], "format": "date" }, + "refillDate": { "type": ["string", "null"], "format": "date" }, + "refillRemaining": { "type": ["integer", "null"] }, + "facilityName": { "type": ["string", "null"] }, + "orderedDate": { "type": ["string", "null"], "format": "date" }, + "quantity": { "type": ["integer", "null"] }, + "expirationDate": { "type": ["string", "null"], "format": "date" }, + "dispensedDate": { "type": ["string", "null"], "format": "date" }, + "stationNumber": { "type": ["string", "null"] }, + "isRefillable": { "type": ["boolean", "null"] }, + "isTrackable": { "type": ["boolean", "null"] }, + "sig": { "type": ["string", "null"] }, + "cmopDivisionPhone": { "type": ["string", "null"] }, + "inCernerTransition": { "type": ["boolean", "null"] }, + "notRefillableDisplayMessage": { "type": ["string", "null"] }, + "cmopNdcNumber": { "type": ["string", "null"] }, + "userId": { "type": ["integer", "null"] }, + "providerFirstName": { "type": ["string", "null"] }, + "providerLastName": { "type": ["string", "null"]}, + "remarks": { "type": ["string", "null"] }, + "divisionName": { "type": ["string", "null"] }, + "modifiedDate": { "type": ["string", "null"], "format": "date" }, + "institutionId": { "type": ["string", "null"] }, + "dialCmopDivisionPhone": { "type": ["string", "null"] }, + "dispStatus": { "type": ["string", "null"] }, + "ndc": { "type": ["string", "null"] }, + "reason": { "type": ["string", "null"] }, + "prescriptionNumberIndex": { "type": ["string", "null"] }, + "prescriptionSource": { "type": ["string", "null"] }, + "disclaimer": { "type": ["string", "null"] }, + "indicationForUse": { "type": ["string", "null"] }, + "indicationForUseFlag": { "type": ["string", "null"] }, + "category": { "type": ["string", "null"] }, + "color": { "type": ["string", "null"] }, + "shape": { "type": ["string", "null"] }, + "backImprint": { "type": ["string", "null"] }, + "frontImprint": { "type": ["string", "null"] }, + "trackingList": { + "type": "array", + "items": { + "tracking": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { "type": "integer" }, + "stationNumber": { "type": "string" }, + "rxNumber": { "type": "string" }, + "carrier": { "type": "string" }, + "trackingNumber": { "type": "string" }, + "completeDateTime": { "type": "string", "format": "date" }, + "divisionPhone": { "type": "string" }, + "ndc": { "type": "string" }, + "dateLoaded": { "type": "string", "format": "date" }, + "isLocalTracking": { "type": "boolean" }, + "othersInSamePackage": { "type": "boolean" }, + "viewImageDisplayed": { "type": "boolean" } + } + } + } + } + }, + "rxRfRecords": { + "type": "array", + "items": { + "rf_record": { + "type": "array", + "items": { + "type": "object", + "properties": { + "prescriptionId": { "type": "integer" }, + "prescriptionNumber": { "type": "string" }, + "prescriptionName": { "type": "string" }, + "refillStatus": { "type": "string" }, + "refillSubmitDate": { "type": ["string", "null"], "format": "date" }, + "refillDate": { "type": "string", "format": "date" }, + "refillRemaining": { "type": "integer" }, + "facilityName": { "type": "string" }, + "orderedDate": { "type": "string", "format": "date" }, + "quantity": { "type": "integer" }, + "expirationDate": { "type": "string", "format": "date" }, + "dispensedDate": { "type": ["string", "null"], "format": "date" }, + "stationNumber": { "type": "string" }, + "isRefillable": { "type": "boolean" }, + "isTrackable": { "type": "boolean" }, + "sig": { "type": ["string", "null"] }, + "inCernerTransition": { "type": "boolean" }, + "notRefillableDisplayMessage": { "type": "string" }, + "cmopNdcNumber": { "type": ["string", "null"] }, + "userId": { "type": ["integer"] }, + "providerFirstName": { "type": "string" }, + "providerLastName": { "type": "string" }, + "remarks": { "type": "string" }, + "divisionName": { "type": "string" }, + "modifiedDate": { "type": ["string", "null"], "format": "date" }, + "institutionId": { "type": ["string", "null"] }, + "dialCmopDivisionPhone": { "type": "string" }, + "dispStatus": { "type": "string" }, + "ndc": { "type": "string" }, + "reason": { "type": "string" }, + "prescriptionNumberIndex": { "type": "string" }, + "prescriptionSource": { "type": "string" }, + "disclaimer": { "type": "string" }, + "indicationForUse": { "type": "string" }, + "indicationForUseFlag": { "type": "string" }, + "category": { "type": "string" }, + "tracking": { "type": "boolean" } + } + } + } + } + }, + "tracking": { "type": ["boolean", "null"] }, + "orderableItem": { "type": ["string", "null"] }, + "sortedDispensedDate": { "type": ["string", "null"], "format": "date" }, + "prescriptionImage": { "type": ["string", "null"] }, + "groupedMedications": { + "type": ["array", "null"], + "properties": {} + } + } + } } }, "links": { diff --git a/spec/support/vcr_cassettes/rx_client/prescriptions/gets_a_paginated_list_of_grouped_prescriptions.yml b/spec/support/vcr_cassettes/rx_client/prescriptions/gets_a_paginated_list_of_grouped_prescriptions.yml new file mode 100644 index 00000000000..958b32b3be9 --- /dev/null +++ b/spec/support/vcr_cassettes/rx_client/prescriptions/gets_a_paginated_list_of_grouped_prescriptions.yml @@ -0,0 +1,3465 @@ +--- +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, 11 Dec 2024 19:39:18 GMT + Content-Type: + - application/json + Content-Length: + - '585441' + X-Amzn-Requestid: + - e0c85c22-531e-4589-81dc-c8ccd28ef2e3 + X-Amzn-Remapped-Connection: + - keep-alive + X-Amz-Apigw-Id: + - CpGQCGglvHMFU4Q= + X-Amzn-Remapped-Date: + - Wed, 11 Dec 2024 19:39:18 GMT + Strict-Transport-Security: + - max-age=16000000; includeSubDomains; preload; + body: + encoding: ASCII-8BIT + string: '{"failedStationList":"","successfulStationList":null,"lastUpdatedTime":"Wed, + 11 Dec 2024 10:38:04 EST","medicationList":{"medication":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 05 Jun 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142484,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Sat, 16 Apr 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 17 Apr 2023 00:00:00 EDT","prescriptionNumber":"3636841","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":21142484,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 16 May 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142485,"sig":null,"orderedDate":"Sun, + 05 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636841","prescriptionName":"KETOCONAZOLE + 200MG TAB","dispensedDate":"Sat, 02 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142485,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 27 Jul 2022 15:03:08 EDT","refillDate":"Sat, 20 Aug 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142486,"sig":"TAKE + 1ML EVERY DAY FOR 30 DAYS","orderedDate":"Mon, 02 May 2022 00:00:00 EDT","quantity":30,"expirationDate":"Wed, + 03 May 2023 00:00:00 EDT","prescriptionNumber":"3636844","prescriptionName":"LACTOBACILLUS + ACIDOPHILUS 1GM GRNLS","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":21142486,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"08290-2367-12","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LACTOBACILLUS ACIDOPHILUS 1GM","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, + 27 Jul 2022 15:03:08 EDT","refillDate":"Wed, 01 Jun 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21146805,"sig":null,"orderedDate":"Sat, + 20 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636844","prescriptionName":"LACTOBACILLUS + ACIDOPHILUS 1GM GRNLS","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21146805,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"08290-2367-12","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":"Wed, + 01 Jun 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21146745,"sig":null,"orderedDate":"Thu, + 21 Jul 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636844","prescriptionName":"LACTOBACILLUS + ACIDOPHILUS 1GM GRNLS","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21146745,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"08290-2367-12","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, + 01 Jun 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21144958,"sig":null,"orderedDate":"Mon, + 27 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636844","prescriptionName":"LACTOBACILLUS + ACIDOPHILUS 1GM GRNLS","dispensedDate":"Mon, 25 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21144958,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"08290-2367-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":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 08 Sep 2022 14:46:23 EDT","refillDate":"Thu, 08 Sep 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142487,"sig":"TAKE + ONE-HALF TABLET EVERY TWELVE (12) HOURS FOR 30 DAYS","orderedDate":"Mon, 02 + May 2022 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 03 May 2023 00:00:00 + EDT","prescriptionNumber":"3636845","prescriptionName":"LAMIVUDINE 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":"(548)636-6845","cmopNdcNumber":null,"id":21142487,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"5486366845","dispStatus":"Discontinued","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LAMIVUDINE 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 08 Sep 2022 14:46:23 EDT","refillDate":"Mon, 02 May 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142488,"sig":null,"orderedDate":"Thu, + 08 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636845","prescriptionName":"LAMIVUDINE + 100MG TAB","dispensedDate":"Tue, 06 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(548)636-6845","cmopNdcNumber":"00013264681","id":21142488,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"5486366845","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 02 Aug 2022 14:54:52 EDT","refillDate":"Tue, 02 Aug 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142489,"sig":"ONE + TABLET AT BEDTIME FOR 30 DAYS","orderedDate":"Mon, 09 May 2022 00:00:00 EDT","quantity":30,"expirationDate":"Wed, + 10 May 2023 00:00:00 EDT","prescriptionNumber":"3636854","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":21142489,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 25 Aug 2022 15:55:30 EDT","refillDate":"Tue, 06 Sep 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142490,"sig":"TAKE + ONE TABLET BY MOUTH AT BEDTIME FOR 30 DAYS","orderedDate":"Mon, 06 Jun 2022 + 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 07 Jun 2023 00:00:00 EDT","prescriptionNumber":"3636859","prescriptionName":"FAMOTIDINE + 40MG 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":21142490,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-5729-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"FAMOTIDINE 40MG","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":null,"refillDate":"Tue, + 01 Feb 2022 00:00:00 EST","refillRemaining":null,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142491,"sig":"10MG + ORAL DAILY","orderedDate":"Tue, 22 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"1","prescriptionName":"YASMIN + TAB,28","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":21142491,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":"TEST + COMMENT 02222022","divisionName":null,"modifiedDate":"Wed, 11 Dec 2024 10:38:03 + EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":"50419-0402-03","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":"TEST + DISCLAIMER 02222022","indicationForUse":null,"indicationForUseFlag":null,"category":"Documented + by VA","orderableItem":"ETHINYL ESTRADIOL 0.03-DROSPIRENONE 3MG","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, + 27 May 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142494,"sig":" + MOUTH DAILY","orderedDate":"Wed, 01 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"4","prescriptionName":"L-ARGININE + 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":21142494,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 11 Dec 2024 10:38:03 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":"00904-4215-51","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":"TEST","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":"Mon, + 02 May 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142495,"sig":"10MG + ORAL DAILY","orderedDate":"Fri, 27 May 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"5","prescriptionName":"KETAMINE + 10MG/ML INJ 20ML","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":21142495,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 11 Dec 2024 10:38:03 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":"61570-0581-10","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Documented + by VA","orderableItem":"K PHOSPHATE 305-NA PHOSTATE 700MG","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":"Sun, + 22 May 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142496,"sig":" + TOP DAILY","orderedDate":"Wed, 01 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"6","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":21142496,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 11 Dec 2024 10:38:03 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":"MAFENIDE ACETATE 8.5% 480GM","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, + 21 Sep 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142499,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Mon, 02 Aug 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Wed, 03 Aug 2022 00:00:00 EDT","prescriptionNumber":"2720290","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":21142499,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 EDT","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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 02 Aug 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142501,"sig":null,"orderedDate":"Tue, + 21 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720290","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":"Mon, 06 Sep 2021 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142501,"userId":17621060,"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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 02 Aug 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142500,"sig":null,"orderedDate":"Sun, + 22 Aug 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720290","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142500,"userId":17621060,"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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 26 Jul 2022 16:20:19 EDT","refillDate":"Sun, 26 Jun 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142502,"sig":"TAKE + ONE CAPSULE DAILY FOR 30 DAYS TEST","orderedDate":"Wed, 13 Oct 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Fri, 14 Oct 2022 00:00:00 EDT","prescriptionNumber":"2720298","prescriptionName":"ACYCLOVIR + 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":21142502,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00172-4266-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":null,"category":"Rx Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 13 Oct 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142784,"sig":null,"orderedDate":"Sun, + 26 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720298","prescriptionName":"ACYCLOVIR + 200MG CAP","dispensedDate":"Sun, 24 Jul 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142784,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00172-4266-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 05 Nov 2021 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142503,"sig":"INJECT + 2ML WEEKLY FOR 30 DAYS","orderedDate":"Sat, 16 Oct 2021 00:00:00 EDT","quantity":4,"expirationDate":"Mon, + 17 Oct 2022 00:00:00 EDT","prescriptionNumber":"2720299","prescriptionName":"SOMATROPIN + 5.8MG/VIL INJ INTRA-MIX","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142503,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00013-2626-81","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SOMATROPIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 16 Oct 2021 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142504,"sig":null,"orderedDate":"Fri, + 05 Nov 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720299","prescriptionName":"SOMATROPIN + 5.8MG/VIL INJ INTRA-MIX","dispensedDate":"Fri, 12 Nov 2021 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142504,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00013-2626-81","reason":null,"prescriptionNumberIndex":"RF1","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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 06 Dec 2021 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142505,"sig":"TAKE + 1MG WEEKLY FOR 30 DAYS","orderedDate":"Tue, 16 Nov 2021 00:00:00 EST","quantity":4,"expirationDate":"Thu, + 17 Nov 2022 00:00:00 EST","prescriptionNumber":"2720305","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":21142505,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Tue, + 16 Nov 2021 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142506,"sig":null,"orderedDate":"Mon, + 06 Dec 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720305","prescriptionName":"IODOQUINOL + 650MG TAB","dispensedDate":"Tue, 14 Dec 2021 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142506,"userId":17621060,"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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 25 Oct 2022 14:09:22 EDT","refillDate":"Tue, 25 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142508,"sig":"APPLY + 1MG TO AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Wed, 17 Nov 2021 00:00:00 + EST","quantity":4,"expirationDate":"Fri, 18 Nov 2022 00:00:00 EST","prescriptionNumber":"2720306","prescriptionName":"XEROFORM + DRESSING 5X9 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":21142508,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"XEROFORM 5X9","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 17 Nov 2021 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21412993,"sig":null,"orderedDate":"Tue, + 25 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720306","prescriptionName":"XEROFORM + DRESSING 5X9 IN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21412993,"userId":17621060,"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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 17 Nov 2021 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21283928,"sig":null,"orderedDate":"Sun, + 14 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720306","prescriptionName":"XEROFORM + DRESSING 5X9 IN","dispensedDate":"Mon, 12 Sep 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21283928,"userId":17621060,"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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 03 Jan 2023 09:42:09 EST","refillDate":"Sun, 01 Jan 2023 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142509,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD--","orderedDate":"Mon, + 24 Jan 2022 00:00:00 EST","quantity":30,"expirationDate":"Wed, 25 Jan 2023 + 00:00:00 EST","prescriptionNumber":"2720311","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":"(983)272-0311","cmopNdcNumber":null,"id":21142509,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720311","dispStatus":"Discontinued","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 24 Jan 2022 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21647777,"sig":null,"orderedDate":"Sun, + 01 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720311","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":"Sun, 01 Jan 2023 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0311","cmopNdcNumber":"0013264681","id":21647777,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720311","dispStatus":"Discontinued","ndc":"00603-2408-32","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 24 Jan 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21532502,"sig":null,"orderedDate":"Sat, + 26 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720311","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":"Sat, 26 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0311","cmopNdcNumber":null,"id":21532502,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720311","dispStatus":"Discontinued","ndc":"00603-2408-32","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 24 Jan 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21531151,"sig":null,"orderedDate":"Sun, + 30 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720311","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0311","cmopNdcNumber":null,"id":21531151,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720311","dispStatus":"Discontinued","ndc":"00603-2408-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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 24 Jan 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21158342,"sig":null,"orderedDate":"Sun, + 03 Jul 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720311","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":"Sun, 31 Jul 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0311","cmopNdcNumber":null,"id":21158342,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720311","dispStatus":"Discontinued","ndc":"00603-2408-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 24 Jan 2022 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142511,"sig":null,"orderedDate":"Sat, + 11 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720311","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":"Fri, 08 Jul 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0311","cmopNdcNumber":null,"id":21142511,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720311","dispStatus":"Discontinued","ndc":"00603-2408-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 24 Jan 2022 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142510,"sig":null,"orderedDate":"Sun, + 13 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720311","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":"Sun, 20 Feb 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0311","cmopNdcNumber":null,"id":21142510,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720311","dispStatus":"Discontinued","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 08 Apr 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142512,"sig":"TAKE + THIS IS FOR TESTING %% BY MOUTH WEEKLY HALF ## FOR 1 MINUTE, AND TAKE 50% + TAKE 50% FOR 1 HOUR FOLLOW INSTRUCTIONS CAREFULLY ","orderedDate":"Thu, 07 + Apr 2022 00:00:00 EDT","quantity":10,"expirationDate":"Sat, 08 Apr 2023 00:00:00 + EDT","prescriptionNumber":"2720326","prescriptionName":"DISULFIRAM (ANTABUSE) + 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":21142512,"userId":17621060,"providerFirstName":"RACHNA","providerLastName":"CHOUDHRY","remarks":"This + This is for testing!!!! ","divisionName":"DAYTON","modifiedDate":"Mon, 14 + Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00046-0810-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DISULFIRAM","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":"transferred","refillSubmitDate":"Wed, + 09 Nov 2022 14:40:35 EST","refillDate":"Wed, 09 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142513,"sig":"APPLY + 1ML TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Sat, 16 Apr 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Mon, 17 Apr 2023 00:00:00 EDT","prescriptionNumber":"2720330","prescriptionName":"KARAYA + PASTE (2 OUNCES)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142513,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Transferred","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"transferred","refillSubmitDate":null,"refillDate":"Sat, + 16 Apr 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21480096,"sig":null,"orderedDate":"Wed, + 09 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720330","prescriptionName":"KARAYA + PASTE (2 OUNCES)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21480096,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Transferred","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"transferred","refillSubmitDate":null,"refillDate":"Sat, + 16 Apr 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21259016,"sig":null,"orderedDate":"Sun, + 07 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720330","prescriptionName":"KARAYA + PASTE (2 OUNCES)","dispensedDate":"Tue, 06 Sep 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21259016,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Transferred","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":"transferred","refillSubmitDate":null,"refillDate":"Sat, + 16 Apr 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142514,"sig":null,"orderedDate":"Fri, + 06 May 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720330","prescriptionName":"KARAYA + PASTE (2 OUNCES)","dispensedDate":"Sun, 03 Jul 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142514,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Transferred","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":"active","refillSubmitDate":null,"refillDate":"Tue, + 01 Feb 2022 00:00:00 EST","refillRemaining":null,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142515,"sig":"10MG + ORAL DAILY","orderedDate":"Tue, 22 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"1","prescriptionName":"WARFARIN + (COUMADIN) 10MG TAB U/D","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142515,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":"TEST + COMMENT 02222022","divisionName":null,"modifiedDate":"Wed, 11 Dec 2024 10:38:04 + EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":null,"reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":"TEST + DISCLAIMER 02222022","indicationForUse":null,"indicationForUseFlag":null,"category":"Documented + by VA","orderableItem":"WARFARIN","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":"Thu, + 17 Mar 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142518,"sig":"HIGH + MOUTH DAILY","orderedDate":"Mon, 21 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"4","prescriptionName":"SAW + PALMETTO","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142518,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 11 Dec 2024 10:38:04 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":"SAW PALMETTO","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":"Sun, + 20 Mar 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142519,"sig":"HIGH + ORAL DAILY","orderedDate":"Tue, 22 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"5","prescriptionName":null,"dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142519,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 11 Dec 2024 10:38:04 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":"GABAPENTIN","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":"Tue, + 22 Mar 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142520,"sig":"LOW + TOP DAILY","orderedDate":"Wed, 23 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":"Mon, + 19 Sep 2022 00:00:00 EDT","prescriptionNumber":"6","prescriptionName":null,"dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142520,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 11 Dec 2024 10:38:04 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":"HALCINONIDE","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, + 23 Mar 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21142521,"sig":"HIGH + TOP WEEKLY","orderedDate":"Wed, 23 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":"Sun, + 22 May 2022 00:00:00 EDT","prescriptionNumber":"8","prescriptionName":"BAB + OTIC SOL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142521,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 11 Dec 2024 10:38:04 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":"BACID","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, + 17 Dec 2021 00:00:00 EST","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142452,"sig":"TAKE + ONE-HALF TABLET EVERY TWELVE (12) HOURS FOR 30 DAYS","orderedDate":"Sun, 29 + Aug 2021 00:00:00 EDT","quantity":30,"expirationDate":"Tue, 30 Aug 2022 00:00:00 + EDT","prescriptionNumber":"3636756","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":21142452,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 29 Aug 2021 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142453,"sig":null,"orderedDate":"Fri, + 17 Dec 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636756","prescriptionName":"NORFLOXACIN + 400MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142453,"userId":17621060,"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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 13 Sep 2022 08:53:05 EDT","refillDate":"Tue, 13 Sep 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142454,"sig":"TAKE + ONE TABLET EVERY TWELVE (12) HOURS FOR 30 DAYS","orderedDate":"Sat, 16 Oct + 2021 00:00:00 EDT","quantity":60,"expirationDate":"Mon, 17 Oct 2022 00:00:00 + EDT","prescriptionNumber":"3636784","prescriptionName":"CIMETIDINE 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":21142454,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00108-5026-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CIMETIDINE 400MG","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, + 13 Sep 2022 08:53:05 EDT","refillDate":"Sat, 16 Oct 2021 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21283925,"sig":null,"orderedDate":"Tue, + 13 Sep 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636784","prescriptionName":"CIMETIDINE + 400MG TAB","dispensedDate":"Mon, 12 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21283925,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00108-5026-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":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 16 Oct 2021 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142455,"sig":null,"orderedDate":"Fri, + 05 Nov 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636784","prescriptionName":"CIMETIDINE + 400MG TAB","dispensedDate":"Fri, 12 Nov 2021 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142455,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00108-5026-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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 14 Jan 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142456,"sig":"DEVICE(S) + MISC WEEKLY FOR 30 DAYS","orderedDate":"Wed, 17 Nov 2021 00:00:00 EST","quantity":1,"expirationDate":"Fri, + 18 Nov 2022 00:00:00 EST","prescriptionNumber":"3636794","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":21142456,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 31 Oct 2022 11:50:45 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142457,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 26 Dec 2021 00:00:00 + EST","quantity":15,"expirationDate":"Tue, 27 Dec 2022 00:00:00 EST","prescriptionNumber":"3636802","prescriptionName":"QUETIAPINE + FUMARATE 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":21142457,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0274-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"QUETIAPINE FUMARATE 300MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 31 Oct 2022 11:50:45 EDT","refillDate":"Sun, 26 Dec 2021 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430734,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636802","prescriptionName":"QUETIAPINE + FUMARATE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430734,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0274-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 26 Dec 2021 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142458,"sig":null,"orderedDate":"Sat, + 15 Jan 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636802","prescriptionName":"QUETIAPINE + FUMARATE 300MG TAB","dispensedDate":"Sun, 23 Jan 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142458,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0274-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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 19 Aug 2022 10:58:01 EDT","refillDate":"Thu, 23 Jun 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142459,"sig":"TAKE + ONE TABLET BY MOUTH THREE (3) TIMES A DAY, WITH FOOD FOR 30 DAYS","orderedDate":"Mon, + 24 Jan 2022 00:00:00 EST","quantity":90,"expirationDate":"Wed, 25 Jan 2023 + 00:00:00 EST","prescriptionNumber":"3636814","prescriptionName":"IBUPROFEN + 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":21142459,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53746-0131-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"IBUPROFEN 400MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 19 Aug 2022 10:58:01 EDT","refillDate":"Mon, 24 Jan 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21215980,"sig":null,"orderedDate":"Thu, + 23 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636814","prescriptionName":"IBUPROFEN + 400MG TAB","dispensedDate":"Fri, 19 Aug 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21215980,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53746-0131-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 24 Jan 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142460,"sig":null,"orderedDate":"Sun, + 13 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636814","prescriptionName":"IBUPROFEN + 400MG TAB","dispensedDate":"Fri, 25 Feb 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142460,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53746-0131-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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 18 Feb 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142461,"sig":"TAKE + ONE-HALF TABLET AT BEDTIME FOR 30 DAYS","orderedDate":"Sat, 29 Jan 2022 00:00:00 + EST","quantity":15,"expirationDate":"Mon, 30 Jan 2023 00:00:00 EST","prescriptionNumber":"3636815","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":null,"cmopNdcNumber":null,"id":21142461,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 29 Jan 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142462,"sig":null,"orderedDate":"Fri, + 18 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636815","prescriptionName":"HALOPERIDOL + 10MG TAB","dispensedDate":"Fri, 25 Feb 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142462,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 01 Dec 2022 14:02:29 EST","refillDate":"Sun, 20 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142463,"sig":"TAKE + ONE TABLET EVERY SIX (6) HOURS FOR 30 DAYS","orderedDate":"Sat, 29 Jan 2022 + 00:00:00 EST","quantity":120,"expirationDate":"Mon, 30 Jan 2023 00:00:00 EST","prescriptionNumber":"3636816","prescriptionName":"HYDRALAZINE + 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":"(618)636-6861","cmopNdcNumber":null,"id":21142463,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"6186366861","dispStatus":"Expired","ndc":"49884-0029-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HYDRALAZINE HCL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 01 Dec 2022 14:02:29 EST","refillDate":"Sat, 29 Jan 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21531148,"sig":null,"orderedDate":"Sun, + 20 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636816","prescriptionName":"HYDRALAZINE + HCL 10MG TAB","dispensedDate":"Sun, 27 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21531148,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0029-01","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 29 Jan 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430476,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636816","prescriptionName":"HYDRALAZINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21430476,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"49884-0029-01","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 29 Jan 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21296671,"sig":null,"orderedDate":"Sun, + 21 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636816","prescriptionName":"HYDRALAZINE + HCL 10MG TAB","dispensedDate":"Sun, 18 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(618)636-6861","cmopNdcNumber":null,"id":21296671,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"6186366861","dispStatus":"Expired","ndc":"49884-0029-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 29 Jan 2022 00:00:00 EST","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21146744,"sig":null,"orderedDate":"Mon, + 27 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636816","prescriptionName":"HYDRALAZINE + HCL 10MG TAB","dispensedDate":"Mon, 25 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(618)636-6861","cmopNdcNumber":null,"id":21146744,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"6186366861","dispStatus":"Expired","ndc":"49884-0029-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 29 Jan 2022 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142465,"sig":null,"orderedDate":"Sun, + 20 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636816","prescriptionName":"HYDRALAZINE + HCL 10MG TAB","dispensedDate":"Sun, 27 Mar 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(618)636-6861","cmopNdcNumber":null,"id":21142465,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"6186366861","dispStatus":"Expired","ndc":"49884-0029-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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 29 Jan 2022 00:00:00 EST","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142464,"sig":null,"orderedDate":"Fri, + 18 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636816","prescriptionName":"HYDRALAZINE + HCL 10MG TAB","dispensedDate":"Fri, 25 Feb 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(618)636-6861","cmopNdcNumber":null,"id":21142464,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"6186366861","dispStatus":"Expired","ndc":"49884-0029-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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 22 Feb 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142466,"sig":"TAKE + ONE-HALF TABLET THREE (3) TIMES A DAY FOR 30 DAYS","orderedDate":"Wed, 02 + Feb 2022 00:00:00 EST","quantity":45,"expirationDate":"Fri, 03 Feb 2023 00:00:00 + EST","prescriptionNumber":"3636818","prescriptionName":"BACLOFEN 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":21142466,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2406-21","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BACLOFEN 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 02 Feb 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142467,"sig":null,"orderedDate":"Tue, + 22 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636818","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":"Wed, 02 Mar 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142467,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2406-21","reason":null,"prescriptionNumberIndex":"RF1","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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 29 Nov 2022 16:13:31 EST","refillDate":"Sun, 27 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142468,"sig":"TAKE + ONE CAPSULE EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 02 Feb 2022 00:00:00 + EST","quantity":30,"expirationDate":"Fri, 03 Feb 2023 00:00:00 EST","prescriptionNumber":"3636819","prescriptionName":"BALSALAZIDE + DISODIUM 750MG 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":21142468,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"65649-0101-02","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BALSALAZIDE DISODIUM 750MG","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, + 29 Nov 2022 16:13:31 EST","refillDate":"Wed, 02 Feb 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21532461,"sig":null,"orderedDate":"Sun, + 27 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636819","prescriptionName":"BALSALAZIDE + DISODIUM 750MG CAP","dispensedDate":"Sun, 27 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21532461,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"65649-0101-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":"expired","refillSubmitDate":null,"refillDate":"Wed, + 02 Feb 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21215981,"sig":null,"orderedDate":"Thu, + 23 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636819","prescriptionName":"BALSALAZIDE + DISODIUM 750MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21215981,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"65649-0101-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":"Wed, + 02 Feb 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142469,"sig":null,"orderedDate":"Tue, + 22 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636819","prescriptionName":"BALSALAZIDE + DISODIUM 750MG CAP","dispensedDate":"Wed, 02 Mar 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142469,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"65649-0101-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":null,"refillDate":"Fri, + 11 Mar 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142470,"sig":"TAKE + ONE-HALF TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 09 Feb 2022 00:00:00 + EST","quantity":15,"expirationDate":"Fri, 10 Feb 2023 00:00:00 EST","prescriptionNumber":"3636826","prescriptionName":"NADOLOL + 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":21142470,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-4235-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NADOLOL 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Fri, + 11 Mar 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142471,"sig":"TAKE + ONE TABLET TWO (2) TIMES PER DAY, WITH FOOD FOR 30 DAYS","orderedDate":"Wed, + 09 Feb 2022 00:00:00 EST","quantity":60,"expirationDate":"Fri, 10 Feb 2023 + 00:00:00 EST","prescriptionNumber":"3636827","prescriptionName":"NAPROXEN + 250MG 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":21142471,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"53746-0188-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NAPROXEN 250MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 18 Apr 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142472,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 27 Feb 2022 00:00:00 + EST","quantity":30,"expirationDate":"Tue, 28 Feb 2023 00:00:00 EST","prescriptionNumber":"3636831","prescriptionName":"PANTOPRAZOLE + NA 40MG 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":21142472,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00008-0841-81","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PANTOPRAZOLE NA 40MG","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":"Sun, + 27 Feb 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142474,"sig":null,"orderedDate":"Mon, + 18 Apr 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636831","prescriptionName":"PANTOPRAZOLE + NA 40MG EC TAB","dispensedDate":"Tue, 03 May 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142474,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00008-0841-81","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":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 27 Feb 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142473,"sig":null,"orderedDate":"Sat, + 19 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636831","prescriptionName":"PANTOPRAZOLE + NA 40MG EC TAB","dispensedDate":"Sun, 27 Mar 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142473,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00008-0841-81","reason":null,"prescriptionNumberIndex":"RF1","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, + 08 Nov 2022 14:11:24 EST","refillDate":"Fri, 18 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142475,"sig":"TAKE + 1 TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 27 Feb 2022 00:00:00 EST","quantity":30,"expirationDate":"Tue, + 28 Feb 2023 00:00:00 EST","prescriptionNumber":"3636832","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":"(178)636-6871","cmopNdcNumber":null,"id":21142475,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"1786366871","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 08 Nov 2022 14:11:24 EST","refillDate":"Sun, 27 Feb 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21462577,"sig":null,"orderedDate":"Fri, + 18 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636832","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":"00113002239","id":21462577,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RF5","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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 27 Feb 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21462319,"sig":null,"orderedDate":"Sat, + 29 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636832","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":"Sat, 29 Oct 2022 00:00:00 + EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21462319,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00173-0742-00","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 27 Feb 2022 00:00:00 EST","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21181174,"sig":null,"orderedDate":"Sun, + 17 Jul 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636832","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":"Tue, 09 Aug 2022 00:00:00 + EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21181174,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 27 Feb 2022 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21146804,"sig":null,"orderedDate":"Mon, + 27 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636832","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":"Mon, 25 Jul 2022 00:00:00 + EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21146804,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 27 Feb 2022 00:00:00 EST","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142476,"sig":null,"orderedDate":"Sat, + 19 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636832","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":"Thu, 28 Apr 2022 00:00:00 + EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21142476,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 07 Feb 2023 09:17:03 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142477,"sig":"TAKE + ONE TABLET TEST FOR 30 DAYS ZZZZ","orderedDate":"Sun, 03 Apr 2022 00:00:00 + EDT","quantity":2,"expirationDate":"Tue, 04 Apr 2023 00:00:00 EDT","prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG 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-6833","cmopNdcNumber":null,"id":21142477,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"erfhudsfyy + yefr9yoefwyh9ef ewfyhe98wfe80hfeh8ye0","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"QUINAPRIL HCL 40MG","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, + 07 Feb 2023 09:17:03 EST","refillDate":"Tue, 05 Apr 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801649,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801649,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0535-23","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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 05 Apr 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21647774,"sig":null,"orderedDate":"Sun, + 01 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":"Sun, 01 Jan 2023 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6833","cmopNdcNumber":null,"id":21647774,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-23","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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 05 Apr 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430477,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6833","cmopNdcNumber":null,"id":21430477,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-23","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":null,"refillDate":"Tue, + 05 Apr 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21259013,"sig":null,"orderedDate":"Sat, + 27 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":"Mon, 05 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6833","cmopNdcNumber":null,"id":21259013,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-23","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":null,"refillDate":"Tue, + 05 Apr 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21254434,"sig":null,"orderedDate":"Sun, + 07 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6833","cmopNdcNumber":null,"id":21254434,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-23","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, + 05 Apr 2022 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142781,"sig":null,"orderedDate":"Fri, + 01 Jul 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":"Sun, 24 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6833","cmopNdcNumber":null,"id":21142781,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 05 Apr 2022 00:00:00 EDT","refillRemaining":6,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21845039,"sig":null,"orderedDate":"Sat, + 11 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":"Fri, 08 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21845039,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0535-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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Tue, + 07 Feb 2023 09:17:03 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142478,"sig":"TAKE + ONE TABLET TEST FOR 30 DAYS ZZZZ","orderedDate":"Sat, 11 Jun 2022 00:00:00 + EDT","quantity":2,"expirationDate":"Tue, 04 Apr 2023 00:00:00 EDT","prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG 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":21142478,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 21 Feb 2023 14:37:33 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00071-0535-23","reason":null,"prescriptionNumberIndex":"PF1","prescriptionSource":"PF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"QUINAPRIL HCL 40MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 07 Feb 2023 09:17:03 EST","refillDate":"Tue, 05 Apr 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801649,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801649,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0535-23","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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 05 Apr 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21647774,"sig":null,"orderedDate":"Sun, + 01 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":"Sun, 01 Jan 2023 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6833","cmopNdcNumber":null,"id":21647774,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-23","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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 05 Apr 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430477,"sig":null,"orderedDate":"Mon, + 31 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6833","cmopNdcNumber":null,"id":21430477,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-23","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":null,"refillDate":"Tue, + 05 Apr 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21259013,"sig":null,"orderedDate":"Sat, + 27 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":"Mon, 05 Sep 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6833","cmopNdcNumber":null,"id":21259013,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-23","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":null,"refillDate":"Tue, + 05 Apr 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21254434,"sig":null,"orderedDate":"Sun, + 07 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6833","cmopNdcNumber":null,"id":21254434,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-23","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, + 05 Apr 2022 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142781,"sig":null,"orderedDate":"Fri, + 01 Jul 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":"Sun, 24 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6833","cmopNdcNumber":null,"id":21142781,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366833","dispStatus":"Expired","ndc":"00071-0535-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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 05 Apr 2022 00:00:00 EDT","refillRemaining":6,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21845039,"sig":null,"orderedDate":"Sat, + 11 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636833","prescriptionName":"QUINAPRIL + HCL 40MG TAB","dispensedDate":"Fri, 08 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21845039,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0535-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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 09 May 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142479,"sig":"TAKE + ONE TABLET WITH EVENING MEAL FOR 30 DAYS","orderedDate":"Sun, 20 Mar 2022 + 00:00:00 EDT","quantity":30,"expirationDate":"Tue, 21 Mar 2023 00:00:00 EDT","prescriptionNumber":"3636835","prescriptionName":"LOVASTATIN + 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":21142479,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00185-0072-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LOVASTATIN 20MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Mar 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142481,"sig":null,"orderedDate":"Mon, + 09 May 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636835","prescriptionName":"LOVASTATIN + 20MG TAB","dispensedDate":"Sun, 03 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142481,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00185-0072-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Mar 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142480,"sig":null,"orderedDate":"Sat, + 09 Apr 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636835","prescriptionName":"LOVASTATIN + 20MG TAB","dispensedDate":"Wed, 27 Apr 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142480,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00185-0072-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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 13 Mar 2023 15:56:27 EDT","refillDate":"Wed, 08 Mar 2023 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142482,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 20 Mar 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Tue, 21 Mar 2023 00:00:00 EDT","prescriptionNumber":"3636836","prescriptionName":"PINDOLOL + 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":"(178)636-6871","cmopNdcNumber":null,"id":21142482,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00378-0127-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PINDOLOL 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 13 Mar 2023 15:56:27 EDT","refillDate":"Sun, 20 Mar 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21880476,"sig":null,"orderedDate":"Wed, + 08 Mar 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636836","prescriptionName":"PINDOLOL + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21880476,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00378-0127-01","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Mar 2022 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21647473,"sig":null,"orderedDate":"Sun, + 18 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636836","prescriptionName":"PINDOLOL + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647473,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00378-0127-01","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Mar 2022 00:00:00 EDT","refillRemaining":6,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21449044,"sig":null,"orderedDate":"Wed, + 02 Nov 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636836","prescriptionName":"PINDOLOL + 10MG TAB","dispensedDate":"Wed, 02 Nov 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21449044,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00378-0127-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Mar 2022 00:00:00 EDT","refillRemaining":7,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21181175,"sig":null,"orderedDate":"Mon, + 25 Jul 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636836","prescriptionName":"PINDOLOL + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21181175,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00378-0127-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Mar 2022 00:00:00 EDT","refillRemaining":8,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21161503,"sig":null,"orderedDate":"Tue, + 05 Jul 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636836","prescriptionName":"PINDOLOL + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21161503,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00378-0127-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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Mar 2022 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21142483,"sig":null,"orderedDate":"Sat, + 09 Apr 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636836","prescriptionName":"PINDOLOL + 10MG TAB","dispensedDate":"Mon, 04 Jul 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21142483,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00378-0127-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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 29 Aug 2022 14:36:05 EDT","refillDate":"Thu, 25 Aug 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21227553,"sig":"TAKE + 5G DAILY FOR 30 DAYS TEST TEST INDICATION TEST","orderedDate":"Thu, 25 Aug + 2022 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 26 Aug 2023 00:00:00 + EDT","prescriptionNumber":"2720245A","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":21227553,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720245","divisionName":"DAYTON","modifiedDate":"Sun, 27 Aug 2023 + 20:43:55 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":"1","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":"expired","refillSubmitDate":"Tue, + 20 Sep 2022 11:21:40 EDT","refillDate":"Tue, 20 Sep 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21296515,"sig":"TAKE + 5G DAILY FOR 30 DAYS TEST TEST INDICATION TEST","orderedDate":"Tue, 20 Sep + 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 + EDT","prescriptionNumber":"2720245B","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":"(542)272-0245","cmopNdcNumber":"00013264681","id":21296515,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720245A","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 00:05:07 EDT","institutionId":null,"dialCmopDivisionPhone":"5422720245","dispStatus":"Expired","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":"1","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":"Tue, + 15 Nov 2022 12:58:24 EST","refillDate":"Tue, 15 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21296516,"sig":"TAKE + ONE CAPSULE DAILY FOR 30 DAYS TEST","orderedDate":"Tue, 20 Sep 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720298A","prescriptionName":"ACYCLOVIR + 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":21296516,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720298","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 00:05:07 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-4266-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":null,"category":"Rx Medication","orderableItem":"ACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 20 Sep 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21489396,"sig":null,"orderedDate":"Tue, + 15 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720298A","prescriptionName":"ACYCLOVIR + 200MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489396,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-4266-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":"Tue, + 08 Nov 2022 14:12:04 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21296517,"sig":"TAKE + ONE TABLET 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":"2720290A","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":"(983)272-0389","cmopNdcNumber":"00013264681","id":21296517,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720290","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 00:05:07 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","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":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 18 Oct 2022 16:12:26 EDT","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21296518,"sig":"TAKE + THIS IS FOR TESTING %% BY MOUTH WEEKLY HALF ## FOR 1 MINUTE, AND TAKE 50% + TAKE 50% FOR 1 HOUR FOLLOW INSTRUCTIONS CAREFULLY ","orderedDate":"Tue, 20 + Sep 2022 00:00:00 EDT","quantity":10,"expirationDate":"Thu, 21 Sep 2023 00:00:00 + EDT","prescriptionNumber":"2720326A","prescriptionName":"DISULFIRAM (ANTABUSE) + 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":21296518,"userId":17621060,"providerFirstName":"RACHNA","providerLastName":"CHOUDHRY","remarks":"RENEWED + FROM RX # 2720326","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 00:05:07 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00046-0810-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DISULFIRAM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 20 Sep 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21409695,"sig":null,"orderedDate":"Tue, + 18 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720326A","prescriptionName":"DISULFIRAM + (ANTABUSE) 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21409695,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00046-0810-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":"Tue, + 08 Nov 2022 14:12:04 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21296519,"sig":"TAKE + 1MG 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":"2720305A","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":"(983)272-0389","cmopNdcNumber":"00013264681","id":21296519,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720305","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 + 00:05:07 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","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":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 04 Nov 2022 10:29:30 EDT","refillDate":"Fri, 04 Nov 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21296557,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 20 Sep 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"3636841A","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":21296557,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636841","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 19:25:09 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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 08 Nov 2022 14:11:24 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21296558,"sig":"TAKE + ONE-HALF TABLET EVERY TWELVE (12) HOURS FOR 30 DAYS","orderedDate":"Tue, 20 + Sep 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 + EDT","prescriptionNumber":"3636845A","prescriptionName":"LAMIVUDINE 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":"(178)636-6871","cmopNdcNumber":"00113002239","id":21296558,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636845","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LAMIVUDINE 100MG","shape":"OVAL","color":"WHITE","frontImprint":"L022","backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 08 Nov 2022 14:11:24 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21296559,"sig":"TAKE + ONE TABLET TWO (2) TIMES PER DAY, WITH FOOD FOR 30 DAYS","orderedDate":"Tue, + 20 Sep 2022 00:00:00 EDT","quantity":60,"expirationDate":"Thu, 21 Sep 2023 + 00:00:00 EDT","prescriptionNumber":"3636827A","prescriptionName":"NAPROXEN + 250MG 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":21296559,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636827","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53746-0188-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NAPROXEN 250MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 31 Oct 2022 11:50:45 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21296560,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 20 Sep 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"3636831A","prescriptionName":"PANTOPRAZOLE + NA 40MG 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":21296560,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636831","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00008-0841-81","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PANTOPRAZOLE NA 40MG","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 Mar 2023 15:56:27 EDT","refillDate":"Fri, 10 Mar 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430917,"sig":"TAKE + 1MG BY MOUTH 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":"3636878","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":21430917,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 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":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 13 Mar 2023 15:56:27 EDT","refillDate":"Sat, 01 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21895796,"sig":null,"orderedDate":"Fri, + 10 Mar 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636878","prescriptionName":"PANCREASE + MT 16 EC CAP","dispensedDate":"Fri, 10 Mar 2023 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6878","cmopNdcNumber":"00113002239","id":21895796,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366878","dispStatus":"Expired","ndc":"00045-0343-60","reason":null,"prescriptionNumberIndex":"RF3","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},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 01 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21544348,"sig":null,"orderedDate":"Thu, + 01 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636878","prescriptionName":"PANCREASE + MT 16 EC CAP","dispensedDate":"Thu, 01 Dec 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21544348,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00045-0343-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":"This + Orderable Item has been Inactivated.","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":21431051,"sig":null,"orderedDate":"Fri, + 21 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636878","prescriptionName":"PANCREASE + MT 16 EC CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21431051,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00045-0343-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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 31 Oct 2022 11:50:45 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21430735,"sig":"INJECT + 1ML INTRAVENOUS ONCE FOR 30 DAYS","orderedDate":"Thu, 01 Sep 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Sat, 02 Sep 2023 00:00:00 EDT","prescriptionNumber":"3636877","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":21430735,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 03 Nov 2022 14:12:03 EDT","refillDate":"Mon, 21 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21435637,"sig":"TAKE + 10MG BY MOUTH 30 MINUTES BEFORE MEALS AND AT BEDTIME FOR 30 DAYS","orderedDate":"Sun, + 02 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Tue, 03 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"3636884","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":"(178)636-6871","cmopNdcNumber":null,"id":21435637,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"1786366871","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 03 Nov 2022 14:12:03 EDT","refillDate":"Sun, 02 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21445446,"sig":null,"orderedDate":"Mon, + 21 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636884","prescriptionName":"TACRINE + HCL 10MG CAP","dispensedDate":"Wed, 02 Nov 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":"00113002239","id":21445446,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00071-0096-25","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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 02 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21436944,"sig":null,"orderedDate":"Sun, + 30 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636884","prescriptionName":"TACRINE + HCL 10MG CAP","dispensedDate":"Sun, 30 Oct 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21436944,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 17 Nov 2022 15:00:05 EST","refillDate":"Mon, 21 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21435638,"sig":"APPLY + APPLICATION(S) TO THE AFFECTED AREA TWO (2) TIMES A DAY FOR 60 DAYS","orderedDate":"Sun, + 02 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 03 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"3636885","prescriptionName":"TACROLIMUS + 0.1% 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":21435638,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00469-5202-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"TACROLIMUS 0.1%","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, + 17 Nov 2022 15:00:05 EST","refillDate":"Sun, 02 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21494033,"sig":null,"orderedDate":"Mon, + 21 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636885","prescriptionName":"TACROLIMUS + 0.1% TOP OINT","dispensedDate":"Mon, 14 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494033,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00469-5202-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":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 02 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21436945,"sig":null,"orderedDate":"Sun, + 30 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636885","prescriptionName":"TACROLIMUS + 0.1% TOP OINT","dispensedDate":"Sun, 30 Oct 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21436945,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00469-5202-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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 13 Mar 2023 16:01:28 EDT","refillDate":"Mon, 13 Mar 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21435639,"sig":"TAKE + ONE TABLET BY MOUTH EVERY TWELVE (12) HOURS FOR 30 DAYS","orderedDate":"Sun, + 02 Oct 2022 00:00:00 EDT","quantity":60,"expirationDate":"Tue, 03 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"3636886","prescriptionName":"TAMOXIFEN + CITRATE 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":21435639,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00378-0144-91","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"TAMOXIFEN 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 13 Mar 2023 16:01:28 EDT","refillDate":"Sun, 02 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21900309,"sig":null,"orderedDate":"Mon, + 13 Mar 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636886","prescriptionName":"TAMOXIFEN + CITRATE 10MG TAB","dispensedDate":"Mon, 13 Mar 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21900309,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00378-0144-91","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 02 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21647474,"sig":null,"orderedDate":"Sun, + 18 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636886","prescriptionName":"TAMOXIFEN + CITRATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647474,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00378-0144-91","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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 02 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21436946,"sig":null,"orderedDate":"Sun, + 30 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636886","prescriptionName":"TAMOXIFEN + CITRATE 10MG TAB","dispensedDate":"Sun, 30 Oct 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21436946,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00378-0144-91","reason":null,"prescriptionNumberIndex":"RF1","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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 16 Nov 2022 14:03:44 EST","refillDate":"Tue, 06 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21489541,"sig":"APPLY + SMALL AMOUNT TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Mon, 17 Oct + 2022 00:00:00 EDT","quantity":2,"expirationDate":"Wed, 18 Oct 2023 00:00:00 + EDT","prescriptionNumber":"2720412","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":21489541,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Thu, + 19 Oct 2023 07:16:18 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, + 16 Nov 2022 14:03:44 EST","refillDate":"Mon, 17 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21489877,"sig":null,"orderedDate":"Tue, + 06 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720412","prescriptionName":"HALCINONIDE + 0.1% OINT","dispensedDate":"Mon, 14 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489877,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":"expired","refillSubmitDate":null,"refillDate":"Mon, + 17 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21489569,"sig":null,"orderedDate":"Mon, + 14 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720412","prescriptionName":"HALCINONIDE + 0.1% OINT","dispensedDate":"Mon, 14 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489569,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":"expired","refillSubmitDate":"Mon, + 19 Dec 2022 16:29:59 EST","refillDate":"Mon, 19 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21489829,"sig":"INSTILL + 1 DROP IN AFFECTED EAR WEEKLY FOR 30 DAYS","orderedDate":"Mon, 17 Oct 2022 + 00:00:00 EDT","quantity":2,"expirationDate":"Wed, 18 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720413","prescriptionName":"HC + 1%/NEOMYCIN 3.5MG/POLYMYXIN OTIC 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":21489829,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Thu, + 19 Oct 2023 07:16:18 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"24208-0635-62","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CORTISPORIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 19 Dec 2022 16:29:59 EST","refillDate":"Mon, 17 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21647480,"sig":null,"orderedDate":"Mon, + 19 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720413","prescriptionName":"HC + 1%/NEOMYCIN 3.5MG/POLYMYXIN OTIC SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647480,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"24208-0635-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":"expired","refillSubmitDate":null,"refillDate":"Mon, + 17 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21489878,"sig":null,"orderedDate":"Sun, + 13 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720413","prescriptionName":"HC + 1%/NEOMYCIN 3.5MG/POLYMYXIN OTIC SUSP","dispensedDate":"Sun, 13 Nov 2022 00:00:00 + EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489878,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"24208-0635-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":"expired","refillSubmitDate":"Thu, + 17 Nov 2022 14:41:49 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21492981,"sig":"TAKE + 1 TABLET BY MOUTH 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":"2720414","prescriptionName":"HCTZ + 12.5/LISINOPRIL 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":"(983)272-0389","cmopNdcNumber":null,"id":21492981,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 20 Oct 2023 09:51:40 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00591-0860-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HYDROCHLOROTHIAZIDE/LISINOPRIL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 17 Nov 2022 14:41:49 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21493924,"sig":null,"orderedDate":"Wed, + 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720414","prescriptionName":"HCTZ + 12.5/LISINOPRIL 10MG TAB","dispensedDate":"Thu, 10 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":"00013264681","id":21493924,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00591-0860-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":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21493006,"sig":null,"orderedDate":"Tue, + 15 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720414","prescriptionName":"HCTZ + 12.5/LISINOPRIL 10MG TAB","dispensedDate":"Tue, 15 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21493006,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00591-0860-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":"Mon, + 10 Apr 2023 17:00:49 EDT","refillDate":"Thu, 27 Apr 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21493054,"sig":"WASH + DROP(S) THE AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 + 00:00:00 EDT","quantity":2,"expirationDate":"Thu, 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636892","prescriptionName":"SALICYLIC + ACID 2% WASH","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":21493054,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"02993-6077-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SALICYLIC ACID 2%","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 10 Apr 2023 17:00:49 EDT","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21997578,"sig":null,"orderedDate":"Thu, + 27 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636892","prescriptionName":"SALICYLIC + ACID 2% WASH","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21997578,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"02993-6077-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":"Prescription + Expired more than 120 Days.","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":21995864,"sig":null,"orderedDate":"Fri, + 07 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636892","prescriptionName":"SALICYLIC + ACID 2% WASH","dispensedDate":"Fri, 07 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(443)636-6892","cmopNdcNumber":"00113002239","id":21995864,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4436366892","dispStatus":"Expired","ndc":"02993-6077-06","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 + Expired more than 120 Days.","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":21647476,"sig":null,"orderedDate":"Sun, + 18 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636892","prescriptionName":"SALICYLIC + ACID 2% WASH","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647476,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"02993-6077-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21493332,"sig":"INSERT + 10MG IN RECTUM WEEKLY FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636893","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":21493332,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21493832,"sig":null,"orderedDate":"Wed, + 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636893","prescriptionName":"HEMORRHOIDAL + RTL SUPP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493832,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","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":21493370,"sig":null,"orderedDate":"Wed, + 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636893","prescriptionName":"HEMORRHOIDAL + RTL SUPP","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493370,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21493770,"sig":"TAKE + ONE TABLET EVERY DAY, 30 MINUTES BEFORE A MEAL FOR 30 DAYS","orderedDate":"Tue, + 18 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"3636894","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":21493770,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"62856-0243-90","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"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":"Thu, + 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21494034,"sig":null,"orderedDate":"Wed, + 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636894","prescriptionName":"RABEPRAZOLE + NA 20MG EC TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494034,"userId":17621060,"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":21493833,"sig":null,"orderedDate":"Wed, + 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636894","prescriptionName":"RABEPRAZOLE + NA 20MG EC TAB","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493833,"userId":17621060,"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, + 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21493771,"sig":"INJECT + 1ML INTO THE MUSCLE ONCE FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Thu, 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636895","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":21493771,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:10 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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21494035,"sig":null,"orderedDate":"Wed, + 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636895","prescriptionName":"RABIES + VACCINE 2.5 UNITS/VIAL KIT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494035,"userId":17621060,"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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","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":21493834,"sig":null,"orderedDate":"Wed, + 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636895","prescriptionName":"RABIES + VACCINE 2.5 UNITS/VIAL KIT","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493834,"userId":17621060,"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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21493772,"sig":"TAKE + 1MG FOUR TIMES A DAY IF NEEDED FOR 60 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":1,"expirationDate":"Thu, 19 Oct 2023 00:00:00 + EDT","prescriptionNumber":"3636896","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":21493772,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:10 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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21494036,"sig":null,"orderedDate":"Wed, + 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636896","prescriptionName":"RADIACARE + WOUND RINSE SUSP ORAL","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494036,"userId":17621060,"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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","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":21493835,"sig":null,"orderedDate":"Wed, + 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636896","prescriptionName":"RADIACARE + WOUND RINSE SUSP ORAL","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493835,"userId":17621060,"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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 07 Feb 2023 09:17:03 EST","refillDate":"Tue, 07 Feb 2023 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21437087,"sig":"INJECT + 1ML IVP WEEKLY FOR 30 DAYS","orderedDate":"Fri, 07 Oct 2022 00:00:00 EDT","quantity":4,"expirationDate":"Sun, + 08 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720407","prescriptionName":"LABETALOL + 5MG/ML INJ 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":"(983)272-0389","cmopNdcNumber":null,"id":21437087,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 09 Oct 2023 09:50:42 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00085-0362-07","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":"expired","refillSubmitDate":"Tue, + 07 Feb 2023 09:17:03 EST","refillDate":"Fri, 07 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21787651,"sig":null,"orderedDate":"Tue, + 07 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720407","prescriptionName":"LABETALOL + 5MG/ML INJ 20ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21787651,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00085-0362-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 07 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21544351,"sig":null,"orderedDate":"Wed, + 30 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720407","prescriptionName":"LABETALOL + 5MG/ML INJ 20ML","dispensedDate":"Wed, 30 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21544351,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00085-0362-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 07 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21437319,"sig":null,"orderedDate":"Thu, + 27 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720407","prescriptionName":"LABETALOL + 5MG/ML INJ 20ML","dispensedDate":"Thu, 27 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21437319,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00085-0362-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 01 Nov 2022 14:53:29 EDT","refillDate":"Thu, 01 Dec 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21437088,"sig":"TAKE + 15ML BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Wed, 12 Oct 2022 00:00:00 + EDT","quantity":2,"expirationDate":"Fri, 13 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720408","prescriptionName":"LACTULOSE + 10GM/15ML SYRUP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review 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":21437088,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Sat, + 14 Oct 2023 09:52:44 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00032-1602-78","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LACTULOSE","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 14:53:29 EDT","refillDate":"Wed, 12 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21437320,"sig":null,"orderedDate":"Thu, + 01 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720408","prescriptionName":"LACTULOSE + 10GM/15ML SYRUP","dispensedDate":"Tue, 25 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":"00013264681","id":21437320,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00032-1602-78","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":"Wed, + 12 Oct 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21437229,"sig":null,"orderedDate":"Tue, + 01 Nov 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720408","prescriptionName":"LACTULOSE + 10GM/15ML SYRUP","dispensedDate":"Thu, 27 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21437229,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00032-1602-78","reason":null,"prescriptionNumberIndex":"RF1","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, + 01 Dec 2022 11:58:47 EST","refillDate":"Sat, 26 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21437089,"sig":"INJECT + 1ML IVPB WEEKLY","orderedDate":"Sun, 02 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Tue, + 03 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720409","prescriptionName":"LACTATED + RINGER''S INJ 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":21437089,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 04 Oct 2023 16:10:25 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00264-1750-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LACTATED RINGER''S 1000ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 01 Dec 2022 11:58:47 EST","refillDate":"Sun, 02 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21532503,"sig":null,"orderedDate":"Sat, + 26 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720409","prescriptionName":"LACTATED + RINGER''S INJ 1000ML","dispensedDate":"Sat, 26 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21532503,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00264-1750-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":null,"refillDate":"Sun, + 02 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21437262,"sig":null,"orderedDate":"Sat, + 22 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720409","prescriptionName":"LACTATED + RINGER''S INJ 1000ML","dispensedDate":"Sat, 22 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21437262,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00264-1750-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":"Thu, + 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21493773,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636897","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":21493773,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:10 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":"Thu, + 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21494037,"sig":null,"orderedDate":"Wed, + 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636897","prescriptionName":"RALOXIFENE + HCL 60MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494037,"userId":17621060,"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":"Tue, + 18 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21493836,"sig":null,"orderedDate":"Wed, + 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636897","prescriptionName":"RALOXIFENE + HCL 60MG TAB","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493836,"userId":17621060,"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, + 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21493774,"sig":"TAKE + ONE CAPSULE WEEKLY FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Thu, + 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636898","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":21493774,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:10 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, + 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21494038,"sig":null,"orderedDate":"Wed, + 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636898","prescriptionName":"RAMIPRIL + 1.25MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494038,"userId":17621060,"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":"Tue, + 18 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21493837,"sig":null,"orderedDate":"Wed, + 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636898","prescriptionName":"RAMIPRIL + 1.25MG CAP","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493837,"userId":17621060,"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":"Fri, + 09 Dec 2022 11:35:20 EST","refillDate":"Fri, 09 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21493893,"sig":"TAKE + 1 TEASPOONFUL BY MOUTH 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":"2720415","prescriptionName":"SALIVART + 2.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":21493893,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 20 Oct 2023 09:51:40 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00386-0009-75","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SALIVA","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 09 Dec 2022 11:35:20 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21574114,"sig":null,"orderedDate":"Fri, + 09 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720415","prescriptionName":"SALIVART + 2.5 OZ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21574114,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00386-0009-75","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":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21493925,"sig":null,"orderedDate":"Wed, + 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720415","prescriptionName":"SALIVART + 2.5 OZ","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493925,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00386-0009-75","reason":null,"prescriptionNumberIndex":"RF1","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, + 16 Dec 2022 16:37:23 EST","refillDate":"Fri, 16 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21493894,"sig":"USE + 1 INHALATION BY ORAL INHALATION WEEKLY FOR 30 DAYS","orderedDate":"Tue, 18 + Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 00:00:00 + EDT","prescriptionNumber":"2720416","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":21493894,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 20 Oct 2023 09:51:40 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":"expired","refillSubmitDate":"Fri, + 16 Dec 2022 16:37:23 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21598635,"sig":null,"orderedDate":"Fri, + 16 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720416","prescriptionName":"SALMETEROL + 50MCG/BLSTR PO INHL DISKUS 60","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21598635,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":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":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21493926,"sig":null,"orderedDate":"Wed, + 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720416","prescriptionName":"SALMETEROL + 50MCG/BLSTR PO INHL DISKUS 60","dispensedDate":"Wed, 16 Nov 2022 00:00:00 + EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493926,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":"expired","refillSubmitDate":"Mon, + 19 Dec 2022 16:29:59 EST","refillDate":"Mon, 19 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21493895,"sig":"TAKE + ONE TABLET BY MOUTH 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":"2720417","prescriptionName":"SALSALATE + 750MG 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":21493895,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 20 Oct 2023 09:51:40 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53265-0133-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"SALSALATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 19 Dec 2022 16:29:59 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21647481,"sig":null,"orderedDate":"Mon, + 19 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720417","prescriptionName":"SALSALATE + 750MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647481,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53265-0133-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":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":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21493927,"sig":null,"orderedDate":"Wed, + 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720417","prescriptionName":"SALSALATE + 750MG TAB","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493927,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53265-0133-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":"Mon, + 07 Nov 2022 13:24:04 EST","refillDate":"Mon, 07 Nov 2022 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21457694,"sig":"APPLY + 1 CONTENTS TO THE AFFECTED AREA WEEKLY FOR 30 DAYS TEST INDICATION","orderedDate":"Sat, + 08 Oct 2022 00:00:00 EDT","quantity":2,"expirationDate":"Mon, 09 Oct 2023 + 00:00:00 EDT","prescriptionNumber":"3636887","prescriptionName":"OATMEAL,COLLOIDAL + 100% BATH PWDR","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":"00113002239","id":21457694,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 + 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"04650-0034-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"OATMEAL, + COLLODIAL 100% BATH","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},{"refillStatus":"expired","refillSubmitDate":"Tue, + 14 Feb 2023 11:29:06 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21457695,"sig":"INJECT + 10MG UNDER THE SKIN EVERY TWELVE (12) HOURS FOR 60 DAYS TEST INDICATION TEST + PATIENT INSTRUCTIONS","orderedDate":"Sat, 08 Oct 2022 00:00:00 EDT","quantity":3,"expirationDate":"Mon, + 09 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636888","prescriptionName":"OCTREOTIDE + ACETATE 1000MCG/ML INJ *SUBQ*","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":21457695,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 + 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00078-0184-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"OCTREOTIDE + ACETATE 1000MCG/ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 08 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21801650,"sig":null,"orderedDate":"Sun, + 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636888","prescriptionName":"OCTREOTIDE + ACETATE 1000MCG/ML INJ *SUBQ*","dispensedDate":"Sun, 12 Feb 2023 00:00:00 + EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801650,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0184-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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 08 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22219746,"sig":null,"orderedDate":"Sun, + 18 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636888","prescriptionName":"OCTREOTIDE + ACETATE 1000MCG/ML INJ *SUBQ*","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22219746,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0184-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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 08 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21457801,"sig":null,"orderedDate":"Fri, + 28 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636888","prescriptionName":"OCTREOTIDE + ACETATE 1000MCG/ML INJ *SUBQ*","dispensedDate":"Sat, 05 Nov 2022 00:00:00 + EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21457801,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00078-0184-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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 01 Dec 2022 14:02:29 EST","refillDate":"Tue, 01 Nov 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21462351,"sig":"APPLY, + A SEGMENT(S) INSIDE, LOWER LID OF EYE WEEKLY FOR 30 DAYS TEST INDICATION TEST + PATIENT INTRUCTIONS","orderedDate":"Sun, 09 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Tue, + 10 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636889","prescriptionName":"BACITRACIN + 500 UNT/GM OPH 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":21462351,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 + 19:25:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0026-38","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"BACITRACIN + 500 UNIT/GM 3.5GM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 18 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21462578,"sig":null,"orderedDate":"Tue, + 01 Nov 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636889","prescriptionName":"BACITRACIN + 500 UNT/GM OPH OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21462578,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0026-38","reason":null,"prescriptionNumberIndex":"RF1","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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 01 Dec 2022 14:02:29 EST","refillDate":"Wed, 30 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21462352,"sig":"DEVICE(S) + MISC WEEKLY FOR 30 DAYS","orderedDate":"Tue, 08 Nov 2022 00:00:00 EST","quantity":1,"expirationDate":"Thu, + 09 Nov 2023 00:00:00 EST","prescriptionNumber":"3636794A","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":21462352,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636794","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, + 27 Feb 2024 19:25:10 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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 01 Dec 2022 14:02:29 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21543288,"sig":null,"orderedDate":"Wed, + 30 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636794A","prescriptionName":"YANKAUER + SUCTION TIP (EA)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21543288,"userId":17621060,"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":"Mon, + 19 Dec 2022 16:29:59 EST","refillDate":"Mon, 19 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21462355,"sig":"APPLY + 10ML TO AFFECTED AREA DAILY FOR 60 DAYS","orderedDate":"Sun, 09 Oct 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Tue, 10 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720410","prescriptionName":"BACT-NEOMY-POLYMIX + TOP OINT (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":21462355,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Oct 2023 11:24:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0012-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BACITRACIN/NEOMYCIN/POLYMYXIN B","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 19 Dec 2022 16:29:59 EST","refillDate":"Sun, 09 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21647479,"sig":null,"orderedDate":"Mon, + 19 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720410","prescriptionName":"BACT-NEOMY-POLYMIX + TOP OINT (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647479,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0012-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},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 09 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21462581,"sig":null,"orderedDate":"Sat, + 29 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720410","prescriptionName":"BACT-NEOMY-POLYMIX + TOP OINT (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21462581,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0012-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":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 08 Nov 2022 14:12:04 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21462356,"sig":"USE + BAG AS DIRECTED MONTHLY FOR 30 DAYS","orderedDate":"Sun, 09 Oct 2022 00:00:00 + EDT","quantity":1,"expirationDate":"Tue, 10 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720411","prescriptionName":"BAG, + LEG 24OZ #4153 (DAVOL)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21462356,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Oct 2023 11:24:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"URINARY LEG ","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 Jan 2023 11:40:35 EST","refillDate":"Sun, 29 Jan 2023 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21668157,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Sat, + 10 Dec 2022 00:00:00 EST","quantity":30,"expirationDate":"Mon, 11 Dec 2023 + 00:00:00 EST","prescriptionNumber":"2720433","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":"(983)272-0433","cmopNdcNumber":null,"id":21668157,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Tue, 12 Dec 2023 09:37:45 + EST","institutionId":null,"dialCmopDivisionPhone":"9832720433","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, + 19 Jan 2023 11:40:35 EST","refillDate":"Sat, 10 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21705083,"sig":null,"orderedDate":"Sun, + 29 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720433","prescriptionName":"RABEPRAZOLE + NA 20MG EC TAB","dispensedDate":"Tue, 17 Jan 2023 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-2433","cmopNdcNumber":"00113002239","id":21705083,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832722433","dispStatus":"Expired","ndc":"62856-0243-90","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 10 Dec 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21668287,"sig":null,"orderedDate":"Sat, + 07 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720433","prescriptionName":"RABEPRAZOLE + NA 20MG EC TAB","dispensedDate":"Sat, 07 Jan 2023 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0433","cmopNdcNumber":null,"id":21668287,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720433","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":"discontinued","refillSubmitDate":"Wed, + 29 Mar 2023 15:02:10 EDT","refillDate":"Mon, 27 Mar 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21760139,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD--","orderedDate":"Wed, + 01 Feb 2023 00:00:00 EST","quantity":30,"expirationDate":"Fri, 02 Feb 2024 + 00:00:00 EST","prescriptionNumber":"2720311A","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":21760139,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720311","divisionName":"DAYTON","modifiedDate":"Sat, 03 Feb 2024 + 03:40:26 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","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":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, + 01 Feb 2023 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21956964,"sig":null,"orderedDate":"Mon, + 27 Mar 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720311A","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":"Mon, 27 Mar 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":"00013264681","id":21956964,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Discontinued","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":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 11 Apr 2023 18:20:39 EDT","refillDate":"Tue, 21 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21871320,"sig":"TAKE + 10MG BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Sat, 04 Feb 2023 00:00:00 + EST","quantity":30,"expirationDate":"Mon, 05 Feb 2024 00:00:00 EST","prescriptionNumber":"2720466","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":21871320,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 06 Feb 2024 03:35:42 EST","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/LAMIVUDINE","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, + 04 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21926353,"sig":null,"orderedDate":"Tue, + 21 Mar 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720466","prescriptionName":"ABACAVIR + SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":"Tue, 21 Mar 2023 00:00:00 + EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0466","cmopNdcNumber":"00013264681","id":21926353,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720466","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":"Duplicate + Rx Renewal Request.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 14 Apr 2023 15:19:56 EDT","refillDate":"Sun, 30 Apr 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21997544,"sig":"DEVICE(S) + TRACH WEEKLY FOR 30 DAYS","orderedDate":"Sat, 11 Mar 2023 00:00:00 EST","quantity":1,"expirationDate":"Mon, + 11 Mar 2024 00:00:00 EDT","prescriptionNumber":"3636919","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":21997544,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 12 Mar 2024 09:55:03 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":"Fri, + 14 Apr 2023 15:19:56 EDT","refillDate":"Sat, 11 Mar 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22013715,"sig":null,"orderedDate":"Sun, + 30 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636919","prescriptionName":"LARYNG + TUBE, CANNULA #8 LGT","dispensedDate":"Wed, 12 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22013715,"userId":17621060,"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":null,"refillDate":"Sat, + 11 Mar 2023 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":21997579,"sig":null,"orderedDate":"Fri, + 07 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636919","prescriptionName":"LARYNG + TUBE, CANNULA #8 LGT","dispensedDate":"Fri, 07 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(443)636-6919","cmopNdcNumber":"00113002239","id":21997579,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4436366919","dispStatus":"Expired","ndc":null,"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":"unknown","refillSubmitDate":"Tue, + 25 Apr 2023 14:09:47 EDT","refillDate":"Mon, 13 Mar 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22006307,"sig":"TAKE + 10MG BY MOUTH DAILY FOR 30 DAYS TEST INDICATION TEST PATIENT INTRUCTIONS","orderedDate":"Mon, + 13 Mar 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 13 Mar 2024 + 00:00:00 EDT","prescriptionNumber":"2720477","prescriptionName":"LANSOPRAZOLE + 30MG SA 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":22006307,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Thu, 14 Mar 2024 04:18:21 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00300-3046-13","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"LANSOPRAZOLE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 30 May 2023 13:25:02 EDT","refillDate":"Tue, 30 May 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22006308,"sig":"TUBE + AS DIRECTED 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":"2720478","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":22006308,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Thu, + 14 Mar 2024 04:18:21 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":"expired","refillSubmitDate":"Tue, + 30 May 2023 13:25:02 EDT","refillDate":"Mon, 13 Mar 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22097624,"sig":null,"orderedDate":"Tue, + 30 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720478","prescriptionName":"LARYNGECTOMY + TUBE STAIN STL SIZE 8","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22097624,"userId":17621060,"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":"Mon, + 13 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22006374,"sig":null,"orderedDate":"Sun, + 09 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720478","prescriptionName":"LARYNGECTOMY + TUBE STAIN STL SIZE 8","dispensedDate":"Mon, 10 Apr 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0478","cmopNdcNumber":"00013264681","id":22006374,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720478","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":"Tue, + 02 May 2023 15:21:58 EDT","refillDate":"Tue, 02 May 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21959160,"sig":"APPLY + 10ML TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Mon, 27 Feb 2023 00:00:00 + EST","quantity":1,"expirationDate":"Wed, 28 Feb 2024 00:00:00 EST","prescriptionNumber":"2720475","prescriptionName":"XEROFORM + DRESSING 5X9 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":21959160,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Thu, + 29 Feb 2024 01:14:47 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"XEROFORM 5X9","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 02 May 2023 15:21:58 EDT","refillDate":"Mon, 27 Feb 2023 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22082586,"sig":null,"orderedDate":"Tue, + 02 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720475","prescriptionName":"XEROFORM + DRESSING 5X9 IN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22082586,"userId":17621060,"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":"Mon, + 27 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":21959187,"sig":null,"orderedDate":"Mon, + 27 Mar 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720475","prescriptionName":"XEROFORM + DRESSING 5X9 IN","dispensedDate":"Mon, 27 Mar 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":"00013264681","id":21959187,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","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":"unknown","refillSubmitDate":"Thu, + 04 May 2023 15:13:13 EDT","refillDate":"Tue, 14 Mar 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22009800,"sig":"APPLY + 10MG TO URETHRA WEEKLY FOR 30 DAYS","orderedDate":"Tue, 14 Mar 2023 00:00:00 + EDT","quantity":1,"expirationDate":"Thu, 14 Mar 2024 00:00:00 EDT","prescriptionNumber":"3636920","prescriptionName":"LIDOCAINE + HCL 2% JELLY UROJECT 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":22009800,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Thu, 14 Mar 2024 05:07:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00548-3013-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LIDOCAINE HCL 2% (URO-JET) 10ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Mon, + 26 Jun 2023 11:02:23 EDT","refillDate":"Thu, 16 Mar 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22009801,"sig":"TAKE + ONE TABLET WEEKLY","orderedDate":"Thu, 16 Mar 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sat, + 16 Mar 2024 00:00:00 EDT","prescriptionNumber":"3636921","prescriptionName":"LEUCOVORIN + CALCIUM 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":22009801,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Sat, 16 Mar 2024 09:57:09 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00081-0631-55","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LEUCOVORIN CALCIUM 5MG","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 Apr 2023 09:48:28 EDT","refillDate":"Mon, 08 May 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22009802,"sig":"TAKE + TWO TABLETS EVERY DAY FOR 60 DAYS","orderedDate":"Sun, 19 Mar 2023 00:00:00 + EDT","quantity":60,"expirationDate":"Tue, 19 Mar 2024 00:00:00 EDT","prescriptionNumber":"3636922","prescriptionName":"LETROZOLE + 2.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":22009802,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 20 Mar 2024 08:45:13 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0249-15","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LETROZOLE 2.5MG","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, + 24 Apr 2023 09:48:28 EDT","refillDate":"Sun, 19 Mar 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22046629,"sig":null,"orderedDate":"Mon, + 08 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636922","prescriptionName":"LETROZOLE + 2.5MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22046629,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0249-15","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, + 19 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22009876,"sig":null,"orderedDate":"Sun, + 09 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636922","prescriptionName":"LETROZOLE + 2.5MG TAB","dispensedDate":"Mon, 10 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22009876,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0249-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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Mon, + 17 Apr 2023 20:00:15 EDT","refillDate":"Wed, 15 Mar 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22013799,"sig":"INJECT + 10MG UNDER THE SKIN EVERY THREE (3) MONTHS FOR 30 DAYS","orderedDate":"Wed, + 15 Mar 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 15 Mar 2024 + 00:00:00 EDT","prescriptionNumber":"3636923","prescriptionName":"LEUPROLIDE + ACETATE 22.5MG/KIT SA SUSP IJ","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":22013799,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Fri, 15 Mar 2024 06:56:45 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00300-3346-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LEUPROLIDE ACETATE 22.5MG","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":"unknown","refillSubmitDate":"Fri, + 21 Apr 2023 16:28:01 EDT","refillDate":"Wed, 15 Mar 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22013800,"sig":"TAKE + 10MG BY MOUTH EVERY SIX (6) HOURS FOR 60 DAYS TEST INDICATION AS DIRECTED + \"SHAKE WELL\" BEFORE USING AND CLEAN MOUTHPIECE WEEKLY.","orderedDate":"Wed, + 15 Mar 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 15 Mar 2024 + 00:00:00 EDT","prescriptionNumber":"3636924","prescriptionName":"LEVALBUTEROL + 45MCG 200D HFA ORAL INHL","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":22013800,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 15 Mar 2024 + 06:56:45 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"63402-0510-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"LEVALBUTEROL + 45MCG 200D HFA","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 21 Jul 2023 14:56:13 EDT","refillDate":"Wed, 19 Jul 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22116215,"sig":"TAKE + ONE CAPSULE EVERY DAY FOR 30 DAYS TEST PATIENT INTRUCTIONS","orderedDate":"Sat, + 15 Apr 2023 00:00:00 EDT","quantity":30,"expirationDate":"Mon, 15 Apr 2024 + 00:00:00 EDT","prescriptionNumber":"3636931","prescriptionName":"GABAPENTIN + 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":22116215,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, 29 May 2024 + 15:32:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00228-2665-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION NO APPEND TO SIG","indicationForUseFlag":"0","category":"Rx Medication","orderableItem":"GABAPENTIN + 100MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, + 21 Jul 2023 14:56:13 EDT","refillDate":"Sat, 15 Apr 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22330144,"sig":null,"orderedDate":"Wed, + 19 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636931","prescriptionName":"GABAPENTIN + 100MG CAP","dispensedDate":"Mon, 17 Jul 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6934","cmopNdcNumber":"00113002239","id":22330144,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366934","dispStatus":"Expired","ndc":"00228-2665-50","reason":null,"prescriptionNumberIndex":"RF3","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":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 15 Apr 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22230978,"sig":null,"orderedDate":"Sat, + 24 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636931","prescriptionName":"GABAPENTIN + 100MG CAP","dispensedDate":"Sun, 25 Jun 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22230978,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00228-2665-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":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 15 Apr 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22116704,"sig":null,"orderedDate":"Mon, + 15 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636931","prescriptionName":"GABAPENTIN + 100MG CAP","dispensedDate":"Mon, 15 May 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22116704,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00228-2665-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":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 12 Jun 2023 12:04:42 EDT","refillDate":"Sat, 24 Jun 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22057639,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST TEST","orderedDate":"Mon, 27 Mar + 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 27 Mar 2024 00:00:00 + EDT","prescriptionNumber":"2720494","prescriptionName":"REPAGLINIDE 0.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":22057639,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST","divisionName":"DAYTON","modifiedDate":"Thu, + 28 Mar 2024 09:57:50 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00169-0081-81","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"REPAGLINIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 12 Jun 2023 12:04:42 EDT","refillDate":"Mon, 27 Mar 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22201395,"sig":null,"orderedDate":"Sat, + 24 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720494","prescriptionName":"REPAGLINIDE + 0.5MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22201395,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00169-0081-81","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":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22086180,"sig":null,"orderedDate":"Sun, + 04 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720494","prescriptionName":"REPAGLINIDE + 0.5MG TAB","dispensedDate":"Mon, 05 Jun 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0478","cmopNdcNumber":"00013264681","id":22086180,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720478","dispStatus":"Expired","ndc":"00169-0081-81","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":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22057668,"sig":null,"orderedDate":"Wed, + 26 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720494","prescriptionName":"REPAGLINIDE + 0.5MG TAB","dispensedDate":"Wed, 26 Apr 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22057668,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00169-0081-81","reason":null,"prescriptionNumberIndex":"RF1","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, + 23 Jun 2023 09:48:10 EDT","refillDate":"Fri, 23 Jun 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22083122,"sig":"TAKE + TWO TABLETS TWO (2) TIMES A DAY FOR 30 DAYS TEST INDICATION TEST PATIENT INTRUCTIONS","orderedDate":"Tue, + 04 Apr 2023 00:00:00 EDT","quantity":120,"expirationDate":"Thu, 04 Apr 2024 + 00:00:00 EDT","prescriptionNumber":"3636928","prescriptionName":"NEFAZODONE + 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":22083122,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 05 Apr 2024 + 09:06:28 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00087-0032-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"NEFAZODONE + HCL 100MG","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":null,"refillDate":"Tue, + 04 Apr 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22225417,"sig":null,"orderedDate":"Fri, + 23 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636928","prescriptionName":"NEFAZODONE + 100MG TAB","dispensedDate":"Thu, 22 Jun 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6934","cmopNdcNumber":"00013264681","id":22225417,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366934","dispStatus":"Expired","ndc":"00087-0032-31","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, + 04 Apr 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22083211,"sig":null,"orderedDate":"Mon, + 29 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636928","prescriptionName":"NEFAZODONE + 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22083211,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00087-0032-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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 04 Apr 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22219748,"sig":null,"orderedDate":"Tue, + 02 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636928","prescriptionName":"NEFAZODONE + 100MG TAB","dispensedDate":"Wed, 03 May 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22219748,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00087-0032-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":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 09 May 2023 09:46:12 EDT","refillDate":"Mon, 29 May 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22096623,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY DAY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Sun, + 09 Apr 2023 00:00:00 EDT","quantity":30,"expirationDate":"Tue, 09 Apr 2024 + 00:00:00 EDT","prescriptionNumber":"3636929","prescriptionName":"DANAZOL 200MG + 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":22096623,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, 10 Apr 2024 + 10:10:56 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00024-0305-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"DANAZOL + 200MG","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, + 09 May 2023 09:46:12 EDT","refillDate":"Sun, 09 Apr 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22096742,"sig":null,"orderedDate":"Mon, + 29 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636929","prescriptionName":"DANAZOL + 200MG CAP","dispensedDate":"Mon, 08 May 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22096742,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00024-0305-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":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 05 Jun 2023 14:20:09 EDT","refillDate":"Mon, 05 Jun 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22177889,"sig":"APPLY + 1MG TO MOUTH DAILY FOR 30 DAYS TEST INDICATION 06052023 - C & A TEST PATIENT + INTRUCTIONS","orderedDate":"Sat, 06 May 2023 00:00:00 EDT","quantity":1,"expirationDate":"Mon, + 06 May 2024 00:00:00 EDT","prescriptionNumber":"2720511","prescriptionName":"CADEXOMER + IODINE 0.9% TOP GEL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22177889,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Wed, 29 May 2024 15:32:25 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"08213-0100-40","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 06052023 - C & A","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"CADEXOMER + IODINE 0.9%","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, + 26 Feb 2024 11:33:24 EST","refillDate":"Wed, 14 Feb 2024 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22177890,"sig":"TAKE + 1 TABLET BY MOUTH WEEKLY FOR 30 DAYS","orderedDate":"Sat, 06 May 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 06 May 2024 00:00:00 EDT","prescriptionNumber":"2720512","prescriptionName":"CAFFEINE + 100/ERGOTAMINE 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":22177890,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 29 May 2024 15:32:25 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0034-28","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 06052023 NO SIG","indicationForUseFlag":"0","category":"Rx Medication","orderableItem":"ERGOTAMINE/CAFFEINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 26 Feb 2024 11:33:24 EST","refillDate":"Sat, 06 May 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23033385,"sig":null,"orderedDate":"Wed, + 14 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720512","prescriptionName":"CAFFEINE + 100/ERGOTAMINE 1MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23033385,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0034-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 09 Jun 2023 10:42:14 EDT","refillDate":"Sat, 06 May 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22195348,"sig":null,"orderedDate":"Thu, + 25 Jan 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720512","prescriptionName":"CAFFEINE + 100/ERGOTAMINE 1MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22195348,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0034-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 06 May 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22179202,"sig":null,"orderedDate":"Wed, + 31 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720512","prescriptionName":"CAFFEINE + 100/ERGOTAMINE 1MG TAB","dispensedDate":"Sat, 03 Jun 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0478","cmopNdcNumber":"00013264681","id":22179202,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720478","dispStatus":"Expired","ndc":"00078-0034-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Fri, + 26 May 2023 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22177891,"sig":"120 + ML TOPICAL WEEKLY","orderedDate":"Wed, 31 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"9","prescriptionName":"CALAMINE + LOTION","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22177891,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":"TEST + COMMENTS 06052023","divisionName":null,"modifiedDate":"Wed, 11 Dec 2024 10:38:04 + EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":"0242-2127-65","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":"TEST + DISCLAIMER 06052023","indicationForUse":"TEST INDICATION NON-VA MEDS 06052023","indicationForUseFlag":null,"category":"Documented + by VA","orderableItem":"CALAMINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 26 Mar 2024 15:23:08 EDT","refillDate":"Tue, 26 Mar 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22181714,"sig":"TAKE + 1MG BY MOUTH DAILY FOR 30 DAYS TEST INDICATION WITH & CHAR TEST PATIENT INTRUCTION + WITH & CHAR","orderedDate":"Sun, 07 May 2023 00:00:00 EDT","quantity":30,"expirationDate":"Tue, + 07 May 2024 00:00:00 EDT","prescriptionNumber":"2720513","prescriptionName":"CALCIFEDIOL + 20MCG CAPS","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22181714,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS WITH & CHAR","divisionName":"DAYTON","modifiedDate":"Wed, 29 May 2024 + 15:32:25 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00052-0472-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION WITH & CHAR","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"CALCIFEDIOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 26 Mar 2024 15:23:08 EDT","refillDate":"Sun, 07 May 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23326776,"sig":null,"orderedDate":"Tue, + 26 Mar 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720513","prescriptionName":"CALCIFEDIOL + 20MCG CAPS","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23326776,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00052-0472-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 19 Mar 2024 16:50:28 EDT","refillDate":"Sun, 07 May 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23296098,"sig":null,"orderedDate":"Tue, + 05 Mar 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720513","prescriptionName":"CALCIFEDIOL + 20MCG CAPS","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23296098,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00052-0472-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":"expired","refillSubmitDate":"Mon, + 26 Feb 2024 11:33:16 EST","refillDate":"Sun, 07 May 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23033386,"sig":null,"orderedDate":"Wed, + 14 Feb 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720513","prescriptionName":"CALCIFEDIOL + 20MCG CAPS","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23033386,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00052-0472-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":"expired","refillSubmitDate":"Fri, + 09 Jun 2023 10:20:00 EDT","refillDate":"Sun, 07 May 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22195349,"sig":null,"orderedDate":"Thu, + 25 Jan 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720513","prescriptionName":"CALCIFEDIOL + 20MCG CAPS","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22195349,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00052-0472-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, + 29 Jun 2023 13:09:33 EDT","refillDate":"Thu, 29 Jun 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22244915,"sig":"TAKE + 1MG BY MOUTH DAILY FOR 30 DAYS TEST PARK INDI TEST PARK","orderedDate":"Tue, + 30 May 2023 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 30 May 2024 + 00:00:00 EDT","prescriptionNumber":"2720518","prescriptionName":"BUTALBITAL + ACETAMINOPHEN 50/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":22244915,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + PARK","divisionName":"DAYTON","modifiedDate":"Fri, 31 May 2024 07:53:34 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"65234-0050-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + PARK INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETAMINOPHEN/BUTALBITAL + 325/50","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 29 Jun 2023 13:09:33 EDT","refillDate":"Tue, 30 May 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22245017,"sig":null,"orderedDate":"Thu, + 29 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720518","prescriptionName":"BUTALBITAL + ACETAMINOPHEN 50/325MG TAB","dispensedDate":"Thu, 29 Jun 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22245017,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"65234-0050-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":null,"refillDate":null,"refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22245262,"sig":"INJECT + 1ML IV WEEKLY FOR 30 DAYS","orderedDate":"Tue, 30 May 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, + 29 Jun 2023 00:00:00 EDT","prescriptionNumber":"2720519","prescriptionName":"PACLITAXEL + 6MG/ML INJ 5ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22245262,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00015-3475-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"PACLITAXEL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Wed, + 02 Aug 2023 15:53:52 EDT","refillDate":"Wed, 19 Jul 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22324956,"sig":"TAKE + 10MG BY MOUTH EVERY EIGHT (8) HOURS FOR 60 DAYS TEST IND TEST P ","orderedDate":"Sun, + 16 Jul 2023 00:00:00 EDT","quantity":30,"expirationDate":"Tue, 16 Jul 2024 + 00:00:00 EDT","prescriptionNumber":"3636943","prescriptionName":"ZALCITABINE + (ddC) 0.75MG 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":22324956,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 16 Jul 2024 09:56:46 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00004-0221-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + IND","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ZALCITABINE + 0.75MG","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 Jul 2023 15:32:15 EDT","refillDate":"Mon, 17 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22324959,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTILL","orderedDate":"Mon, + 19 Jun 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 19 Jun 2024 + 00:00:00 EDT","prescriptionNumber":"2720536","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":22324959,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + remarks","divisionName":"DAYTON","modifiedDate":"Thu, 20 Jun 2024 09:55:38 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00310-0402-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ZAFIRLUKAST","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 15:32:15 EDT","refillDate":"Wed, 21 Jun 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22325078,"sig":null,"orderedDate":"Mon, + 17 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720536","prescriptionName":"ZAFIRLUKAST + 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22325078,"userId":17621060,"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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 22 Jun 2023 11:31:58 EDT","refillDate":"Tue, 11 Jul 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22221064,"sig":"TAKE + ONE TABLET BY MOUTH EVERY EIGHT (8) HOURS FOR 30 DAYS TEST INDICATION 06212023 + TEST PATIENT INS","orderedDate":"Mon, 22 May 2023 00:00:00 EDT","quantity":90,"expirationDate":"Wed, + 22 May 2024 00:00:00 EDT","prescriptionNumber":"3636938","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":22221064,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 29 May 2024 15:32:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0368-15","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 06212023","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":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 22 Jun 2023 11:31:58 EDT","refillDate":"Mon, 22 May 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22223419,"sig":null,"orderedDate":"Tue, + 11 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636938","prescriptionName":"FAMCICLOVIR + 500MG TAB","dispensedDate":"Thu, 22 Jun 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22223419,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0368-15","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, + 22 May 2023 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22221132,"sig":null,"orderedDate":"Wed, + 14 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636938","prescriptionName":"FAMCICLOVIR + 500MG TAB","dispensedDate":"Thu, 15 Jun 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6934","cmopNdcNumber":"00113002239","id":22221132,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366934","dispStatus":"Expired","ndc":"00078-0368-15","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 11 Aug 2023 09:59:45 EDT","refillDate":"Fri, 11 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22326523,"sig":"TAKE + 10MG BY MOUTH DAILY FOR 30 DAYS TEST INDICATION --AVOID ANTACIDS--","orderedDate":"Tue, + 20 Jun 2023 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 20 Jun 2024 + 00:00:00 EDT","prescriptionNumber":"2720537","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":22326523,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Fri, 21 Jun 2024 09:55:58 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00004-0220-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","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":"Fri, + 11 Aug 2023 09:59:45 EDT","refillDate":"Thu, 22 Jun 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22378409,"sig":null,"orderedDate":"Fri, + 11 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720537","prescriptionName":"ZALCITABINE + 0.375MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22378409,"userId":17621060,"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":"unknown","refillSubmitDate":"Wed, + 02 Aug 2023 17:04:29 EDT","refillDate":"Fri, 23 Jun 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22330445,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY DAY FOR 60 DAYS TEST INDI TEST PI","orderedDate":"Wed, + 21 Jun 2023 00:00:00 EDT","quantity":30,"expirationDate":"Fri, 21 Jun 2024 + 00:00:00 EDT","prescriptionNumber":"3636944","prescriptionName":"ZINC SULFATE + 220MG 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":22330445,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 21 Jun 2024 + 12:53:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00904-5332-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ZINC + SULFATE 220MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 11 Jul 2023 10:17:16 EDT","refillDate":"Tue, 11 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22298072,"sig":"IRRIGATE + 1 SOLUTION AFFECTED AREA DAILY FOR 60 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Sun, + 11 Jun 2023 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 11 Jun 2024 + 00:00:00 EDT","prescriptionNumber":"2720526","prescriptionName":"ACETIC ACID + 0.25% IRRG 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":22298072,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + REMARKS","divisionName":"DAYTON","modifiedDate":"Wed, 12 Jun 2024 15:50:57 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00264-2304-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETIC ACID","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, + 11 Jun 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22298096,"sig":null,"orderedDate":"Tue, + 11 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720526","prescriptionName":"ACETIC + ACID 0.25% IRRG SOLN","dispensedDate":"Wed, 12 Jul 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22298096,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00264-2304-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":"discontinued","refillSubmitDate":"Thu, + 27 Jul 2023 15:09:55 EDT","refillDate":"Sun, 09 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22298200,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS TEST I TEST PLACE","orderedDate":"Sun, + 11 Jun 2023 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 11 Jun 2024 + 00:00:00 EDT","prescriptionNumber":"2720527","prescriptionName":"ACEBUTOLOL + HCL 400MG 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":22298200,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + R","divisionName":"DAYTON","modifiedDate":"Wed, 12 Jun 2024 15:50:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"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":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, + 11 Jun 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22298272,"sig":null,"orderedDate":"Sun, + 09 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720527","prescriptionName":"ACEBUTOLOL + HCL 400MG CAP","dispensedDate":"Mon, 10 Jul 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0478","cmopNdcNumber":"00013264681","id":22298272,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720478","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":"expired","refillSubmitDate":null,"refillDate":"Wed, + 09 Aug 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22332183,"sig":"TAKE + ONE CAPSULE DAILY FOR 30 DAYS","orderedDate":"Tue, 08 Aug 2023 00:00:00 EDT","quantity":30,"expirationDate":"Thu, + 08 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720540","prescriptionName":"ZIPRASIDONE + HCL 40MG CAP","dispensedDate":"Sat, 29 Jun 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)777-0540","cmopNdcNumber":"00093721410","id":22332183,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 09 Aug 2024 09:33:03 EDT","institutionId":null,"dialCmopDivisionPhone":"9837770540","dispStatus":"Expired","ndc":"00049-3970-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ZIPRASIDONE","shape":"OVAL","color":"WHITE","frontImprint":"9,3","backImprint":"72,14","dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 24 Jul 2023 09:44:13 EDT","refillDate":"Tue, 15 Aug 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22332184,"sig":"INJECT + 10MG INTRAVENEOUS USE WEEKLY FOR 30 DAYS","orderedDate":"Sat, 24 Jun 2023 + 00:00:00 EDT","quantity":4,"expirationDate":"Mon, 24 Jun 2024 00:00:00 EDT","prescriptionNumber":"2720541","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":22332184,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 25 Jun 2024 09:55:11 EDT","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":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 24 Jul 2023 09:44:13 EDT","refillDate":"Mon, 26 Jun 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22332269,"sig":null,"orderedDate":"Tue, + 15 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720541","prescriptionName":"ZOLEDRONIC + ACID 4MG VI","dispensedDate":"Sun, 23 Jul 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22332269,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0350-84","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, + 26 Jun 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22332224,"sig":null,"orderedDate":"Sun, + 16 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720541","prescriptionName":"ZOLEDRONIC + ACID 4MG VI","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22332224,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 25 Jul 2023 11:11:55 EDT","refillDate":"Sat, 22 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22335400,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Sun, + 25 Jun 2023 00:00:00 EDT","quantity":5,"expirationDate":"Tue, 25 Jun 2024 + 00:00:00 EDT","prescriptionNumber":"2720543","prescriptionName":"ZOLMITRIPTAN + 5MG DISINTEGR TAB PKG 3","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22335400,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"DAYTON","modifiedDate":"Wed, 26 Jun 2024 14:51:19 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00030-0213-21","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ZOLMITRIPTAN + 5MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 25 Jul 2023 11:11:55 EDT","refillDate":"Tue, 27 Jun 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22335484,"sig":null,"orderedDate":"Sat, + 22 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720543","prescriptionName":"ZOLMITRIPTAN + 5MG DISINTEGR TAB PKG 3","dispensedDate":"Sun, 23 Jul 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22335484,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00030-0213-21","reason":null,"prescriptionNumberIndex":"RF1","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, + 09 Feb 2022 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355987,"sig":"TAKE + 5G DAILY FOR 30 DAYS","orderedDate":"Sat, 15 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Mon, + 16 May 2022 00:00:00 EDT","prescriptionNumber":"2720245","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":22355987,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 15 May 2021 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355993,"sig":null,"orderedDate":"Wed, + 09 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720245","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355993,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 15 May 2021 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355992,"sig":null,"orderedDate":"Thu, + 23 Dec 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720245","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355992,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 15 May 2021 00:00:00 EDT","refillRemaining":7,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355991,"sig":null,"orderedDate":"Fri, + 03 Dec 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720245","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355991,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 15 May 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355990,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720245","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355990,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 15 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355989,"sig":null,"orderedDate":"Sun, + 04 Jul 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720245","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355989,"userId":17621060,"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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, + 15 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355988,"sig":null,"orderedDate":"Wed, + 09 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720245","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355988,"userId":17621060,"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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 03 Jun 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22355960,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 02 Nov 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Sun, 03 Jul 2022 00:00:00 EDT","prescriptionNumber":"3636791","prescriptionName":"MELPHALAN + 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":22355960,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"59572-0302-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MELPHALAN 2MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","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":22355961,"sig":"TAKE + 1ML EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 15 Dec 2021 00:00:00 EST","quantity":4,"expirationDate":"Fri, + 14 Jan 2022 00:00:00 EST","prescriptionNumber":"3636798","prescriptionName":"YASMIN + TAB,28","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":22355961,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"50419-0402-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ETHINYL ESTRADIOL 0.03-DROSPIRENONE 3MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","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":22355962,"sig":"TAKE + ONE TABLET EVERY DAY FOR 30 DAYS TAKE WITH FOOD","orderedDate":"Wed, 15 Dec + 2021 00:00:00 EST","quantity":30,"expirationDate":"Fri, 14 Jan 2022 00:00:00 + EST","prescriptionNumber":"3636799","prescriptionName":"NABUMETONE 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":22355962,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00185-0145-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"NABUMETONE 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":null,"refillDate":"Thu, + 16 Dec 2021 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22355963,"sig":"TAKE + ONE TABLET TWO (2) TIMES PER WEEK FOR 30 DAYS","orderedDate":"Wed, 15 Dec + 2021 00:00:00 EST","quantity":9,"expirationDate":"Fri, 14 Jan 2022 00:00:00 + EST","prescriptionNumber":"3636800","prescriptionName":"CABERGOLINE 0.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":22355963,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00013-7001-12","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CABERGOLINE 0.5MG ","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":null,"refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22355964,"sig":"TAKE + ONE-HALF TABLET AT BEDTIME FOR 30 DAYS","orderedDate":"Sat, 14 May 2022 00:00:00 + EDT","quantity":15,"expirationDate":"Mon, 13 Jun 2022 00:00:00 EDT","prescriptionNumber":"3636858","prescriptionName":"WARFARIN + (COUMADIN) NA 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":22355964,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:09 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00056-0169-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"WARFARIN (COUMADIN) NA 1MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, + 31 Jul 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355968,"sig":"TAKE + ONE TABLET BY MOUTH MORNING FOR 5 DAYS TEST","orderedDate":"Sat, 20 Jun 2020 + 00:00:00 EDT","quantity":10,"expirationDate":"Mon, 21 Jun 2021 00:00:00 EDT","prescriptionNumber":"2720023","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":22355968,"userId":17621060,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":"test","divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 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","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, + 20 Jun 2020 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355969,"sig":null,"orderedDate":"Fri, + 31 Jul 2020 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720023","prescriptionName":"ADEFOVIR + DIPIVOXIL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355969,"userId":17621060,"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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 24 Nov 2020 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355970,"sig":"TAKE + ONE TABLET BY MOUTH MONDAY,TUESDAY,THURSDAY,FRIDAY AND SATURDAY TEST","orderedDate":"Tue, + 10 Nov 2020 00:00:00 EST","quantity":15,"expirationDate":"Thu, 11 Nov 2021 + 00:00:00 EST","prescriptionNumber":"2720113","prescriptionName":"BENZTROPINE + MESYLATE 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":22355970,"userId":17621060,"providerFirstName":"PRANEETH","providerLastName":"GAGANAPALLY","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00832-1081-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BENZTROPINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, + 10 Nov 2020 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355971,"sig":null,"orderedDate":"Tue, + 24 Nov 2020 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720113","prescriptionName":"BENZTROPINE + MESYLATE 1MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355971,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00832-1081-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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"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":22355972,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Mon, 03 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Wed, + 04 May 2022 00:00:00 EDT","prescriptionNumber":"2720222","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":22355972,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 03 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355973,"sig":null,"orderedDate":"Thu, + 10 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720222","prescriptionName":"MELPHALAN + 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355973,"userId":17621060,"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":"Prescription + Expired more than 120 Days.","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":22355974,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Mon, 03 May 2021 00:00:00 + EDT","quantity":30,"expirationDate":"Wed, 04 May 2022 00:00:00 EDT","prescriptionNumber":"2720223","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":22355974,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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 + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 03 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355975,"sig":null,"orderedDate":"Wed, + 02 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720223","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355975,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","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":22355976,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS","orderedDate":"Mon, 03 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Wed, + 04 May 2022 00:00:00 EDT","prescriptionNumber":"2720224","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":22355976,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 03 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355977,"sig":null,"orderedDate":"Wed, + 02 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720224","prescriptionName":"COLCHICINE + 0.6MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355977,"userId":17621060,"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":"Prescription + Expired more than 120 Days.","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":22355978,"sig":"INSTILL + 1G IN FOR OPTHALMIC USE DAILY FOR 30 DAYS","orderedDate":"Mon, 03 May 2021 + 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 04 May 2022 00:00:00 EDT","prescriptionNumber":"2720225","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":22355978,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 03 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355979,"sig":null,"orderedDate":"Wed, + 02 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720225","prescriptionName":"DIPIVEFRIN + HCL 0.1% OPH SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355979,"userId":17621060,"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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, + 26 Jan 2022 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355980,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS --TAKE WITH FOOD TO DECREASE GI IRRITATION/AVOID + ANTACIDS--","orderedDate":"Mon, 10 May 2021 00:00:00 EDT","quantity":30,"expirationDate":"Wed, + 11 May 2022 00:00:00 EDT","prescriptionNumber":"2720244","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":22355980,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 14 Aug 2023 14:02:20 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","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355986,"sig":null,"orderedDate":"Wed, + 26 Jan 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720244","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355986,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2115-32","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355985,"sig":null,"orderedDate":"Thu, + 06 Jan 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720244","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":"Wed, 12 Jan 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355985,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2115-32","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":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":7,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355984,"sig":null,"orderedDate":"Fri, + 17 Dec 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720244","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355984,"userId":17621060,"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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":8,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355983,"sig":null,"orderedDate":"Fri, + 12 Nov 2021 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720244","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355983,"userId":17621060,"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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355982,"sig":null,"orderedDate":"Wed, + 01 Sep 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720244","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355982,"userId":17621060,"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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 10 May 2021 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22355981,"sig":null,"orderedDate":"Wed, + 09 Jun 2021 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720244","prescriptionName":"ALLOPURINOL + 100MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355981,"userId":17621060,"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":false,"notRenewableReason":"Prescription + Expired more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Thu, + 10 Aug 2023 14:00:37 EDT","refillDate":"Wed, 05 Jul 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22357576,"sig":"PLACE + 1 DROP INTO EYE WEEKLY FOR 30 DAYS TEST IND TEST PI","orderedDate":"Tue, 04 + Jul 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 04 Jul 2024 00:00:00 + EDT","prescriptionNumber":"3636946","prescriptionName":"LATANOPROST 0.005% + OPH SOLN","dispensedDate":"Fri, 07 Jul 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":22357576,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Thu, 04 Jul 2024 09:55:55 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + IND","indicationForUseFlag":"1","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":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, + 20 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22357591,"sig":"TAKE + 1 TABLESPOONFUL BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Fri, 18 Aug + 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sun, 18 Aug 2024 00:00:00 + EDT","prescriptionNumber":"3636947","prescriptionName":"LIDOCAINE HCL 2% VISCOUS + LIQUID","dispensedDate":"Tue, 01 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":22357591,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Mon, 19 Aug 2024 09:36:31 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00054-3500-49","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LIDOCAINE HCL 2% VISCOUS 100ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Thu, + 10 Aug 2023 14:00:37 EDT","refillDate":"Wed, 12 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22376268,"sig":"TAKE + ONE TABLET EVERY TWELVE (12) HOURS FOR 45 DAYS TEST IN TEST PI","orderedDate":"Tue, + 11 Jul 2023 00:00:00 EDT","quantity":60,"expirationDate":"Thu, 11 Jul 2024 + 00:00:00 EDT","prescriptionNumber":"3636950","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":22376268,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TESt + RE","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Thu, 11 Jul 2024 09:55:38 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00172-4366-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + IN","indicationForUseFlag":"1","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":"unknown","refillSubmitDate":"Thu, + 10 Aug 2023 14:00:37 EDT","refillDate":"Fri, 07 Jul 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22376353,"sig":"USE + LANCET INTRADERMAL SUBCUTANEOUS FOUR (4) TIMES A DAY, BEFORE MEALS AND AT + BEDTIME FOR 60 DAYS","orderedDate":"Thu, 06 Jul 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sat, + 06 Jul 2024 00:00:00 EDT","prescriptionNumber":"3636951","prescriptionName":"LANCET","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":22376353,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Sat, 06 Jul 2024 09:58:05 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"S09454-2151-15","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BLOOD GLUCOSE 100''s","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 11 Aug 2023 00:00:00 EDT","refillDate":"Wed, 30 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22376397,"sig":"CHEW + ONE TABLET BY MOUTH THREE (3) TIMES A DAY FOR 30 DAYS","orderedDate":"Thu, + 10 Aug 2023 00:00:00 EDT","quantity":90,"expirationDate":"Sat, 10 Aug 2024 + 00:00:00 EDT","prescriptionNumber":"3636952","prescriptionName":"LANTHANUM + CARBONATE 500MG TAB","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":22376397,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Sun, 11 Aug 2024 10:09:27 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"54092-0249-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LANTHANUM CARBONATE 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":"expired","refillSubmitDate":"Fri, + 11 Aug 2023 00:00:00 EDT","refillDate":"Thu, 10 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22409139,"sig":null,"orderedDate":"Wed, + 30 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636952","prescriptionName":"LANTHANUM + CARBONATE 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22409139,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"54092-0249-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":"Fri, + 11 Aug 2023 09:59:45 EDT","refillDate":"Wed, 09 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22377604,"sig":"TAKE + 10ML EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 12 Jul 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, + 12 Jul 2024 00:00:00 EDT","prescriptionNumber":"3636953","prescriptionName":"LEVOCARNITINE + 1GM/10ML LIQUID","dispensedDate":"Fri, 14 Jul 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":22377604,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Sat, 13 Jul 2024 09:57:23 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"54482-0145-08","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LEVOCARNITINE 1GM/10ML","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":"Fri, + 11 Aug 2023 09:59:45 EDT","refillDate":"Thu, 13 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22377632,"sig":null,"orderedDate":"Wed, + 09 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636953","prescriptionName":"LEVOCARNITINE + 1GM/10ML LIQUID","dispensedDate":"Thu, 10 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6953","cmopNdcNumber":"00113002239","id":22377632,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366953","dispStatus":"Discontinued","ndc":"54482-0145-08","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":"unknown","refillSubmitDate":"Thu, + 24 Aug 2023 16:29:33 EDT","refillDate":"Mon, 03 Jul 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22378337,"sig":"TAKE + 2 UNITS BY THE AFFECTED AREA ONCE FOR 30 DAYS TEST INI CHILL WELL","orderedDate":"Sun, + 02 Jul 2023 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 02 Jul 2024 + 00:00:00 EDT","prescriptionNumber":"3636957","prescriptionName":"MAGNESIUM + CITRATE LIQUID","dispensedDate":"Wed, 05 Jul 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":22378337,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 02 Jul 2024 15:43:37 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00869-2635-08","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INI","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":null,"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Fri, + 11 Aug 2023 12:53:49 EDT","refillDate":"Tue, 18 Jul 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22378338,"sig":"INJECT + 10ML INTRAVENOUS ONCE FOR 30 DAYS","orderedDate":"Mon, 17 Jul 2023 00:00:00 + EDT","quantity":1,"expirationDate":"Wed, 17 Jul 2024 00:00:00 EDT","prescriptionNumber":"3636958","prescriptionName":"MAGNESIUM + SULFATE 50% INJ 10ML SDV","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":22378338,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 17 Jul 2024 09:56:04 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00517-2610-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"MAGNESIUM SULFATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 11 Aug 2023 12:55:57 EDT","refillDate":"Fri, 11 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22378341,"sig":"TAKE + 1 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":"2720555","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":22378341,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"DAYTON","modifiedDate":"Mon, 08 Jul 2024 10:08:16 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","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":"expired","refillSubmitDate":"Fri, + 11 Aug 2023 12:55:57 EDT","refillDate":"Sat, 08 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22378410,"sig":null,"orderedDate":"Fri, + 11 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720555","prescriptionName":"MAALOX + NO. 2 TAB ","dispensedDate":"Fri, 11 Aug 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22378410,"userId":17621060,"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":"Fri, + 11 Aug 2023 12:50:30 EDT","refillDate":"Fri, 11 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22378342,"sig":"APPLY + SMALL AMOUNT TO AFFECTED AREA WEEKLY FOR 45 DAYS","orderedDate":"Wed, 12 Jul + 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 12 Jul 2024 00:00:00 + EDT","prescriptionNumber":"2720556","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":22378342,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Sat, + 13 Jul 2024 09:57:23 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":"Fri, + 11 Aug 2023 12:50:30 EDT","refillDate":"Thu, 13 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22378411,"sig":null,"orderedDate":"Fri, + 11 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720556","prescriptionName":"MAFENIDE + CREAM (OZ)","dispensedDate":"Fri, 11 Aug 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22378411,"userId":17621060,"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":"Fri, + 08 Sep 2023 16:24:09 EDT","refillDate":"Tue, 29 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22436660,"sig":"TAKE + ONE CAPSULE EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 06 Aug 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Tue, 06 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636961","prescriptionName":"ETOPOSIDE + 50MG CAP","dispensedDate":"Tue, 08 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":22436660,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 07 Aug 2024 09:57:31 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51079-0965-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ETOPOSIDE 50MG","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, + 06 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22436715,"sig":null,"orderedDate":"Tue, + 29 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636961","prescriptionName":"ETOPOSIDE + 50MG CAP","dispensedDate":"Thu, 31 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6961","cmopNdcNumber":"00113002239","id":22436715,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366961","dispStatus":"Discontinued","ndc":"51079-0965-05","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":"active","refillSubmitDate":null,"refillDate":"Thu, + 31 Aug 2023 00:00:00 EDT","refillRemaining":null,"facilityName":"SLC10 TEST + LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22443916,"sig":"50MG + ORAL DAILY","orderedDate":"Thu, 07 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"7","prescriptionName":"IMIPRAMINE + 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":22443916,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Wed, + 11 Dec 2024 10:38:03 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Non-VA","ndc":"00781-1766-10","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":null,"category":"Documented by VA","orderableItem":"IMIPRAMINE + HCL 50MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":false,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, + 13 Sep 2023 00:00:00 EDT","refillDate":"Thu, 28 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22446391,"sig":"TAKE + 10ML EVERY DAY FOR 30 DAYS","orderedDate":"Fri, 08 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sun, + 08 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636953A","prescriptionName":"LEVOCARNITINE + 1GM/10ML 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":22446391,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636953","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 09 Sep 2024 09:57:22 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"54482-0145-08","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"LEVOCARNITINE 1GM/10ML","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, + 13 Sep 2023 00:00:00 EDT","refillDate":"Fri, 08 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22487103,"sig":null,"orderedDate":"Thu, + 28 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636953A","prescriptionName":"LEVOCARNITINE + 1GM/10ML LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22487103,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"54482-0145-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":false,"notRenewableReason":"This + Orderable Item has been Inactivated.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Wed, + 13 Sep 2023 19:08:32 EDT","refillDate":"Wed, 26 Jul 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22446392,"sig":"TAKE + 10MG BY MOUTH TWO (2) TIMES A DAY FOR 30 DAYS TEST INDI MORNING AND NIGHT.","orderedDate":"Tue, + 25 Jul 2023 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 25 Jul 2024 + 00:00:00 EDT","prescriptionNumber":"3636963","prescriptionName":"QUETIAPINE + FUMAR TABS STARTER 11''S(PG)","dispensedDate":"Thu, 27 Jul 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":22446392,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Thu, 25 Jul 2024 12:36:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"00310-0276-90","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"QUETIAPINE + FUMARATE STARTER 11''S","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":"Fri, + 08 Sep 2023 00:00:00 EDT","refillDate":"Fri, 08 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22447544,"sig":"TAKE + ONE TABLET BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 09 Aug 2023 + 00:00:00 EDT","quantity":30,"expirationDate":"Fri, 09 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636964","prescriptionName":"QUINAPRIL + HCL 10MG TAB","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":22447544,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Sat, 10 Aug 2024 10:10:13 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0530-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"QUINAPRIL HCL 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, + 08 Sep 2023 00:00:00 EDT","refillDate":"Fri, 08 Sep 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22447628,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 45 DAYS --TAKE WITH FOOD/AVOID GRAPEFRUIT JUICE/DO + NOT CRUSH OR CHEW/AVOID ANTACIDS--","orderedDate":"Sat, 19 Aug 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Mon, 19 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720589","prescriptionName":"QUINIDINE + GLUCONATE 324MG SA TAB","dispensedDate":"Fri, 08 Sep 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":22447628,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Tue, + 20 Aug 2024 09:58:13 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"47679-0452-35","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"QUINIDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 31 Aug 2023 14:25:47 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22425840,"sig":"TAKE + 10MG BY MOUTH DAILY FOR 30 DAYS TEST INDI 08312023 TEST PI 08312023","orderedDate":"Thu, + 27 Jul 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 27 Jul 2024 + 00:00:00 EDT","prescriptionNumber":"2720576","prescriptionName":"VALACYCLOVIR + HCL 1GM 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":22425840,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE 08312023","divisionName":"DAYTON","modifiedDate":"Sun, 28 Jul 2024 09:54:05 + EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI 08312023","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"VALACYCLOVIR","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 31 Aug 2023 14:25:47 EDT","refillDate":"Thu, 27 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22428731,"sig":null,"orderedDate":"Thu, + 31 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720576","prescriptionName":"VALACYCLOVIR + HCL 1GM TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22428731,"userId":17621060,"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, + 31 Aug 2023 15:17:03 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22425841,"sig":"TAKE + ONE CAPSULE BY MOUTH WEEKLY FOR 60 DAYS --TAKE WITH FOOD TO DECREASE GI DISTRESS/DO + NOT CRUSH OR CHEW--","orderedDate":"Tue, 01 Aug 2023 00:00:00 EDT","quantity":5,"expirationDate":"Thu, + 01 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720577","prescriptionName":"VALPROIC + ACID 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":22425841,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 02 Aug 2024 09:56:53 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00074-5681-13","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VALPROIC ACID","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 31 Aug 2023 15:17:03 EDT","refillDate":"Wed, 02 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22428732,"sig":null,"orderedDate":"Thu, + 31 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720577","prescriptionName":"VALPROIC + ACID 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22428732,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00074-5681-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, + 31 Aug 2023 15:32:58 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22425842,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 45 DAYS","orderedDate":"Sun, 06 Aug 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Tue, 06 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720578","prescriptionName":"VALSARTAN + 160MG 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":22425842,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 07 Aug 2024 09:57:31 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0359-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VALSARTAN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 31 Aug 2023 15:32:58 EDT","refillDate":"Mon, 07 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22428733,"sig":null,"orderedDate":"Thu, + 31 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720578","prescriptionName":"VALSARTAN + 160MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22428733,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00078-0359-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":"expired","refillSubmitDate":"Thu, + 31 Aug 2023 00:00:00 EDT","refillDate":"Fri, 01 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22425843,"sig":"INJECT + 10ML IV WEEKLY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Fri, 11 Aug 2023 + 00:00:00 EDT","quantity":1,"expirationDate":"Sun, 11 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720579","prescriptionName":"VANCOMYCIN + 1000MG 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":22425843,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, + 12 Aug 2024 14:41:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00074-6533-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"VANCOMYCIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 31 Aug 2023 00:00:00 EDT","refillDate":"Sat, 12 Aug 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22428734,"sig":null,"orderedDate":"Fri, + 01 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720579","prescriptionName":"VANCOMYCIN + 1000MG INJ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22428734,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00074-6533-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, + 31 Aug 2023 00:00:00 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22425844,"sig":"APPLY + SMALL AMOUNT TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Tue, 08 Aug + 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 08 Aug 2024 00:00:00 + EDT","prescriptionNumber":"2720580","prescriptionName":"VELVACHOL CREAM 16 + 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":22425844,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, + 09 Aug 2024 09:33:03 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"30229-3932-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"VELVACHOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 31 Aug 2023 14:26:47 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22425845,"sig":"TAKE + 1MG BY MOUTH WEEKLY FOR 60 DAYS","orderedDate":"Thu, 03 Aug 2023 00:00:00 + EDT","quantity":1,"expirationDate":"Sat, 03 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720581","prescriptionName":"VENLAFAXINE + HCL 150MG SA 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":22425845,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Sun, + 04 Aug 2024 09:57:01 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00008-0836-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 31 Aug 2023 14:26:47 EDT","refillDate":"Fri, 04 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22428735,"sig":null,"orderedDate":"Thu, + 31 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720581","prescriptionName":"VENLAFAXINE + HCL 150MG SA CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22428735,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00008-0836-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":null,"refillDate":"Tue, + 01 Aug 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22426211,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 01 Aug 2023 + 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 31 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636959","prescriptionName":"THALIDOMIDE + 50MG 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":22426211,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"59572-0205-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"THALIDOMIDE 50MG","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, + 31 Aug 2023 10:20:13 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22426212,"sig":"INJECT + 2 MILLIGRAMS UNDER THE SKIN ONCE FOR 30 DAYS","orderedDate":"Tue, 01 Aug 2023 + 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 01 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636960","prescriptionName":"TERBUTALINE + 1MG/ML INJ 1ML","dispensedDate":"Thu, 03 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":22426212,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Fri, 02 Aug 2024 09:56:52 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"55390-0101-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"TERBUTALINE 1MG/ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, + 31 Aug 2023 10:20:13 EDT","refillDate":"Wed, 02 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22426254,"sig":null,"orderedDate":"Thu, + 31 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636960","prescriptionName":"TERBUTALINE + 1MG/ML INJ 1ML","dispensedDate":"Thu, 31 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22426254,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"55390-0101-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":"Tue, + 05 Sep 2023 15:00:42 EDT","refillDate":"Tue, 05 Sep 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22399906,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST IND TEST PI","orderedDate":"Sat, + 22 Jul 2023 00:00:00 EDT","quantity":30,"expirationDate":"Mon, 22 Jul 2024 + 00:00:00 EDT","prescriptionNumber":"2720573","prescriptionName":"POTASSIUM + CHLORIDE 8MEQ SA 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":22399906,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + RE","divisionName":"DAYTON","modifiedDate":"Tue, 23 Jul 2024 15:53:04 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00245-0040-55","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + IND","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"POTASSIUM + CHLORIDE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, + 22 Oct 2024 00:00:00 EDT","refillDate":"Mon, 04 Nov 2024 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22812507,"sig":"IRRIGATE + 1 SOLUTION AFFECTED AREA DAILY FOR 60 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Tue, + 02 Jan 2024 00:00:00 EST","quantity":1,"expirationDate":"Thu, 02 Jan 2025 + 00:00:00 EST","prescriptionNumber":"2720526C","prescriptionName":"ACETIC ACID + 0.25% IRRG SOLN","dispensedDate":"Fri, 28 Jun 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)777-0526","cmopNdcNumber":"00113002239","id":22812507,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720526B","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"9837770526","dispStatus":"Active: + Refill in Process","ndc":"00264-2304-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETIC ACID","shape":"OVAL","color":"WHITE","frontImprint":"L022","backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, + 22 Oct 2024 00:00:00 EDT","refillDate":"Tue, 02 Jan 2024 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24575738,"sig":null,"orderedDate":"Mon, + 04 Nov 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720526C","prescriptionName":"ACETIC + ACID 0.25% IRRG SOLN","dispensedDate":"Sun, 20 Oct 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)777-0526","cmopNdcNumber":"00093721410","id":24575738,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9837770526","dispStatus":"Suspended","ndc":"00264-2304-00","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":"suspended","refillSubmitDate":"Tue, + 19 Mar 2024 00:00:00 EDT","refillDate":"Tue, 02 Jan 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23296100,"sig":null,"orderedDate":"Tue, + 15 Oct 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720526C","prescriptionName":"ACETIC + ACID 0.25% IRRG SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23296100,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00264-2304-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, + 19 Mar 2024 00:00:00 EDT","refillDate":"Sun, 28 Jan 2024 00:00:00 EST","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22812508,"sig":"TAKE + THIS IS FOR TESTING %% BY MOUTH WEEKLY HALF ## FOR 1 MINUTE, AND TAKE 50% + TAKE 50% FOR 1 HOUR FOLLOW INSTRUCTIONS CAREFULLY &&&&","orderedDate":"Tue, + 02 Jan 2024 00:00:00 EST","quantity":10,"expirationDate":"Thu, 02 Jan 2025 + 00:00:00 EST","prescriptionNumber":"2720326B","prescriptionName":"DISULFIRAM + (ANTABUSE) 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":22812508,"userId":17621060,"providerFirstName":"RACHNA","providerLastName":"CHOUDHRY","remarks":"RENEWED + FROM RX # 2720326A","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00046-0810-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"DISULFIRAM","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, + 26 Feb 2024 00:00:00 EST","refillDate":"Tue, 02 Jan 2024 00:00:00 EST","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23033387,"sig":null,"orderedDate":"Sun, + 28 Jan 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720326B","prescriptionName":"DISULFIRAM + (ANTABUSE) 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23033387,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00046-0810-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":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, + 23 Feb 2024 00:00:00 EST","refillDate":"Tue, 02 Jan 2024 00:00:00 EST","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23021710,"sig":null,"orderedDate":"Thu, + 25 Jan 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720326B","prescriptionName":"DISULFIRAM + (ANTABUSE) 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23021710,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00046-0810-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":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 22 Feb 2024 00:00:00 EST","refillDate":"Tue, 02 Jan 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22812509,"sig":"APPLY + SMALL AMOUNT TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Tue, 02 Jan + 2024 00:00:00 EST","quantity":2,"expirationDate":"Thu, 02 Jan 2025 00:00:00 + EST","prescriptionNumber":"2720412A","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":22812509,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720412","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 10:38:04 EST","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":false,"notRenewableReason":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Tue, + 15 Oct 2024 00:00:00 EDT","refillDate":"Tue, 02 Jan 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":22812510,"sig":"INSTILL + 1 DROP IN AFFECTED EAR WEEKLY FOR 30 DAYS","orderedDate":"Tue, 02 Jan 2024 + 00:00:00 EST","quantity":2,"expirationDate":"Thu, 02 Jan 2025 00:00:00 EST","prescriptionNumber":"2720413A","prescriptionName":"HC + 1%/NEOMYCIN 3.5MG/POLYMYXIN OTIC 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":22812510,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720413","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"24208-0635-62","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CORTISPORIN","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 Nov 2024 00:00:00 EST","refillDate":"Tue, 02 Jan 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":22812511,"sig":"TAKE + 1 TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 02 Jan 2024 00:00:00 + EST","quantity":30,"expirationDate":"Thu, 02 Jan 2025 00:00:00 EST","prescriptionNumber":"2720414A","prescriptionName":"HCTZ + 12.5/LISINOPRIL 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":22812511,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720414","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00591-0860-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HYDROCHLOROTHIAZIDE/LISINOPRIL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 22 Feb 2024 00:00:00 EST","refillDate":"Tue, 02 Jan 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22812512,"sig":"TAKE + 1MG WEEKLY FOR 30 DAYS","orderedDate":"Tue, 02 Jan 2024 00:00:00 EST","quantity":4,"expirationDate":"Thu, + 02 Jan 2025 00:00:00 EST","prescriptionNumber":"2720305B","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":22812512,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720305A","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 10:38:04 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":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Thu, + 29 Aug 2024 00:00:00 EDT","refillDate":"Tue, 30 Jul 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24378149,"sig":"TAKE + 1 BY MOUTH DAILY FOR 30 DAYS **DO NOT CRUSH OR CHEW**","orderedDate":"Tue, + 30 Jul 2024 00:00:00 EDT","quantity":10,"expirationDate":"Thu, 31 Jul 2025 + 00:00:00 EDT","prescriptionNumber":"2721124","prescriptionName":"OMEPRAZOLE + 20MG SA 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":24378149,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"62175-0118-37","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"OMEPRAZOLE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Thu, + 29 Aug 2024 00:00:00 EDT","refillDate":"Tue, 30 Jul 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24378150,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 30 Jul 2024 00:00:00 + EDT","quantity":3,"expirationDate":"Thu, 31 Jul 2025 00:00:00 EDT","prescriptionNumber":"2721125","prescriptionName":"METFORMIN + HCL 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":24378150,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"57664-0397-13","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"METFORMIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Fri, + 18 Oct 2024 00:00:00 EDT","refillDate":"Tue, 15 Oct 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24378151,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS --AVOID GRAPEFRUIT JUICE--","orderedDate":"Tue, + 30 Jul 2024 00:00:00 EDT","quantity":10,"expirationDate":"Thu, 31 Jul 2025 + 00:00:00 EDT","prescriptionNumber":"2721126","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":24378151,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":"active","refillSubmitDate":"Fri, + 18 Oct 2024 00:00:00 EDT","refillDate":"Tue, 30 Jul 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24563736,"sig":null,"orderedDate":"Tue, + 15 Oct 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721126","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24563736,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":"active","refillSubmitDate":"Tue, + 19 Nov 2024 00:00:00 EST","refillDate":"Tue, 15 Oct 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24378100,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD--","orderedDate":"Tue, + 30 Jul 2024 00:00:00 EDT","quantity":3,"expirationDate":"Thu, 31 Jul 2025 + 00:00:00 EDT","prescriptionNumber":"2721123","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":24378100,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"active","refillSubmitDate":"Fri, + 18 Oct 2024 00:00:00 EDT","refillDate":"Tue, 30 Jul 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24563735,"sig":null,"orderedDate":"Tue, + 15 Oct 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721123","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24563735,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Fri, + 06 Dec 2024 00:00:00 EST","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":true,"isTrackable":false,"prescriptionId":24891618,"sig":"TAKE + 10ML BY MOUTH EVERY DAY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Fri, + 06 Dec 2024 00:00:00 EST","quantity":1,"expirationDate":"Sun, 07 Dec 2025 + 00:00:00 EST","prescriptionNumber":"3636979A","prescriptionName":"ACETYLCYSTEINE + 20% INHL SOLN 30ML","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":24891618,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636979","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 11 Dec 2024 10:38:03 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00409-3308-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETYLCYSTEINE + 20% 30ML","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":"Fri, + 06 Dec 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":true,"isTrackable":false,"prescriptionId":24891619,"sig":"APPLY, + A SEGMENT(S) INSIDE, LOWER LID OF EYE WEEKLY FOR 30 DAYS TEST INDICATION TEST + PATIENT INTRUCTIONS","orderedDate":"Fri, 06 Dec 2024 00:00:00 EST","quantity":1,"expirationDate":"Sun, + 07 Dec 2025 00:00:00 EST","prescriptionNumber":"3636889B","prescriptionName":"BACITRACIN + 500 UNT/GM OPH 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":24891619,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636889A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 11 Dec 2024 10:38:03 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00168-0026-38","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"BACITRACIN + 500 UNIT/GM 3.5GM","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":"Fri, + 06 Dec 2024 00:00:00 EST","refillRemaining":5,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":true,"isTrackable":false,"prescriptionId":24891620,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY DAY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Fri, + 06 Dec 2024 00:00:00 EST","quantity":30,"expirationDate":"Sun, 07 Dec 2025 + 00:00:00 EST","prescriptionNumber":"3636929C","prescriptionName":"DANAZOL + 200MG 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":24891620,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636929B","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 11 Dec 2024 10:38:03 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00024-0305-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"DANAZOL + 200MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"activeParked","refillSubmitDate":null,"refillDate":null,"refillRemaining":3,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":true,"isTrackable":false,"prescriptionId":24891621,"sig":"TAKE + ONE TABLET BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Fri, 06 Dec 2024 + 00:00:00 EST","quantity":30,"expirationDate":"Sun, 07 Dec 2025 00:00:00 EST","prescriptionNumber":"3636964A","prescriptionName":"QUINAPRIL + 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":24891621,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636964","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 11 Dec 2024 10:38:03 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Parked","ndc":"00071-0530-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"QUINAPRIL HCL 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":"refillinprocess","refillSubmitDate":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Thu, 26 Dec 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24891624,"sig":"TAKE + 10MG BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Fri, 06 Dec 2024 00:00:00 + EST","quantity":30,"expirationDate":"Sun, 07 Dec 2025 00:00:00 EST","prescriptionNumber":"2720466C","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":24891624,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720466B","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Fri, 06 Dec 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24908385,"sig":null,"orderedDate":"Thu, + 26 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720466C","prescriptionName":"ABACAVIR + SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24908385,"userId":17621060,"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":"active","refillSubmitDate":null,"refillDate":"Fri, + 06 Dec 2024 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24891625,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS TEST --AVOID ANTACIDS--","orderedDate":"Fri, + 06 Dec 2024 00:00:00 EST","quantity":30,"expirationDate":"Sun, 07 Dec 2025 + 00:00:00 EST","prescriptionNumber":"2720605A","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":24891625,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720605","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00071-0513-24","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"GABAPENTIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Thu, 26 Dec 2024 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24891626,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 45 DAYS --TAKE WITH FOOD/AVOID GRAPEFRUIT JUICE/DO + NOT CRUSH OR CHEW/AVOID ANTACIDS--","orderedDate":"Fri, 06 Dec 2024 00:00:00 + EST","quantity":30,"expirationDate":"Sun, 07 Dec 2025 00:00:00 EST","prescriptionNumber":"2720589A","prescriptionName":"QUINIDINE + GLUCONATE 324MG SA 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":24891626,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720589","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"47679-0452-35","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"QUINIDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Fri, 06 Dec 2024 00:00:00 EST","refillRemaining":4,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24908386,"sig":null,"orderedDate":"Thu, + 26 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720589A","prescriptionName":"QUINIDINE + GLUCONATE 324MG SA TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24908386,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"47679-0452-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 31 Oct 2024 00:00:00 EDT","refillDate":"Tue, 06 Aug 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22625964,"sig":"TAKE + 10MG BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 31 Oct 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 31 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720466B","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":22625964,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720466A","divisionName":"DAYTON","modifiedDate":"Fri, 01 Nov 2024 + 10:01:47 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/LAMIVUDINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"submitted","refillSubmitDate":"Thu, + 29 Feb 2024 00:00:00 EST","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23048498,"sig":null,"orderedDate":"Tue, + 06 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720466B","prescriptionName":"ABACAVIR + SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23048498,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Submitted","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, + 14 Nov 2023 00:00:00 EST","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22656197,"sig":null,"orderedDate":"Tue, + 15 Oct 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720466B","prescriptionName":"ABACAVIR + SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22656197,"userId":17621060,"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":"Mon, + 06 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":22625965,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS TEST I TEST PLACE","orderedDate":"Tue, + 31 Oct 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 31 Oct 2024 + 00:00:00 EDT","prescriptionNumber":"2720527B","prescriptionName":"ACEBUTOLOL + HCL 400MG 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":22625965,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720527A","divisionName":"DAYTON","modifiedDate":"Fri, 01 Nov 2024 + 10:01:47 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"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":"Prescription + is in a Non-Renewable Status.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 06 Nov 2023 00:00:00 EST","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22637805,"sig":null,"orderedDate":"Mon, + 20 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720527B","prescriptionName":"ACEBUTOLOL + HCL 400MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22637805,"userId":17621060,"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":"Prescription + is in a Non-Renewable Status.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Mon, + 06 Nov 2023 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22625966,"sig":"IRRIGATE + 1 SOLUTION AFFECTED AREA DAILY FOR 60 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Tue, + 31 Oct 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 31 Oct 2024 + 00:00:00 EDT","prescriptionNumber":"2720526B","prescriptionName":"ACETIC ACID + 0.25% IRRG 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":22625966,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720526A","divisionName":"DAYTON","modifiedDate":"Fri, 01 Nov 2024 + 10:01:47 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00264-2304-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETIC ACID","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, + 15 Oct 2024 00:00:00 EDT","refillDate":"Tue, 15 Oct 2024 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22625967,"sig":"TAKE + 5G DAILY FOR 30 DAYS TEST TEST INDICATION TEST","orderedDate":"Tue, 31 Oct + 2023 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 31 Oct 2024 00:00:00 + EDT","prescriptionNumber":"2720245D","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":22625967,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720245C","divisionName":"DAYTON","modifiedDate":"Fri, 01 Nov 2024 + 10:01:47 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACITRETIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 23 Jan 2024 00:00:00 EST","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22901615,"sig":null,"orderedDate":"Tue, + 15 Oct 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720245D","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22901615,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 14 Nov 2023 00:00:00 EST","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22656198,"sig":null,"orderedDate":"Tue, + 02 Jan 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720245D","prescriptionName":"ACITRETIN + 25MG CAP","dispensedDate":"Tue, 02 Jan 2024 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22656198,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 29 Aug 2024 00:00:00 EDT","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22625968,"sig":"TAKE + ONE CAPSULE DAILY FOR 30 DAYS TEST","orderedDate":"Tue, 31 Oct 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Thu, 31 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720298C","prescriptionName":"ACYCLOVIR + 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":22625968,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720298B","divisionName":"DAYTON","modifiedDate":"Fri, 01 Nov 2024 + 10:01:47 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-4266-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":null,"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":"expired","refillSubmitDate":"Tue, + 17 Oct 2023 00:00:00 EDT","refillDate":"Wed, 18 Oct 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22585447,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY DAY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Fri, + 22 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sun, 22 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"3636929B","prescriptionName":"DANAZOL + 200MG 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":22585447,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636929A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 23 Sep 2024 09:58:13 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00024-0305-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"DANAZOL + 200MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 17 Oct 2023 00:00:00 EDT","refillDate":"Sat, 23 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22588268,"sig":null,"orderedDate":"Wed, + 18 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636929B","prescriptionName":"DANAZOL + 200MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22588268,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00024-0305-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":"active","refillSubmitDate":"Tue, + 15 Oct 2024 00:00:00 EDT","refillDate":"Fri, 30 Aug 2024 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24380784,"sig":"TAKE + ONE TABLET DAILY --TAKE WITH FOOD--","orderedDate":"Fri, 30 Aug 2024 00:00:00 + EDT","quantity":5,"expirationDate":"Sun, 31 Aug 2025 00:00:00 EDT","prescriptionNumber":"2721136","prescriptionName":"CORTISONE + ACETATE 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":24380784,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CORTISONE ACETATE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 24 Oct 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":22565799,"sig":"TAKE + 10MG BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Mon, 11 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Wed, 11 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720466A","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":22565799,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720466","divisionName":"DAYTON","modifiedDate":"Thu, 12 Sep 2024 + 00:10:06 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/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":"discontinued","refillSubmitDate":"Mon, + 16 Oct 2023 00:00:00 EDT","refillDate":"Sun, 08 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22565800,"sig":"TAKE + ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS TEST I TEST PLACE","orderedDate":"Wed, + 06 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 06 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"2720527A","prescriptionName":"ACEBUTOLOL + HCL 400MG 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":22565800,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720527","divisionName":"DAYTON","modifiedDate":"Sat, 07 Sep 2024 + 09:58:02 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"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":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Wed, + 11 Oct 2023 00:00:00 EDT","refillDate":"Thu, 07 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22566024,"sig":null,"orderedDate":"Sun, + 08 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720527A","prescriptionName":"ACEBUTOLOL + HCL 400MG CAP","dispensedDate":"Mon, 09 Oct 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0527","cmopNdcNumber":"00013264681","id":22566024,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720527","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":"Thu, + 19 Oct 2023 00:00:00 EDT","refillDate":"Sat, 07 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22565801,"sig":"IRRIGATE + 1 SOLUTION AFFECTED AREA DAILY FOR 60 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Sat, + 16 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Mon, 16 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"2720526A","prescriptionName":"ACETIC ACID + 0.25% IRRG 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":22565801,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720526","divisionName":"DAYTON","modifiedDate":"Wed, 18 Sep 2024 + 09:57:50 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00264-2304-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ACETIC ACID","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, + 16 Oct 2023 00:00:00 EDT","refillDate":"Sun, 17 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22584152,"sig":null,"orderedDate":"Sat, + 07 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720526A","prescriptionName":"ACETIC + ACID 0.25% IRRG SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22584152,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00264-2304-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":"discontinued","refillSubmitDate":"Mon, + 16 Oct 2023 00:00:00 EDT","refillDate":"Mon, 16 Oct 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22565802,"sig":"TAKE + 5G DAILY FOR 30 DAYS TEST TEST INDICATION TEST","orderedDate":"Wed, 11 Oct + 2023 00:00:00 EDT","quantity":30,"expirationDate":"Fri, 11 Oct 2024 00:00:00 + EDT","prescriptionNumber":"2720245C","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":22565802,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720245B","divisionName":"DAYTON","modifiedDate":"Wed, 16 Oct 2024 + 10:02:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","indicationForUseFlag":"1","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":"Tue, + 24 Oct 2023 00:00:00 EDT","refillDate":"Tue, 24 Oct 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22565803,"sig":"TAKE + ONE CAPSULE DAILY FOR 30 DAYS TEST","orderedDate":"Wed, 11 Oct 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Fri, 11 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720298B","prescriptionName":"ACYCLOVIR + 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":22565803,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720298A","divisionName":"DAYTON","modifiedDate":"Wed, 16 Oct 2024 + 10:02:57 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00172-4266-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION TEST","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":"Thu, + 29 Aug 2024 00:00:00 EDT","refillDate":"Mon, 16 Oct 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22565804,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 21 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Sat, 21 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720290B","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":22565804,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720290A","divisionName":"DAYTON","modifiedDate":"Sun, 22 Sep 2024 + 09:57:51 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","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"submitted","refillSubmitDate":"Thu, + 19 Oct 2023 00:00:00 EDT","refillDate":"Fri, 22 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22593429,"sig":null,"orderedDate":"Mon, + 16 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720290B","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22593429,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Submitted","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":"expired","refillSubmitDate":"Thu, + 29 Aug 2024 00:00:00 EDT","refillDate":"Sun, 28 Jan 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22565805,"sig":"APPLY + 10ML TO AFFECTED AREA DAILY FOR 60 DAYS","orderedDate":"Wed, 13 Sep 2023 00:00:00 + EDT","quantity":1,"expirationDate":"Fri, 13 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720410A","prescriptionName":"BACT-NEOMY-POLYMIX + TOP OINT (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":22565805,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720410","divisionName":"DAYTON","modifiedDate":"Sat, 14 Sep 2024 + 09:56:46 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0012-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BACITRACIN/NEOMYCIN/POLYMYXIN B","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 20 Nov 2023 00:00:00 EST","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22676760,"sig":null,"orderedDate":"Sun, + 28 Jan 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720410A","prescriptionName":"BACT-NEOMY-POLYMIX + TOP OINT (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22676760,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0012-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":"active","refillSubmitDate":"Tue, + 15 Oct 2024 00:00:00 EDT","refillDate":"Wed, 29 May 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":23845182,"sig":"APPLY + SMALL AMOUNT TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Wed, 29 May + 2024 00:00:00 EDT","quantity":2,"expirationDate":"Fri, 30 May 2025 00:00:00 + EDT","prescriptionNumber":"2720412B","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":23845182,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720412A","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":"active","refillSubmitDate":"Fri, + 09 Aug 2024 00:00:00 EDT","refillDate":"Tue, 06 Aug 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23896255,"sig":"APPLY + SMALL AMOUNT DAILY FOR 30 DAYS","orderedDate":"Sun, 12 May 2024 00:00:00 EDT","quantity":3,"expirationDate":"Tue, + 13 May 2025 00:00:00 EDT","prescriptionNumber":"2721051","prescriptionName":"CLOBETASOL + PROPIONATE 0.05% 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":23896255,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"51672-1258-02","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CLOBETASOL","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"active","refillSubmitDate":"Fri, + 09 Aug 2024 00:00:00 EDT","refillDate":"Sun, 12 May 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24310799,"sig":null,"orderedDate":"Tue, + 06 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721051","prescriptionName":"CLOBETASOL + PROPIONATE 0.05% CREAM","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24310799,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"51672-1258-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":"active","refillSubmitDate":"Tue, + 02 Jul 2024 00:00:00 EDT","refillDate":"Sun, 12 May 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24187420,"sig":null,"orderedDate":"Tue, + 02 Jul 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721051","prescriptionName":"CLOBETASOL + PROPIONATE 0.05% CREAM","dispensedDate":"Tue, 02 Jul 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24187420,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"51672-1258-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":"active","refillSubmitDate":"Tue, + 11 Jun 2024 00:00:00 EDT","refillDate":"Sun, 12 May 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23896319,"sig":null,"orderedDate":"Sat, + 01 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721051","prescriptionName":"CLOBETASOL + PROPIONATE 0.05% CREAM","dispensedDate":"Sun, 09 Jun 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(783)272-1051","cmopNdcNumber":"00013264681","id":23896319,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"7832721051","dispStatus":"Active","ndc":"51672-1258-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":"active","refillSubmitDate":"Fri, + 06 Dec 2024 00:00:00 EST","refillDate":"Tue, 03 Dec 2024 00:00:00 EST","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24380722,"sig":"TAKE + 1 TEASPOONFUL BY AS DIRECTED DAILY FOR 30 DAYS","orderedDate":"Fri, 30 Aug + 2024 00:00:00 EDT","quantity":5,"expirationDate":"Sun, 31 Aug 2025 00:00:00 + EDT","prescriptionNumber":"2721134","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":24380722,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":{"rfRecord":[{"refillStatus":"active","refillSubmitDate":"Tue, + 15 Oct 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":24548730,"sig":null,"orderedDate":"Tue, + 03 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2721134","prescriptionName":"ACCU-CHEK + COMFORT CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24548730,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":"active","refillSubmitDate":"Thu, + 03 Oct 2024 00:00:00 EDT","refillDate":"Fri, 30 Aug 2024 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24380745,"sig":"TAKE + ONE-HALF TABLET BY MOUTH DAILY","orderedDate":"Fri, 30 Aug 2024 00:00:00 EDT","quantity":5,"expirationDate":"Sun, + 31 Aug 2025 00:00:00 EDT","prescriptionNumber":"2721135","prescriptionName":"METFORMIN + HCL 1000MG 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":24380745,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"57664-0474-18","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"METFORMIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Thu, + 29 Aug 2024 00:00:00 EDT","refillDate":"Sun, 16 Jun 2024 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":23991135,"sig":"TAKE + 1 DAILY FOR 30 DAYS","orderedDate":"Sat, 15 Jun 2024 00:00:00 EDT","quantity":10,"expirationDate":"Mon, + 16 Jun 2025 00:00:00 EDT","prescriptionNumber":"2721072","prescriptionName":"IODOQUINOL + 650MG TAB","dispensedDate":"Mon, 17 Jun 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":"(783)272-1072","cmopNdcNumber":"00013264681","id":23991135,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"7832721072","dispStatus":"Active","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":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Thu, + 03 Oct 2024 00:00:00 EDT","refillDate":"Tue, 30 Jul 2024 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24378219,"sig":"TAKE + ONE TABLET BY MOUTH DAILY --AVOID GRAPEFRUIT JUICE/AVOID ANTACIDS--","orderedDate":"Tue, + 30 Jul 2024 00:00:00 EDT","quantity":5,"expirationDate":"Thu, 31 Jul 2025 + 00:00:00 EDT","prescriptionNumber":"2721127","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":24378219,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Tue, + 15 Oct 2024 00:00:00 EDT","refillDate":"Tue, 30 Jul 2024 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24378220,"sig":"INJECT + 1 UNDER THE SKIN DAILY","orderedDate":"Tue, 30 Jul 2024 00:00:00 EDT","quantity":3,"expirationDate":"Thu, + 31 Jul 2025 00:00:00 EDT","prescriptionNumber":"2721128","prescriptionName":"HEPARIN + 5000U/ML 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":24378220,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00641-0400-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"HEPARIN BOLUS/SUBCUT","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":"Mon, + 21 Oct 2024 00:00:00 EDT","refillDate":"Tue, 30 Jul 2024 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24378221,"sig":"INSTILL + 1 IN FOR OPTHALMIC USE DAILY","orderedDate":"Tue, 30 Jul 2024 00:00:00 EDT","quantity":30,"expirationDate":"Thu, + 31 Jul 2025 00:00:00 EDT","prescriptionNumber":"2721129","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":24378221,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, + 29 Aug 2024 00:00:00 EDT","refillDate":"Sun, 31 Dec 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22545165,"sig":"TAKE + ONE TABLET BY MOUTH DAILY FOR 30 DAYS AUTO TEST --TAKE WITH FOOD--","orderedDate":"Mon, + 04 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 04 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"2720604","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":22545165,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Thu, + 05 Sep 2024 12:05:46 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2408-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"AUTO + TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"BACLOFEN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Tue, + 14 Nov 2023 00:00:00 EST","refillDate":"Mon, 04 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22656196,"sig":null,"orderedDate":"Sun, + 31 Dec 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720604","prescriptionName":"BACLOFEN + 10MG TAB","dispensedDate":"Mon, 01 Jan 2024 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0604","cmopNdcNumber":"00093314705","id":22656196,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720604","dispStatus":"Discontinued","ndc":"00603-2408-32","reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"CAPSULE","color":"ORANGE","frontImprint":"TEVA;3147 + ","backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, + 29 Aug 2024 00:00:00 EDT","refillDate":"Thu, 29 Aug 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22545166,"sig":"TAKE + ONE TABLET DAILY FOR 30 DAYS TEST --AVOID ANTACIDS--","orderedDate":"Mon, + 04 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 04 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"2720605","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":22545166,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Thu, + 05 Sep 2024 12:05:46 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0513-24","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"GABAPENTIN","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":"Mon, 04 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22547960,"sig":null,"orderedDate":"Thu, + 29 Aug 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720605","prescriptionName":"GABAPENTIN + 600MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22547960,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00071-0513-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":"Tue, + 19 Nov 2024 00:00:00 EST","refillDate":"Sun, 09 Jun 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":23899934,"sig":"TAKE + 1 DAILY FOR 30 DAYS TEST","orderedDate":"Mon, 13 May 2024 00:00:00 EDT","quantity":3,"expirationDate":"Wed, + 14 May 2025 00:00:00 EDT","prescriptionNumber":"2721052","prescriptionName":"DISULFIRAM + (ANTABUSE) 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":23899934,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00046-0810-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx + Medication","orderableItem":"DISULFIRAM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"active","refillSubmitDate":"Wed, + 12 Jun 2024 00:00:00 EDT","refillDate":"Mon, 13 May 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23900044,"sig":null,"orderedDate":"Sun, + 09 Jun 2024 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2721052","prescriptionName":"DISULFIRAM + (ANTABUSE) 500MG TAB","dispensedDate":"Mon, 10 Jun 2024 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(783)272-1052","cmopNdcNumber":"00013264681","id":23900044,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"7832721052","dispStatus":"Active","ndc":"00046-0810-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":"active","refillSubmitDate":"Tue, + 15 Oct 2024 00:00:00 EDT","refillDate":"Tue, 03 Dec 2024 00:00:00 EST","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"isTrackable":false,"prescriptionId":24912531,"sig":"TAKE + 1 TEASPOONFUL BY AS DIRECTED DAILY FOR 30 DAYS","orderedDate":"Sat, 07 Dec + 2024 00:00:00 EST","quantity":1,"expirationDate":"Sun, 31 Aug 2025 00:00:00 + EDT","prescriptionNumber":"2721134","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":24912531,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST + PF","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 10:38:04 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":null,"reason":null,"prescriptionNumberIndex":"PF1","prescriptionSource":"PF","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":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"active","refillSubmitDate":"Tue, + 15 Oct 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":24548730,"sig":null,"orderedDate":"Tue, + 03 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2721134","prescriptionName":"ACCU-CHEK + COMFORT CV GLUCOSE SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24548730,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":null,"refillDate":null,"refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22784390,"sig":"TAKE + 10MG BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 17 Dec 2023 00:00:00 + EST","quantity":30,"expirationDate":"Tue, 16 Jan 2024 00:00:00 EST","prescriptionNumber":"3636998","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":22784390,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:10 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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, + 18 Dec 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22784391,"sig":"TAKE + ONE TABLET BY MOUTH THREE (3) TIMES A DAY FOR 30 DAYS","orderedDate":"Sun, + 17 Dec 2023 00:00:00 EST","quantity":90,"expirationDate":"Tue, 16 Jan 2024 + 00:00:00 EST","prescriptionNumber":"3636999","prescriptionName":"BACLOFEN + 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":22784391,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 27 Feb 2024 19:25:10 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00603-2406-21","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"BACLOFEN 10MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, + 26 Feb 2024 00:00:00 EST","refillDate":"Sun, 28 Jan 2024 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22631590,"sig":"APPLY + 1MG TO MOUTH DAILY FOR 30 DAYS TEST INDICATION 06052023 - C ","orderedDate":"Fri, + 29 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sun, 29 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"2720511A","prescriptionName":"CADEXOMER + IODINE 0.9% TOP GEL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + refill request cannot be submitted at this time. Please review the prescription + status and fill date. If you need more of this medication, please call the + pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22631590,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720511","divisionName":"DAYTON","modifiedDate":"Mon, 30 Sep 2024 + 10:00:39 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"08213-0100-40","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION 06052023 - C & A","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"CADEXOMER + IODINE 0.9%","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 11 Dec 2023 00:00:00 EST","refillDate":"Sat, 30 Sep 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22744365,"sig":null,"orderedDate":"Sun, + 28 Jan 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720511A","prescriptionName":"CADEXOMER + IODINE 0.9% TOP GEL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22744365,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"08213-0100-40","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, + 20 Nov 2023 00:00:00 EST","refillDate":"Sat, 30 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22676761,"sig":null,"orderedDate":"Sat, + 25 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720511A","prescriptionName":"CADEXOMER + IODINE 0.9% TOP GEL","dispensedDate":"Sun, 26 Nov 2023 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0511","cmopNdcNumber":"00093314705","id":22676761,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720511","dispStatus":"Expired","ndc":"08213-0100-40","reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":null,"shape":"CAPSULE","color":"ORANGE","frontImprint":"TEVA;3147 + ","backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, + 03 Nov 2023 00:00:00 EDT","refillDate":"Sat, 30 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":22631628,"sig":null,"orderedDate":"Fri, + 03 Nov 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720511A","prescriptionName":"CADEXOMER + IODINE 0.9% TOP GEL","dispensedDate":"Fri, 03 Nov 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22631628,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"08213-0100-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":"Mon, + 02 Oct 2023 00:00:00 EDT","refillDate":"Sun, 01 Oct 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22534598,"sig":"TAKE + 10ML BY MOUTH EVERY DAY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Sat, + 02 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Mon, 02 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"3636979","prescriptionName":"ACETYLCYSTEINE + 20% INHL SOLN 30ML","dispensedDate":"Mon, 04 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":22534598,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Tue, 03 Sep 2024 09:58:19 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00409-3308-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETYLCYSTEINE + 20% 30ML","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, + 02 Oct 2023 00:00:00 EDT","refillDate":"Sun, 03 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22534649,"sig":null,"orderedDate":"Sun, + 01 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636979","prescriptionName":"ACETYLCYSTEINE + 20% INHL SOLN 30ML","dispensedDate":"Mon, 02 Oct 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22534649,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00409-3308-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":"Tue, + 26 Sep 2023 00:00:00 EDT","refillDate":"Sat, 23 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22510593,"sig":"APPLY, + A SEGMENT(S) INSIDE, LOWER LID OF EYE WEEKLY FOR 30 DAYS TEST INDICATION TEST + PATIENT INTRUCTIONS","orderedDate":"Sun, 27 Aug 2023 00:00:00 EDT","quantity":1,"expirationDate":"Tue, + 27 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636889A","prescriptionName":"BACITRACIN + 500 UNT/GM OPH OINT","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":22510593,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636889","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 28 Aug 2024 09:57:41 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00168-0026-38","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"BACITRACIN + 500 UNIT/GM 3.5GM","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 26 Sep 2023 00:00:00 EDT","refillDate":"Mon, 28 Aug 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22510635,"sig":null,"orderedDate":"Sat, + 23 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636889A","prescriptionName":"BACITRACIN + 500 UNT/GM OPH OINT","dispensedDate":"Sun, 24 Sep 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6899","cmopNdcNumber":"00113002239","id":22510635,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366899","dispStatus":"Expired","ndc":"00168-0026-38","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, + 02 Oct 2023 00:00:00 EDT","refillDate":"Wed, 27 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22510594,"sig":"TAKE + ONE CAPSULE BY MOUTH EVERY DAY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Fri, + 01 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sun, 01 Sep 2024 + 00:00:00 EDT","prescriptionNumber":"3636929A","prescriptionName":"DANAZOL + 200MG CAP","dispensedDate":"Sun, 03 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":22510594,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636929","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 02 Sep 2024 09:57:21 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00024-0305-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST + INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"DANAZOL + 200MG","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, + 02 Oct 2023 00:00:00 EDT","refillDate":"Sat, 02 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22534150,"sig":null,"orderedDate":"Wed, + 27 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636929A","prescriptionName":"DANAZOL + 200MG CAP","dispensedDate":"Fri, 29 Sep 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22534150,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00024-0305-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":"Prescription + Discontinued more than 120 Days.","trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, + 17 Oct 2023 00:00:00 EDT","refillDate":"Wed, 18 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22585396,"sig":"TAKE + ONE CAPSULE EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 27 Sep 2023 00:00:00 + EDT","quantity":30,"expirationDate":"Fri, 27 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636961A","prescriptionName":"ETOPOSIDE + 50MG 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":22585396,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636961","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Mon, + 30 Sep 2024 10:00:38 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"51079-0965-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"ETOPOSIDE 50MG","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, + 17 Oct 2023 00:00:00 EDT","refillDate":"Thu, 28 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":22588267,"sig":null,"orderedDate":"Wed, + 18 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636961A","prescriptionName":"ETOPOSIDE + 50MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22588267,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"51079-0965-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}]},"errors":[],"infoMessages":[]}' + recorded_at: Wed, 11 Dec 2024 19:39:18 GMT +recorded_with: VCR 6.3.1 diff --git a/spec/support/vcr_cassettes/rx_client/prescriptions/gets_sorted_list_by_prescription_name.yml b/spec/support/vcr_cassettes/rx_client/prescriptions/gets_sorted_list_by_prescription_name.yml index 5527382821a..b2e5f7ab7ff 100644 --- a/spec/support/vcr_cassettes/rx_client/prescriptions/gets_sorted_list_by_prescription_name.yml +++ b/spec/support/vcr_cassettes/rx_client/prescriptions/gets_sorted_list_by_prescription_name.yml @@ -22,2022 +22,7689 @@ http_interactions: message: OK headers: Date: - - Fri, 24 Nov 2023 19:28:40 GMT + - Wed, 11 Dec 2024 18:21:44 GMT Content-Type: - application/json Content-Length: - - '324860' + - '1309898' X-Amzn-Requestid: - - 2487cfa8-cc31-4f06-810d-dc3a04f26391 + - ffca008d-b8b7-4405-822d-78ea314de710 X-Amzn-Remapped-Connection: - keep-alive X-Amz-Apigw-Id: - - O6voZGScvHMFkfQ= + - Co64tFvOvHMFfyw= X-Amzn-Remapped-Date: - - Fri, 24 Nov 2023 19:28:40 GMT + - Wed, 11 Dec 2024 18:21:44 GMT Strict-Transport-Security: - max-age=16000000; includeSubDomains; preload; body: encoding: ASCII-8BIT - string: '{"failedStationList":"","successfulStationList":null,"lastUpdatedTime":"Fri, - 24 Nov 2023 09:52:16 EST","medicationList":{"medication":[{"refillStatus":"hold","refillSubmitDate":"Thu, - 25 Aug 2022 15:55:30 EDT","refillDate":"Tue, 06 Sep 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21142490,"sig":"TAKE - ONE TABLET BY MOUTH AT BEDTIME FOR 30 DAYS","orderedDate":"Mon, 06 Jun 2022 - 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 07 Jun 2023 00:00:00 EDT","prescriptionNumber":"3636859","prescriptionName":"FAMOTIDINE - 40MG 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":21142490,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Mon, 14 Aug 2023 14:02:19 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - On Hold","ndc":"00172-5729-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"FAMOTIDINE 40MG","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Tue, - 01 Feb 2022 00:00:00 EST","refillRemaining":null,"facilityName":"SLC10 TEST - LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21142491,"sig":"10MG - ORAL DAILY","orderedDate":"Tue, 22 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"1","prescriptionName":"YASMIN - TAB,28","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":21142491,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":"TEST - COMMENT 02222022","divisionName":null,"modifiedDate":"Fri, 24 Nov 2023 09:52:15 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Non-VA","ndc":"50419-0402-03","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":"TEST - DISCLAIMER 02222022","indicationForUse":null,"indicationForUseFlag":null,"category":"Documented - by VA","orderableItem":"ETHINYL ESTRADIOL 0.03-DROSPIRENONE 3MG","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Fri, - 27 May 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"SLC10 TEST - LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21142494,"sig":" - MOUTH DAILY","orderedDate":"Wed, 01 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"4","prescriptionName":"L-ARGININE + string: '{"failedStationList":"","successfulStationList":null,"lastUpdatedTime":"Wed, + 11 Dec 2024 09:38:19 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":21142494,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":null,"modifiedDate":"Fri, - 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Non-VA","ndc":"00904-4215-51","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":null,"category":"Documented - by VA","orderableItem":"L-ARGININE 500MG","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Mon, - 02 May 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"SLC10 TEST - LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21142495,"sig":"10MG - ORAL DAILY","orderedDate":"Fri, 27 May 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"5","prescriptionName":"KETAMINE - 10MG/ML INJ 20ML","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21142495,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":null,"modifiedDate":"Fri, - 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Non-VA","ndc":"61570-0581-10","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Documented - by VA","orderableItem":"K PHOSPHATE 305-NA PHOSTATE 700MG","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Sun, - 22 May 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"SLC10 TEST - LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21142496,"sig":" - TOP DAILY","orderedDate":"Wed, 01 Jun 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"6","prescriptionName":null,"dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21142496,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":null,"modifiedDate":"Fri, - 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + 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, + 11 Dec 2024 09:38:18 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":"MAFENIDE ACETATE 8.5% 480GM","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"transferred","refillSubmitDate":"Wed, - 09 Nov 2022 14:40:35 EST","refillDate":"Wed, 09 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21142513,"sig":"APPLY - 1ML TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Sat, 16 Apr 2022 00:00:00 - EDT","quantity":1,"expirationDate":"Mon, 17 Apr 2023 00:00:00 EDT","prescriptionNumber":"2720330","prescriptionName":"KARAYA - PASTE (2 OUNCES)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review the prescription - status and fill date. If you need more of this medication, please call the - pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142513,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, - 14 Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Transferred","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"KARAYA","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"transferred","refillSubmitDate":null,"refillDate":"Sat, - 16 Apr 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21480096,"sig":null,"orderedDate":"Wed, - 09 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720330","prescriptionName":"KARAYA - PASTE (2 OUNCES)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21480096,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Transferred","ndc":null,"reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"transferred","refillSubmitDate":null,"refillDate":"Sat, - 16 Apr 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21259016,"sig":null,"orderedDate":"Sun, - 07 Aug 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720330","prescriptionName":"KARAYA - PASTE (2 OUNCES)","dispensedDate":"Tue, 06 Sep 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21259016,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Transferred","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"transferred","refillSubmitDate":null,"refillDate":"Sat, - 16 Apr 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21142514,"sig":null,"orderedDate":"Fri, - 06 May 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720330","prescriptionName":"KARAYA - PASTE (2 OUNCES)","dispensedDate":"Sun, 03 Jul 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142514,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Transferred","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Tue, - 01 Feb 2022 00:00:00 EST","refillRemaining":null,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21142515,"sig":"10MG - ORAL DAILY","orderedDate":"Tue, 22 Feb 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"1","prescriptionName":"WARFARIN - (COUMADIN) 10MG TAB U/D","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review the prescription - status and fill date. If you need more of this medication, please call the - pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142515,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":"TEST - COMMENT 02222022","divisionName":null,"modifiedDate":"Fri, 24 Nov 2023 09:52:16 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Non-VA","ndc":null,"reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":"TEST - DISCLAIMER 02222022","indicationForUse":null,"indicationForUseFlag":null,"category":"Documented - by VA","orderableItem":"WARFARIN","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Thu, - 17 Mar 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21142518,"sig":"HIGH - MOUTH DAILY","orderedDate":"Mon, 21 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"4","prescriptionName":"SAW - PALMETTO","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review the prescription - status and fill date. If you need more of this medication, please call the - pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21142518,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Fri, - 24 Nov 2023 09:52:16 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":"SAW PALMETTO","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Sun, - 20 Mar 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21142519,"sig":"HIGH - ORAL DAILY","orderedDate":"Tue, 22 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"5","prescriptionName":null,"dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21142519,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + 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, + 11 Dec 2024 09:38:18 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":"GABAPENTIN","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Tue, - 22 Mar 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21142520,"sig":"LOW - TOP DAILY","orderedDate":"Wed, 23 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":"Mon, - 19 Sep 2022 00:00:00 EDT","prescriptionNumber":"6","prescriptionName":null,"dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21142520,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Fri, - 24 Nov 2023 09:52:16 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":"HALCINONIDE","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Wed, - 23 Mar 2022 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21142521,"sig":"HIGH - TOP WEEKLY","orderedDate":"Wed, 23 Mar 2022 00:00:00 EDT","quantity":null,"expirationDate":"Sun, - 22 May 2022 00:00:00 EDT","prescriptionNumber":"8","prescriptionName":"BAB - OTIC SOL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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, + 11 Dec 2024 09:38:18 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":21142521,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Fri, - 24 Nov 2023 09:52:16 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":"BACID","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, - 29 Aug 2022 14:36:05 EDT","refillDate":"Thu, 25 Aug 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21227553,"sig":"TAKE - 5G DAILY FOR 30 DAYS TEST TEST INDICATION TEST","orderedDate":"Thu, 25 Aug - 2022 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 26 Aug 2023 00:00:00 - EDT","prescriptionNumber":"2720245A","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":21227553,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720245","divisionName":"DAYTON","modifiedDate":"Sun, 27 Aug 2023 - 20:43:55 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACITRETIN","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, - 20 Sep 2022 11:21:40 EDT","refillDate":"Tue, 20 Sep 2022 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21296515,"sig":"TAKE - 5G DAILY FOR 30 DAYS TEST TEST INDICATION TEST","orderedDate":"Tue, 20 Sep - 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 - EDT","prescriptionNumber":"2720245B","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":"(542)272-0245","cmopNdcNumber":"00013264681","id":21296515,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720245A","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 - 00:05:07 EDT","institutionId":null,"dialCmopDivisionPhone":"5422720245","dispStatus":"Expired","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACITRETIN","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, - 15 Nov 2022 12:58:24 EST","refillDate":"Tue, 15 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21296516,"sig":"TAKE - ONE CAPSULE DAILY FOR 30 DAYS TEST","orderedDate":"Tue, 20 Sep 2022 00:00:00 - EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"2720298A","prescriptionName":"ACYCLOVIR - 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":21296516,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720298","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 - 00:05:07 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00172-4266-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION TEST","indicationForUseFlag":null,"category":"Rx Medication","orderableItem":"ACYCLOVIR","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, - 20 Sep 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21489396,"sig":null,"orderedDate":"Tue, - 15 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720298A","prescriptionName":"ACYCLOVIR - 200MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489396,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, - 08 Nov 2022 14:12:04 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21296517,"sig":"TAKE - ONE TABLET 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":"2720290A","prescriptionName":"AMITRIPTYLINE - HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":"(983)272-0389","cmopNdcNumber":"00013264681","id":21296517,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720290","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 - 00:05:07 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00603-2212-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"AMITRIPTYLINE","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, - 18 Oct 2022 16:12:26 EDT","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21296518,"sig":"TAKE - THIS IS FOR TESTING %% BY MOUTH WEEKLY HALF ## FOR 1 MINUTE, AND TAKE 50% - TAKE 50% FOR 1 HOUR FOLLOW INSTRUCTIONS CAREFULLY ","orderedDate":"Tue, 20 - Sep 2022 00:00:00 EDT","quantity":10,"expirationDate":"Thu, 21 Sep 2023 00:00:00 - EDT","prescriptionNumber":"2720326A","prescriptionName":"DISULFIRAM (ANTABUSE) - 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21296518,"userId":17621060,"providerFirstName":"RACHNA","providerLastName":"CHOUDHRY","remarks":"RENEWED - FROM RX # 2720326","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 - 00:05:07 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00046-0810-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"DISULFIRAM","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, - 20 Sep 2022 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21409695,"sig":null,"orderedDate":"Tue, - 18 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720326A","prescriptionName":"DISULFIRAM - (ANTABUSE) 500MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21409695,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, - 08 Nov 2022 14:12:04 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21296519,"sig":"TAKE - 1MG 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":"2720305A","prescriptionName":"IODOQUINOL + 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":"(983)272-0389","cmopNdcNumber":"00013264681","id":21296519,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720305","divisionName":"DAYTON","modifiedDate":"Fri, 22 Sep 2023 - 00:05:07 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00516-0093-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"IODOQUINOL","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, - 04 Nov 2022 10:29:30 EDT","refillDate":"Fri, 04 Nov 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21296557,"sig":"TAKE - ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 20 Sep 2022 00:00:00 - EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"3636841A","prescriptionName":"KETOCONAZOLE - 200MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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, + 11 Dec 2024 09:38:19 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":21296557,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 3636841","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, - 22 Sep 2023 00:05:06 EDT","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","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, - 08 Nov 2022 14:11:24 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21296558,"sig":"TAKE - ONE-HALF TABLET EVERY TWELVE (12) HOURS FOR 30 DAYS","orderedDate":"Tue, 20 - Sep 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 - EDT","prescriptionNumber":"3636845A","prescriptionName":"LAMIVUDINE 100MG + 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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":"(178)636-6871","cmopNdcNumber":"00113002239","id":21296558,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 3636845","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, - 22 Sep 2023 00:05:06 EDT","institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00173-0662-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LAMIVUDINE 100MG","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"unknown","refillSubmitDate":"Tue, - 08 Nov 2022 14:11:24 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21296559,"sig":"TAKE - ONE TABLET TWO (2) TIMES PER DAY, WITH FOOD FOR 30 DAYS","orderedDate":"Tue, - 20 Sep 2022 00:00:00 EDT","quantity":60,"expirationDate":"Thu, 21 Sep 2023 - 00:00:00 EDT","prescriptionNumber":"3636827A","prescriptionName":"NAPROXEN - 250MG 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":21296559,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 3636827","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, - 22 Sep 2023 00:05:06 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Unknown","ndc":"53746-0188-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"NAPROXEN 250MG","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, - 31 Oct 2022 11:50:45 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21296560,"sig":"TAKE - ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 20 Sep 2022 00:00:00 - EDT","quantity":30,"expirationDate":"Thu, 21 Sep 2023 00:00:00 EDT","prescriptionNumber":"3636831A","prescriptionName":"PANTOPRAZOLE - NA 40MG 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":21296560,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 3636831","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, - 22 Sep 2023 00:05:06 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00008-0841-81","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"PANTOPRAZOLE NA 40MG","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, - 13 Mar 2023 15:56:27 EDT","refillDate":"Fri, 10 Mar 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21430917,"sig":"TAKE - 1MG BY MOUTH 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":"3636878","prescriptionName":"PANCREASE - MT 16 EC CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21430917,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Tue, 03 Oct 2023 12:06:08 EDT","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","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, - 13 Mar 2023 15:56:27 EDT","refillDate":"Sat, 01 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21895796,"sig":null,"orderedDate":"Fri, - 10 Mar 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636878","prescriptionName":"PANCREASE - MT 16 EC CAP","dispensedDate":"Fri, 10 Mar 2023 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6878","cmopNdcNumber":"00113002239","id":21895796,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366878","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, - 01 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21544348,"sig":null,"orderedDate":"Thu, - 01 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636878","prescriptionName":"PANCREASE - MT 16 EC CAP","dispensedDate":"Thu, 01 Dec 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21544348,"userId":17621060,"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,"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","isRefillable":false,"isTrackable":false,"prescriptionId":21431051,"sig":null,"orderedDate":"Fri, - 21 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636878","prescriptionName":"PANCREASE - MT 16 EC CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21431051,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, - 31 Oct 2022 11:50:45 EDT","refillDate":"Mon, 31 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21430735,"sig":"INJECT - 1ML INTRAVENOUS ONCE FOR 30 DAYS","orderedDate":"Thu, 01 Sep 2022 00:00:00 - EDT","quantity":1,"expirationDate":"Sat, 02 Sep 2023 00:00:00 EDT","prescriptionNumber":"3636877","prescriptionName":"PAMIDRONATE - DISODIUM 3MG/ML INJ 10ML","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":null,"cmopNdcNumber":null,"id":21430735,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Tue, 05 Sep 2023 09:43:58 EDT","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","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 03 Nov 2022 14:12:03 EDT","refillDate":"Mon, 21 Nov 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21435637,"sig":"TAKE - 10MG BY MOUTH 30 MINUTES BEFORE MEALS AND AT BEDTIME FOR 30 DAYS","orderedDate":"Sun, - 02 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Tue, 03 Oct 2023 - 00:00:00 EDT","prescriptionNumber":"3636884","prescriptionName":"TACRINE HCL + 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":"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":"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":"(178)636-6871","cmopNdcNumber":null,"id":21435637,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Wed, 04 Oct 2023 16:10:24 EDT","institutionId":null,"dialCmopDivisionPhone":"1786366871","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","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 03 Nov 2022 14:12:03 EDT","refillDate":"Sun, 02 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21445446,"sig":null,"orderedDate":"Mon, - 21 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636884","prescriptionName":"TACRINE - HCL 10MG CAP","dispensedDate":"Wed, 02 Nov 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":"00113002239","id":21445446,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, - 02 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21436944,"sig":null,"orderedDate":"Sun, - 30 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636884","prescriptionName":"TACRINE - HCL 10MG CAP","dispensedDate":"Sun, 30 Oct 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21436944,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Mon, 21 Nov 2022 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21435638,"sig":"APPLY - APPLICATION(S) TO THE AFFECTED AREA TWO (2) TIMES A DAY FOR 60 DAYS","orderedDate":"Sun, - 02 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 03 Oct 2023 - 00:00:00 EDT","prescriptionNumber":"3636885","prescriptionName":"TACROLIMUS - 0.1% 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":21435638,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Wed, 04 Oct 2023 16:10:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00469-5202-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"TACROLIMUS 0.1%","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Sun, 02 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21494033,"sig":null,"orderedDate":"Mon, - 21 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636885","prescriptionName":"TACROLIMUS - 0.1% TOP OINT","dispensedDate":"Mon, 14 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494033,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, - 02 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21436945,"sig":null,"orderedDate":"Sun, - 30 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636885","prescriptionName":"TACROLIMUS - 0.1% TOP OINT","dispensedDate":"Sun, 30 Oct 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21436945,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, - 13 Mar 2023 16:01:28 EDT","refillDate":"Mon, 13 Mar 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21435639,"sig":"TAKE - ONE TABLET BY MOUTH EVERY TWELVE (12) HOURS FOR 30 DAYS","orderedDate":"Sun, - 02 Oct 2022 00:00:00 EDT","quantity":60,"expirationDate":"Tue, 03 Oct 2023 - 00:00:00 EDT","prescriptionNumber":"3636886","prescriptionName":"TAMOXIFEN - CITRATE 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":21435639,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Wed, 04 Oct 2023 16:10:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00378-0144-91","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"TAMOXIFEN 10MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, - 13 Mar 2023 16:01:28 EDT","refillDate":"Sun, 02 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21900309,"sig":null,"orderedDate":"Mon, - 13 Mar 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636886","prescriptionName":"TAMOXIFEN - CITRATE 10MG TAB","dispensedDate":"Mon, 13 Mar 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21900309,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, - 02 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21647474,"sig":null,"orderedDate":"Sun, - 18 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636886","prescriptionName":"TAMOXIFEN - CITRATE 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647474,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, - 02 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21436946,"sig":null,"orderedDate":"Sun, - 30 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636886","prescriptionName":"TAMOXIFEN - CITRATE 10MG TAB","dispensedDate":"Sun, 30 Oct 2022 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21436946,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Wed, - 16 Nov 2022 14:03:44 EST","refillDate":"Tue, 06 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21489541,"sig":"APPLY - SMALL AMOUNT TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Mon, 17 Oct - 2022 00:00:00 EDT","quantity":2,"expirationDate":"Wed, 18 Oct 2023 00:00:00 - EDT","prescriptionNumber":"2720412","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":21489541,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Thu, - 19 Oct 2023 07:16:18 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00003-0248-20","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"HALCINONIDE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Wed, - 16 Nov 2022 14:03:44 EST","refillDate":"Mon, 17 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21489877,"sig":null,"orderedDate":"Tue, - 06 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720412","prescriptionName":"HALCINONIDE - 0.1% OINT","dispensedDate":"Mon, 14 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489877,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, - 17 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21489569,"sig":null,"orderedDate":"Mon, - 14 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720412","prescriptionName":"HALCINONIDE - 0.1% OINT","dispensedDate":"Mon, 14 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489569,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, - 19 Dec 2022 16:29:59 EST","refillDate":"Mon, 19 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21489829,"sig":"INSTILL - 1 DROP IN AFFECTED EAR WEEKLY FOR 30 DAYS","orderedDate":"Mon, 17 Oct 2022 - 00:00:00 EDT","quantity":2,"expirationDate":"Wed, 18 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720413","prescriptionName":"HC - 1%/NEOMYCIN 3.5MG/POLYMYXIN OTIC 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":21489829,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Thu, - 19 Oct 2023 07:16:18 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"24208-0635-62","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"CORTISPORIN","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, - 19 Dec 2022 16:29:59 EST","refillDate":"Mon, 17 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21647480,"sig":null,"orderedDate":"Mon, - 19 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720413","prescriptionName":"HC - 1%/NEOMYCIN 3.5MG/POLYMYXIN OTIC SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647480,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Mon, - 17 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21489878,"sig":null,"orderedDate":"Sun, - 13 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720413","prescriptionName":"HC - 1%/NEOMYCIN 3.5MG/POLYMYXIN OTIC SUSP","dispensedDate":"Sun, 13 Nov 2022 00:00:00 - EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21489878,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 14:41:49 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21492981,"sig":"TAKE - 1 TABLET BY MOUTH 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":"2720414","prescriptionName":"HCTZ - 12.5/LISINOPRIL 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":"(983)272-0389","cmopNdcNumber":null,"id":21492981,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 20 Oct 2023 09:51:40 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00591-0860-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"HYDROCHLOROTHIAZIDE/LISINOPRIL","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 14:41:49 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21493924,"sig":null,"orderedDate":"Wed, - 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720414","prescriptionName":"HCTZ - 12.5/LISINOPRIL 10MG TAB","dispensedDate":"Thu, 10 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":"00013264681","id":21493924,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, - 18 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21493006,"sig":null,"orderedDate":"Tue, - 15 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720414","prescriptionName":"HCTZ - 12.5/LISINOPRIL 10MG TAB","dispensedDate":"Tue, 15 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21493006,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, - 10 Apr 2023 17:00:49 EDT","refillDate":"Thu, 27 Apr 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21493054,"sig":"WASH - DROP(S) THE AFFECTED AREA WEEKLY FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 - 00:00:00 EDT","quantity":2,"expirationDate":"Thu, 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636892","prescriptionName":"SALICYLIC - ACID 2% WASH","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":21493054,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 20 Oct 2023 09:51:39 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"02993-6077-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"SALICYLIC ACID 2%","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, - 10 Apr 2023 17:00:49 EDT","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21997578,"sig":null,"orderedDate":"Thu, - 27 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636892","prescriptionName":"SALICYLIC - ACID 2% WASH","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21997578,"userId":17621060,"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,"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","isRefillable":false,"isTrackable":false,"prescriptionId":21995864,"sig":null,"orderedDate":"Fri, - 07 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636892","prescriptionName":"SALICYLIC - ACID 2% WASH","dispensedDate":"Fri, 07 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(443)636-6892","cmopNdcNumber":"00113002239","id":21995864,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4436366892","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":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","isRefillable":false,"isTrackable":false,"prescriptionId":21647476,"sig":null,"orderedDate":"Sun, - 18 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636892","prescriptionName":"SALICYLIC - ACID 2% WASH","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647476,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21493332,"sig":"INSERT - 10MG IN RECTUM WEEKLY FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 00:00:00 - EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636893","prescriptionName":"HEMORRHOIDAL - RTL SUPP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21493332,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 20 Oct 2023 09:51:39 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00904-7688-22","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"HEMORRHOIDAL","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21493832,"sig":null,"orderedDate":"Wed, - 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636893","prescriptionName":"HEMORRHOIDAL - RTL SUPP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493832,"userId":17621060,"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,"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","isRefillable":false,"isTrackable":false,"prescriptionId":21493370,"sig":null,"orderedDate":"Wed, - 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636893","prescriptionName":"HEMORRHOIDAL - RTL SUPP","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493370,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21493770,"sig":"TAKE - ONE TABLET EVERY DAY, 30 MINUTES BEFORE A MEAL FOR 30 DAYS","orderedDate":"Tue, - 18 Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 - 00:00:00 EDT","prescriptionNumber":"3636894","prescriptionName":"RABEPRAZOLE + 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":"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":"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, 11 Dec 2024 09:38:19 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":21493770,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 20 Oct 2023 09:51:39 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"62856-0243-90","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"RABEPRAZOLE NA 20MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21494034,"sig":null,"orderedDate":"Wed, - 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636894","prescriptionName":"RABEPRAZOLE - NA 20MG EC TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494034,"userId":17621060,"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,"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","isRefillable":false,"isTrackable":false,"prescriptionId":21493833,"sig":null,"orderedDate":"Wed, - 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636894","prescriptionName":"RABEPRAZOLE - NA 20MG EC TAB","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493833,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21493771,"sig":"INJECT - 1ML INTO THE MUSCLE ONCE FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 00:00:00 - EDT","quantity":1,"expirationDate":"Thu, 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636895","prescriptionName":"RABIES + 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":21493771,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 20 Oct 2023 09:51:39 EDT","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","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21494035,"sig":null,"orderedDate":"Wed, - 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636895","prescriptionName":"RABIES - VACCINE 2.5 UNITS/VIAL KIT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494035,"userId":17621060,"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,"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","isRefillable":false,"isTrackable":false,"prescriptionId":21493834,"sig":null,"orderedDate":"Wed, - 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636895","prescriptionName":"RABIES - VACCINE 2.5 UNITS/VIAL KIT","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493834,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21493772,"sig":"TAKE - 1MG FOUR TIMES A DAY IF NEEDED FOR 60 DAYS * SAFE IF SWALLOWED. AVOID FOOD + 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":1,"expirationDate":"Thu, 19 Oct 2023 00:00:00 - EDT","prescriptionNumber":"3636896","prescriptionName":"RADIACARE WOUND RINSE + 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":21493772,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 20 Oct 2023 09:51:39 EDT","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","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21494036,"sig":null,"orderedDate":"Wed, - 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636896","prescriptionName":"RADIACARE - WOUND RINSE SUSP ORAL","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494036,"userId":17621060,"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,"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","isRefillable":false,"isTrackable":false,"prescriptionId":21493835,"sig":null,"orderedDate":"Wed, - 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636896","prescriptionName":"RADIACARE - WOUND RINSE SUSP ORAL","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493835,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, - 07 Feb 2023 09:17:03 EST","refillDate":"Tue, 07 Feb 2023 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21437087,"sig":"INJECT - 1ML IVP WEEKLY FOR 30 DAYS","orderedDate":"Fri, 07 Oct 2022 00:00:00 EDT","quantity":4,"expirationDate":"Sun, - 08 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720407","prescriptionName":"LABETALOL - 5MG/ML INJ 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":"(983)272-0389","cmopNdcNumber":null,"id":21437087,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, - 09 Oct 2023 09:50:42 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00085-0362-07","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LABETALOL","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, - 07 Feb 2023 09:17:03 EST","refillDate":"Fri, 07 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21787651,"sig":null,"orderedDate":"Tue, - 07 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720407","prescriptionName":"LABETALOL - 5MG/ML INJ 20ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21787651,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, - 07 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21544351,"sig":null,"orderedDate":"Wed, - 30 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720407","prescriptionName":"LABETALOL - 5MG/ML INJ 20ML","dispensedDate":"Wed, 30 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21544351,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Fri, - 07 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21437319,"sig":null,"orderedDate":"Thu, - 27 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720407","prescriptionName":"LABETALOL - 5MG/ML INJ 20ML","dispensedDate":"Thu, 27 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21437319,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, - 01 Nov 2022 14:53:29 EDT","refillDate":"Thu, 01 Dec 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21437088,"sig":"TAKE - 15ML BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Wed, 12 Oct 2022 00:00:00 - EDT","quantity":2,"expirationDate":"Fri, 13 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720408","prescriptionName":"LACTULOSE - 10GM/15ML SYRUP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review 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":21437088,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Sat, - 14 Oct 2023 09:52:44 EDT","institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":"00032-1602-78","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LACTULOSE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Tue, - 01 Nov 2022 14:53:29 EDT","refillDate":"Wed, 12 Oct 2022 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21437320,"sig":null,"orderedDate":"Thu, - 01 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720408","prescriptionName":"LACTULOSE - 10GM/15ML SYRUP","dispensedDate":"Tue, 25 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":"00013264681","id":21437320,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Wed, - 12 Oct 2022 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21437229,"sig":null,"orderedDate":"Tue, - 01 Nov 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720408","prescriptionName":"LACTULOSE - 10GM/15ML SYRUP","dispensedDate":"Thu, 27 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":null,"id":21437229,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 01 Dec 2022 11:58:47 EST","refillDate":"Sat, 26 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21437089,"sig":"INJECT - 1ML IVPB WEEKLY","orderedDate":"Sun, 02 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Tue, - 03 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720409","prescriptionName":"LACTATED - RINGER''S INJ 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":21437089,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, - 04 Oct 2023 16:10:25 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00264-1750-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LACTATED RINGER''S 1000ML","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 01 Dec 2022 11:58:47 EST","refillDate":"Sun, 02 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21532503,"sig":null,"orderedDate":"Sat, - 26 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720409","prescriptionName":"LACTATED - RINGER''S INJ 1000ML","dispensedDate":"Sat, 26 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21532503,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sun, - 02 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21437262,"sig":null,"orderedDate":"Sat, - 22 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720409","prescriptionName":"LACTATED - RINGER''S INJ 1000ML","dispensedDate":"Sat, 22 Oct 2022 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21437262,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21493773,"sig":"TAKE - ONE TABLET EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 00:00:00 - EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636897","prescriptionName":"RALOXIFENE + 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":21493773,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 20 Oct 2023 09:51:39 EDT","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","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21494037,"sig":null,"orderedDate":"Wed, - 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636897","prescriptionName":"RALOXIFENE - HCL 60MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494037,"userId":17621060,"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,"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","isRefillable":false,"isTrackable":false,"prescriptionId":21493836,"sig":null,"orderedDate":"Wed, - 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636897","prescriptionName":"RALOXIFENE - HCL 60MG TAB","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493836,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Wed, 07 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21493774,"sig":"TAKE - ONE CAPSULE WEEKLY FOR 30 DAYS","orderedDate":"Tue, 18 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Thu, - 19 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636898","prescriptionName":"RAMIPRIL + 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":21493774,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 20 Oct 2023 09:51:39 EDT","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","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 17 Nov 2022 15:00:05 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21494038,"sig":null,"orderedDate":"Wed, - 07 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636898","prescriptionName":"RAMIPRIL - 1.25MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21494038,"userId":17621060,"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,"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","isRefillable":false,"isTrackable":false,"prescriptionId":21493837,"sig":null,"orderedDate":"Wed, - 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636898","prescriptionName":"RAMIPRIL - 1.25MG CAP","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493837,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, - 09 Dec 2022 11:35:20 EST","refillDate":"Fri, 09 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21493893,"sig":"TAKE - 1 TEASPOONFUL BY MOUTH 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":"2720415","prescriptionName":"SALIVART - 2.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":21493893,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 20 Oct 2023 09:51:40 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00386-0009-75","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"SALIVA","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, - 09 Dec 2022 11:35:20 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21574114,"sig":null,"orderedDate":"Fri, - 09 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720415","prescriptionName":"SALIVART - 2.5 OZ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21574114,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, - 18 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21493925,"sig":null,"orderedDate":"Wed, - 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720415","prescriptionName":"SALIVART - 2.5 OZ","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493925,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Fri, - 16 Dec 2022 16:37:23 EST","refillDate":"Fri, 16 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21493894,"sig":"USE - 1 INHALATION BY ORAL INHALATION WEEKLY FOR 30 DAYS","orderedDate":"Tue, 18 - Oct 2022 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 19 Oct 2023 00:00:00 - EDT","prescriptionNumber":"2720416","prescriptionName":"SALMETEROL 50MCG/BLSTR - PO INHL DISKUS 60","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21493894,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 20 Oct 2023 09:51:40 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00173-0521-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"SALMETEROL DISKUS","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Fri, - 16 Dec 2022 16:37:23 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21598635,"sig":null,"orderedDate":"Fri, - 16 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720416","prescriptionName":"SALMETEROL - 50MCG/BLSTR PO INHL DISKUS 60","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21598635,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, - 18 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21493926,"sig":null,"orderedDate":"Wed, - 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720416","prescriptionName":"SALMETEROL - 50MCG/BLSTR PO INHL DISKUS 60","dispensedDate":"Wed, 16 Nov 2022 00:00:00 - EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493926,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, - 19 Dec 2022 16:29:59 EST","refillDate":"Mon, 19 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21493895,"sig":"TAKE - ONE TABLET BY MOUTH 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":"2720417","prescriptionName":"SALSALATE - 750MG 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":21493895,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 20 Oct 2023 09:51:40 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"53265-0133-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"SALSALATE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Mon, - 19 Dec 2022 16:29:59 EST","refillDate":"Tue, 18 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21647481,"sig":null,"orderedDate":"Mon, - 19 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720417","prescriptionName":"SALSALATE - 750MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647481,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, - 18 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21493927,"sig":null,"orderedDate":"Wed, - 16 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720417","prescriptionName":"SALSALATE - 750MG TAB","dispensedDate":"Wed, 16 Nov 2022 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21493927,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Mon, - 07 Nov 2022 13:24:04 EST","refillDate":"Mon, 07 Nov 2022 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21457694,"sig":"APPLY - 1 CONTENTS TO THE AFFECTED AREA WEEKLY FOR 30 DAYS TEST INDICATION","orderedDate":"Sat, - 08 Oct 2022 00:00:00 EDT","quantity":2,"expirationDate":"Mon, 09 Oct 2023 - 00:00:00 EDT","prescriptionNumber":"3636887","prescriptionName":"OATMEAL,COLLOIDAL - 100% BATH PWDR","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":"00113002239","id":21457694,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 10 Oct 2023 - 09:02:34 EDT","institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"04650-0034-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"OATMEAL, - COLLODIAL 100% BATH","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, - 14 Feb 2023 11:29:06 EST","refillDate":"Sun, 12 Feb 2023 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21457695,"sig":"INJECT - 10MG UNDER THE SKIN EVERY TWELVE (12) HOURS FOR 60 DAYS TEST INDICATION TEST - PATIENT INSTRUCTIONS","orderedDate":"Sat, 08 Oct 2022 00:00:00 EDT","quantity":3,"expirationDate":"Mon, - 09 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636888","prescriptionName":"OCTREOTIDE - ACETATE 1000MCG/ML INJ *SUBQ*","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":21457695,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Tue, 10 Oct 2023 - 09:02:34 EDT","institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":"00078-0184-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"OCTREOTIDE - ACETATE 1000MCG/ML","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, - 08 Oct 2022 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21801650,"sig":null,"orderedDate":"Sun, - 12 Feb 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636888","prescriptionName":"OCTREOTIDE - ACETATE 1000MCG/ML INJ *SUBQ*","dispensedDate":"Sun, 12 Feb 2023 00:00:00 - EST","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21801650,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, - 08 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22219746,"sig":null,"orderedDate":"Sun, - 18 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636888","prescriptionName":"OCTREOTIDE - ACETATE 1000MCG/ML INJ *SUBQ*","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22219746,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Sat, - 08 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21457801,"sig":null,"orderedDate":"Fri, - 28 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636888","prescriptionName":"OCTREOTIDE - ACETATE 1000MCG/ML INJ *SUBQ*","dispensedDate":"Sat, 05 Nov 2022 00:00:00 - EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(178)636-6871","cmopNdcNumber":null,"id":21457801,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1786366871","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, - 01 Dec 2022 14:02:29 EST","refillDate":"Tue, 01 Nov 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21462351,"sig":"APPLY, - A SEGMENT(S) INSIDE, LOWER LID OF EYE WEEKLY FOR 30 DAYS TEST INDICATION TEST - PATIENT INTRUCTIONS","orderedDate":"Sun, 09 Oct 2022 00:00:00 EDT","quantity":1,"expirationDate":"Tue, - 10 Oct 2023 00:00:00 EDT","prescriptionNumber":"3636889","prescriptionName":"BACITRACIN - 500 UNT/GM OPH 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":21462351,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, 11 Oct 2023 - 11:24:23 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0026-38","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"BACITRACIN - 500 UNIT/GM 3.5GM","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, - 18 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21462578,"sig":null,"orderedDate":"Tue, - 01 Nov 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636889","prescriptionName":"BACITRACIN - 500 UNT/GM OPH OINT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21462578,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Thu, - 01 Dec 2022 14:02:29 EST","refillDate":"Wed, 30 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21462352,"sig":"DEVICE(S) - MISC WEEKLY FOR 30 DAYS","orderedDate":"Tue, 08 Nov 2022 00:00:00 EST","quantity":1,"expirationDate":"Thu, - 09 Nov 2023 00:00:00 EST","prescriptionNumber":"3636794A","prescriptionName":"YANKAUER - SUCTION TIP (EA)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21462352,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 3636794","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, - 10 Nov 2023 09:51:42 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 ","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"expired","refillSubmitDate":"Thu, - 01 Dec 2022 14:02:29 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21543288,"sig":null,"orderedDate":"Wed, - 30 Nov 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636794A","prescriptionName":"YANKAUER - SUCTION TIP (EA)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21543288,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, - 19 Dec 2022 16:29:59 EST","refillDate":"Mon, 19 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21462355,"sig":"APPLY - 10ML TO AFFECTED AREA DAILY FOR 60 DAYS","orderedDate":"Sun, 09 Oct 2022 00:00:00 - EDT","quantity":1,"expirationDate":"Tue, 10 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720410","prescriptionName":"BACT-NEOMY-POLYMIX - TOP OINT (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":21462355,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, - 11 Oct 2023 11:24:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00168-0012-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"BACITRACIN/NEOMYCIN/POLYMYXIN B","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Mon, - 19 Dec 2022 16:29:59 EST","refillDate":"Sun, 09 Oct 2022 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21647479,"sig":null,"orderedDate":"Mon, - 19 Dec 2022 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720410","prescriptionName":"BACT-NEOMY-POLYMIX - TOP OINT (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21647479,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, - 09 Oct 2022 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21462581,"sig":null,"orderedDate":"Sat, - 29 Oct 2022 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720410","prescriptionName":"BACT-NEOMY-POLYMIX - TOP OINT (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21462581,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":"Tue, - 08 Nov 2022 14:12:04 EST","refillDate":"Tue, 08 Nov 2022 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21462356,"sig":"USE - BAG AS DIRECTED MONTHLY FOR 30 DAYS","orderedDate":"Sun, 09 Oct 2022 00:00:00 - EDT","quantity":1,"expirationDate":"Tue, 10 Oct 2023 00:00:00 EDT","prescriptionNumber":"2720411","prescriptionName":"BAG, - LEG 24OZ #4153 (DAVOL)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review the prescription - status and fill date. If you need more of this medication, please call the - pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":21462356,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, - 11 Oct 2023 11:24:24 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"URINARY LEG ","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 19 Jan 2023 11:40:35 EST","refillDate":"Sun, 29 Jan 2023 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21668157,"sig":"TAKE - ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Sat, - 10 Dec 2022 00:00:00 EST","quantity":30,"expirationDate":"Mon, 11 Dec 2023 - 00:00:00 EST","prescriptionNumber":"2720433","prescriptionName":"RABEPRAZOLE - NA 20MG EC TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":"(983)272-0433","cmopNdcNumber":null,"id":21668157,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 - EST","institutionId":null,"dialCmopDivisionPhone":"9832720433","dispStatus":"Active: - Refill in Process","ndc":"62856-0243-90","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"RABEPRAZOLE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 19 Jan 2023 11:40:35 EST","refillDate":"Sat, 10 Dec 2022 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21705083,"sig":null,"orderedDate":"Sun, - 29 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720433","prescriptionName":"RABEPRAZOLE - NA 20MG EC TAB","dispensedDate":"Tue, 17 Jan 2023 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-2433","cmopNdcNumber":"00113002239","id":21705083,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832722433","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Sat, - 10 Dec 2022 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21668287,"sig":null,"orderedDate":"Sat, - 07 Jan 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720433","prescriptionName":"RABEPRAZOLE - NA 20MG EC TAB","dispensedDate":"Sat, 07 Jan 2023 00:00:00 EST","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0433","cmopNdcNumber":null,"id":21668287,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720433","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Wed, - 29 Mar 2023 15:02:10 EDT","refillDate":"Mon, 27 Mar 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21760139,"sig":"TAKE - ONE TABLET BY MOUTH DAILY FOR 30 DAYS --TAKE WITH FOOD--","orderedDate":"Wed, - 01 Feb 2023 00:00:00 EST","quantity":30,"expirationDate":"Fri, 02 Feb 2024 - 00:00:00 EST","prescriptionNumber":"2720311A","prescriptionName":"BACLOFEN - 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21760139,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720311","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00603-2408-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"BACLOFEN","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Wed, - 01 Feb 2023 00:00:00 EST","refillRemaining":5,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21956964,"sig":null,"orderedDate":"Mon, - 27 Mar 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720311A","prescriptionName":"BACLOFEN - 10MG TAB","dispensedDate":"Mon, 27 Mar 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":"00013264681","id":21956964,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, - 11 Apr 2023 18:20:39 EDT","refillDate":"Tue, 21 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21871320,"sig":"TAKE - 10MG BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Sat, 04 Feb 2023 00:00:00 - EST","quantity":30,"expirationDate":"Mon, 05 Feb 2024 00:00:00 EST","prescriptionNumber":"2720466","prescriptionName":"ABACAVIR - SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":21871320,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","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/LAMIVUDINE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sat, - 04 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21926353,"sig":null,"orderedDate":"Tue, - 21 Mar 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720466","prescriptionName":"ABACAVIR - SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":"Tue, 21 Mar 2023 00:00:00 - EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0466","cmopNdcNumber":"00013264681","id":21926353,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720466","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 14 Apr 2023 15:19:56 EDT","refillDate":"Sun, 30 Apr 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21997544,"sig":"DEVICE(S) - TRACH WEEKLY FOR 30 DAYS","orderedDate":"Sat, 11 Mar 2023 00:00:00 EST","quantity":1,"expirationDate":"Mon, - 11 Mar 2024 00:00:00 EDT","prescriptionNumber":"3636919","prescriptionName":"LARYNG - TUBE, CANNULA #8 LGT","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":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":21997544,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 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":"LARYNG TUBE, CANNULA #8 LGT","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, - 14 Apr 2023 15:19:56 EDT","refillDate":"Sat, 11 Mar 2023 00:00:00 EST","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22013715,"sig":null,"orderedDate":"Sun, - 30 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636919","prescriptionName":"LARYNG - TUBE, CANNULA #8 LGT","dispensedDate":"Wed, 12 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22013715,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Sat, - 11 Mar 2023 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":21997579,"sig":null,"orderedDate":"Fri, - 07 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636919","prescriptionName":"LARYNG - TUBE, CANNULA #8 LGT","dispensedDate":"Fri, 07 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(443)636-6919","cmopNdcNumber":"00113002239","id":21997579,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4436366919","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 25 Apr 2023 14:09:47 EDT","refillDate":"Tue, 02 May 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22006307,"sig":"TAKE - 10MG BY MOUTH DAILY FOR 30 DAYS TEST INDICATION TEST PATIENT INTRUCTIONS","orderedDate":"Mon, - 13 Mar 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 13 Mar 2024 - 00:00:00 EDT","prescriptionNumber":"2720477","prescriptionName":"LANSOPRAZOLE - 30MG SA 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":22006307,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00300-3046-13","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"LANSOPRAZOLE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 25 Apr 2023 14:09:47 EDT","refillDate":"Mon, 13 Mar 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22057357,"sig":null,"orderedDate":"Tue, - 02 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720477","prescriptionName":"LANSOPRAZOLE - 30MG SA CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22057357,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Mon, - 13 Mar 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22006373,"sig":null,"orderedDate":"Sun, - 09 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720477","prescriptionName":"LANSOPRAZOLE - 30MG SA CAP","dispensedDate":"Sun, 09 Apr 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22006373,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 30 May 2023 13:25:02 EDT","refillDate":"Tue, 30 May 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22006308,"sig":"TUBE - AS DIRECTED 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":"2720478","prescriptionName":"LARYNGECTOMY - TUBE STAIN STL SIZE 8","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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, + 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":22006308,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 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","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 30 May 2023 13:25:02 EDT","refillDate":"Mon, 13 Mar 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22097624,"sig":null,"orderedDate":"Tue, - 30 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720478","prescriptionName":"LARYNGECTOMY - TUBE STAIN STL SIZE 8","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22097624,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Mon, - 13 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22006374,"sig":null,"orderedDate":"Sun, - 09 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720478","prescriptionName":"LARYNGECTOMY - TUBE STAIN STL SIZE 8","dispensedDate":"Mon, 10 Apr 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0478","cmopNdcNumber":"00013264681","id":22006374,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720478","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 02 May 2023 15:21:58 EDT","refillDate":"Tue, 02 May 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21959160,"sig":"APPLY - 10ML TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Mon, 27 Feb 2023 00:00:00 - EST","quantity":1,"expirationDate":"Wed, 28 Feb 2024 00:00:00 EST","prescriptionNumber":"2720475","prescriptionName":"XEROFORM - DRESSING 5X9 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":21959160,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 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":"XEROFORM 5X9","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 02 May 2023 15:21:58 EDT","refillDate":"Mon, 27 Feb 2023 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22082586,"sig":null,"orderedDate":"Tue, - 02 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720475","prescriptionName":"XEROFORM - DRESSING 5X9 IN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22082586,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Mon, - 27 Feb 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":21959187,"sig":null,"orderedDate":"Mon, - 27 Mar 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720475","prescriptionName":"XEROFORM - DRESSING 5X9 IN","dispensedDate":"Mon, 27 Mar 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0389","cmopNdcNumber":"00013264681","id":21959187,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720389","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 04 May 2023 15:13:13 EDT","refillDate":"Fri, 02 Jun 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22009800,"sig":"APPLY - 10MG TO URETHRA WEEKLY FOR 30 DAYS","orderedDate":"Tue, 14 Mar 2023 00:00:00 - EDT","quantity":1,"expirationDate":"Thu, 14 Mar 2024 00:00:00 EDT","prescriptionNumber":"3636920","prescriptionName":"LIDOCAINE - HCL 2% JELLY UROJECT 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":22009800,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00548-3013-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LIDOCAINE HCL 2% (URO-JET) 10ML","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 04 May 2023 15:13:13 EDT","refillDate":"Tue, 14 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22083210,"sig":null,"orderedDate":"Fri, - 02 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636920","prescriptionName":"LIDOCAINE - HCL 2% JELLY UROJECT 10ML","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22083210,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Tue, - 14 Mar 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22083153,"sig":null,"orderedDate":"Wed, - 03 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636920","prescriptionName":"LIDOCAINE - HCL 2% JELLY UROJECT 10ML","dispensedDate":"Tue, 02 May 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(198)636-6888","cmopNdcNumber":"00113002239","id":22083153,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"1986366888","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Tue, - 14 Mar 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22009874,"sig":null,"orderedDate":"Sun, - 09 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636920","prescriptionName":"LIDOCAINE - HCL 2% JELLY UROJECT 10ML","dispensedDate":"Sun, 09 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22009874,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, - 26 Jun 2023 11:02:23 EDT","refillDate":"Fri, 30 Jun 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22009801,"sig":"TAKE - ONE TABLET WEEKLY","orderedDate":"Thu, 16 Mar 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sat, - 16 Mar 2024 00:00:00 EDT","prescriptionNumber":"3636921","prescriptionName":"LEUCOVORIN - CALCIUM 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":22009801,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00081-0631-55","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LEUCOVORIN CALCIUM 5MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, - 26 Jun 2023 11:02:23 EDT","refillDate":"Thu, 16 Mar 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22230977,"sig":null,"orderedDate":"Fri, - 30 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636921","prescriptionName":"LEUCOVORIN - CALCIUM 5MG TAB","dispensedDate":"Sun, 25 Jun 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6934","cmopNdcNumber":"00013264681","id":22230977,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366934","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Thu, - 16 Mar 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22219747,"sig":null,"orderedDate":"Sat, - 10 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636921","prescriptionName":"LEUCOVORIN - CALCIUM 5MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22219747,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Thu, - 16 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22009875,"sig":null,"orderedDate":"Sun, - 09 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636921","prescriptionName":"LEUCOVORIN - CALCIUM 5MG TAB","dispensedDate":"Mon, 10 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22009875,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, - 24 Apr 2023 09:48:28 EDT","refillDate":"Mon, 08 May 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22009802,"sig":"TAKE - TWO TABLETS EVERY DAY FOR 60 DAYS","orderedDate":"Sun, 19 Mar 2023 00:00:00 - EDT","quantity":60,"expirationDate":"Tue, 19 Mar 2024 00:00:00 EDT","prescriptionNumber":"3636922","prescriptionName":"LETROZOLE - 2.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":22009802,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00078-0249-15","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LETROZOLE 2.5MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, - 24 Apr 2023 09:48:28 EDT","refillDate":"Sun, 19 Mar 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22046629,"sig":null,"orderedDate":"Mon, - 08 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636922","prescriptionName":"LETROZOLE - 2.5MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22046629,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Sun, - 19 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22009876,"sig":null,"orderedDate":"Sun, - 09 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636922","prescriptionName":"LETROZOLE - 2.5MG TAB","dispensedDate":"Mon, 10 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22009876,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, - 17 Apr 2023 20:00:15 EDT","refillDate":"Thu, 04 May 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22013799,"sig":"INJECT - 10MG UNDER THE SKIN EVERY THREE (3) MONTHS FOR 30 DAYS","orderedDate":"Wed, - 15 Mar 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 15 Mar 2024 - 00:00:00 EDT","prescriptionNumber":"3636923","prescriptionName":"LEUPROLIDE - ACETATE 22.5MG/KIT SA SUSP IJ","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":22013799,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00300-3346-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LEUPROLIDE ACETATE 22.5MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, - 17 Apr 2023 20:00:15 EDT","refillDate":"Wed, 15 Mar 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22046630,"sig":null,"orderedDate":"Thu, - 04 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636923","prescriptionName":"LEUPROLIDE - ACETATE 22.5MG/KIT SA SUSP IJ","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22046630,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Wed, - 15 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22013834,"sig":null,"orderedDate":"Wed, - 12 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636923","prescriptionName":"LEUPROLIDE - ACETATE 22.5MG/KIT SA SUSP IJ","dispensedDate":"Wed, 12 Apr 2023 00:00:00 - EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22013834,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 21 Apr 2023 16:28:01 EDT","refillDate":"Thu, 04 May 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22013800,"sig":"TAKE - 10MG BY MOUTH EVERY SIX (6) HOURS FOR 60 DAYS TEST INDICATION AS DIRECTED - \"SHAKE WELL\" BEFORE USING AND CLEAN MOUTHPIECE WEEKLY.","orderedDate":"Wed, - 15 Mar 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 15 Mar 2024 - 00:00:00 EDT","prescriptionNumber":"3636924","prescriptionName":"LEVALBUTEROL - 45MCG 200D HFA ORAL INHL","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":22013800,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 - 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"63402-0510-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"LEVALBUTEROL - 45MCG 200D HFA","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, - 21 Apr 2023 16:28:01 EDT","refillDate":"Wed, 15 Mar 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22046631,"sig":null,"orderedDate":"Thu, - 04 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636924","prescriptionName":"LEVALBUTEROL - 45MCG 200D HFA ORAL INHL","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22046631,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Wed, - 15 Mar 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22013835,"sig":null,"orderedDate":"Wed, - 12 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636924","prescriptionName":"LEVALBUTEROL - 45MCG 200D HFA ORAL INHL","dispensedDate":"Wed, 12 Apr 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22013835,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 21 Jul 2023 14:56:13 EDT","refillDate":"Wed, 19 Jul 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22116215,"sig":"TAKE - ONE CAPSULE EVERY DAY FOR 30 DAYS TEST PATIENT INTRUCTIONS","orderedDate":"Sat, - 15 Apr 2023 00:00:00 EDT","quantity":30,"expirationDate":"Mon, 15 Apr 2024 - 00:00:00 EDT","prescriptionNumber":"3636931","prescriptionName":"GABAPENTIN - 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":22116215,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 - 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00228-2665-50","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION NO APPEND TO SIG","indicationForUseFlag":"0","category":"Rx Medication","orderableItem":"GABAPENTIN - 100MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, - 21 Jul 2023 14:56:13 EDT","refillDate":"Sat, 15 Apr 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22330144,"sig":null,"orderedDate":"Wed, - 19 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636931","prescriptionName":"GABAPENTIN - 100MG CAP","dispensedDate":"Mon, 17 Jul 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6934","cmopNdcNumber":"00113002239","id":22330144,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366934","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Sat, - 15 Apr 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22230978,"sig":null,"orderedDate":"Sat, - 24 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636931","prescriptionName":"GABAPENTIN - 100MG CAP","dispensedDate":"Sun, 25 Jun 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22230978,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Sat, - 15 Apr 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22116704,"sig":null,"orderedDate":"Mon, - 15 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636931","prescriptionName":"GABAPENTIN - 100MG CAP","dispensedDate":"Mon, 15 May 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22116704,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, - 12 Jun 2023 12:04:42 EDT","refillDate":"Sat, 24 Jun 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22057639,"sig":"TAKE - ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST TEST","orderedDate":"Mon, 27 Mar - 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 27 Mar 2024 00:00:00 - EDT","prescriptionNumber":"2720494","prescriptionName":"REPAGLINIDE 0.5MG + 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":22057639,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST","divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00169-0081-81","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx - Medication","orderableItem":"REPAGLINIDE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, - 12 Jun 2023 12:04:42 EDT","refillDate":"Mon, 27 Mar 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22201395,"sig":null,"orderedDate":"Sat, - 24 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720494","prescriptionName":"REPAGLINIDE - 0.5MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22201395,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Mon, - 27 Mar 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22086180,"sig":null,"orderedDate":"Sun, - 04 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720494","prescriptionName":"REPAGLINIDE - 0.5MG TAB","dispensedDate":"Mon, 05 Jun 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0478","cmopNdcNumber":"00013264681","id":22086180,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720478","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Mon, - 27 Mar 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22057668,"sig":null,"orderedDate":"Wed, - 26 Apr 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720494","prescriptionName":"REPAGLINIDE - 0.5MG TAB","dispensedDate":"Wed, 26 Apr 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22057668,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"activeParked","refillSubmitDate":"Fri, - 23 Jun 2023 09:48:10 EDT","refillDate":"Fri, 23 Jun 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22083122,"sig":"TAKE - TWO TABLETS TWO (2) TIMES A DAY FOR 30 DAYS TEST INDICATION TEST PATIENT INTRUCTIONS","orderedDate":"Tue, - 04 Apr 2023 00:00:00 EDT","quantity":120,"expirationDate":"Thu, 04 Apr 2024 - 00:00:00 EDT","prescriptionNumber":"3636928","prescriptionName":"NEFAZODONE - 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":22083122,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 - 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Parked","ndc":"00087-0032-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"NEFAZODONE - HCL 100MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"activeParked","refillSubmitDate":null,"refillDate":"Tue, - 04 Apr 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22225417,"sig":null,"orderedDate":"Fri, - 23 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636928","prescriptionName":"NEFAZODONE - 100MG TAB","dispensedDate":"Thu, 22 Jun 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6934","cmopNdcNumber":"00013264681","id":22225417,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366934","dispStatus":"Active: - Parked","ndc":null,"reason":null,"prescriptionNumberIndex":"RF3","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"activeParked","refillSubmitDate":null,"refillDate":"Tue, - 04 Apr 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22083211,"sig":null,"orderedDate":"Mon, - 29 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636928","prescriptionName":"NEFAZODONE - 100MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22083211,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Parked","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"activeParked","refillSubmitDate":null,"refillDate":"Tue, - 04 Apr 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22219748,"sig":null,"orderedDate":"Tue, - 02 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636928","prescriptionName":"NEFAZODONE - 100MG TAB","dispensedDate":"Wed, 03 May 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22219748,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Parked","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, - 09 May 2023 09:46:12 EDT","refillDate":"Mon, 29 May 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22096623,"sig":"TAKE - ONE CAPSULE BY MOUTH EVERY DAY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Sun, - 09 Apr 2023 00:00:00 EDT","quantity":30,"expirationDate":"Tue, 09 Apr 2024 - 00:00:00 EDT","prescriptionNumber":"3636929","prescriptionName":"DANAZOL 200MG - CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":22096623,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 - 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00024-0305-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"DANAZOL - 200MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Tue, - 09 May 2023 09:46:12 EDT","refillDate":"Sun, 09 Apr 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22096742,"sig":null,"orderedDate":"Mon, - 29 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636929","prescriptionName":"DANAZOL - 200MG CAP","dispensedDate":"Mon, 08 May 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22096742,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, - 05 Jun 2023 14:20:09 EDT","refillDate":"Mon, 05 Jun 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22177889,"sig":"APPLY - 1MG TO MOUTH DAILY FOR 30 DAYS TEST INDICATION 06052023 - C & A TEST PATIENT - INTRUCTIONS","orderedDate":"Sat, 06 May 2023 00:00:00 EDT","quantity":1,"expirationDate":"Mon, - 06 May 2024 00:00:00 EDT","prescriptionNumber":"2720511","prescriptionName":"CADEXOMER - IODINE 0.9% TOP GEL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review the prescription - status and fill date. If you need more of this medication, please call the - pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22177889,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"08213-0100-40","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION 06052023 - C & A","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"CADEXOMER - IODINE 0.9%","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 09 Jun 2023 10:42:14 EDT","refillDate":"Sun, 25 Jun 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22177890,"sig":"TAKE - 1 TABLET BY MOUTH WEEKLY FOR 30 DAYS","orderedDate":"Sat, 06 May 2023 00:00:00 - EDT","quantity":30,"expirationDate":"Mon, 06 May 2024 00:00:00 EDT","prescriptionNumber":"2720512","prescriptionName":"CAFFEINE - 100/ERGOTAMINE 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":22177890,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00078-0034-28","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION 06052023 NO SIG","indicationForUseFlag":"0","category":"Rx Medication","orderableItem":"ERGOTAMINE/CAFFEINE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, - 09 Jun 2023 10:42:14 EDT","refillDate":"Sat, 06 May 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22195348,"sig":null,"orderedDate":"Sun, - 25 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720512","prescriptionName":"CAFFEINE - 100/ERGOTAMINE 1MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22195348,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Sat, - 06 May 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22179202,"sig":null,"orderedDate":"Wed, - 31 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720512","prescriptionName":"CAFFEINE - 100/ERGOTAMINE 1MG TAB","dispensedDate":"Sat, 03 Jun 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0478","cmopNdcNumber":"00013264681","id":22179202,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720478","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Fri, - 26 May 2023 00:00:00 EDT","refillRemaining":null,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22177891,"sig":"120 - ML TOPICAL WEEKLY","orderedDate":"Wed, 31 May 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"9","prescriptionName":"CALAMINE - LOTION","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review the prescription - status and fill date. If you need more of this medication, please call the - pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22177891,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":"TEST - COMMENTS 06052023","divisionName":null,"modifiedDate":"Fri, 24 Nov 2023 09:52:16 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Non-VA","ndc":"0242-2127-65","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":"TEST - DISCLAIMER 06052023","indicationForUse":"TEST INDICATION NON-VA MEDS 06052023","indicationForUseFlag":null,"category":"Documented - by VA","orderableItem":"CALAMINE","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 09 Jun 2023 10:20:00 EDT","refillDate":"Fri, 09 Jun 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22181714,"sig":"TAKE - 1MG BY MOUTH DAILY FOR 30 DAYS TEST INDICATION WITH & CHAR TEST PATIENT INTRUCTION - WITH & CHAR","orderedDate":"Sun, 07 May 2023 00:00:00 EDT","quantity":30,"expirationDate":"Tue, - 07 May 2024 00:00:00 EDT","prescriptionNumber":"2720513","prescriptionName":"CALCIFEDIOL - 20MCG CAPS","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review the prescription - status and fill date. If you need more of this medication, please call the - pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22181714,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS WITH & CHAR","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00052-0472-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION WITH & CHAR","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"CALCIFEDIOL","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, - 09 Jun 2023 10:20:00 EDT","refillDate":"Sun, 07 May 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22195349,"sig":null,"orderedDate":"Fri, - 09 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720513","prescriptionName":"CALCIFEDIOL - 20MCG CAPS","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22195349,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"activeParked","refillSubmitDate":"Thu, - 29 Jun 2023 13:09:33 EDT","refillDate":"Thu, 29 Jun 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22244915,"sig":"TAKE - 1MG BY MOUTH DAILY FOR 30 DAYS TEST PARK INDI TEST PARK","orderedDate":"Tue, - 30 May 2023 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 30 May 2024 - 00:00:00 EDT","prescriptionNumber":"2720518","prescriptionName":"BUTALBITAL - ACETAMINOPHEN 50/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":22244915,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - PARK","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Parked","ndc":"65234-0050-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - PARK INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETAMINOPHEN/BUTALBITAL - 325/50","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"activeParked","refillSubmitDate":"Thu, - 29 Jun 2023 13:09:33 EDT","refillDate":"Tue, 30 May 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22245017,"sig":null,"orderedDate":"Thu, - 29 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720518","prescriptionName":"BUTALBITAL - ACETAMINOPHEN 50/325MG TAB","dispensedDate":"Thu, 29 Jun 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22245017,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Parked","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":null,"refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22245262,"sig":"INJECT - 1ML IV WEEKLY FOR 30 DAYS","orderedDate":"Tue, 30 May 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, - 29 Jun 2023 00:00:00 EDT","prescriptionNumber":"2720519","prescriptionName":"PACLITAXEL - 6MG/ML INJ 5ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review the prescription - status and fill date. If you need more of this medication, please call the - pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22245262,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Mon, - 14 Aug 2023 14:02:20 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"00015-3475-30","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"PACLITAXEL","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, - 02 Aug 2023 15:53:52 EDT","refillDate":"Tue, 08 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22324956,"sig":"TAKE - 10MG BY MOUTH EVERY EIGHT (8) HOURS FOR 60 DAYS TEST IND TEST P & I","orderedDate":"Sun, - 16 Jul 2023 00:00:00 EDT","quantity":30,"expirationDate":"Tue, 16 Jul 2024 - 00:00:00 EDT","prescriptionNumber":"3636943","prescriptionName":"ZALCITABINE - (ddC) 0.75MG 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":22324956,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00004-0221-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - IND","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ZALCITABINE - 0.75MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, - 02 Aug 2023 15:53:52 EDT","refillDate":"Wed, 19 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22355965,"sig":null,"orderedDate":"Tue, - 08 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636943","prescriptionName":"ZALCITABINE - (ddC) 0.75MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22355965,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, - 19 Jul 2023 15:32:15 EDT","refillDate":"Mon, 17 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22324959,"sig":"TAKE - ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTILL","orderedDate":"Mon, - 19 Jun 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 19 Jun 2024 - 00:00:00 EDT","prescriptionNumber":"2720536","prescriptionName":"ZAFIRLUKAST - 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":22324959,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - remarks","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00310-0402-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ZAFIRLUKAST","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, - 19 Jul 2023 15:32:15 EDT","refillDate":"Wed, 21 Jun 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22325078,"sig":null,"orderedDate":"Mon, - 17 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720536","prescriptionName":"ZAFIRLUKAST - 20MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22325078,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 22 Jun 2023 11:31:58 EDT","refillDate":"Tue, 11 Jul 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22221064,"sig":"TAKE - ONE TABLET BY MOUTH EVERY EIGHT (8) HOURS FOR 30 DAYS TEST INDICATION 06212023 - TEST PATIENT INS","orderedDate":"Mon, 22 May 2023 00:00:00 EDT","quantity":90,"expirationDate":"Wed, - 22 May 2024 00:00:00 EDT","prescriptionNumber":"3636938","prescriptionName":"FAMCICLOVIR - 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":"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":22221064,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00078-0368-15","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION 06212023","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"FAMCICLOVIR - 500MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 22 Jun 2023 11:31:58 EDT","refillDate":"Mon, 22 May 2023 00:00:00 EDT","refillRemaining":9,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22223419,"sig":null,"orderedDate":"Tue, - 11 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636938","prescriptionName":"FAMCICLOVIR - 500MG TAB","dispensedDate":"Thu, 22 Jun 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22223419,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Mon, - 22 May 2023 00:00:00 EDT","refillRemaining":10,"facilityName":"SLC10 TEST - LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22221132,"sig":null,"orderedDate":"Wed, - 14 Jun 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636938","prescriptionName":"FAMCICLOVIR - 500MG TAB","dispensedDate":"Thu, 15 Jun 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6934","cmopNdcNumber":"00113002239","id":22221132,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366934","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 11 Aug 2023 09:59:45 EDT","refillDate":"Fri, 11 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22326523,"sig":"TAKE - 10MG BY MOUTH DAILY FOR 30 DAYS TEST INDICATION --AVOID ANTACIDS--","orderedDate":"Tue, - 20 Jun 2023 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 20 Jun 2024 - 00:00:00 EDT","prescriptionNumber":"2720537","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":22326523,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00004-0220-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ZALCITABINE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, - 11 Aug 2023 09:59:45 EDT","refillDate":"Thu, 22 Jun 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22378409,"sig":null,"orderedDate":"Fri, - 11 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720537","prescriptionName":"ZALCITABINE - 0.375MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22378409,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, - 02 Aug 2023 17:04:29 EDT","refillDate":"Wed, 02 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22330445,"sig":"TAKE - ONE CAPSULE BY MOUTH EVERY DAY FOR 60 DAYS TEST INDI TEST PI","orderedDate":"Wed, - 21 Jun 2023 00:00:00 EDT","quantity":30,"expirationDate":"Fri, 21 Jun 2024 - 00:00:00 EDT","prescriptionNumber":"3636944","prescriptionName":"ZINC SULFATE - 220MG 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":22330445,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 - 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00904-5332-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ZINC - SULFATE 220MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, - 02 Aug 2023 17:04:29 EDT","refillDate":"Fri, 23 Jun 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22356357,"sig":null,"orderedDate":"Wed, - 02 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636944","prescriptionName":"ZINC - SULFATE 220MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22356357,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, - 11 Jul 2023 10:17:16 EDT","refillDate":"Tue, 11 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22298072,"sig":"IRRIGATE - 1 SOLUTION AFFECTED AREA DAILY FOR 60 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Sun, - 11 Jun 2023 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 11 Jun 2024 - 00:00:00 EDT","prescriptionNumber":"2720526","prescriptionName":"ACETIC ACID - 0.25% IRRG 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":22298072,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - REMARKS","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00264-2304-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ACETIC ACID","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, - 11 Jun 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22298096,"sig":null,"orderedDate":"Tue, - 11 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720526","prescriptionName":"ACETIC - ACID 0.25% IRRG SOLN","dispensedDate":"Wed, 12 Jul 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22298096,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, - 27 Jul 2023 15:09:55 EDT","refillDate":"Sun, 09 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22298200,"sig":"TAKE - ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS TEST I TEST PLACE","orderedDate":"Sun, - 11 Jun 2023 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 11 Jun 2024 - 00:00:00 EDT","prescriptionNumber":"2720527","prescriptionName":"ACEBUTOLOL - HCL 400MG 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":22298200,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - R","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ACEBUTOLOL","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, - 11 Jun 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22298272,"sig":null,"orderedDate":"Sun, - 09 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720527","prescriptionName":"ACEBUTOLOL - HCL 400MG CAP","dispensedDate":"Mon, 10 Jul 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0478","cmopNdcNumber":"00013264681","id":22298272,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720478","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":null,"refillDate":"Wed, - 09 Aug 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22332183,"sig":"TAKE - ONE CAPSULE DAILY FOR 30 DAYS","orderedDate":"Tue, 08 Aug 2023 00:00:00 EDT","quantity":30,"expirationDate":"Thu, - 08 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720540","prescriptionName":"ZIPRASIDONE + 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":"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":22332183,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00049-3970-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ZIPRASIDONE","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, - 24 Jul 2023 09:44:13 EDT","refillDate":"Tue, 15 Aug 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22332184,"sig":"INJECT - 10MG INTRAVENEOUS USE WEEKLY FOR 30 DAYS","orderedDate":"Sat, 24 Jun 2023 - 00:00:00 EDT","quantity":4,"expirationDate":"Mon, 24 Jun 2024 00:00:00 EDT","prescriptionNumber":"2720541","prescriptionName":"ZOLEDRONIC - ACID 4MG VI","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":22332184,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00078-0350-84","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ZOLEDRONIC","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, - 24 Jul 2023 09:44:13 EDT","refillDate":"Mon, 26 Jun 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22332269,"sig":null,"orderedDate":"Tue, - 15 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720541","prescriptionName":"ZOLEDRONIC - ACID 4MG VI","dispensedDate":"Sun, 23 Jul 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22332269,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Mon, - 26 Jun 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22332224,"sig":null,"orderedDate":"Sun, - 16 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720541","prescriptionName":"ZOLEDRONIC - ACID 4MG VI","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22332224,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 25 Jul 2023 11:11:55 EDT","refillDate":"Sat, 22 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22335400,"sig":"TAKE - ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Sun, - 25 Jun 2023 00:00:00 EDT","quantity":5,"expirationDate":"Tue, 25 Jun 2024 - 00:00:00 EDT","prescriptionNumber":"2720543","prescriptionName":"ZOLMITRIPTAN - 5MG DISINTEGR TAB PKG 3","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review the prescription - status and fill date. If you need more of this medication, please call the - pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22335400,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - RE","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00030-0213-21","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ZOLMITRIPTAN - 5MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 25 Jul 2023 11:11:55 EDT","refillDate":"Tue, 27 Jun 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22335484,"sig":null,"orderedDate":"Sat, - 22 Jul 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720543","prescriptionName":"ZOLMITRIPTAN - 5MG DISINTEGR TAB PKG 3","dispensedDate":"Sun, 23 Jul 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22335484,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 10 Aug 2023 14:00:37 EDT","refillDate":"Sun, 27 Aug 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22357576,"sig":"PLACE - 1 DROP INTO EYE WEEKLY FOR 30 DAYS TEST IND TEST PI","orderedDate":"Tue, 04 - Jul 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 04 Jul 2024 00:00:00 - EDT","prescriptionNumber":"3636946","prescriptionName":"LATANOPROST 0.005% - OPH SOLN","dispensedDate":"Fri, 07 Jul 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":22357576,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - RE","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00013-8303-04","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - IND","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"LATANOPROST - 0.005% 2.5ML","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 10 Aug 2023 14:00:37 EDT","refillDate":"Wed, 05 Jul 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22376296,"sig":null,"orderedDate":"Sun, - 27 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636946","prescriptionName":"LATANOPROST - 0.005% OPH SOLN","dispensedDate":"Tue, 08 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6946","cmopNdcNumber":"00113002239","id":22376296,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366946","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF2","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Wed, - 05 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22376267,"sig":null,"orderedDate":"Mon, - 07 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636946","prescriptionName":"LATANOPROST - 0.005% OPH SOLN","dispensedDate":"Tue, 08 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6934","cmopNdcNumber":"00113002239","id":22376267,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366934","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":null,"refillDate":"Sun, - 20 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22357591,"sig":"TAKE - 1 TABLESPOONFUL BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Fri, 18 Aug - 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sun, 18 Aug 2024 00:00:00 - EDT","prescriptionNumber":"3636947","prescriptionName":"LIDOCAINE HCL 2% VISCOUS - LIQUID","dispensedDate":"Tue, 01 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":22357591,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00054-3500-49","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LIDOCAINE HCL 2% VISCOUS 100ML","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 10 Aug 2023 14:00:37 EDT","refillDate":"Thu, 10 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22376268,"sig":"TAKE - ONE TABLET EVERY TWELVE (12) HOURS FOR 45 DAYS TEST IN TEST PI","orderedDate":"Tue, - 11 Jul 2023 00:00:00 EDT","quantity":60,"expirationDate":"Thu, 11 Jul 2024 - 00:00:00 EDT","prescriptionNumber":"3636950","prescriptionName":"LABETALOL - HCL 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":22376268,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TESt - RE","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00172-4366-60","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - IN","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"LABETALOL - HCL 300MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 10 Aug 2023 14:00:37 EDT","refillDate":"Wed, 12 Jul 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22376297,"sig":null,"orderedDate":"Thu, - 10 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636950","prescriptionName":"LABETALOL - HCL 300MG TAB","dispensedDate":"Thu, 10 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22376297,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 10 Aug 2023 14:00:37 EDT","refillDate":"Sat, 05 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22376353,"sig":"USE - LANCET INTRADERMAL SUBCUTANEOUS FOUR (4) TIMES A DAY, BEFORE MEALS AND AT - BEDTIME FOR 60 DAYS","orderedDate":"Thu, 06 Jul 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sat, - 06 Jul 2024 00:00:00 EDT","prescriptionNumber":"3636951","prescriptionName":"LANCET","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":22376353,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"S09454-2151-15","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"BLOOD GLUCOSE 100''s","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 10 Aug 2023 14:00:37 EDT","refillDate":"Fri, 07 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22376384,"sig":null,"orderedDate":"Sat, - 05 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636951","prescriptionName":"LANCET","dispensedDate":"Sun, - 06 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6946","cmopNdcNumber":"00113002239","id":22376384,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366946","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 11 Aug 2023 09:59:45 EDT","refillDate":"Wed, 30 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22376397,"sig":"CHEW - ONE TABLET BY MOUTH THREE (3) TIMES A DAY FOR 30 DAYS","orderedDate":"Thu, - 10 Aug 2023 00:00:00 EDT","quantity":90,"expirationDate":"Sat, 10 Aug 2024 - 00:00:00 EDT","prescriptionNumber":"3636952","prescriptionName":"LANTHANUM - CARBONATE 500MG TAB","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":22376397,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"54092-0249-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LANTHANUM CARBONATE 500MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, - 11 Aug 2023 09:59:45 EDT","refillDate":"Thu, 10 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22409139,"sig":null,"orderedDate":"Wed, - 30 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636952","prescriptionName":"LANTHANUM - CARBONATE 500MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22409139,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, - 11 Aug 2023 09:59:45 EDT","refillDate":"Wed, 09 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22377604,"sig":"TAKE - 10ML EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 12 Jul 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, - 12 Jul 2024 00:00:00 EDT","prescriptionNumber":"3636953","prescriptionName":"LEVOCARNITINE - 1GM/10ML LIQUID","dispensedDate":"Fri, 14 Jul 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":22377604,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"54482-0145-08","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LEVOCARNITINE 1GM/10ML","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Fri, - 11 Aug 2023 09:59:45 EDT","refillDate":"Thu, 13 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22377632,"sig":null,"orderedDate":"Wed, - 09 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636953","prescriptionName":"LEVOCARNITINE - 1GM/10ML LIQUID","dispensedDate":"Thu, 10 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6953","cmopNdcNumber":"00113002239","id":22377632,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366953","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 24 Aug 2023 16:29:33 EDT","refillDate":"Mon, 21 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22378337,"sig":"TAKE - 2 UNITS BY THE AFFECTED AREA ONCE FOR 30 DAYS TEST INI CHILL WELL","orderedDate":"Sun, - 02 Jul 2023 00:00:00 EDT","quantity":1,"expirationDate":"Tue, 02 Jul 2024 - 00:00:00 EDT","prescriptionNumber":"3636957","prescriptionName":"MAGNESIUM - CITRATE LIQUID","dispensedDate":"Wed, 05 Jul 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":22378337,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - RE","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00869-2635-08","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"MAGNESIUM - CITRATE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 24 Aug 2023 16:29:33 EDT","refillDate":"Mon, 03 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22409140,"sig":null,"orderedDate":"Mon, - 21 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636957","prescriptionName":"MAGNESIUM - CITRATE LIQUID","dispensedDate":"Tue, 22 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6957","cmopNdcNumber":"00113002239","id":22409140,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366957","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 11 Aug 2023 12:53:49 EDT","refillDate":"Mon, 21 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22378338,"sig":"INJECT - 10ML INTRAVENOUS ONCE FOR 30 DAYS","orderedDate":"Mon, 17 Jul 2023 00:00:00 - EDT","quantity":1,"expirationDate":"Wed, 17 Jul 2024 00:00:00 EDT","prescriptionNumber":"3636958","prescriptionName":"MAGNESIUM - SULFATE 50% INJ 10ML SDV","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":22378338,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00517-2610-25","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"MAGNESIUM SULFATE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, - 11 Aug 2023 12:53:49 EDT","refillDate":"Tue, 18 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22409141,"sig":null,"orderedDate":"Mon, - 21 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636958","prescriptionName":"MAGNESIUM - SULFATE 50% INJ 10ML SDV","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22409141,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 11 Aug 2023 12:55:57 EDT","refillDate":"Fri, 11 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22378341,"sig":"TAKE - 1 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":"2720555","prescriptionName":"MAALOX NO. - 2 TAB ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":22378341,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - RE","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"MAALOX - N0.2","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, - 11 Aug 2023 12:55:57 EDT","refillDate":"Sat, 08 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22378410,"sig":null,"orderedDate":"Fri, - 11 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720555","prescriptionName":"MAALOX - NO. 2 TAB ","dispensedDate":"Fri, 11 Aug 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22378410,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 11 Aug 2023 12:50:30 EDT","refillDate":"Fri, 11 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22378342,"sig":"APPLY - SMALL AMOUNT TO AFFECTED AREA WEEKLY FOR 45 DAYS","orderedDate":"Wed, 12 Jul - 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 12 Jul 2024 00:00:00 - EDT","prescriptionNumber":"2720556","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":22378342,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 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","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, - 11 Aug 2023 12:50:30 EDT","refillDate":"Thu, 13 Jul 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22378411,"sig":null,"orderedDate":"Fri, - 11 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720556","prescriptionName":"MAFENIDE - CREAM (OZ)","dispensedDate":"Fri, 11 Aug 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22378411,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Fri, - 08 Sep 2023 16:24:09 EDT","refillDate":"Tue, 29 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22436660,"sig":"TAKE - ONE CAPSULE EVERY DAY FOR 30 DAYS","orderedDate":"Sun, 06 Aug 2023 00:00:00 - EDT","quantity":30,"expirationDate":"Tue, 06 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636961","prescriptionName":"ETOPOSIDE - 50MG CAP","dispensedDate":"Tue, 08 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":22436660,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"51079-0965-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ETOPOSIDE 50MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":null,"refillDate":"Sun, - 06 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22436715,"sig":null,"orderedDate":"Tue, - 29 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636961","prescriptionName":"ETOPOSIDE - 50MG CAP","dispensedDate":"Thu, 31 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6961","cmopNdcNumber":"00113002239","id":22436715,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366961","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"active","refillSubmitDate":null,"refillDate":"Thu, - 31 Aug 2023 00:00:00 EDT","refillRemaining":null,"facilityName":"SLC10 TEST - LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22443916,"sig":"50MG - ORAL DAILY","orderedDate":"Thu, 07 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"7","prescriptionName":"IMIPRAMINE - 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":22443916,"userId":17621060,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":null,"modifiedDate":"Fri, - 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Non-VA","ndc":"00781-1766-10","reason":null,"prescriptionNumberIndex":"NV","prescriptionSource":"NV","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":null,"category":"Documented by VA","orderableItem":"IMIPRAMINE - HCL 50MG","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, - 13 Sep 2023 17:17:39 EDT","refillDate":"Thu, 28 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22446391,"sig":"TAKE - 10ML EVERY DAY FOR 30 DAYS","orderedDate":"Fri, 08 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sun, - 08 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636953A","prescriptionName":"LEVOCARNITINE - 1GM/10ML 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":22446391,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 3636953","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, - 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"54482-0145-08","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"LEVOCARNITINE 1GM/10ML","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, - 13 Sep 2023 17:17:39 EDT","refillDate":"Fri, 08 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22487103,"sig":null,"orderedDate":"Thu, - 28 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636953A","prescriptionName":"LEVOCARNITINE - 1GM/10ML LIQUID","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22487103,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, - 13 Sep 2023 19:08:32 EDT","refillDate":"Fri, 15 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22446392,"sig":"TAKE - 10MG BY MOUTH TWO (2) TIMES A DAY FOR 30 DAYS TEST INDI MORNING AND NIGHT.","orderedDate":"Tue, - 25 Jul 2023 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 25 Jul 2024 - 00:00:00 EDT","prescriptionNumber":"3636963","prescriptionName":"QUETIAPINE - FUMAR TABS STARTER 11''S(PG)","dispensedDate":"Thu, 27 Jul 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":22446392,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00310-0276-90","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"QUETIAPINE - FUMARATE STARTER 11''S","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, - 13 Sep 2023 19:08:32 EDT","refillDate":"Wed, 26 Jul 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22487104,"sig":null,"orderedDate":"Fri, - 15 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636963","prescriptionName":"QUETIAPINE - FUMAR TABS STARTER 11''S(PG)","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22487104,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":null,"refillDate":"Wed, - 26 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22446432,"sig":null,"orderedDate":"Sat, - 26 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636963","prescriptionName":"QUETIAPINE - FUMAR TABS STARTER 11''S(PG)","dispensedDate":"Sun, 27 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6963","cmopNdcNumber":"00113002239","id":22446432,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366963","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 08 Sep 2023 12:15:25 EDT","refillDate":"Fri, 08 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22447544,"sig":"TAKE - ONE TABLET BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 09 Aug 2023 - 00:00:00 EDT","quantity":30,"expirationDate":"Fri, 09 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636964","prescriptionName":"QUINAPRIL - HCL 10MG TAB","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":22447544,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00071-0530-23","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"QUINAPRIL HCL 10MG","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, - 08 Sep 2023 12:23:30 EDT","refillDate":"Fri, 08 Sep 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22447628,"sig":"TAKE - ONE TABLET BY MOUTH DAILY FOR 45 DAYS --TAKE WITH FOOD/AVOID GRAPEFRUIT JUICE/DO - NOT CRUSH OR CHEW/AVOID ANTACIDS--","orderedDate":"Sat, 19 Aug 2023 00:00:00 - EDT","quantity":30,"expirationDate":"Mon, 19 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720589","prescriptionName":"QUINIDINE - GLUCONATE 324MG SA TAB","dispensedDate":"Fri, 08 Sep 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":22447628,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"47679-0452-35","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"QUINIDINE","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 31 Aug 2023 14:25:47 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22425840,"sig":"TAKE - 10MG BY MOUTH DAILY FOR 30 DAYS TEST INDI 08312023 TEST PI 08312023","orderedDate":"Thu, - 27 Jul 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sat, 27 Jul 2024 - 00:00:00 EDT","prescriptionNumber":"2720576","prescriptionName":"VALACYCLOVIR - HCL 1GM 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":22425840,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - RE 08312023","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 - EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDI 08312023","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"VALACYCLOVIR","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 31 Aug 2023 14:25:47 EDT","refillDate":"Thu, 27 Jul 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22428731,"sig":null,"orderedDate":"Thu, - 31 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720576","prescriptionName":"VALACYCLOVIR - HCL 1GM TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22428731,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 31 Aug 2023 15:17:03 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22425841,"sig":"TAKE - ONE CAPSULE BY MOUTH WEEKLY FOR 60 DAYS --TAKE WITH FOOD TO DECREASE GI DISTRESS/DO - NOT CRUSH OR CHEW--","orderedDate":"Tue, 01 Aug 2023 00:00:00 EDT","quantity":5,"expirationDate":"Thu, - 01 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720577","prescriptionName":"VALPROIC - ACID 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":22425841,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00074-5681-13","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"VALPROIC ACID","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 31 Aug 2023 15:17:03 EDT","refillDate":"Wed, 02 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22428732,"sig":null,"orderedDate":"Thu, - 31 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720577","prescriptionName":"VALPROIC - ACID 250MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22428732,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 31 Aug 2023 15:32:58 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22425842,"sig":"TAKE - ONE TABLET BY MOUTH DAILY FOR 45 DAYS","orderedDate":"Sun, 06 Aug 2023 00:00:00 - EDT","quantity":30,"expirationDate":"Tue, 06 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720578","prescriptionName":"VALSARTAN - 160MG 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":22425842,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00078-0359-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"VALSARTAN","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 31 Aug 2023 15:32:58 EDT","refillDate":"Mon, 07 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22428733,"sig":null,"orderedDate":"Thu, - 31 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720578","prescriptionName":"VALSARTAN - 160MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22428733,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 31 Aug 2023 18:13:29 EDT","refillDate":"Fri, 01 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22425843,"sig":"INJECT - 10ML IV WEEKLY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Fri, 11 Aug 2023 - 00:00:00 EDT","quantity":1,"expirationDate":"Sun, 11 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720579","prescriptionName":"VANCOMYCIN - 1000MG 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":22425843,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00074-6533-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"VANCOMYCIN","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 31 Aug 2023 18:13:29 EDT","refillDate":"Sat, 12 Aug 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22428734,"sig":null,"orderedDate":"Fri, - 01 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720579","prescriptionName":"VANCOMYCIN - 1000MG INJ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22428734,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 31 Aug 2023 18:28:31 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22425844,"sig":"APPLY - SMALL AMOUNT TO AFFECTED AREA DAILY FOR 30 DAYS","orderedDate":"Tue, 08 Aug - 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 08 Aug 2024 00:00:00 - EDT","prescriptionNumber":"2720580","prescriptionName":"VELVACHOL CREAM 16 - 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":22425844,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"30229-3932-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"VELVACHOL","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 31 Aug 2023 14:26:47 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22425845,"sig":"TAKE - 1MG BY MOUTH WEEKLY FOR 60 DAYS","orderedDate":"Thu, 03 Aug 2023 00:00:00 - EDT","quantity":1,"expirationDate":"Sat, 03 Aug 2024 00:00:00 EDT","prescriptionNumber":"2720581","prescriptionName":"VENLAFAXINE - HCL 150MG SA 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":22425845,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00008-0836-01","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"VENLAFAXINE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 31 Aug 2023 14:26:47 EDT","refillDate":"Fri, 04 Aug 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22428735,"sig":null,"orderedDate":"Thu, - 31 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720581","prescriptionName":"VENLAFAXINE - HCL 150MG SA CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22428735,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"expired","refillSubmitDate":null,"refillDate":"Tue, - 01 Aug 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"SLC10 TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22426211,"sig":"TAKE - ONE CAPSULE BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Tue, 01 Aug 2023 - 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 31 Aug 2023 00:00:00 EDT","prescriptionNumber":"3636959","prescriptionName":"THALIDOMIDE - 50MG 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":22426211,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 01 Sep 2023 08:54:55 EDT","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Expired","ndc":"59572-0205-94","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"THALIDOMIDE 50MG","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Thu, - 31 Aug 2023 10:20:13 EDT","refillDate":"Thu, 31 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22426212,"sig":"INJECT - 2 MILLIGRAMS UNDER THE SKIN ONCE FOR 30 DAYS","orderedDate":"Tue, 01 Aug 2023 - 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 01 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636960","prescriptionName":"TERBUTALINE - 1MG/ML INJ 1ML","dispensedDate":"Thu, 03 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":22426212,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"55390-0101-10","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"TERBUTALINE 1MG/ML","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, - 31 Aug 2023 10:20:13 EDT","refillDate":"Wed, 02 Aug 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22426254,"sig":null,"orderedDate":"Thu, - 31 Aug 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636960","prescriptionName":"TERBUTALINE - 1MG/ML INJ 1ML","dispensedDate":"Thu, 31 Aug 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22426254,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 05 Sep 2023 15:00:42 EDT","refillDate":"Tue, 05 Sep 2023 00:00:00 EDT","refillRemaining":5,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22399906,"sig":"TAKE - ONE TABLET BY MOUTH DAILY FOR 30 DAYS TEST IND TEST PI","orderedDate":"Sat, - 22 Jul 2023 00:00:00 EDT","quantity":30,"expirationDate":"Mon, 22 Jul 2024 - 00:00:00 EDT","prescriptionNumber":"2720573","prescriptionName":"POTASSIUM - CHLORIDE 8MEQ SA 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":22399906,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"TEST - RE","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00245-0040-55","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - IND","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"POTASSIUM - CHLORIDE","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 14 Nov 2023 14:15:05 EST","refillDate":"Mon, 20 Nov 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22625964,"sig":"TAKE - 10MG BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Tue, 31 Oct 2023 00:00:00 - EDT","quantity":30,"expirationDate":"Thu, 31 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720466B","prescriptionName":"ABACAVIR - SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":22625964,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720466A","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00173-0742-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ABACAVIR/LAMIVUDINE","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 14 Nov 2023 14:15:05 EST","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22656197,"sig":null,"orderedDate":"Mon, - 20 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720466B","prescriptionName":"ABACAVIR - SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22656197,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"hold","refillSubmitDate":"Mon, - 06 Nov 2023 16:02:35 EST","refillDate":"Mon, 20 Nov 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22625965,"sig":"TAKE - ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS TEST I TEST PLACE","orderedDate":"Tue, - 31 Oct 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 31 Oct 2024 - 00:00:00 EDT","prescriptionNumber":"2720527B","prescriptionName":"ACEBUTOLOL - HCL 400MG 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":22625965,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720527A","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - On Hold","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ACEBUTOLOL","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"hold","refillSubmitDate":"Mon, - 06 Nov 2023 16:02:35 EST","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22637805,"sig":null,"orderedDate":"Mon, - 20 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720527B","prescriptionName":"ACEBUTOLOL - HCL 400MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22637805,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - On Hold","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":null,"refillDate":"Mon, - 06 Nov 2023 00:00:00 EST","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22625966,"sig":"IRRIGATE - 1 SOLUTION AFFECTED AREA DAILY FOR 60 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Tue, - 31 Oct 2023 00:00:00 EDT","quantity":1,"expirationDate":"Thu, 31 Oct 2024 - 00:00:00 EDT","prescriptionNumber":"2720526B","prescriptionName":"ACETIC ACID - 0.25% IRRG 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":22625966,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720526A","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00264-2304-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ACETIC ACID","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 14 Nov 2023 14:16:02 EST","refillDate":"Mon, 20 Nov 2023 00:00:00 EST","refillRemaining":10,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22625967,"sig":"TAKE - 5G DAILY FOR 30 DAYS TEST TEST INDICATION TEST","orderedDate":"Tue, 31 Oct - 2023 00:00:00 EDT","quantity":30,"expirationDate":"Thu, 31 Oct 2024 00:00:00 - EDT","prescriptionNumber":"2720245D","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":22625967,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720245C","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACITRETIN","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 14 Nov 2023 14:16:02 EST","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":10,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22656198,"sig":null,"orderedDate":"Mon, - 20 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720245D","prescriptionName":"ACITRETIN - 25MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22656198,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 14 Nov 2023 14:16:09 EST","refillDate":"Mon, 20 Nov 2023 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22625968,"sig":"TAKE - ONE CAPSULE DAILY FOR 30 DAYS TEST","orderedDate":"Tue, 31 Oct 2023 00:00:00 - EDT","quantity":30,"expirationDate":"Thu, 31 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720298C","prescriptionName":"ACYCLOVIR - 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":22625968,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720298B","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00172-4266-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION TEST","indicationForUseFlag":null,"category":"Rx Medication","orderableItem":"ACYCLOVIR","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 14 Nov 2023 14:16:09 EST","refillDate":"Tue, 31 Oct 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22656199,"sig":null,"orderedDate":"Mon, - 20 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720298C","prescriptionName":"ACYCLOVIR - 200MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22656199,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 17 Oct 2023 13:36:48 EDT","refillDate":"Wed, 18 Oct 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22585447,"sig":"TAKE - ONE CAPSULE BY MOUTH EVERY DAY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Fri, - 22 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sun, 22 Sep 2024 - 00:00:00 EDT","prescriptionNumber":"3636929B","prescriptionName":"DANAZOL - 200MG 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":22585447,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 3636929A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, - 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00024-0305-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"DANAZOL - 200MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 17 Oct 2023 13:36:48 EDT","refillDate":"Sat, 23 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22588268,"sig":null,"orderedDate":"Wed, - 18 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636929B","prescriptionName":"DANAZOL - 200MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22588268,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, - 24 Oct 2023 15:06:22 EDT","refillDate":"Tue, 12 Sep 2023 00:00:00 EDT","refillRemaining":3,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22565799,"sig":"TAKE - 10MG BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Mon, 11 Sep 2023 00:00:00 - EDT","quantity":30,"expirationDate":"Wed, 11 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720466A","prescriptionName":"ABACAVIR - SO4 600MG/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":22565799,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720466","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","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/LAMIVUDINE","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, - 16 Oct 2023 09:33:11 EDT","refillDate":"Sun, 08 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22565800,"sig":"TAKE - ONE CAPSULE BY MOUTH DAILY FOR 30 DAYS TEST I TEST PLACE","orderedDate":"Wed, - 06 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Fri, 06 Sep 2024 - 00:00:00 EDT","prescriptionNumber":"2720527A","prescriptionName":"ACEBUTOLOL - HCL 400MG 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":22565800,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720527","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ACEBUTOLOL","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Wed, - 11 Oct 2023 12:03:05 EDT","refillDate":"Thu, 07 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22566024,"sig":null,"orderedDate":"Sun, - 08 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720527A","prescriptionName":"ACEBUTOLOL - HCL 400MG CAP","dispensedDate":"Mon, 09 Oct 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(983)272-0527","cmopNdcNumber":"00013264681","id":22566024,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"9832720527","dispStatus":"Discontinued","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Thu, - 19 Oct 2023 19:44:02 EDT","refillDate":"Sat, 07 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22565801,"sig":"IRRIGATE - 1 SOLUTION AFFECTED AREA DAILY FOR 60 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Sat, - 16 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Mon, 16 Sep 2024 - 00:00:00 EDT","prescriptionNumber":"2720526A","prescriptionName":"ACETIC ACID - 0.25% IRRG 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":22565801,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720526","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00264-2304-00","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ACETIC ACID","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Mon, - 16 Oct 2023 09:32:46 EDT","refillDate":"Sun, 17 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22584152,"sig":null,"orderedDate":"Sat, - 07 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720526A","prescriptionName":"ACETIC - ACID 0.25% IRRG SOLN","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22584152,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, - 16 Oct 2023 16:38:30 EDT","refillDate":"Mon, 16 Oct 2023 00:00:00 EDT","refillRemaining":11,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22565802,"sig":"TAKE - 5G DAILY FOR 30 DAYS TEST TEST INDICATION TEST","orderedDate":"Wed, 11 Oct - 2023 00:00:00 EDT","quantity":30,"expirationDate":"Fri, 11 Oct 2024 00:00:00 - EDT","prescriptionNumber":"2720245C","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":22565802,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720245B","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00004-0214-57","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACITRETIN","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Tue, - 24 Oct 2023 11:29:29 EDT","refillDate":"Tue, 24 Oct 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22565803,"sig":"TAKE - ONE CAPSULE DAILY FOR 30 DAYS TEST","orderedDate":"Wed, 11 Oct 2023 00:00:00 - EDT","quantity":30,"expirationDate":"Fri, 11 Oct 2024 00:00:00 EDT","prescriptionNumber":"2720298B","prescriptionName":"ACYCLOVIR - 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":22565803,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720298A","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00172-4266-70","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION TEST","indicationForUseFlag":null,"category":"Rx Medication","orderableItem":"ACYCLOVIR","trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 31 Oct 2023 08:45:36 EDT","refillDate":"Sat, 11 Nov 2023 00:00:00 EST","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22565804,"sig":"TAKE - ONE TABLET BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Thu, 21 Sep 2023 00:00:00 - EDT","quantity":30,"expirationDate":"Sat, 21 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720290B","prescriptionName":"AMITRIPTYLINE - HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":22565804,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720290A","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 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","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 31 Oct 2023 08:45:36 EDT","refillDate":"Fri, 22 Sep 2023 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22625963,"sig":null,"orderedDate":"Sat, - 11 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720290B","prescriptionName":"AMITRIPTYLINE - HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22625963,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Thu, - 19 Oct 2023 09:22:21 EDT","refillDate":"Fri, 22 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22593429,"sig":null,"orderedDate":"Mon, - 16 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720290B","prescriptionName":"AMITRIPTYLINE - HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22593429,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, - 20 Nov 2023 13:21:41 EST","refillDate":"Mon, 20 Nov 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22565805,"sig":"APPLY - 10ML TO AFFECTED AREA DAILY FOR 60 DAYS","orderedDate":"Wed, 13 Sep 2023 00:00:00 - EDT","quantity":1,"expirationDate":"Fri, 13 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720410A","prescriptionName":"BACT-NEOMY-POLYMIX - TOP OINT (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":22565805,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720410","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00168-0012-31","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"BACITRACIN/NEOMYCIN/POLYMYXIN B","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, - 20 Nov 2023 13:21:41 EST","refillDate":"Thu, 14 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22676760,"sig":null,"orderedDate":"Mon, - 20 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720410A","prescriptionName":"BACT-NEOMY-POLYMIX - TOP OINT (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22676760,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 14 Nov 2023 14:16:21 EST","refillDate":"Tue, 14 Nov 2023 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22545165,"sig":"TAKE - ONE TABLET BY MOUTH DAILY FOR 30 DAYS AUTO TEST --TAKE WITH FOOD--","orderedDate":"Mon, - 04 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 04 Sep 2024 - 00:00:00 EDT","prescriptionNumber":"2720604","prescriptionName":"BACLOFEN - 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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":22545165,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00603-2408-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"AUTO - TEST","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"BACLOFEN","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 14 Nov 2023 14:16:21 EST","refillDate":"Mon, 04 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22656196,"sig":null,"orderedDate":"Tue, - 14 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720604","prescriptionName":"BACLOFEN - 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22656196,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Wed, - 04 Oct 2023 16:46:54 EDT","refillDate":"Wed, 04 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22545166,"sig":"TAKE - ONE TABLET DAILY FOR 30 DAYS TEST --AVOID ANTACIDS--","orderedDate":"Mon, - 04 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Wed, 04 Sep 2024 - 00:00:00 EDT","prescriptionNumber":"2720605","prescriptionName":"GABAPENTIN - 600MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A + 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, + 11 Dec 2024 09:38:18 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":"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":"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":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":"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":"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, + 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, + 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":"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":"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":"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":"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":"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":"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":"refillinprocess","refillSubmitDate":"Fri, + 06 Dec 2024 00:00:00 EST","refillDate":"Fri, 06 Dec 2024 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"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, + 11 Dec 2024 09:38:19 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","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":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, + 07 Nov 2024 00:00:00 EST","refillDate":"Mon, 04 Nov 2024 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24655979,"sig":null,"orderedDate":"Fri, + 06 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2721191","prescriptionName":"ACETAMINOPHEN + 160MG/5ML ELIXIR (OZ)","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24655979,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00054-3010-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":1,"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, + 11 Dec 2024 09:38:19 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":"Mon, + 15 Apr 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":23657550,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720877","prescriptionName":"BENZONATATE + 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23657550,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"50111-0851-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, + 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":"Tue, + 03 Dec 2024 00:00:00 EST","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":"active","refillSubmitDate":"Thu, + 31 Oct 2024 00:00:00 EDT","refillDate":"Fri, 29 Nov 2024 00:00:00 EST","refillRemaining":0,"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, 11 Dec 2024 09:38:18 + EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":"active","refillSubmitDate":"Thu, + 31 Oct 2024 00:00:00 EDT","refillDate":"Wed, 07 Feb 2024 00:00:00 EST","refillRemaining":0,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24865542,"sig":null,"orderedDate":"Fri, + 29 Nov 2024 00:00:00 EST","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":24865542,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","ndc":"00071-2214-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":"active","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","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":"active","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","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, + 11 Dec 2024 09:38:19 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, 11 Dec 2024 + 09:38:19 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, 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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":"refillinprocess","refillSubmitDate":"Tue, + 10 Dec 2024 00:00:00 EST","refillDate":"Sat, 08 Feb 2025 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24783946,"sig":"TAKE + 1 TEASPOONFUL MOUTH WEEKLY FOR 90 DAYS --TAKE WITH FOOD--","orderedDate":"Wed, + 20 Nov 2024 00:00:00 EST","quantity":500,"expirationDate":"Fri, 21 Nov 2025 + 00:00:00 EST","prescriptionNumber":"2721221","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":24783946,"userId":16955936,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 09:38:19 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":"AMOXICILLIN","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Thu, + 21 Nov 2024 00:00:00 EST","refillDate":"Wed, 20 Nov 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24825870,"sig":null,"orderedDate":"Sat, + 08 Feb 2025 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2721221","prescriptionName":"AMOXICILLIN + 125MG/5ML SUSP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24825870,"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":"Fri, + 06 Dec 2024 00:00:00 EST","refillDate":"Sat, 08 Feb 2025 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24783947,"sig":"TAKE + ONE TABLET WEEKLY FOR 90 DAYS --TAKE WITH FOOD IF GI UPSET OCCURS/DO NOT CRUSH + OR CHEW--","orderedDate":"Wed, 20 Nov 2024 00:00:00 EST","quantity":50,"expirationDate":"Fri, + 21 Nov 2025 00:00:00 EST","prescriptionNumber":"2721222","prescriptionName":"IBUPROFEN + 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":24783947,"userId":16955936,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 09:38:19 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"53746-0132-05","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":"Fri, + 06 Dec 2024 00:00:00 EST","refillDate":"Wed, 20 Nov 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24899601,"sig":null,"orderedDate":"Sat, + 08 Feb 2025 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2721222","prescriptionName":"IBUPROFEN + 600MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24899601,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"53746-0132-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":"refillinprocess","refillSubmitDate":"Wed, + 27 Nov 2024 00:00:00 EST","refillDate":"Sat, 08 Feb 2025 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24783948,"sig":"TAKE + TEST BY MOUTH WEEKLY FOR 90 DAYS --TAKE WITH FOOD IF NAUSEA OCCURS/AVOID GRAPEFRUIT + JUICE--","orderedDate":"Wed, 20 Nov 2024 00:00:00 EST","quantity":50,"expirationDate":"Fri, + 21 Nov 2025 00:00:00 EST","prescriptionNumber":"2721223","prescriptionName":"CYCLOSPORINE + (GENGRAF) 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":24783948,"userId":16955936,"providerFirstName":"BHAVIN","providerLastName":"PATEL","remarks":null,"divisionName":"DAYTON","modifiedDate":"Wed, + 11 Dec 2024 09:38:19 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","ndc":"00074-6479-32","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx + Medication","orderableItem":"CYCLOSPORINE","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, + 27 Nov 2024 00:00:00 EST","refillDate":"Wed, 20 Nov 2024 00:00:00 EST","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24852747,"sig":null,"orderedDate":"Sat, + 08 Feb 2025 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2721223","prescriptionName":"CYCLOSPORINE + (GENGRAF) 100MG CAP","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24852747,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00074-6479-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":"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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":8,"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, + 11 Dec 2024 09:38:19 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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":8,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24908237,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720933","prescriptionName":"AMITRIPTYLINE + HCL 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24908237,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00603-2212-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":"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":"Tue, + 03 Dec 2024 00:00:00 EST","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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":9,"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, + 11 Dec 2024 09:38:19 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":"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":23844894,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720934","prescriptionName":"AMOXAPINE + 150MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844894,"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, + 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":"Tue, + 03 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":1,"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, + 11 Dec 2024 09:38:19 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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Thu, 18 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24908238,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720936","prescriptionName":"ATORVASTATIN + CALCIUM 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24908238,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00071-0155-23","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":23844896,"sig":null,"orderedDate":"Tue, + 03 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:18 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, + 11 Dec 2024 09:38:18 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, 11 Dec 2024 09:38:18 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":"Tue, + 10 Dec 2024 00:00:00 EST","refillDate":"Tue, 10 Dec 2024 00:00:00 EST","refillRemaining":3,"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, + 11 Dec 2024 09:38:19 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":"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":"Tue, + 10 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":0,"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, + 11 Dec 2024 09:38:19 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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Tue, 19 Mar 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24908239,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","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":24908239,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00597-0001-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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"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":"Tue, + 03 Dec 2024 00:00:00 EST","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, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":0,"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, + 11 Dec 2024 09:38:19 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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Tue, 19 Mar 2024 00:00:00 EDT","refillRemaining":0,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24908240,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","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":24908240,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"50242-0044-13","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":"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":"Tue, + 03 Dec 2024 00:00:00 EST","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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":1,"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, 11 Dec 2024 + 09:38:19 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":"Wed, + 29 May 2024 00:00:00 EDT","refillDate":"Wed, 17 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":23844890,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720868A","prescriptionName":"ALBUTEROL + SULFATE 2MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844890,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00085-0252-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":"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":"Tue, + 03 Dec 2024 00:00:00 EST","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":"Tue, + 10 Dec 2024 00:00:00 EST","refillDate":"Tue, 10 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 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":"Tue, + 10 Dec 2024 00:00:00 EST","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":"active","refillSubmitDate":"Fri, + 06 Dec 2024 00:00:00 EST","refillDate":"Tue, 03 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":"active","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":"Tue, + 03 Dec 2024 00:00:00 EST","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":"Active","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":"active","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":"Active","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":"active","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":"Active","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":"Mon, 02 Dec 2024 + 16:31:50 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, 11 Dec 2024 09:38:18 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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":"Tue, + 10 Dec 2024 00:00:00 EST","refillDate":"Tue, 10 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 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":"Tue, + 10 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":1,"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, + 11 Dec 2024 09:38:19 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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 29 Apr 2024 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24908241,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2721013","prescriptionName":"MELOXICAM + 15MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24908241,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00597-0030-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":23845991,"sig":null,"orderedDate":"Tue, + 03 Dec 2024 00:00:00 EST","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, 11 Dec 2024 09:38:18 + 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, 11 Dec 2024 09:38:18 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":"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, + 11 Dec 2024 09:38:19 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, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":1,"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, + 11 Dec 2024 09:38:19 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, + 09 Dec 2024 00:00:00 EST","refillDate":"Tue, 27 Feb 2024 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24908236,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720864","prescriptionName":"LIDOCAINE + 0.5% 50ML","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24908236,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","ndc":"00186-0135-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":"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":"Tue, + 03 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 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":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, + 11 Dec 2024 09:38:19 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":"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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":1,"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, + 11 Dec 2024 09:38:19 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":"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":23844886,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720872","prescriptionName":"AMLODIPINE + BESYLATE 10MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":23844886,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","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":"Non-Renewable + Drug.","trackingList":null,"rxRFRecords":null,"tracking":false},{"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":"Tue, + 03 Dec 2024 00:00:00 EST","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":"submitted","refillSubmitDate":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Tue, 03 Dec 2024 00:00:00 EST","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, 11 Dec 2024 09:38:18 + EST","institutionId":null,"dialCmopDivisionPhone":"4106367019","dispStatus":"Active: + Submitted","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":"submitted","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":"Tue, + 03 Dec 2024 00:00:00 EST","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":"Active: + Submitted","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":"submitted","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":"Active: + Submitted","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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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":"Tue, + 10 Dec 2024 00:00:00 EST","refillDate":"Tue, 10 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 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":"Tue, + 10 Dec 2024 00:00:00 EST","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, 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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":"refillinprocess","refillSubmitDate":"Thu, + 05 Dec 2024 00:00:00 EST","refillDate":"Sun, 22 Dec 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24865543,"sig":"TAKE + 1 TABLET BY MOUTH EVERY DAY FOR 60 DAYS","orderedDate":"Mon, 02 Dec 2024 00:00:00 + EST","quantity":30,"expirationDate":"Wed, 03 Dec 2025 00:00:00 EST","prescriptionNumber":"3636974B","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":24865543,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636974A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 11 Dec 2024 09:38:18 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","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":"suspended","refillSubmitDate":"Thu, + 05 Dec 2024 00:00:00 EST","refillDate":"Mon, 02 Dec 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24899585,"sig":null,"orderedDate":"Sun, + 22 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3636974B","prescriptionName":"ABACAVIR + SULF 600/LAMIVUDINE 300MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24899585,"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":"submitted","refillSubmitDate":"Mon, + 09 Dec 2024 00:00:00 EST","refillDate":"Mon, 02 Dec 2024 00:00:00 EST","refillRemaining":4,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24865544,"sig":"TAKE + 5 TABLETS BY MOUTH EVERY DAY FOR 30 DAYS","orderedDate":"Mon, 02 Dec 2024 + 00:00:00 EST","quantity":30,"expirationDate":"Wed, 03 Dec 2025 00:00:00 EST","prescriptionNumber":"3636976B","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":24865544,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 3636976A","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Wed, + 11 Dec 2024 09:38:18 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Submitted","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":null,"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, + 03 Dec 2024 00:00:00 EST","refillDate":"Sun, 22 Dec 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24865545,"sig":"TAKE + ONE-HALF TABLET EVERY MORNING, 30 MINUTES BEFORE MEAL WITH FULL GLASS OF WATER, + ONLY. DON''T LIE DOWN, EAT, DRINK, OR TAKE MEDS FOR ONE-HALF (1/2) HOUR.","orderedDate":"Mon, + 02 Dec 2024 00:00:00 EST","quantity":3,"expirationDate":"Wed, 03 Dec 2025 + 00:00:00 EST","prescriptionNumber":"3637029","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":24865545,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 11 Dec 2024 09:38:18 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","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":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, + 03 Dec 2024 00:00:00 EST","refillDate":"Mon, 02 Dec 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24899586,"sig":null,"orderedDate":"Sun, + 22 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3637029","prescriptionName":"ALENDRONATE + 10MG TAB","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24899586,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Fri, + 06 Dec 2024 00:00:00 EST","refillDate":"Sun, 22 Dec 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24865546,"sig":"EACH(S) + MISC EVERY DAY","orderedDate":"Mon, 02 Dec 2024 00:00:00 EST","quantity":3,"expirationDate":"Wed, + 03 Dec 2025 00:00:00 EST","prescriptionNumber":"3637030","prescriptionName":"BATTERY + 3V #300.0035","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":24865546,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC + SLC-OUTPTRX","modifiedDate":"Wed, 11 Dec 2024 09:38:18 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":"BATTERY 3V #300.0035 ","shape":null,"color":null,"frontImprint":null,"backImprint":null,"dataSourceSystem":"VISTA","isRenewable":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Fri, + 06 Dec 2024 00:00:00 EST","refillDate":"Mon, 02 Dec 2024 00:00:00 EST","refillRemaining":2,"facilityName":"SLC10 + TEST LAB","facilityApiName":null,"isRefillable":false,"isTrackable":false,"prescriptionId":24899587,"sig":null,"orderedDate":"Sun, + 22 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"3637030","prescriptionName":"BATTERY + 3V #300.0035","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24899587,"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":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":"Fri, 29 Nov 2024 + 08:43:32 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":"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":"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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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":"discontinued","refillSubmitDate":"Mon, + 19 Aug 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":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, + 11 Dec 2024 09:38:19 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","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":"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":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":"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":"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, + 11 Dec 2024 09:38:19 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, + 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":"refillinprocess","refillSubmitDate":"Tue, + 10 Dec 2024 00:00:00 EST","refillDate":"Sun, 22 Dec 2024 00:00:00 EST","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24865550,"sig":"TAKE + TWO TABLETS BY MOUTH DAILY FOR 30 DAYS","orderedDate":"Mon, 02 Dec 2024 00:00:00 + EST","quantity":30,"expirationDate":"Wed, 03 Dec 2025 00:00:00 EST","prescriptionNumber":"2720221H","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":24865550,"userId":16955936,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED + FROM RX # 2720221G","divisionName":"DAYTON","modifiedDate":"Wed, 11 Dec 2024 + 09:38:19 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: + Refill in Process","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":"suspended","refillSubmitDate":"Fri, + 06 Dec 2024 00:00:00 EST","refillDate":"Mon, 02 Dec 2024 00:00:00 EST","refillRemaining":10,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24899602,"sig":null,"orderedDate":"Sun, + 22 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720221H","prescriptionName":"ALBUTEROL + SULFATE 4MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24899602,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","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":"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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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, + 11 Dec 2024 09:38:19 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":"Tue, + 10 Dec 2024 00:00:00 EST","refillDate":"Mon, 23 Dec 2024 00:00:00 EST","refillRemaining":2,"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, + 11 Dec 2024 09:38:19 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":"Tue, + 10 Dec 2024 00:00:00 EST","refillDate":"Tue, 30 Apr 2024 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":false,"isTrackable":false,"prescriptionId":24916827,"sig":null,"orderedDate":"Mon, + 23 Dec 2024 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2721025","prescriptionName":"MAALOX + NO. 2 TAB ","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":24916827,"userId":16955936,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Suspended","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":true,"notRenewableReason":null,"trackingList":null,"rxRFRecords":null,"tracking":false},{"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":"Tue, + 03 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 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":"Tue, + 10 Dec 2024 00:00:00 EST","refillDate":"Tue, 10 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 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":"Tue, + 10 Dec 2024 00:00:00 EST","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":"active","refillSubmitDate":"Thu, + 05 Dec 2024 00:00:00 EST","refillDate":"Sat, 04 May 2024 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"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, + 11 Dec 2024 09:38:19 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":"refillinprocess","refillSubmitDate":"Tue, + 10 Dec 2024 00:00:00 EST","refillDate":"Tue, 10 Dec 2024 00:00:00 EST","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, + 11 Dec 2024 09:38:19 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":"Tue, + 10 Dec 2024 00:00:00 EST","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":"active","refillSubmitDate":"Tue, + 03 Dec 2024 00:00:00 EST","refillDate":"Sat, 04 May 2024 00:00:00 EDT","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"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, + 11 Dec 2024 09:38:19 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":"active","refillSubmitDate":"Fri, + 06 Dec 2024 00:00:00 EST","refillDate":"Tue, 03 Dec 2024 00:00:00 EST","refillRemaining":6,"facilityName":"DAYT29","facilityApiName":"Dayton + Medical Center","isRefillable":true,"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, + 11 Dec 2024 09:38:19 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active","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":"active","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":"Tue, + 03 Dec 2024 00:00:00 EST","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":"Active","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":22545166,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"DAYTON","modifiedDate":"Fri, - 24 Nov 2023 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00071-0513-24","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST","indicationForUseFlag":"1","category":"Rx - Medication","orderableItem":"GABAPENTIN","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Wed, - 04 Oct 2023 16:46:54 EDT","refillDate":"Mon, 04 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22547960,"sig":null,"orderedDate":"Wed, - 04 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720605","prescriptionName":"GABAPENTIN - 600MG TAB","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22547960,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, - 20 Nov 2023 13:27:20 EST","refillDate":"Thu, 23 Nov 2023 00:00:00 EST","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22631590,"sig":"APPLY - 1MG TO MOUTH DAILY FOR 30 DAYS TEST INDICATION 06052023 - C & A TEST PATIENT - INTRUCTIONS","orderedDate":"Fri, 29 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Sun, - 29 Sep 2024 00:00:00 EDT","prescriptionNumber":"2720511A","prescriptionName":"CADEXOMER - IODINE 0.9% TOP GEL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":"A - refill request cannot be submitted at this time. Please review the prescription - status and fill date. If you need more of this medication, please call the - pharmacy phone number on your prescription label.","cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22631590,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 2720511","divisionName":"DAYTON","modifiedDate":"Fri, 24 Nov 2023 - 09:52:16 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"08213-0100-40","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION 06052023 - C & A","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"CADEXOMER - IODINE 0.9%","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, - 20 Nov 2023 13:27:20 EST","refillDate":"Sat, 30 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22676761,"sig":null,"orderedDate":"Thu, - 23 Nov 2023 00:00:00 EST","quantity":null,"expirationDate":null,"prescriptionNumber":"2720511A","prescriptionName":"CADEXOMER - IODINE 0.9% TOP GEL","dispensedDate":null,"stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22676761,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false},{"refillStatus":"suspended","refillSubmitDate":"Fri, - 03 Nov 2023 14:56:08 EDT","refillDate":"Sat, 30 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"DAYT29","isRefillable":false,"isTrackable":false,"prescriptionId":22631628,"sig":null,"orderedDate":"Fri, - 03 Nov 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"2720511A","prescriptionName":"CADEXOMER - IODINE 0.9% TOP GEL","dispensedDate":"Fri, 03 Nov 2023 00:00:00 EDT","stationNumber":"989","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22631628,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Mon, - 02 Oct 2023 16:21:22 EDT","refillDate":"Sun, 01 Oct 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22534598,"sig":"TAKE - 10ML BY MOUTH EVERY DAY FOR 30 DAYS TEST INDI TEST PI","orderedDate":"Sat, - 02 Sep 2023 00:00:00 EDT","quantity":1,"expirationDate":"Mon, 02 Sep 2024 - 00:00:00 EDT","prescriptionNumber":"3636979","prescriptionName":"ACETYLCYSTEINE - 20% INHL SOLN 30ML","dispensedDate":"Mon, 04 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":22534598,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":null,"divisionName":"VAMC - SLC-OUTPTRX","modifiedDate":"Fri, 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00409-3308-03","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDI","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"ACETYLCYSTEINE - 20% 30ML","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Mon, - 02 Oct 2023 16:21:22 EDT","refillDate":"Sun, 03 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22534649,"sig":null,"orderedDate":"Sun, - 01 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636979","prescriptionName":"ACETYLCYSTEINE - 20% INHL SOLN 30ML","dispensedDate":"Mon, 02 Oct 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22534649,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 26 Sep 2023 16:10:24 EDT","refillDate":"Sat, 23 Sep 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22510593,"sig":"APPLY, - A SEGMENT(S) INSIDE, LOWER LID OF EYE WEEKLY FOR 30 DAYS TEST INDICATION TEST - PATIENT INTRUCTIONS","orderedDate":"Sun, 27 Aug 2023 00:00:00 EDT","quantity":1,"expirationDate":"Tue, - 27 Aug 2024 00:00:00 EDT","prescriptionNumber":"3636889A","prescriptionName":"BACITRACIN - 500 UNT/GM OPH OINT","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":22510593,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 3636889","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, - 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"00168-0026-38","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"BACITRACIN - 500 UNIT/GM 3.5GM","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 26 Sep 2023 16:10:24 EDT","refillDate":"Mon, 28 Aug 2023 00:00:00 EDT","refillRemaining":1,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22510635,"sig":null,"orderedDate":"Sat, - 23 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636889A","prescriptionName":"BACITRACIN - 500 UNT/GM OPH OINT","dispensedDate":"Sun, 24 Sep 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":"(410)636-6899","cmopNdcNumber":"00113002239","id":22510635,"userId":17621060,"providerFirstName":null,"providerLastName":null,"remarks":null,"divisionName":null,"modifiedDate":null,"institutionId":null,"dialCmopDivisionPhone":"4106366899","dispStatus":"Suspended","ndc":null,"reason":null,"prescriptionNumberIndex":"RF1","prescriptionSource":"RF","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":null,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"discontinued","refillSubmitDate":"Mon, - 02 Oct 2023 16:21:22 EDT","refillDate":"Wed, 27 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22510594,"sig":"TAKE - ONE CAPSULE BY MOUTH EVERY DAY FOR 30 DAYS TEST INDICATION TEST PATIENT INSTRUCTIONS","orderedDate":"Fri, - 01 Sep 2023 00:00:00 EDT","quantity":30,"expirationDate":"Sun, 01 Sep 2024 - 00:00:00 EDT","prescriptionNumber":"3636929A","prescriptionName":"DANAZOL - 200MG CAP","dispensedDate":"Sun, 03 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":22510594,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 3636929","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, - 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Discontinued","ndc":"00024-0305-06","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":"TEST - INDICATION","indicationForUseFlag":"1","category":"Rx Medication","orderableItem":"DANAZOL - 200MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"discontinued","refillSubmitDate":"Mon, - 02 Oct 2023 15:49:42 EDT","refillDate":"Sat, 02 Sep 2023 00:00:00 EDT","refillRemaining":4,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22534150,"sig":null,"orderedDate":"Wed, - 27 Sep 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636929A","prescriptionName":"DANAZOL - 200MG CAP","dispensedDate":"Fri, 29 Sep 2023 00:00:00 EDT","stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22534150,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false},{"refillStatus":"refillinprocess","refillSubmitDate":"Tue, - 17 Oct 2023 13:31:30 EDT","refillDate":"Wed, 18 Oct 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22585396,"sig":"TAKE - ONE CAPSULE EVERY DAY FOR 30 DAYS","orderedDate":"Wed, 27 Sep 2023 00:00:00 - EDT","quantity":30,"expirationDate":"Fri, 27 Sep 2024 00:00:00 EDT","prescriptionNumber":"3636961A","prescriptionName":"ETOPOSIDE - 50MG 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":22585396,"userId":17621060,"providerFirstName":"MOHAMMAD","providerLastName":"ISLAM","remarks":"RENEWED - FROM RX # 3636961","divisionName":"VAMC SLC-OUTPTRX","modifiedDate":"Fri, - 24 Nov 2023 09:52:15 EST","institutionId":null,"dialCmopDivisionPhone":"","dispStatus":"Active: - Refill in Process","ndc":"51079-0965-05","reason":null,"prescriptionNumberIndex":"RX","prescriptionSource":"RX","disclaimer":null,"indicationForUse":null,"indicationForUseFlag":null,"category":"Rx - Medication","orderableItem":"ETOPOSIDE 50MG","trackingList":null,"rxRFRecords":{"rfRecord":[{"refillStatus":"suspended","refillSubmitDate":"Tue, - 17 Oct 2023 13:31:30 EDT","refillDate":"Thu, 28 Sep 2023 00:00:00 EDT","refillRemaining":2,"facilityName":"SLC10 - TEST LAB","isRefillable":false,"isTrackable":false,"prescriptionId":22588267,"sig":null,"orderedDate":"Wed, - 18 Oct 2023 00:00:00 EDT","quantity":null,"expirationDate":null,"prescriptionNumber":"3636961A","prescriptionName":"ETOPOSIDE - 50MG CAP","dispensedDate":null,"stationNumber":"979","inCernerTransition":false,"notRefillableDisplayMessage":null,"cmopDivisionPhone":null,"cmopNdcNumber":null,"id":22588267,"userId":17621060,"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,"trackingList":null,"rxRFRecords":null,"tracking":false}]},"tracking":false}]},"errors":[],"infoMessages":[]}' - recorded_at: Fri, 24 Nov 2023 19:28:41 GMT -recorded_with: VCR 6.2.0 + 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, 11 Dec 2024 18:21:44 GMT +recorded_with: VCR 6.3.1 From 60e5c85500c663d0b4b41fef793fc31347a1ed92 Mon Sep 17 00:00:00 2001 From: samcoforma <105806934+samcoforma@users.noreply.github.com> Date: Thu, 12 Dec 2024 09:27:19 -0800 Subject: [PATCH 13/57] [CST] Moved failure notification emails into their own sidekiq jobs (#19222) * Moved failure notification emails into their own sidekiq jobs for both EVSS and Lighthouse document uploaders, and created unit tests * updated CODEOWNERS to include new failure_notification.rb files * updated codeowners * fixed linting errors * added sentry logging and changed 'notify_client' from a class method to an instance method * fixed lighthouse notify_client method to not be a class method, and added sentry logging * added 'include SentryLogging' to failure_notifcation.rb --------- Co-authored-by: jerekshoe --- .github/CODEOWNERS | 4 ++ app/sidekiq/evss/document_upload.rb | 13 +---- app/sidekiq/evss/failure_notification.rb | 38 +++++++++++++ app/sidekiq/lighthouse/document_upload.rb | 13 +---- .../lighthouse/failure_notification.rb | 38 +++++++++++++ spec/sidekiq/evss/document_upload_spec.rb | 31 ++++------- .../sidekiq/evss/failure_notification_spec.rb | 55 +++++++++++++++++++ .../lighthouse/document_upload_spec.rb | 31 ++++------- .../lighthouse/failure_notification_spec.rb | 55 +++++++++++++++++++ 9 files changed, 217 insertions(+), 61 deletions(-) create mode 100644 app/sidekiq/evss/failure_notification.rb create mode 100644 app/sidekiq/lighthouse/failure_notification.rb create mode 100644 spec/sidekiq/evss/failure_notification_spec.rb create mode 100644 spec/sidekiq/lighthouse/failure_notification_spec.rb diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 0379e45a098..aeecf918557 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -630,6 +630,7 @@ app/sidekiq/evss/delete_old_claims.rb @department-of-veterans-affairs/mbs-core-t app/sidekiq/evss/dependents_application_job.rb @department-of-veterans-affairs/benefits-dependents-management @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group app/sidekiq/evss/disability_compensation_form @department-of-veterans-affairs/Disability-Experience @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group app/sidekiq/evss/document_upload.rb @department-of-veterans-affairs/benefits-management-tools-be @department-of-veterans-affairs/backend-review-group +app/sidekiq/evss/failure_notification.rb @department-of-veterans-affairs/benefits-management-tools-be @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group @department-of-veterans-affairs/benefits-management-tools-be app/sidekiq/evss/disability_compensation_form/form526_document_upload_failure_email.rb @department-of-veterans-affairs/Disability-Experience @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group app/sidekiq/evss/retrieve_claims_from_remote_job.rb @department-of-veterans-affairs/benefits-management-tools-be @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group app/sidekiq/evss/request_decision.rb @department-of-veterans-affairs/benefits-management-tools-be @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group @@ -656,6 +657,7 @@ app/sidekiq/lighthouse @department-of-veterans-affairs/backend-review-group app/sidekiq/lighthouse/submit_career_counseling_job.rb @department-of-veterans-affairs/my-education-benefits @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group app/sidekiq/lighthouse/create_intent_to_file_job.rb @department-of-veterans-affairs/pension-and-burials @department-of-veterans-affairs/backend-review-group app/sidekiq/lighthouse/income_and_assets_intake_job.rb @department-of-veterans-affairs/pension-and-burials @department-of-veterans-affairs/backend-review-group +app/sidekiq/lighthouse/failure_notification.rb @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group @department-of-veterans-affairs/benefits-management-tools-be app/sidekiq/load_average_days_for_claim_completion_job.rb @department-of-veterans-affairs/benefits-microservices @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group app/sidekiq/mhv @department-of-veterans-affairs/vfs-mhv-medical-records @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group app/sidekiq/mhv/account_creator_job.rb @department-of-veterans-affairs/octo-identity @@ -1362,6 +1364,7 @@ spec/sidekiq/evss/disability_compensation_form/submit_form8940_spec.rb @departme spec/sidekiq/evss/disability_compensation_form/submit_uploads_spec.rb @department-of-veterans-affairs/Disability-Experience @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/sidekiq/evss/disability_compensation_form/upload_bdd_instructions_spec.rb @department-of-veterans-affairs/Disability-Experience @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/sidekiq/evss/document_upload_spec.rb @department-of-veterans-affairs/benefits-management-tools-be @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group +spec/sidekiq/evss/failure_notification_spec.rb @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group @department-of-veterans-affairs/benefits-management-tools-be spec/sidekiq/evss/retrieve_claims_from_remote_job_spec.rb @department-of-veterans-affairs/benefits-management-tools-be @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/sidekiq/evss/update_claim_from_remote_job_spec.rb @department-of-veterans-affairs/benefits-management-tools-be @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/sidekiq/export_breaker_status_spec.rb @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group @@ -1382,6 +1385,7 @@ spec/sidekiq/income_limits @department-of-veterans-affairs/vfs-public-websites-f spec/sidekiq/in_progress_form_cleaner_spec.rb @department-of-veterans-affairs/vfs-authenticated-experience-backend @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/sidekiq/kms_key_rotation @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/sidekiq/lighthouse @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group +spec/sidekiq/lighthouse/failure_notification_spec.rb @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group @department-of-veterans-affairs/benefits-management-tools-be spec/sidekiq/load_average_days_for_claim_completion_job_spec.rb @department-of-veterans-affairs/benefits-microservices @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/sidekiq/mhv @department-of-veterans-affairs/vfs-mhv-medical-records @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/sidekiq/mhv/account_creator_job_spec.rb @department-of-veterans-affairs/octo-identity diff --git a/app/sidekiq/evss/document_upload.rb b/app/sidekiq/evss/document_upload.rb index c7151f31050..c8486287b51 100644 --- a/app/sidekiq/evss/document_upload.rb +++ b/app/sidekiq/evss/document_upload.rb @@ -3,6 +3,7 @@ require 'ddtrace' require 'timeout' require 'logging/third_party_transaction' +require 'evss/failure_notification' class EVSS::DocumentUpload include Sidekiq::Job @@ -52,13 +53,9 @@ class EVSS::DocumentUpload date_submitted = format_issue_instant_for_mailers(msg['created_at']) date_failed = format_issue_instant_for_mailers(msg['failed_at']) - notify_client.send_email( - recipient_identifier: { id_value: icn, id_type: 'ICN' }, - template_id: MAILER_TEMPLATE_ID, - personalisation: { first_name:, filename:, date_submitted:, date_failed: } - ) + EVSS::FailureNotification.perform_async(icn, first_name, filename, date_submitted, date_failed) - ::Rails.logger.info('EVSS::DocumentUpload exhaustion handler email sent') + ::Rails.logger.info('EVSS::DocumentUpload exhaustion handler email queued') StatsD.increment('silent_failure_avoided_no_confirmation', tags: DD_ZSF_TAGS) rescue => e ::Rails.logger.error('EVSS::DocumentUpload exhaustion handler email error', @@ -101,10 +98,6 @@ def self.format_issue_instant_for_mailers(issue_instant) timestamp.strftime('%B %-d, %Y %-l:%M %P %Z').sub(/([ap])m/, '\1.m.') end - def self.notify_client - VaNotify::Service.new(NOTIFY_SETTINGS.api_key) - end - private def validate_document! diff --git a/app/sidekiq/evss/failure_notification.rb b/app/sidekiq/evss/failure_notification.rb new file mode 100644 index 00000000000..0fb573acbed --- /dev/null +++ b/app/sidekiq/evss/failure_notification.rb @@ -0,0 +1,38 @@ +# frozen_string_literal: true + +class EVSS::FailureNotification + include Sidekiq::Job + include SentryLogging + + NOTIFY_SETTINGS = Settings.vanotify.services.benefits_management_tools + MAILER_TEMPLATE_ID = NOTIFY_SETTINGS.template_id.evidence_submission_failure_email + + # retry for one day + sidekiq_options retry: 14, queue: 'low' + # Set minimum retry time to ~1 hour + sidekiq_retry_in do |count, _exception| + rand(3600..3660) if count < 9 + end + + sidekiq_retries_exhausted do + ::Rails.logger.info('EVSS::FailureNotification email could not be sent') + end + + def notify_client + VaNotify::Service.new(NOTIFY_SETTINGS.api_key) + end + + def perform(icn, first_name, filename, date_submitted, date_failed) + notify_client.send_email( + recipient_identifier: { id_value: icn, id_type: 'ICN' }, + template_id: MAILER_TEMPLATE_ID, + personalisation: { first_name:, filename:, date_submitted:, date_failed: } + ) + + ::Rails.logger.info('EVSS::FailureNotification email sent') + rescue => e + ::Rails.logger.error('EVSS::FailureNotification email error', + { message: e.message }) + log_exception_to_sentry(e) + end +end diff --git a/app/sidekiq/lighthouse/document_upload.rb b/app/sidekiq/lighthouse/document_upload.rb index f7e76d7932b..084cf600e33 100644 --- a/app/sidekiq/lighthouse/document_upload.rb +++ b/app/sidekiq/lighthouse/document_upload.rb @@ -3,6 +3,7 @@ require 'ddtrace' require 'timeout' require 'lighthouse/benefits_documents/worker_service' +require 'lighthouse/failure_notification' class Lighthouse::DocumentUpload include Sidekiq::Job @@ -37,13 +38,9 @@ class Lighthouse::DocumentUpload date_submitted = format_issue_instant_for_mailers(msg['created_at']) date_failed = format_issue_instant_for_mailers(msg['failed_at']) - notify_client.send_email( - recipient_identifier: { id_value: icn, id_type: 'ICN' }, - template_id: MAILER_TEMPLATE_ID, - personalisation: { first_name:, filename:, date_submitted:, date_failed: } - ) + Lighthouse::FailureNotification.perform_async(icn, first_name, filename, date_submitted, date_failed) - ::Rails.logger.info('Lighthouse::DocumentUpload exhaustion handler email sent') + ::Rails.logger.info('Lighthouse::DocumentUpload exhaustion handler email queued') StatsD.increment('silent_failure_avoided_no_confirmation', tags: DD_ZSF_TAGS) rescue => e ::Rails.logger.error('Lighthouse::DocumentUpload exhaustion handler email error', @@ -75,10 +72,6 @@ def self.format_issue_instant_for_mailers(issue_instant) timestamp.strftime('%B %-d, %Y %-l:%M %P %Z').sub(/([ap])m/, '\1.m.') end - def self.notify_client - VaNotify::Service.new(NOTIFY_SETTINGS.api_key) - end - def perform(user_icn, document_hash) client = BenefitsDocuments::WorkerService.new document, file_body, uploader = nil diff --git a/app/sidekiq/lighthouse/failure_notification.rb b/app/sidekiq/lighthouse/failure_notification.rb new file mode 100644 index 00000000000..77d6345500e --- /dev/null +++ b/app/sidekiq/lighthouse/failure_notification.rb @@ -0,0 +1,38 @@ +# frozen_string_literal: true + +class Lighthouse::FailureNotification + include Sidekiq::Job + include SentryLogging + + NOTIFY_SETTINGS = Settings.vanotify.services.benefits_management_tools + MAILER_TEMPLATE_ID = NOTIFY_SETTINGS.template_id.evidence_submission_failure_email + + # retry for one day + sidekiq_options retry: 14, queue: 'low' + # Set minimum retry time to ~1 hour + sidekiq_retry_in do |count, _exception| + rand(3600..3660) if count < 9 + end + + sidekiq_retries_exhausted do + ::Rails.logger.info('Lighthouse::FailureNotification email could not be sent') + end + + def notify_client + VaNotify::Service.new(NOTIFY_SETTINGS.api_key) + end + + def perform(icn, first_name, filename, date_submitted, date_failed) + notify_client.send_email( + recipient_identifier: { id_value: icn, id_type: 'ICN' }, + template_id: MAILER_TEMPLATE_ID, + personalisation: { first_name:, filename:, date_submitted:, date_failed: } + ) + + ::Rails.logger.info('Lighthouse::FailureNotification email sent') + rescue => e + ::Rails.logger.error('Lighthouse::FailureNotification email error', + { message: e.message }) + log_exception_to_sentry(e) + end +end diff --git a/spec/sidekiq/evss/document_upload_spec.rb b/spec/sidekiq/evss/document_upload_spec.rb index 6d224059ea0..6c348c8113c 100644 --- a/spec/sidekiq/evss/document_upload_spec.rb +++ b/spec/sidekiq/evss/document_upload_spec.rb @@ -65,26 +65,19 @@ timestamp.strftime('%B %-d, %Y %-l:%M %P %Z').sub(/([ap])m/, '\1.m.') end - it 'enqueues a failure notification mailer to send to the veteran' do - allow(VaNotify::Service).to receive(:new) { notify_client_stub } - + it 'calls EVSS::FailureNotification' do subject.within_sidekiq_retries_exhausted_block(args) do - expect(notify_client_stub).to receive(:send_email).with( - { - recipient_identifier: { id_value: user_account.icn, id_type: 'ICN' }, - template_id: 'fake_template_id', - personalisation: { - first_name: 'Bob', - filename: 'docXXXX-XXte.pdf', - date_submitted: formatted_submit_date, - date_failed: formatted_submit_date - } - } + expect(EVSS::FailureNotification).to receive(:perform_async).with( + user_account.icn, + 'Bob', # first_name + 'docXXXX-XXte.pdf', # filename + formatted_submit_date, # date_submitted + formatted_submit_date # date_failed ) expect(Rails.logger) .to receive(:info) - .with('EVSS::DocumentUpload exhaustion handler email sent') + .with('EVSS::DocumentUpload exhaustion handler email queued') expect(StatsD).to receive(:increment).with('silent_failure_avoided_no_confirmation', tags:) end end @@ -95,13 +88,9 @@ Flipper.disable(:cst_send_evidence_failure_emails) end - let(:issue_instant) { Time.now.to_i } - - it 'does not enqueue a failure notification mailer to send to the veteran' do - allow(VaNotify::Service).to receive(:new) { notify_client_stub } - + it 'does not call Lighthouse::Failure Notification' do subject.within_sidekiq_retries_exhausted_block(args) do - expect(notify_client_stub).not_to receive(:send_email) + expect(EVSS::FailureNotification).not_to receive(:perform_async) end end end diff --git a/spec/sidekiq/evss/failure_notification_spec.rb b/spec/sidekiq/evss/failure_notification_spec.rb new file mode 100644 index 00000000000..e64e65aa28b --- /dev/null +++ b/spec/sidekiq/evss/failure_notification_spec.rb @@ -0,0 +1,55 @@ +# frozen_string_literal: true + +require 'rails_helper' + +require 'evss/failure_notification' +require 'va_notify/service' + +RSpec.describe EVSS::FailureNotification, type: :job do + subject { described_class } + + let(:notify_client_stub) { instance_double(VaNotify::Service) } + let(:user_account) { create(:user_account) } + let(:filename) { 'docXXXX-XXte.pdf' } + let(:icn) { user_account.icn } + let(:first_name) { 'Bob' } + let(:issue_instant) { Time.now.to_i } + let(:formatted_submit_date) do + # We want to return all times in EDT + timestamp = Time.at(issue_instant).in_time_zone('America/New_York') + + # We display dates in mailers in the format "May 1, 2024 3:01 p.m. EDT" + timestamp.strftime('%B %-d, %Y %-l:%M %P %Z').sub(/([ap])m/, '\1.m.') + end + let(:date_submitted) { formatted_submit_date } + let(:date_failed) { formatted_submit_date } + + before do + allow(Rails.logger).to receive(:info) + end + + context 'when EVSS::FailureNotification is called' do + it 'enqueues a failure notification mailer to send to the veteran' do + allow(VaNotify::Service).to receive(:new) { notify_client_stub } + + subject.perform_async(icn, first_name, filename, date_submitted, date_failed) do + expect(notify_client_stub).to receive(:send_email).with( + { + recipient_identifier: { id_value: user_account.icn, id_type: 'ICN' }, + template_id: 'fake_template_id', + personalisation: { + first_name: 'Bob', + filename: 'docXXXX-XXte.pdf', + date_submitted: formatted_submit_date, + date_failed: formatted_submit_date + } + } + ) + + expect(Rails.logger) + .to receive(:info) + .with('EVSS::FailureNotification email sent') + end + end + end +end diff --git a/spec/sidekiq/lighthouse/document_upload_spec.rb b/spec/sidekiq/lighthouse/document_upload_spec.rb index 6ccf1fdccf3..819cc5c2b35 100644 --- a/spec/sidekiq/lighthouse/document_upload_spec.rb +++ b/spec/sidekiq/lighthouse/document_upload_spec.rb @@ -8,7 +8,6 @@ RSpec.describe Lighthouse::DocumentUpload, type: :job do subject { described_class } - let(:notify_client_stub) { instance_double(VaNotify::Service) } let(:user_account) { create(:user_account) } let(:user_account_uuid) { user_account.id } let(:filename) { 'doctors-note.pdf' } @@ -31,6 +30,7 @@ context 'when cst_send_evidence_failure_emails is enabled' do before do Flipper.enable(:cst_send_evidence_failure_emails) + allow(Lighthouse::FailureNotification).to receive(:perform_async) end let(:formatted_submit_date) do @@ -41,26 +41,19 @@ timestamp.strftime('%B %-d, %Y %-l:%M %P %Z').sub(/([ap])m/, '\1.m.') end - it 'enqueues a failure notification mailer to send to the veteran' do - allow(VaNotify::Service).to receive(:new) { notify_client_stub } - + it 'calls Lighthouse::FailureNotification' do subject.within_sidekiq_retries_exhausted_block(args) do - expect(notify_client_stub).to receive(:send_email).with( - { - recipient_identifier: { id_value: user_account.icn, id_type: 'ICN' }, - template_id: 'fake_template_id', - personalisation: { - first_name: 'Bob', - filename: 'docXXXX-XXte.pdf', - date_submitted: formatted_submit_date, - date_failed: formatted_submit_date - } - } + expect(Lighthouse::FailureNotification).to receive(:perform_async).with( + user_account.icn, + 'Bob', # first_name + 'docXXXX-XXte.pdf', # filename + formatted_submit_date, # date_submitted + formatted_submit_date # date_failed ) expect(Rails.logger) .to receive(:info) - .with('Lighthouse::DocumentUpload exhaustion handler email sent') + .with('Lighthouse::DocumentUpload exhaustion handler email queued') expect(StatsD).to receive(:increment).with('silent_failure_avoided_no_confirmation', tags:) end end @@ -73,11 +66,9 @@ let(:issue_instant) { Time.now.to_i } - it 'does not enqueue a failure notification mailer to send to the veteran' do - allow(VaNotify::Service).to receive(:new) { notify_client_stub } - + it 'does not call Lighthouse::Failure Notification' do subject.within_sidekiq_retries_exhausted_block(args) do - expect(notify_client_stub).not_to receive(:send_email) + expect(Lighthouse::FailureNotification).not_to receive(:perform_async) end end end diff --git a/spec/sidekiq/lighthouse/failure_notification_spec.rb b/spec/sidekiq/lighthouse/failure_notification_spec.rb new file mode 100644 index 00000000000..222681ee9bf --- /dev/null +++ b/spec/sidekiq/lighthouse/failure_notification_spec.rb @@ -0,0 +1,55 @@ +# frozen_string_literal: true + +require 'rails_helper' + +require 'lighthouse/failure_notification' +require 'va_notify/service' + +RSpec.describe Lighthouse::FailureNotification, type: :job do + subject { described_class } + + let(:notify_client_stub) { instance_double(VaNotify::Service) } + let(:user_account) { create(:user_account) } + let(:filename) { 'docXXXX-XXte.pdf' } + let(:icn) { user_account.icn } + let(:first_name) { 'Bob' } + let(:issue_instant) { Time.now.to_i } + let(:formatted_submit_date) do + # We want to return all times in EDT + timestamp = Time.at(issue_instant).in_time_zone('America/New_York') + + # We display dates in mailers in the format "May 1, 2024 3:01 p.m. EDT" + timestamp.strftime('%B %-d, %Y %-l:%M %P %Z').sub(/([ap])m/, '\1.m.') + end + let(:date_submitted) { formatted_submit_date } + let(:date_failed) { formatted_submit_date } + + before do + allow(Rails.logger).to receive(:info) + end + + context 'when Lighthouse::FailureNotification is called' do + it 'enqueues a failure notification mailer to send to the veteran' do + allow(VaNotify::Service).to receive(:new) { notify_client_stub } + + subject.perform_async(icn, first_name, filename, date_submitted, date_failed) do + expect(notify_client_stub).to receive(:send_email).with( + { + recipient_identifier: { id_value: user_account.icn, id_type: 'ICN' }, + template_id: 'fake_template_id', + personalisation: { + first_name: 'Bob', + filename: 'docXXXX-XXte.pdf', + date_submitted: formatted_submit_date, + date_failed: formatted_submit_date + } + } + ) + + expect(Rails.logger) + .to receive(:info) + .with('Lighthouse::FailureNotification email sent') + end + end + end +end From 28e88ea17576ded211e1002fd443e1533c65c65c Mon Sep 17 00:00:00 2001 From: Brandon Cooper Date: Thu, 12 Dec 2024 12:54:29 -0500 Subject: [PATCH 14/57] [10-10CG] Send Submission Failure Email on Validation Error (#19812) * send failure email on RecordParseError * add silent_failure_avoided_no_confirmation statsD * rename send_failure_email method --- app/sidekiq/form1010cg/submission_job.rb | 15 ++- .../sidekiq/form1010cg/submission_job_spec.rb | 94 +++++++++++++++---- 2 files changed, 85 insertions(+), 24 deletions(-) diff --git a/app/sidekiq/form1010cg/submission_job.rb b/app/sidekiq/form1010cg/submission_job.rb index 02c3cc5f809..9b8160644d3 100644 --- a/app/sidekiq/form1010cg/submission_job.rb +++ b/app/sidekiq/form1010cg/submission_job.rb @@ -21,10 +21,8 @@ class SubmissionJob StatsD.increment("#{STATSD_KEY_PREFIX}failed_no_retries_left", tags: ["claim_id:#{msg['args'][0]}"]) StatsD.increment('silent_failure_avoided_no_confirmation', tags: DD_ZSF_TAGS) - if Flipper.enabled?(:caregiver_use_va_notify_on_submission_failure) - claim = SavedClaim::CaregiversAssistanceClaim.find(msg['args'][0]) - send_failure_email(claim.parsed_form) if claim.parsed_form.dig('veteran', 'email') - end + claim = SavedClaim::CaregiversAssistanceClaim.find(msg['args'][0]) + send_failure_email(claim) end def retry_limits_for_notification @@ -51,6 +49,9 @@ def perform(claim_id) end rescue CARMA::Client::MuleSoftClient::RecordParseError StatsD.increment("#{STATSD_KEY_PREFIX}record_parse_error", tags: ["claim_id:#{claim_id}"]) + StatsD.increment('silent_failure_avoided_no_confirmation', tags: DD_ZSF_TAGS) + + self.class.send_failure_email(claim) rescue => e log_exception_to_sentry(e) StatsD.increment("#{STATSD_KEY_PREFIX}retries") @@ -58,7 +59,11 @@ def perform(claim_id) raise end - def self.send_failure_email(parsed_form) + def self.send_failure_email(claim) + return unless Flipper.enabled?(:caregiver_use_va_notify_on_submission_failure) + return unless claim.parsed_form.dig('veteran', 'email') + + parsed_form = claim.parsed_form first_name = parsed_form.dig('veteran', 'fullName', 'first') email = parsed_form.dig('veteran', 'email') template_id = Settings.vanotify.services.health_apps_1010.template_id.form1010_cg_failure_email diff --git a/spec/sidekiq/form1010cg/submission_job_spec.rb b/spec/sidekiq/form1010cg/submission_job_spec.rb index 672d0ba550f..d006a91fa15 100644 --- a/spec/sidekiq/form1010cg/submission_job_spec.rb +++ b/spec/sidekiq/form1010cg/submission_job_spec.rb @@ -7,8 +7,15 @@ let(:claim) { create(:caregivers_assistance_claim, form:) } let(:statsd_key_prefix) { described_class::STATSD_KEY_PREFIX } let(:zsf_tags) { described_class::DD_ZSF_TAGS } + let(:email_address) { 'jane.doe@example.com' } + let(:form_with_email) do + data = JSON.parse(VetsJsonSchema::EXAMPLES['10-10CG'].clone.to_json) + data['veteran']['email'] = email_address + data.to_json + end before do + allow(VANotify::EmailJob).to receive(:perform_async) allow(Flipper).to receive(:enabled?).and_call_original end @@ -94,7 +101,7 @@ tags: ["claim_id:#{claim.id}"] ) expect(StatsD).to receive(:increment).with('silent_failure_avoided_no_confirmation', tags: zsf_tags) - expect(described_class).not_to receive(:send_failure_email) + expect(VANotify::EmailJob).not_to receive(:perform_async) end end end @@ -112,19 +119,14 @@ tags: ["claim_id:#{claim.id}"] ) expect(StatsD).to receive(:increment).with('silent_failure_avoided_no_confirmation', tags: zsf_tags) - expect(described_class).not_to receive(:send_failure_email) + expect(VANotify::EmailJob).not_to receive(:perform_async) end end end end context 'when the parsed form has an email' do - let(:email_address) { 'jane.doe@example.com' } - let(:form) do - data = JSON.parse(VetsJsonSchema::EXAMPLES['10-10CG'].clone.to_json) - data['veteran']['email'] = email_address - data.to_json - end + let(:form) { form_with_email } let(:api_key) { Settings.vanotify.services.health_apps_1010.api_key } let(:template_id) { Settings.vanotify.services.health_apps_1010.template_id.form1010_cg_failure_email } @@ -152,9 +154,7 @@ tags: ["claim_id:#{claim.id}"] ) - allow(VANotify::EmailJob).to receive(:perform_async) expect(VANotify::EmailJob).to receive(:perform_async).with(*template_params) - expect(StatsD).to receive(:increment).with( "#{statsd_key_prefix}submission_failure_email_sent" ) @@ -174,7 +174,7 @@ "#{statsd_key_prefix}failed_no_retries_left", tags: ["claim_id:#{claim.id}"] ) - expect(described_class).not_to receive(:send_failure_email) + expect(VANotify::EmailJob).not_to receive(:perform_async) end end end @@ -206,16 +206,72 @@ end context 'when the service throws a record parse error' do - it 'rescues the error and increments statsd' do - expect_any_instance_of(Form1010cg::Service).to receive( - :process_claim_v2! - ).and_raise(CARMA::Client::MuleSoftClient::RecordParseError.new) + context 'the send failure email flipper is enabled' do + before do + allow(Flipper).to receive(:enabled?).with(:caregiver_use_va_notify_on_submission_failure).and_return(true) + end - expect do - job.perform(claim.id) - end.to trigger_statsd_increment('api.form1010cg.async.record_parse_error', tags: ["claim_id:#{claim.id}"]) + context 'form has email' do + let(:form) { form_with_email } + + it 'rescues the error, increments statsd, and attempts to send failure email' do + expect_any_instance_of(Form1010cg::Service).to receive( + :process_claim_v2! + ).and_raise(CARMA::Client::MuleSoftClient::RecordParseError.new) + + expect(SavedClaim.exists?(id: claim.id)).to eq(true) + + expect(VANotify::EmailJob).to receive(:perform_async) + expect(StatsD).to receive(:increment).with( + "#{statsd_key_prefix}submission_failure_email_sent" + ) + expect(StatsD).to receive(:increment).with( + "#{statsd_key_prefix}record_parse_error", + tags: ["claim_id:#{claim.id}"] + ) + expect(StatsD).to receive(:increment).with( + 'silent_failure_avoided_no_confirmation', tags: zsf_tags + ) - expect(SavedClaim.exists?(id: claim.id)).to eq(true) + job.perform(claim.id) + end + end + + context 'form does not have email' do + it 'rescues the error, increments statsd, and attempts to send failure email' do + expect_any_instance_of(Form1010cg::Service).to receive( + :process_claim_v2! + ).and_raise(CARMA::Client::MuleSoftClient::RecordParseError.new) + + expect do + job.perform(claim.id) + end.to trigger_statsd_increment('api.form1010cg.async.record_parse_error', tags: ["claim_id:#{claim.id}"]) + .and trigger_statsd_increment('silent_failure_avoided_no_confirmation', tags: zsf_tags) + + expect(SavedClaim.exists?(id: claim.id)).to eq(true) + expect(VANotify::EmailJob).not_to receive(:perform_async) + end + end + end + + context 'the send failure email flipper is disabled' do + before do + allow(Flipper).to receive(:enabled?).with(:caregiver_use_va_notify_on_submission_failure).and_return(false) + end + + it 'rescues the error and increments statsd' do + expect_any_instance_of(Form1010cg::Service).to receive( + :process_claim_v2! + ).and_raise(CARMA::Client::MuleSoftClient::RecordParseError.new) + + expect do + job.perform(claim.id) + end.to trigger_statsd_increment('api.form1010cg.async.record_parse_error', tags: ["claim_id:#{claim.id}"]) + .and trigger_statsd_increment('silent_failure_avoided_no_confirmation', tags: zsf_tags) + + expect(SavedClaim.exists?(id: claim.id)).to eq(true) + expect(VANotify::EmailJob).not_to receive(:perform_async) + end end end From c2572e02a47f9ed572bf9b731aed188f4c20743e Mon Sep 17 00:00:00 2001 From: Todd Rizzolo Date: Thu, 12 Dec 2024 11:07:28 -0700 Subject: [PATCH 15/57] Update features.yml (#19856) Add flipper for burials-ez app datadog rum monitoring --- config/features.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/features.yml b/config/features.yml index ed006ae3ce0..a3f08f48507 100644 --- a/config/features.yml +++ b/config/features.yml @@ -1815,6 +1815,9 @@ features: burial_received_email_notification: actor_type: cookie_id description: Toggle sending of the Received email notification + burial_browser_monitoring_enabled: + actor_type: user + description: Burial Datadog RUM monitoring pension_form_enabled: actor_type: user description: Enable the pension form From 3c2c942c21c29abaa288b1ae5913dd791a1338a5 Mon Sep 17 00:00:00 2001 From: Jason C Date: Thu, 12 Dec 2024 10:11:17 -0800 Subject: [PATCH 16/57] Add past? as a parameter to if the appointment is cancellable (#19800) Co-authored-by: Tonksthebear --- .../services/vaos/v2/appointments_service.rb | 2 +- .../services/v2/appointment_service_spec.rb | 27 ++++++++++++++----- 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/modules/vaos/app/services/vaos/v2/appointments_service.rb b/modules/vaos/app/services/vaos/v2/appointments_service.rb index bbcc57369b2..a425a300287 100644 --- a/modules/vaos/app/services/vaos/v2/appointments_service.rb +++ b/modules/vaos/app/services/vaos/v2/appointments_service.rb @@ -486,7 +486,7 @@ def fetch_avs_and_update_appt_body(appt) # @param appt [Hash] the appointment to check # @return [Boolean] true if the appointment cannot be cancelled def cannot_be_cancelled?(appointment) - cnp?(appointment) || covid?(appointment) || + cnp?(appointment) || covid?(appointment) || appointment[:start]&.to_datetime&.past? || (cc?(appointment) && booked?(appointment)) || telehealth?(appointment) end diff --git a/modules/vaos/spec/services/v2/appointment_service_spec.rb b/modules/vaos/spec/services/v2/appointment_service_spec.rb index 0300e8a5d83..2ad2e63989f 100644 --- a/modules/vaos/spec/services/v2/appointment_service_spec.rb +++ b/modules/vaos/spec/services/v2/appointment_service_spec.rb @@ -19,24 +19,26 @@ let(:appt_med) do { kind: 'clinic', service_category: [{ coding: - [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'REGULAR' }] }] } + [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'REGULAR' }] }] } end let(:appt_non) do - { kind: 'clinic', service_category: [{ coding: - [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'SERVICE CONNECTED' }] }], + { kind: 'clinic', service_category: [ + { coding: + [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'SERVICE CONNECTED' }] } + ], service_type: 'SERVICE CONNECTED', service_types: [{ coding: [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'SERVICE CONNECTED' }] }] } end let(:appt_cnp) do { kind: 'clinic', service_category: [{ coding: - [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'COMPENSATION & PENSION' }] }] } + [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'COMPENSATION & PENSION' }] }] } end let(:appt_cc) do { kind: 'cc', service_category: [{ coding: - [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'REGULAR' }] }] } + [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'REGULAR' }] }] } end let(:appt_telehealth) do { kind: 'telehealth', service_category: [{ coding: - [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'REGULAR' }] }] } + [{ system: 'http://www.va.gov/terminology/vistadefinedterms/409_1', code: 'REGULAR' }] }] } end let(:appt_no_service_cat) { { kind: 'clinic' } } @@ -372,6 +374,16 @@ end end + context 'when an appointment is in the past' do + let(:appointment) { { status: 'booked', start: '2022-09-01T10:00:00-07:00' } } + + it 'changes cancellable status to false' do + expect(subject.send(:cannot_be_cancelled?, appointment)).to be false + appointment[:start] = '2021-09-01T10:00:00-07:00' + expect(subject.send(:cannot_be_cancelled?, appointment)).to be true + end + end + context 'when there are CnP and covid appointments in the list' do it 'changes the cancellable status to false for CnP and covid appointments only' do VCR.use_cassette('vaos/v2/appointments/get_appointments_cnp_covid', @@ -1248,7 +1260,8 @@ it 'Modifies the appointment with service type(s) removed from appointment' do expect { subject.send(:remove_service_type, appt_non) }.to change(appt_non, :keys) - .from(%i[kind service_category service_type service_types]) + .from(%i[kind service_category service_type + service_types]) .to(%i[kind service_category]) end end From 64f0004823a0c6f399deb55b08464fb2a0205810 Mon Sep 17 00:00:00 2001 From: Andrew Herzberg Date: Thu, 12 Dec 2024 12:43:31 -0700 Subject: [PATCH 17/57] appointments - parse out correct id when bad provider data is given (#19845) --- config/features.yml | 3 --- .../requests/mobile/v0/appointments/vaos_v2_spec.rb | 4 ++-- .../app/services/vaos/v2/appointment_provider_name.rb | 11 ++--------- 3 files changed, 4 insertions(+), 14 deletions(-) diff --git a/config/features.yml b/config/features.yml index a3f08f48507..d5c078a18a9 100644 --- a/config/features.yml +++ b/config/features.yml @@ -1669,9 +1669,6 @@ features: mobile_v2_contact_info: actor_type: user description: For mobile app, enables ContactInformationV2 Service. - appointment_provider_id_logging: - actor_type: user - description: For mobile app, logs provider id for debugging mobile_push_register_logging: actor_type: user description: For mobile app, logs push register errors for debugging diff --git a/modules/mobile/spec/requests/mobile/v0/appointments/vaos_v2_spec.rb b/modules/mobile/spec/requests/mobile/v0/appointments/vaos_v2_spec.rb index 36404c00e0c..2b6849f1515 100644 --- a/modules/mobile/spec/requests/mobile/v0/appointments/vaos_v2_spec.rb +++ b/modules/mobile/spec/requests/mobile/v0/appointments/vaos_v2_spec.rb @@ -277,7 +277,7 @@ end context 'when provider id is formatted incorrectly' do - it 'sets provider to null' do + it 'parses out correct id and makes successful provider call' do VCR.use_cassette('mobile/appointments/VAOS_v2/get_clinics_200', match_requests_on: %i[method uri]) do VCR.use_cassette('mobile/appointments/VAOS_v2/get_facilities_200', match_requests_on: %i[method uri]) do VCR.use_cassette('mobile/appointments/VAOS_v2/get_appointments_with_mixed_provider_types_bad_id', @@ -300,7 +300,7 @@ appointment_with_practitioner_list = appointments.find { |appt| appt['id'] == '76133' } expect(appointment_without_provider['attributes']['healthcareProvider']).to be_nil - expect(proposed_cc_appointment_with_provider['attributes']['healthcareProvider']).to eq(nil) + expect(proposed_cc_appointment_with_provider['attributes']['healthcareProvider']).to eq('DEHGHAN, AMIR') expect(appointment_with_practitioner_list['attributes']['healthcareProvider']).to eq('MATTHEW ENGHAUSER') end end diff --git a/modules/vaos/app/services/vaos/v2/appointment_provider_name.rb b/modules/vaos/app/services/vaos/v2/appointment_provider_name.rb index 3842446752d..f7e6b745ab5 100644 --- a/modules/vaos/app/services/vaos/v2/appointment_provider_name.rb +++ b/modules/vaos/app/services/vaos/v2/appointment_provider_name.rb @@ -37,7 +37,7 @@ def get_name(id) def find_practitioner_id(practitioner) practitioner[:identifier]&.each do |i| - return i[:value] if i[:system].include? 'us-npi' + return i[:value]&.tr('^0-9', '') if i[:system].include? 'us-npi' end nil end @@ -47,14 +47,7 @@ def fetch_provider(provider_id) provider_data&.name&.strip&.presence rescue Common::Exceptions::BackendServiceException NPI_NOT_FOUND_MSG - rescue URI::InvalidURIError => e - if Flipper.enabled?(:appointment_provider_id_logging, @user) - PersonalInformationLog.create!( - data: { icn: @user.icn, message: e.message, backtrace: e.backtrace }, - error_class: 'Appointment Provider URI Error' - ) - end - + rescue URI::InvalidURIError nil end From 06a18a0f36619d201b53db2ddf3783d6a3a9058c Mon Sep 17 00:00:00 2001 From: Molly Trombley-McCann Date: Thu, 12 Dec 2024 11:40:03 -0800 Subject: [PATCH 18/57] Differentiate engine version of shared examples - sometimes file load order during test was causing shared examples in the module to overwrite shared examples in the main app, or vice versa. No longer sharing names --- ...hared_examples_for_status_updater_jobs.rb} | 26 +++++++++---------- .../sidekiq/hlr_status_updater_job_spec.rb | 6 ++--- .../sidekiq/nod_status_updater_job_spec.rb | 8 +++--- .../sidekiq/sc_status_updater_job_spec.rb | 8 +++--- 4 files changed, 24 insertions(+), 24 deletions(-) rename modules/decision_reviews/spec/sidekiq/{shared_examples_for_status_updater_jobs.rb => engine_shared_examples_for_status_updater_jobs.rb} (94%) diff --git a/modules/decision_reviews/spec/sidekiq/shared_examples_for_status_updater_jobs.rb b/modules/decision_reviews/spec/sidekiq/engine_shared_examples_for_status_updater_jobs.rb similarity index 94% rename from modules/decision_reviews/spec/sidekiq/shared_examples_for_status_updater_jobs.rb rename to modules/decision_reviews/spec/sidekiq/engine_shared_examples_for_status_updater_jobs.rb index 3c34ff63196..9b4007e1da2 100644 --- a/modules/decision_reviews/spec/sidekiq/shared_examples_for_status_updater_jobs.rb +++ b/modules/decision_reviews/spec/sidekiq/engine_shared_examples_for_status_updater_jobs.rb @@ -3,7 +3,7 @@ require 'rails_helper' require 'decision_reviews/v1/service' -SUBCLASS_INFO = { +ENGINE_SUBCLASS_INFO = { SavedClaim::SupplementalClaim => { service_method: 'get_supplemental_claim', evidence_service_method: 'get_supplemental_claim_upload', statsd_prefix: 'worker.decision_review.saved_claim_sc_status_updater', @@ -21,7 +21,7 @@ service_tag: 'service:board-appeal' } }.freeze -RSpec.shared_context 'status updater job context' do |subclass| +RSpec.shared_context 'engine status updater job context' do |subclass| subject { described_class } let(:service) { instance_double(DecisionReviews::V1::Service) } @@ -29,15 +29,15 @@ let(:guid1) { SecureRandom.uuid } let(:guid2) { SecureRandom.uuid } let(:guid3) { SecureRandom.uuid } - let(:other_subclass1) { SUBCLASS_INFO.keys.excluding(subclass)[0] } - let(:other_subclass2) { SUBCLASS_INFO.keys.excluding(subclass)[1] } - let(:service_method) { SUBCLASS_INFO[subclass][:service_method].to_sym } - let(:other_service_method1) { SUBCLASS_INFO[other_subclass1][:service_method].to_sym } - let(:other_service_method2) { SUBCLASS_INFO[other_subclass2][:service_method].to_sym } + let(:other_subclass1) { ENGINE_SUBCLASS_INFO.keys.excluding(subclass)[0] } + let(:other_subclass2) { ENGINE_SUBCLASS_INFO.keys.excluding(subclass)[1] } + let(:service_method) { ENGINE_SUBCLASS_INFO[subclass][:service_method].to_sym } + let(:other_service_method1) { ENGINE_SUBCLASS_INFO[other_subclass1][:service_method].to_sym } + let(:other_service_method2) { ENGINE_SUBCLASS_INFO[other_subclass2][:service_method].to_sym } - let(:statsd_prefix) { SUBCLASS_INFO[subclass][:statsd_prefix] } - let(:log_prefix) { SUBCLASS_INFO[subclass][:log_prefix] } - let(:service_tag) { SUBCLASS_INFO[subclass][:service_tag] } + let(:statsd_prefix) { ENGINE_SUBCLASS_INFO[subclass][:statsd_prefix] } + let(:log_prefix) { ENGINE_SUBCLASS_INFO[subclass][:log_prefix] } + let(:service_tag) { ENGINE_SUBCLASS_INFO[subclass][:service_tag] } let(:response_complete) do response = JSON.parse(VetsJsonSchema::EXAMPLES.fetch('HLR-SHOW-RESPONSE-200_V2').to_json) # deep copy @@ -62,7 +62,7 @@ end end -RSpec.shared_examples 'status updater job with base forms' do |subclass| +RSpec.shared_examples 'engine status updater job with base forms' do |subclass| context 'SavedClaim records are present' do before do subclass.create(guid: guid1, form: '{}') @@ -206,7 +206,7 @@ end end -RSpec.shared_examples 'status updater job when forms include evidence' do |subclass| +RSpec.shared_examples 'engine status updater job when forms include evidence' do |subclass| let(:upload_response_vbms) do response = JSON.parse(File.read('spec/fixtures/supplemental_claims/SC_upload_show_response_200.json')) instance_double(Faraday::Response, body: response) @@ -226,7 +226,7 @@ instance_double(Faraday::Response, body: response) end - let(:evidence_service_method) { SUBCLASS_INFO[subclass][:evidence_service_method].to_sym } + let(:evidence_service_method) { ENGINE_SUBCLASS_INFO[subclass][:evidence_service_method].to_sym } context 'SavedClaim records are present with completed status in LH and have associated evidence uploads' do let(:guid4) { SecureRandom.uuid } diff --git a/modules/decision_reviews/spec/sidekiq/hlr_status_updater_job_spec.rb b/modules/decision_reviews/spec/sidekiq/hlr_status_updater_job_spec.rb index 82739894a03..9ed60db0467 100644 --- a/modules/decision_reviews/spec/sidekiq/hlr_status_updater_job_spec.rb +++ b/modules/decision_reviews/spec/sidekiq/hlr_status_updater_job_spec.rb @@ -1,12 +1,12 @@ # frozen_string_literal: true require 'rails_helper' -require './modules/decision_reviews/spec/sidekiq/shared_examples_for_status_updater_jobs' +require './modules/decision_reviews/spec/sidekiq/engine_shared_examples_for_status_updater_jobs' RSpec.describe DecisionReviews::HlrStatusUpdaterJob, type: :job do subject { described_class } - include_context 'status updater job context', SavedClaim::HigherLevelReview + include_context 'engine status updater job context', SavedClaim::HigherLevelReview describe 'perform' do context 'with flag enabled', :aggregate_failures do @@ -14,7 +14,7 @@ Flipper.enable :decision_review_saved_claim_hlr_status_updater_job_enabled end - include_examples 'status updater job with base forms', SavedClaim::HigherLevelReview + include_examples 'engine status updater job with base forms', SavedClaim::HigherLevelReview end context 'with flag disabled' do diff --git a/modules/decision_reviews/spec/sidekiq/nod_status_updater_job_spec.rb b/modules/decision_reviews/spec/sidekiq/nod_status_updater_job_spec.rb index 4cf61deefb5..f4e5af36f47 100644 --- a/modules/decision_reviews/spec/sidekiq/nod_status_updater_job_spec.rb +++ b/modules/decision_reviews/spec/sidekiq/nod_status_updater_job_spec.rb @@ -1,12 +1,12 @@ # frozen_string_literal: true require 'rails_helper' -require './modules/decision_reviews/spec/sidekiq/shared_examples_for_status_updater_jobs' +require './modules/decision_reviews/spec/sidekiq/engine_shared_examples_for_status_updater_jobs' RSpec.describe DecisionReviews::NodStatusUpdaterJob, type: :job do subject { described_class } - include_context 'status updater job context', SavedClaim::NoticeOfDisagreement + include_context 'engine status updater job context', SavedClaim::NoticeOfDisagreement describe 'perform' do context 'with flag enabled', :aggregate_failures do @@ -14,8 +14,8 @@ Flipper.enable :decision_review_saved_claim_nod_status_updater_job_enabled end - include_examples 'status updater job with base forms', SavedClaim::NoticeOfDisagreement - include_examples 'status updater job when forms include evidence', SavedClaim::NoticeOfDisagreement + include_examples 'engine status updater job with base forms', SavedClaim::NoticeOfDisagreement + include_examples 'engine status updater job when forms include evidence', SavedClaim::NoticeOfDisagreement end context 'with flag disabled' do diff --git a/modules/decision_reviews/spec/sidekiq/sc_status_updater_job_spec.rb b/modules/decision_reviews/spec/sidekiq/sc_status_updater_job_spec.rb index df225707942..a578ecedcd7 100644 --- a/modules/decision_reviews/spec/sidekiq/sc_status_updater_job_spec.rb +++ b/modules/decision_reviews/spec/sidekiq/sc_status_updater_job_spec.rb @@ -1,12 +1,12 @@ # frozen_string_literal: true require 'rails_helper' -require './modules/decision_reviews/spec/sidekiq/shared_examples_for_status_updater_jobs' +require './modules/decision_reviews/spec/sidekiq/engine_shared_examples_for_status_updater_jobs' RSpec.describe DecisionReviews::ScStatusUpdaterJob, type: :job do subject { described_class } - include_context 'status updater job context', SavedClaim::SupplementalClaim + include_context 'engine status updater job context', SavedClaim::SupplementalClaim describe 'perform' do context 'with flag enabled', :aggregate_failures do @@ -14,8 +14,8 @@ Flipper.enable :decision_review_saved_claim_sc_status_updater_job_enabled end - include_examples 'status updater job with base forms', SavedClaim::SupplementalClaim - include_examples 'status updater job when forms include evidence', SavedClaim::SupplementalClaim + include_examples 'engine status updater job with base forms', SavedClaim::SupplementalClaim + include_examples 'engine status updater job when forms include evidence', SavedClaim::SupplementalClaim end context 'with flag disabled' do From 2e7ba776e3f45c03b955ab4ff4a559d21ae6c3ec Mon Sep 17 00:00:00 2001 From: Molly Trombley-McCann Date: Thu, 12 Dec 2024 12:25:37 -0800 Subject: [PATCH 19/57] Recover tests lost during refactor - ScStatusUpdateJob should have tests for handling 4142 status - Replace in main app spec and engine spec --- .../spec/factories/secondary_appeal_forms.rb | 55 ++++++ .../sidekiq/sc_status_updater_job_spec.rb | 161 ++++++++++++++++++ .../sc_status_updater_job_spec.rb | 161 ++++++++++++++++++ 3 files changed, 377 insertions(+) create mode 100644 modules/decision_reviews/spec/factories/secondary_appeal_forms.rb diff --git a/modules/decision_reviews/spec/factories/secondary_appeal_forms.rb b/modules/decision_reviews/spec/factories/secondary_appeal_forms.rb new file mode 100644 index 00000000000..da0c3042904 --- /dev/null +++ b/modules/decision_reviews/spec/factories/secondary_appeal_forms.rb @@ -0,0 +1,55 @@ +# frozen_string_literal: true + +FactoryBot.define do + factory :secondary_appeal_form4142_module, class: 'SecondaryAppealForm' do + guid { SecureRandom.uuid } + form_id { '21-4142' } + form do + { + veteran: { + fullName: { + first: 'Person', + last: 'McPerson' + }, + dateOfBirth: '1983-01-23', + ssn: '111223333', + address: {}, + homePhone: '123-456-7890' + }, + patientIdentification: { + isRequestingOwnMedicalRecords: true + + }, + providerFacility: [{ + providerFacilityName: 'provider 1', + treatmentDateRange: [ + { + from: '1980-1-1', + to: '1985-1-1' + }, + { + from: '1986-1-1', + to: '1987-1-1' + } + ], + providerFacilityAddress: { + street: '123 Main Street', + street2: '1B', + city: 'Baltimore', + state: 'MD', + country: 'USA', + postalCode: '21200-1111' + } + }], + preparerIdentification: { + relationshipToVeteran: 'self' + }, + acknowledgeToReleaseInformation: true, + limitedConsent: 'some string', + privacyAgreementAccepted: true + }.to_json + end + delete_date { nil } + appeal_submission { create(:appeal_submission_module) } + end +end diff --git a/modules/decision_reviews/spec/sidekiq/sc_status_updater_job_spec.rb b/modules/decision_reviews/spec/sidekiq/sc_status_updater_job_spec.rb index a578ecedcd7..65a60dc5564 100644 --- a/modules/decision_reviews/spec/sidekiq/sc_status_updater_job_spec.rb +++ b/modules/decision_reviews/spec/sidekiq/sc_status_updater_job_spec.rb @@ -16,6 +16,167 @@ include_examples 'engine status updater job with base forms', SavedClaim::SupplementalClaim include_examples 'engine status updater job when forms include evidence', SavedClaim::SupplementalClaim + + context 'SavedClaim records are present with completed status in LH and have associated secondary forms' do + let(:benefits_intake_service) { instance_double(BenefitsIntake::Service) } + let!(:secondary_form1) { create(:secondary_appeal_form4142_module, guid: SecureRandom.uuid) } + let!(:secondary_form2) { create(:secondary_appeal_form4142_module, guid: SecureRandom.uuid) } + let!(:secondary_form3) { create(:secondary_appeal_form4142_module, guid: SecureRandom.uuid) } + let!(:secondary_form_with_delete_date) do + create(:secondary_appeal_form4142_module, guid: SecureRandom.uuid, delete_date: 10.days.from_now) + end + let!(:saved_claim1) do + SavedClaim::SupplementalClaim.create(guid: secondary_form1.appeal_submission.submitted_appeal_uuid, + form: '{}') + end + let!(:saved_claim2) do + SavedClaim::SupplementalClaim.create(guid: secondary_form2.appeal_submission.submitted_appeal_uuid, + form: '{}') + end + let!(:saved_claim3) do + SavedClaim::SupplementalClaim.create(guid: secondary_form3.appeal_submission.submitted_appeal_uuid, + form: '{}') + end + let!(:saved_claim4) do + SavedClaim::SupplementalClaim + .create(guid: secondary_form_with_delete_date.appeal_submission.submitted_appeal_uuid, form: '{}') + end + + let(:upload_response_4142_vbms) do + response = JSON.parse(File.read('spec/fixtures/supplemental_claims/SC_4142_show_response_200.json')) + instance_double(Faraday::Response, body: response) + end + + let(:upload_response_4142_processing) do + response = JSON.parse(File.read('spec/fixtures/supplemental_claims/SC_4142_show_response_200.json')) + response['data']['attributes']['status'] = 'processing' + instance_double(Faraday::Response, body: response) + end + + let(:upload_response_4142_error) do + response = JSON.parse(File.read('spec/fixtures/supplemental_claims/SC_4142_show_response_200.json')) + response['data']['attributes']['status'] = 'error' + response['data']['attributes']['detail'] = 'Invalid PDF' + instance_double(Faraday::Response, body: response) + end + + before do + allow(DecisionReviews::V1::Service).to receive(:new).and_return(service) + allow(BenefitsIntake::Service).to receive(:new).and_return(benefits_intake_service) + allow(service).to receive(:get_supplemental_claim).with(saved_claim1.guid).and_return(response_complete) + allow(service).to receive(:get_supplemental_claim).with(saved_claim2.guid).and_return(response_complete) + allow(service).to receive(:get_supplemental_claim).with(saved_claim3.guid).and_return(response_complete) + allow(service).to receive(:get_supplemental_claim).with(saved_claim4.guid).and_return(response_complete) + + allow(StatsD).to receive(:increment) + allow(Rails.logger).to receive(:info) + end + + it 'does NOT check status for 4142 records that already have a delete_date' do + expect(benefits_intake_service).to receive(:get_status).with(uuid: secondary_form1.guid) + expect(benefits_intake_service).to receive(:get_status).with(uuid: secondary_form2.guid) + expect(benefits_intake_service).to receive(:get_status).with(uuid: secondary_form3.guid) + expect(benefits_intake_service).not_to receive(:get_status) + .with(uuid: secondary_form_with_delete_date.guid) + subject.new.perform + end + + context 'updating 4142 information' do + let(:frozen_time) { DateTime.new(2024, 1, 1).utc } + + before do + allow(benefits_intake_service).to receive(:get_status) + .with(uuid: secondary_form1.guid).and_return(upload_response_4142_vbms) + allow(benefits_intake_service).to receive(:get_status) + .with(uuid: secondary_form2.guid).and_return(upload_response_4142_processing) + allow(benefits_intake_service).to receive(:get_status) + .with(uuid: secondary_form3.guid).and_return(upload_response_4142_error) + end + + it 'updates the status and sets delete_date if appropriate' do + Timecop.freeze(frozen_time) do + subject.new.perform + end + expect(secondary_form1.reload.status).to include('vbms') + expect(secondary_form1.reload.status_updated_at).to eq frozen_time + expect(secondary_form1.reload.delete_date).to eq frozen_time + 59.days + + expect(secondary_form2.reload.status).to include('processing') + expect(secondary_form2.reload.status_updated_at).to eq frozen_time + expect(secondary_form2.reload.delete_date).to be_nil + + expect(secondary_form3.reload.status).to include('error') + expect(secondary_form3.reload.status_updated_at).to eq frozen_time + expect(secondary_form3.reload.delete_date).to be_nil + end + + it 'logs ands increments metrics for updates to the 4142 status' do + Timecop.freeze(frozen_time) do + subject.new.perform + end + + expect(StatsD).to have_received(:increment) + .with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.delete_date_update') + .exactly(1).time + expect(StatsD).to have_received(:increment) + .with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.status', tags: ['status:vbms']) + .exactly(1).time + expect(StatsD).to have_received(:increment) + .with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.status', + tags: ['status:processing']) + .exactly(1).time + + expect(Rails.logger).to have_received(:info) + .with('DecisionReviews::SavedClaimScStatusUpdaterJob secondary form status error', anything) + end + + context 'when the 4142 status is unchanged' do + let(:previous_status) do + { + 'status' => 'processing' + } + end + + before do + secondary_form2.update!(status: previous_status.to_json, status_updated_at: frozen_time - 3.days) + end + + it 'does not log or increment metrics for a status change' do + Timecop.freeze(frozen_time) do + subject.new.perform + end + + expect(secondary_form2.reload.status_updated_at).to eq frozen_time + expect(StatsD).not_to have_received(:increment) + .with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.status', + tags: ['status:processing']) + end + end + + context 'when at least one secondary form is not in vbms status' do + it 'does not set the delete_date for the related SavedCalim::SupplementlClaim' do + Timecop.freeze(frozen_time) do + subject.new.perform + end + + expect(saved_claim1.reload.delete_date).to eq frozen_time + 59.days + expect(saved_claim2.delete_date).to be_nil + end + end + end + + context 'with 4142 flag disabled' do + before do + Flipper.disable :decision_review_track_4142_submissions + end + + it 'does not query SecondaryAppealForm records' do + expect(SecondaryAppealForm).not_to receive(:where) + + subject.new.perform + end + end + end end context 'with flag disabled' do diff --git a/spec/sidekiq/decision_review/sc_status_updater_job_spec.rb b/spec/sidekiq/decision_review/sc_status_updater_job_spec.rb index 1c1d0740663..97a49932701 100644 --- a/spec/sidekiq/decision_review/sc_status_updater_job_spec.rb +++ b/spec/sidekiq/decision_review/sc_status_updater_job_spec.rb @@ -17,6 +17,167 @@ include_examples 'status updater job with base forms', SavedClaim::SupplementalClaim include_examples 'status updater job when forms include evidence', SavedClaim::SupplementalClaim + + context 'SavedClaim records are present with completed status in LH and have associated secondary forms' do + let(:benefits_intake_service) { instance_double(BenefitsIntake::Service) } + let!(:secondary_form1) { create(:secondary_appeal_form4142, guid: SecureRandom.uuid) } + let!(:secondary_form2) { create(:secondary_appeal_form4142, guid: SecureRandom.uuid) } + let!(:secondary_form3) { create(:secondary_appeal_form4142, guid: SecureRandom.uuid) } + let!(:secondary_form_with_delete_date) do + create(:secondary_appeal_form4142, guid: SecureRandom.uuid, delete_date: 10.days.from_now) + end + let!(:saved_claim1) do + SavedClaim::SupplementalClaim.create(guid: secondary_form1.appeal_submission.submitted_appeal_uuid, + form: '{}') + end + let!(:saved_claim2) do + SavedClaim::SupplementalClaim.create(guid: secondary_form2.appeal_submission.submitted_appeal_uuid, + form: '{}') + end + let!(:saved_claim3) do + SavedClaim::SupplementalClaim.create(guid: secondary_form3.appeal_submission.submitted_appeal_uuid, + form: '{}') + end + let!(:saved_claim4) do + SavedClaim::SupplementalClaim + .create(guid: secondary_form_with_delete_date.appeal_submission.submitted_appeal_uuid, form: '{}') + end + + let(:upload_response_4142_vbms) do + response = JSON.parse(File.read('spec/fixtures/supplemental_claims/SC_4142_show_response_200.json')) + instance_double(Faraday::Response, body: response) + end + + let(:upload_response_4142_processing) do + response = JSON.parse(File.read('spec/fixtures/supplemental_claims/SC_4142_show_response_200.json')) + response['data']['attributes']['status'] = 'processing' + instance_double(Faraday::Response, body: response) + end + + let(:upload_response_4142_error) do + response = JSON.parse(File.read('spec/fixtures/supplemental_claims/SC_4142_show_response_200.json')) + response['data']['attributes']['status'] = 'error' + response['data']['attributes']['detail'] = 'Invalid PDF' + instance_double(Faraday::Response, body: response) + end + + before do + allow(DecisionReviewV1::Service).to receive(:new).and_return(service) + allow(BenefitsIntake::Service).to receive(:new).and_return(benefits_intake_service) + allow(service).to receive(:get_supplemental_claim).with(saved_claim1.guid).and_return(response_complete) + allow(service).to receive(:get_supplemental_claim).with(saved_claim2.guid).and_return(response_complete) + allow(service).to receive(:get_supplemental_claim).with(saved_claim3.guid).and_return(response_complete) + allow(service).to receive(:get_supplemental_claim).with(saved_claim4.guid).and_return(response_complete) + + allow(StatsD).to receive(:increment) + allow(Rails.logger).to receive(:info) + end + + it 'does NOT check status for 4142 records that already have a delete_date' do + expect(benefits_intake_service).to receive(:get_status).with(uuid: secondary_form1.guid) + expect(benefits_intake_service).to receive(:get_status).with(uuid: secondary_form2.guid) + expect(benefits_intake_service).to receive(:get_status).with(uuid: secondary_form3.guid) + expect(benefits_intake_service).not_to receive(:get_status) + .with(uuid: secondary_form_with_delete_date.guid) + subject.new.perform + end + + context 'updating 4142 information' do + let(:frozen_time) { DateTime.new(2024, 1, 1).utc } + + before do + allow(benefits_intake_service).to receive(:get_status) + .with(uuid: secondary_form1.guid).and_return(upload_response_4142_vbms) + allow(benefits_intake_service).to receive(:get_status) + .with(uuid: secondary_form2.guid).and_return(upload_response_4142_processing) + allow(benefits_intake_service).to receive(:get_status) + .with(uuid: secondary_form3.guid).and_return(upload_response_4142_error) + end + + it 'updates the status and sets delete_date if appropriate' do + Timecop.freeze(frozen_time) do + subject.new.perform + end + expect(secondary_form1.reload.status).to include('vbms') + expect(secondary_form1.reload.status_updated_at).to eq frozen_time + expect(secondary_form1.reload.delete_date).to eq frozen_time + 59.days + + expect(secondary_form2.reload.status).to include('processing') + expect(secondary_form2.reload.status_updated_at).to eq frozen_time + expect(secondary_form2.reload.delete_date).to be_nil + + expect(secondary_form3.reload.status).to include('error') + expect(secondary_form3.reload.status_updated_at).to eq frozen_time + expect(secondary_form3.reload.delete_date).to be_nil + end + + it 'logs ands increments metrics for updates to the 4142 status' do + Timecop.freeze(frozen_time) do + subject.new.perform + end + + expect(StatsD).to have_received(:increment) + .with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.delete_date_update') + .exactly(1).time + expect(StatsD).to have_received(:increment) + .with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.status', tags: ['status:vbms']) + .exactly(1).time + expect(StatsD).to have_received(:increment) + .with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.status', + tags: ['status:processing']) + .exactly(1).time + + expect(Rails.logger).to have_received(:info) + .with('DecisionReview::SavedClaimScStatusUpdaterJob secondary form status error', anything) + end + + context 'when the 4142 status is unchanged' do + let(:previous_status) do + { + 'status' => 'processing' + } + end + + before do + secondary_form2.update!(status: previous_status.to_json, status_updated_at: frozen_time - 3.days) + end + + it 'does not log or increment metrics for a status change' do + Timecop.freeze(frozen_time) do + subject.new.perform + end + + expect(secondary_form2.reload.status_updated_at).to eq frozen_time + expect(StatsD).not_to have_received(:increment) + .with('worker.decision_review.saved_claim_sc_status_updater_secondary_form.status', + tags: ['status:processing']) + end + end + + context 'when at least one secondary form is not in vbms status' do + it 'does not set the delete_date for the related SavedCalim::SupplementlClaim' do + Timecop.freeze(frozen_time) do + subject.new.perform + end + + expect(saved_claim1.reload.delete_date).to eq frozen_time + 59.days + expect(saved_claim2.delete_date).to be_nil + end + end + end + + context 'with 4142 flag disabled' do + before do + Flipper.disable :decision_review_track_4142_submissions + end + + it 'does not query SecondaryAppealForm records' do + expect(SecondaryAppealForm).not_to receive(:where) + + subject.new.perform + end + end + end end context 'with flag disabled' do From b2d9f72dcdbe48cf7f5c2d89ea5cf2a98041fa88 Mon Sep 17 00:00:00 2001 From: Rachal Cassity Date: Thu, 12 Dec 2024 15:40:21 -0600 Subject: [PATCH 20/57] Ensure country_code_iso2 params are present when requesting the Contact Information V2 info (#19861) * Ensure country_code_iso2 params are present when requesting the Contact Information V2 info * Fixed AddressValidation Service specs * Fixed linting issues --- lib/va_profile/models/v3/address.rb | 4 ++-- lib/va_profile/models/v3/validation_address.rb | 2 +- spec/lib/va_profile/models/v3/validation_address_spec.rb | 2 -- spec/lib/va_profile/v3/address_validation/service_spec.rb | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/va_profile/models/v3/address.rb b/lib/va_profile/models/v3/address.rb index d473da25864..dfcae4ed5e3 100644 --- a/lib/va_profile/models/v3/address.rb +++ b/lib/va_profile/models/v3/address.rb @@ -82,9 +82,9 @@ def self.build_from(body) bad_address: body['bad_address'], city: body['city_name'], country_name: body.dig('country', 'country_name'), - country_code_iso2: body.dig('country', 'iso_2_code'), + country_code_iso2: body.dig('country', 'country_code_iso2'), country_code_iso3: body.dig('country', 'country_code_iso3'), - fipsCode: body.dig('country', 'fips_code'), + fips_code: body.dig('country', 'country_code_fips'), county_code: body.dig('county', 'county_code'), county_name: body.dig('county', 'county_name'), created_at: body['create_date'], diff --git a/lib/va_profile/models/v3/validation_address.rb b/lib/va_profile/models/v3/validation_address.rb index a238b5ddf6a..795cd1eb93c 100644 --- a/lib/va_profile/models/v3/validation_address.rb +++ b/lib/va_profile/models/v3/validation_address.rb @@ -23,7 +23,7 @@ def address_validation_req cityName: @city, zipCode5: @zip_code, zipCode4: @zip_code_suffix, - country: { countryCodeISO2: @country_code_iso2, countryCodeISO3: @country_code_iso3, + country: { countryCodeISO3: @country_code_iso3, countryName: @country_name, countryCodeFIPS: @country_code_fips }, state: { stateCode: @state_code, stateName: @state_name }, province: { provinceName: @province_name, provinceCode: @province_code }, diff --git a/spec/lib/va_profile/models/v3/validation_address_spec.rb b/spec/lib/va_profile/models/v3/validation_address_spec.rb index e2ffee98c3d..f8388ebda66 100644 --- a/spec/lib/va_profile/models/v3/validation_address_spec.rb +++ b/spec/lib/va_profile/models/v3/validation_address_spec.rb @@ -45,7 +45,6 @@ 'country' => { 'country_name' => 'United States', 'country_code_fips' => 'US', - 'country_code_iso2' => 'US', 'country_code_iso3' => 'USA' }, 'geocode' => { @@ -90,7 +89,6 @@ 'country' => { 'country_name' => 'Canada', 'country_code_fips' => 'CA', - 'country_code_iso2' => 'CA', 'country_code_iso3' => 'CAN' }, 'geocode' => { diff --git a/spec/lib/va_profile/v3/address_validation/service_spec.rb b/spec/lib/va_profile/v3/address_validation/service_spec.rb index 9e04a1522cf..6d1f3c96aae 100644 --- a/spec/lib/va_profile/v3/address_validation/service_spec.rb +++ b/spec/lib/va_profile/v3/address_validation/service_spec.rb @@ -199,8 +199,8 @@ }, 'country' => { 'country_name' => 'United States', - 'country_code_fips' => 'US', 'country_code_iso2' => 'US', + 'country_code_fips' => 'US', 'country_code_iso3' => 'USA' }, 'address_pou' => 'RESIDENCE', From c41f9159706fb70ca879d5c9f03867823b3281b1 Mon Sep 17 00:00:00 2001 From: Scott Regenthal Date: Fri, 13 Dec 2024 07:00:55 -0700 Subject: [PATCH 21/57] [DBEX] map form fields 0781v2 and upload PDF (#19802) * Map form fields 0781 v2 * Update form mapping, overflow and format * Add form 0781v2 pdf fill test, fixtures, codeowner * Add form 0781v2 pdf * Disable line length linting * Correct linting errors * Correct linting errors * Upcase folder name * Update CODEOWNERS --- .github/CODEOWNERS | 1 + lib/pdf_fill/forms/pdfs/21-0781v2.pdf | Bin 0 -> 280870 bytes lib/pdf_fill/forms/va210781v2.rb | 741 ++++++++++++++++++ .../pdf_fill/21-0781V2/kitchen_sink.json | 125 +++ .../pdf_fill/21-0781V2/merge_fields.json | 177 +++++ spec/lib/pdf_fill/forms/va210781v2_spec.rb | 371 +++++++++ 6 files changed, 1415 insertions(+) create mode 100644 lib/pdf_fill/forms/pdfs/21-0781v2.pdf create mode 100644 lib/pdf_fill/forms/va210781v2.rb create mode 100644 spec/fixtures/pdf_fill/21-0781V2/kitchen_sink.json create mode 100644 spec/fixtures/pdf_fill/21-0781V2/merge_fields.json create mode 100644 spec/lib/pdf_fill/forms/va210781v2_spec.rb diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index aeecf918557..1ea9849c3b6 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1325,6 +1325,7 @@ spec/fixtures/okta @department-of-veterans-affairs/lighthouse-pivot spec/fixtures/okta/okta_callback_request_idme_1567760195.json @department-of-veterans-affairs/lighthouse-pivot spec/fixtures/pdf_fill @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/fixtures/pdf_fill/10-10CG @department-of-veterans-affairs/vfs-10-10 @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group +spec/fixtures/pdf_fill/21-0781V2 @department-of-veterans-affairs/Disability-Experience @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/fixtures/pdf_fill/21-674 @department-of-veterans-affairs/benefits-dependents-management @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group spec/fixtures/pdf_fill/21P-0969 @department-of-veterans-affairs/pension-and-burials @department-of-veterans-affairs/backend-review-group spec/fixtures/pdf_fill/21P-530 @department-of-veterans-affairs/benefits-non-disability @department-of-veterans-affairs/va-api-engineers @department-of-veterans-affairs/backend-review-group diff --git a/lib/pdf_fill/forms/pdfs/21-0781v2.pdf b/lib/pdf_fill/forms/pdfs/21-0781v2.pdf new file mode 100644 index 0000000000000000000000000000000000000000..03215bf3b9a3fb47976fd006567da432f6eab595 GIT binary patch literal 280870 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 z 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

yx;g^WV~v791u#7tj~pt>P@c&M?BoLr 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

oY&T!2bic5$#8Ge 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 { + 'first' => { + key: 'F[0].#subform[2].Veterans_Service_Members_First_Name[0]', + limit: 12, # limit: 28 (with combs removed) + question_num: 1, + question_suffix: 'A', + question_text: 'VETERAN/SERVICE MEMBER\'S NAME. First Name' + }, + 'middleInitial' => { + key: 'F[0].#subform[2].VeteransMiddleInitial1[0]', + limit: 1, + question_num: 1, + question_suffix: 'B', + question_text: 'VETERAN/SERVICE MEMBER\'S NAME. Middle Initial' + }, + 'last' => { + key: 'F[0].#subform[2].VeteransLastName[0]', + limit: 18, # limit: 45 (with combs removed) + question_num: 1, + question_suffix: 'C', + question_text: 'VETERAN/SERVICE MEMBER\'S NAME. Last Name' + } + }, + 'veteranSocialSecurityNumber' => { # question_num: 2 + 'first' => { + key: 'F[0].#subform[2].SSN1[0]' + }, + 'second' => { + key: 'F[0].#subform[2].SSN2[0]' + }, + 'third' => { + key: 'F[0].#subform[2].SSN3[0]' + } + }, + 'vaFileNumber' => { + key: 'F[0].#subform[2].VAFileNumber[0]', + limit: 9, + question_num: 3, + question_text: 'VA FILE NUMBER (If applicable)' + }, + 'veteranDateOfBirth' => { + 'month' => { + key: 'F[0].#subform[2].Month[0]', + limit: 2, + question_num: 4, + question_suffix: 'A', + question_text: 'DATE OF BIRTH. Enter 2 digit Month.' + }, + 'day' => { + key: 'F[0].#subform[2].Day[0]', + limit: 2, + question_num: 4, + question_suffix: 'B', + question_text: 'DATE OF BIRTH. Enter 2 digit day.' + }, + 'year' => { + key: 'F[0].#subform[2].Year[0]', + limit: 4, + question_num: 4, + question_suffix: 'C', + question_text: 'DATE OF BIRTH. Enter 4 digit year.' + } + }, + 'veteranServiceNumber' => { + key: 'F[0].#subform[2].VeteransServiceNumber[0]', + limit: 10, + question_num: 5, + question_text: 'VETERAN\'S SERVICE NUMBER (If applicable)' + }, + 'veteranPhone' => { + 'first' => { + key: 'F[0].#subform[2].AreaCode[0]', + limit: 3, + question_num: 6, + question_suffix: 'A', + question_text: 'TELEPHONE NUMBER (Include Area Code). Enter three digits of Area Code.' + }, + 'second' => { + key: 'F[0].#subform[2].FirstThreeNumbers[0]', + limit: 3, + question_num: 6, + question_suffix: 'B', + question_text: 'TELEPHONE NUMBER (Include Area Code). Enter middle three digits.' + }, + 'third' => { + key: 'F[0].#subform[2].LastFourNumbers[0]', + limit: 4, + question_num: 6, + question_suffix: 'C', + question_text: 'TELEPHONE NUMBER (Include Area Code). Enter last four digits.' + } + }, + 'veteranIntPhone' => { + key: 'F[0].#subform[2].International_Telephone_Number_If_Applicable[0]', + limit: 25, + question_num: 6, + question_suffix: 'D', + question_text: 'Enter International Phone Number (If applicable).' + }, + 'email' => { + key: 'F[0].#subform[2].E_Mail_Address_Optional[0]', + limit: 75, # TODO: This is a guess. Need to confirm. + question_num: 7, + question_text: 'E-Mail Address (Optional).' + }, + 'emailOverflow' => { + key: '', + question_num: 7, + question_text: 'E-Mail Address (Optional).' + }, + 'eventTypes' => { # question_num: 8 + 'combat' => { + key: 'F[0].#subform[2].Combat_Traumatic_Events[0]' + }, + 'mst' => { + key: 'F[0].#subform[2].Personal_Traumatic_Events_Not_Involving_Military_Sexual_Trauma[0]' + }, + 'nonMst' => { + key: 'F[0].#subform[2].Personal_Traumatic_Events_Involving_Military_Sexual_Trauma[0]' + }, + 'other' => { + key: 'F[0].#subform[2].Other_Traumatic_Events[0]' + } + }, + 'eventsDetails' => { + limit: 6, + first_key: 'details', + question_text: 'EVENT DETAILS', + question_num: 9, + 'details' => { + key: "F[0].#subform[2].Brief_Description_Of_The_Traumatic_Events[#{ITERATOR}]", + limit: 150 + }, + 'location' => { + key: "F[0].#subform[2].Location_Of_The_Traumatic_Events[#{ITERATOR}]", + limit: 84 + }, + 'timing' => { + key: "F[0].#subform[2].Dates_The_Traumatic_Events_Occured[#{ITERATOR}]", + limit: 75 + }, + 'eventOverflow' => { + key: '', + question_text: 'TRAUMATIC EVENT(S) INFORMATION', + question_num: 9, + question_suffix: 'A' + } + }, + 'behaviors' => { # question_num: 10A + 'reassignment' => { + key: 'F[0].#subform[3].Request_For_A_Change_In_Occupational_Series_Or_Duty_Assignment[0]' + }, + 'absences' => { + key: 'F[0].#subform[3].Increased_Decreased_Use_Of_Leave[0]' + }, + 'performance' => { + key: 'F[0].#subform[3].Changes_In_Performance_Or_Performance_Evaluations[0]' + }, + 'consultations' => { + key: 'F[0].#subform[3].Increased_Decreased_Visits_To_A_Healthcare_Professional_Counselor_Or_Treatment_Facility[0]' + }, + 'episodes' => { + key: 'F[0].#subform[3].Episodes_Of_Depression_Panic_Attacks_Or_Anxiety[0]' + }, + 'medications' => { + key: 'F[0].#subform[3].Increased_Decreased_Use_Of_Prescription_Medications[0]' + }, + 'selfMedication' => { + key: 'F[0].#subform[3].Increased_Decreased_Use_Of_Over_The_Counter_Medications[0]' + }, + 'substances' => { + key: 'F[0].#subform[3].Increased_Decreased_Use_Of_Alcohol_Or_Drugs[0]' + }, + 'appetite' => { + key: 'F[0].#subform[3].Changes_In_Eating_Habits_Such_As_Overeating_Or_Undereating_Or_Significant_Changes_In_Weight[0]' + }, + 'pregnancy' => { + key: 'F[0].#subform[4].Pregnancy_Tests_Around_The_Time_Of_The_Traumatic_Events[0]' + }, + 'screenings' => { + key: 'F[0].#subform[4].Tests_For_Sexually_Transmitted_Infections[0]' + }, + 'socialEconomic' => { + key: 'F[0].#subform[4].Economic_Or_Social_Behavioral_Changes[0]' + }, + 'relationships' => { + key: 'F[0].#subform[4].Changes_In_Or_Breakup_Of_A_Significant_Relationship[0]' + }, + 'misconduct' => { + key: 'F[0].#subform[3].Disciplinary_Or_Legal_Difficulties[0]' + } + }, + 'behaviorsDetails' => { # question_num: 10B + 'reassignment' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[1]', + limit: 217, + question_num: 10, + question_suffix: 'B[2]', + question_text: 'ADDTIONAL INFORMATION ABOUT Request for a change in occupational series or duty assignment.' + }, + 'reassignmentOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[2]', + question_text: 'ADDTIONAL INFORMATION ABOUT Request for a change in occupational series or duty assignment.' + }, + 'absences' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[2]', + limit: 217, + question_num: 10, + question_suffix: 'B[3]', + question_text: 'ADDTIONAL INFORMATION ABOUT Increased/decreased use of leave.' + }, + 'absencesOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[3]', + question_text: 'ADDTIONAL INFORMATION ABOUT Increased/decreased use of leave.' + }, + 'performance' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[3]', + limit: 217, + question_num: 10, + question_suffix: 'B[4]', + question_text: 'ADDTIONAL INFORMATION ABOUT Changes in performance or performance evaluations.' + }, + 'performanceOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[4]', + question_text: 'ADDTIONAL INFORMATION ABOUT Changes in performance or performance evaluations.' + }, + 'consultations' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[0]', + limit: 217, + question_num: 10, + question_suffix: 'B[1]', + question_text: 'ADDTIONAL INFORMATION ABOUT Increased/decreased visits to a healthcare professional, counselor, or treatment Facility' + }, + 'consultationsOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[1]', + question_text: 'ADDTIONAL INFORMATION ABOUT Increased/decreased visits to a healthcare professional, counselor, or treatment Facility' + }, + 'episodes' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[4]', + limit: 217, + question_num: 10, + question_suffix: 'B[5]', + question_text: 'ADDTIONAL INFORMATION ABOUT Episodes of depression, panic attacks, or anxiety.' + }, + 'episodesOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[5]', + question_text: 'ADDTIONAL INFORMATION ABOUT Episodes of depression, panic attacks, or anxiety.' + }, + 'medications' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[5]', + limit: 217, + question_num: 10, + question_suffix: 'B[6]', + question_text: 'ADDTIONAL INFORMATION ABOUT Increased/Decreased use of prescription medications.' + }, + 'medicationsOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[6]', + question_text: 'ADDTIONAL INFORMATION ABOUT Increased/Decreased use of prescription medications.' + }, + 'selfMedication' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[6]', + limit: 217, + question_num: 10, + question_suffix: 'B[7]', + question_text: 'ADDTIONAL INFORMATION ABOUT Increased/Decreased use of over-the-counter medications.' + }, + 'selfMedicationOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[7]', + question_text: 'ADDTIONAL INFORMATION ABOUT Increased/Decreased use of over-the-counter medications.' + }, + 'substances' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[7]', + limit: 217, + question_num: 10, + question_suffix: 'B[8]', + question_text: 'ADDTIONAL INFORMATION ABOUT Increased/Decreased use of alcohol or drugs.' + }, + 'substancesOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[8]', + question_text: 'ADDTIONAL INFORMATION ABOUT Increased/Decreased use of alcohol or drugs.' + }, + 'appetite' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[9]', + limit: 217, + question_num: 10, + question_suffix: 'B[10]', + question_text: 'ADDTIONAL INFORMATION ABOUT Changes in eating habits, such as overeating or under eating, or significant changes in weight.' + }, + 'appetiteOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[10]', + question_text: 'ADDTIONAL INFORMATION ABOUT Changes in eating habits, such as overeating or under eating, or significant changes in weight.' + }, + 'pregnancy' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[10]', + limit: 217, + question_num: 10, + question_suffix: 'B[11]', + question_text: 'ADDTIONAL INFORMATION ABOUT Pregnancy tests around the time of the traumatic event(s).' + }, + 'pregnancyOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[11]', + question_text: 'ADDTIONAL INFORMATION ABOUT Pregnancy tests around the time of the traumatic event(s).' + }, + 'screenings' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[11]', + limit: 217, + question_num: 10, + question_suffix: 'B[12]', + question_text: 'ADDTIONAL INFORMATION ABOUT Tests for sexually transmitted infections.' + }, + 'screeningsOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[12]', + question_text: 'ADDTIONAL INFORMATION ABOUT Tests for sexually transmitted infections.' + }, + 'socialEconomic' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[12]', + limit: 217, + question_num: 10, + question_suffix: 'B[13]', + question_text: 'ADDTIONAL INFORMATION ABOUT Economic or social behavioral changes.' + }, + 'socialEconomicOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[13]', + question_text: 'ADDTIONAL INFORMATION ABOUT Economic or social behavioral changes.' + }, + 'relationships' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[13]', + limit: 217, + question_num: 10, + question_suffix: 'B[14]', + question_text: 'ADDTIONAL INFORMATION ABOUT Changes in or breakup of a significant relationship.' + }, + 'relationshipsOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[14]', + question_text: 'ADDTIONAL INFORMATION ABOUT Changes in or breakup of a significant relationship.' + }, + 'misconduct' => { + key: 'F[0].#subform[3].Additional_Information_About_Behavioral_Changes[8]', + limit: 217, + question_num: 10, + question_suffix: 'B[9]', + question_text: 'ADDTIONAL INFORMATION ABOUT Disciplinary or legal difficulties.' + }, + 'misconductOverflow' => { + key: '', + question_num: 10, + question_suffix: 'B[9]', + question_text: 'ADDTIONAL INFORMATION ABOUT Disciplinary or legal difficulties.' + }, + 'otherBehavior' => { + key: 'F[0].#subform[4].List_Additional_Behavioral_Changes[0]', + limit: 784, + question_num: 10, + question_suffix: 'C', + question_text: 'ADDTIONAL INFORMATION ABOUT Additional behavioral changes.' + }, + 'otherBehaviorOverflow' => { + key: '', + question_num: 10, + question_suffix: 'C', + question_text: 'ADDTIONAL INFORMATION ABOUT Additional behavioral changes.' + } + }, + 'reportFiled' => { # question_num: 11 + key: 'F[0].#subform[4].Report_Yes[0]' + }, + 'noReportFiled' => { # question_num: 11 + key: 'F[0].#subform[4].Report_No[0]' + }, + 'restrictedReport' => { # question_num: 11 + key: 'F[0].#subform[4].Restricted[0]' + }, + 'unrestrictedReport' => { # question_num: 11 + key: 'F[0].#subform[4].Unrestricted[0]' + }, + 'neitherReport' => { # question_num: 11 + key: 'F[0].#subform[4].Neither[0]' + }, + 'policeReport' => { # question_num: 11 + key: 'F[0].#subform[4].Police[0]' + }, + 'otherReport' => { # question_num: 11 + key: 'F[0].#subform[4].Other[1]' + }, + 'reportsDetails' => { + 'police' => { + key: 'F[0].#subform[4].Police_Report_Location_If_Known[0]', + limit: 68, + question_num: 11, + question_suffix: 'A', + question_text: 'Police Report Location' + }, + 'policeOverflow' => { + key: '', + question_num: 11, + question_suffix: 'A', + question_text: 'Police Report Location' + }, + 'other' => { + key: 'F[0].#subform[4].Other_Report[0]', + limit: 194, + question_num: 11, + question_suffix: 'B', + question_text: 'Other Report' + }, + 'otherOverflow' => { + key: '', + question_num: 11, + question_suffix: 'B', + question_text: 'Other Report' + } + }, + 'evidence' => { # question_num: 12 + 'crisisCenter' => { + key: 'F[0].#subform[4].A_Rape_Crisis_Center_Or_Center_For_Domestic_Abuse[0]' + }, + 'counseling' => { + key: 'F[0].#subform[4].A_Counseling_Facility_Or_Health_Clinic[0]' + }, + 'family' => { + key: 'F[0].#subform[4].Family_Member_Or_Roomates[0]' + }, + 'faculty' => { + key: 'F[0].#subform[4].A_Faculty_Member[0]' + }, + 'police' => { + key: 'F[0].#subform[4].Civilian_Police_Reports[0]' + }, + 'medical' => { + key: 'F[0].#subform[4].Medical_Reports_From_Civilian_Physicians_Or_Caregivers_Who_Treated_You_Immediately_Following_The_Incident_Or_Sometime_Later[0]' + }, + 'clergy' => { + key: 'F[0].#subform[4].A_Chaplain_Or_Clergy[0]' + }, + 'peers' => { + key: 'F[0].#subform[4].Fellow_Service_Members[0]' + }, + 'journal' => { + key: 'F[0].#subform[4].Personal_Diaries_Or_Journals[0]' + }, + 'none' => { + key: 'F[0].#subform[4].No_Evidence[0]' + }, + 'other' => { + key: 'F[0].#subform[4].Other_Specify_Below[0]' + }, + 'otherDetails' => { + key: 'F[0].#subform[4].Other_Evidence[0]', + limit: 100, + question_num: 12, + question_text: 'OTHER' + }, + 'otherDetailsOverflow' => { + key: '', + question_num: 12, + question_text: 'ADDITIONAL OTHER EVIDENCE DETAILS' + } + }, + 'treatment' => { # question_num: 13A + key: 'F[0].#subform[4].Treatment_Yes[0]' + }, + 'noTreatment' => { # question_num: 13A + key: 'F[0].#subform[4].Treatment_No[0]' + }, + 'treatmentProviders' => { # question_num: 13B + 'privateCare' => { + key: 'F[0].#subform[4].Private_Healthcare_Provider[0]' + }, + 'vetCenter' => { + key: 'F[0].#subform[4].VA_Vet_Center[0]' + }, + 'communityCare' => { + key: 'F[0].#subform[4].Community_Care_Paid_For_By_VA[0]' + }, + 'vamc' => { + key: 'F[0].#subform[4].VA_Medical_Center_And_Community_Based_Outpatient_Clinics[0]' + }, + 'cboc' => { + key: 'F[0].#subform[4].VA_Medical_Center_And_Community_Based_Outpatient_Clinics[0]' + }, + 'mtf' => { + key: 'F[0].#subform[4].Department_Of_Defense_Military_Treatment_Facilities[0]' + } + }, + 'treatmentProvidersDetails' => { + limit: 3, + first_key: 'facilityInfo', + question_text: 'TREATMENT INFORMATION', + question_num: 13, + 'facilityInfo' => { + key: "F[0].#subform[5].Name_And_Location_Of_Treatment_Facility[#{ITERATOR}]", + limit: 100 + }, + 'treatmentMonth' => { + key: "F[0].#subform[5].Date_Of_Treatment_Month[#{ITERATOR}]", + limit: 2 + }, + 'treatmentYear' => { + key: "F[0].#subform[5].Date_Of_Treatment_Year[#{ITERATOR}]", + limit: 4 + }, + 'noDates' => { + key: "F[0].#subform[5].Check_Box_Do_Not_Have_Date_s[#{ITERATOR}]" + }, + 'providerOverflow' => { + key: '', + question_text: 'TREATMENT INFORMATION', + question_num: 13, + question_suffix: 'C' + } + }, + 'additionalInformation' => { + key: 'F[0].#subform[5].Remarks_If_Any[0]', + limit: 1940, + question_num: 14, + question_text: 'REMARKS' + }, + 'additionalInformationOverflow' => { + key: '', + question_num: 14, + question_text: 'ADDITIONAL REMARKS' + }, + 'optionIndicator' => { # question_num: 15 + 'yes' => { + key: 'F[0].#subform[5].I_Consent_To_Have_VBA_Notify_VHA_About_Certain_Upcoming_Events_Related_To_My_Claim_And_Or_Appeal[0]' + }, + 'no' => { + key: 'F[0].#subform[5].I_Do_Not_Consent_To_Have_VBA_Notify_VHA_About_Certain_Upcoming_Events_Related_To_My_Claim_And_Or_Appeal[0]' + }, + 'revoke' => { + key: 'F[0].#subform[5].I_Revoke_Prior_Consent_To_Have_VBA_Notify_VHA_About_Certain_Upcoming_Events_Related_To_My_Claim_And_Or_Appeal[0]' + }, + 'notEnrolled' => { + key: 'F[0].#subform[5].Not_Applicable_And_Or_Not_Enrolled_In_VHA_Healthcare[0]' + } + }, + 'signature' => { + key: 'F[0].#subform[5].Signature[0]', + limit: 50, # TODO: This is a guess. Need to confirm. + question_num: 16, + question_suffix: 'A', + question_text: 'VETERAN/SERVICE MEMBER\'S SIGNATURE' + }, + 'signatureDate' => { + 'month' => { + key: 'F[0].#subform[5].Date_Signed_Month[0]', + limit: 2, + question_num: 16, + question_suffix: 'B', + question_text: 'DATE SIGNED. Enter 2 digit month.' + }, + 'day' => { + key: 'F[0].#subform[5].Date_Signed_Day[0]', + limit: 2, + question_num: 16, + question_suffix: 'B', + question_text: 'DATE SIGNED. Enter 2 digit day.' + }, + 'year' => { + key: 'F[0].#subform[5].Date_Signed_Year[0]', + limit: 4, + question_num: 16, + question_suffix: 'B', + question_text: 'DATE SIGNED. Enter 4 digit Year.' + } + } + }.freeze + # rubocop:enable Layout/LineLength + + def merge_fields(_options = {}) + @form_data['veteranFullName'] = extract_middle_i(@form_data, 'veteranFullName') + @form_data = expand_ssn(@form_data) + @form_data['veteranDateOfBirth'] = expand_veteran_dob(@form_data) + + split_phone(@form_data, 'veteranPhone') + + set_treatment_selection + set_reports_selection + + format_other_behavior_details + format_police_report_location + + expand_collection('eventsDetails', :format_event, 'eventOverflow') + expand_collection('treatmentProvidersDetails', :format_provider, 'providerOverflow') + + expand_signature(@form_data['veteranFullName'], @form_data['signatureDate']) + + formatted_date = DateTime.parse(@form_data['signatureDate']).strftime('%Y-%m-%d') + @form_data['signatureDate'] = split_date(formatted_date) + @form_data['signature'] = "/es/ #{@form_data['signature']}" + + @form_data + end + + private + + def split_phone(hash, key) + phone = hash[key] + return if phone.blank? + + phone = sanitize_phone(phone) + hash[key] = { + 'first' => phone[0..2], + 'second' => phone[3..5], + 'third' => phone[6..9] + } + end + + def sanitize_phone(phone) + phone.gsub('-', '') + end + + def set_treatment_selection + treated = @form_data['traumaTreatment'] + return if treated.nil? + + @form_data['treatment'] = treated ? 0 : 1 + @form_data['noTreatment'] = treated ? 0 : 1 + end + + def set_reports_selection + reports = @form_data['reports'] + return if reports.nil? + + @form_data['reportFiled'] = reports['yes'] ? 0 : nil + @form_data['noReportFiled'] = reports['no'] ? 1 : nil + @form_data['restrictedReport'] = reports['restricted'] ? 0 : nil + @form_data['unrestrictedReport'] = reports['unrestricted'] ? 1 : nil + @form_data['neitherReport'] = reports['neither'] ? 2 : nil + @form_data['policeReport'] = reports['police'] ? 3 : nil + @form_data['otherReport'] = reports['other'] ? 4 : nil + end + + def format_other_behavior_details + other_behavior = @form_data['behaviors']&.[]('otherBehavior') + return if other_behavior.blank? + + details = @form_data['behaviorsDetails']['otherBehavior'] + @form_data['behaviorsDetails']['otherBehavior'] = "#{other_behavior}: #{details}" + end + + def format_police_report_location + report = @form_data['reportsDetails']&.[]('police') + return if report.blank? + + @form_data['reportsDetails']['police'] = report.values.reject(&:empty?).join(', ') + end + + def expand_collection(collection, format_method, overflow_key) + collection = @form_data[collection] + return if collection.blank? + + collection.each_with_index do |item, index| + format_item_overflow(item, index + 1, format_method, overflow_key) + end + end + + def format_item_overflow(item, index, format_method, overflow_key) + item_overflow = send(format_method, item, index) + + return if item_overflow.blank? + + item[overflow_key] = PdfFill::FormValue.new('', item_overflow.compact.join("\n\n")) + end + + def format_event(event, index) + return if event.blank? + + event_overflow = ["Event Number: #{index}"] + event_details = event['details'] || '' + event_location = event['location'] || '' + event_timing = event['timing'] || '' + + event_overflow.push("Event Description: \n\n#{event_details}") + event_overflow.push("Event Location: \n\n#{event_location}") + event_overflow.push("Event Date: \n\n#{event_timing}") + + event_overflow + end + + def format_provider(provider, index) + return if provider.blank? + + provider_overflow = ["Treatment Information Number: #{index}"] + facility_info = provider['facilityInfo'] + month = provider['treatmentMonth'] || 'XX' + year = provider['treatmentYear'] || 'XXXX' + no_date = provider['noDates'] + + provider_overflow.push("Treatment Facility Name and Location: \n\n#{facility_info}") + provider_overflow.push(no_date ? "Treatment Date: Don't have date" : "Treatment Date: #{month}-#{year}") + + provider_overflow + end + end + end +end +# rubocop:enable Metrics/ClassLength diff --git a/spec/fixtures/pdf_fill/21-0781V2/kitchen_sink.json b/spec/fixtures/pdf_fill/21-0781V2/kitchen_sink.json new file mode 100644 index 00000000000..936646005f7 --- /dev/null +++ b/spec/fixtures/pdf_fill/21-0781V2/kitchen_sink.json @@ -0,0 +1,125 @@ +{ + "vaFileNumber": "12345678", + "veteranSocialSecurityNumber": "123456789", + "veteranFullName": { + "first": "Testy", + "middle": "Tester", + "last": "Testerson" + }, + "veteranDateOfBirth": "1981-11-05", + "veteranServiceNumber": "987654321", + "email": "testy.testerson@gmail.com", + "veteranPhone": "2123456789", + "veteranSecondaryPhone": "3133456789", + "additionalInformation": "Lorem ipsum dolor sit amet", + "eventTypes": { + "combat": true, + "mst": false, + "nonMst": true, + "other": false + }, + "eventsDetails": [ + { + "details": "Lorem ipsum dolor sit amet.", + "location": "abcdefghijklmn opqrstuvwxyz1234a", + "timing": "Summer of '70" + }, + { + "details": "Lorem ipsum dolor sit amet.", + "location": "abcdefghijklmn opqrstuvwxyz1234a", + "timing": "June 2007" + } + ], + "reports": { + "yes": true, + "no": false, + "restricted": true, + "unrestricted": false, + "neither": false, + "police": true, + "other": true + }, + "reportsDetails": { + "police": { + "agency": "SVI", + "city": "Dallas", + "state": "TX", + "township": "", + "country": "USA" + }, + "other": "incident report" + }, + "behaviors": { + "reassignment": true, + "absences": false, + "performance": true, + "consultations": false, + "episodes": true, + "medications": false, + "selfMedication": true, + "substances": false, + "appetite": true, + "pregnancy": false, + "screenings": true, + "socialEconomic": false, + "relationships": true, + "misconduct": false, + "otherBehavior": "Lorem" + }, + "behaviorsDetails": { + "reassignment": "requested duty assignment", + "performance": "poor evaluations", + "episodes": "severe depression", + "selfMedication": "stopped treating headaches", + "appetite": "skipping meals", + "screenings": "positive tests", + "relationships": "separation", + "otherBehavior": "Lorem ipsum dolor sit amet." + }, + "evidence": { + "crisisCenter": true, + "counseling": true, + "family": true, + "faculty": true, + "police": true, + "medical": true, + "clergy": true, + "peers": true, + "journal": true, + "none": true, + "other": true, + "otherDetails": "photographic evidence" + }, + "traumaTreatment": false, + "treatmentProviders": { + "privateCare": true, + "vetCenter": false, + "communityCare": false, + "vamc": true, + "cboc": false, + "mtf": true, + "none": false + }, + "treatmentProvidersDetails": [ + { + "facilityInfo": "Walter Reed, Bethesda, MD", + "treatmentMonth": "02", + "treatmentYear": "2014" + }, + { + "facilityInfo": "Cedarwood Behavioral Health Center, 4321 Oak Ridge Rd, Maplewood, MN", + "treatmentYear": "2024" + }, + { + "facilityInfo": "Silver Oak Recovery Center, 745 Greenfield Avenue, Clearwater, FL", + "noDates": true + } + ], + "optionIndicator": { + "yes": false, + "no": false, + "revoke": false, + "notEnrolled": true + }, + "signatureDate": "2016-01-31" + } diff --git a/spec/fixtures/pdf_fill/21-0781V2/merge_fields.json b/spec/fixtures/pdf_fill/21-0781V2/merge_fields.json new file mode 100644 index 00000000000..8f9a2b9affd --- /dev/null +++ b/spec/fixtures/pdf_fill/21-0781V2/merge_fields.json @@ -0,0 +1,177 @@ +{ + "vaFileNumber": "12345678", + "veteranSocialSecurityNumber": { + "first": "123", + "second": "45", + "third": "6789" + }, + "veteranFullName": { + "first": "Testy", + "middle": "Tester", + "last": "Testerson", + "middleInitial": "T" + }, + "veteranDateOfBirth": { + "month": "11", + "day": "05", + "year": "1981" + }, + "veteranServiceNumber": "987654321", + "email": "testy.testerson@gmail.com", + "veteranPhone": { + "first": "212", + "second": "345", + "third": "6789" + }, + "veteranSecondaryPhone": "3133456789", + "additionalInformation": "Lorem ipsum dolor sit amet", + "eventTypes": { + "combat": true, + "mst": false, + "nonMst": true, + "other": false + }, + "eventsDetails": [ + { + "details": "Lorem ipsum dolor sit amet.", + "location": "abcdefghijklmn opqrstuvwxyz1234a", + "timing": "Summer of '70", + "eventOverflow": { + "value": "", + "extras_value": "Event Number: 1\n\nEvent Description: \n\nLorem ipsum dolor sit amet.\n\nEvent Location: \n\nabcdefghijklmn opqrstuvwxyz1234a\n\nEvent Date: \n\nSummer of '70" + } + }, + { + "details": "Lorem ipsum dolor sit amet.", + "location": "abcdefghijklmn opqrstuvwxyz1234a", + "timing": "June 2007", + "eventOverflow": { + "value": "", + "extras_value": "Event Number: 2\n\nEvent Description: \n\nLorem ipsum dolor sit amet.\n\nEvent Location: \n\nabcdefghijklmn opqrstuvwxyz1234a\n\nEvent Date: \n\nJune 2007" + } + } + ], + "reports": { + "yes": true, + "no": false, + "restricted": true, + "unrestricted": false, + "neither": false, + "police": true, + "other": true + }, + "reportsDetails": { + "police": "SVI, Dallas, TX, USA", + "other": "incident report" + }, + "behaviors": { + "reassignment": true, + "absences": false, + "performance": true, + "consultations": false, + "episodes": true, + "medications": false, + "selfMedication": true, + "substances": false, + "appetite": true, + "pregnancy": false, + "screenings": true, + "socialEconomic": false, + "relationships": true, + "misconduct": false, + "otherBehavior": "Lorem" + }, + "behaviorsDetails": { + "reassignment": "requested duty assignment", + "performance": "poor evaluations", + "episodes": "severe depression", + "selfMedication": "stopped treating headaches", + "appetite": "skipping meals", + "screenings": "positive tests", + "relationships": "separation", + "otherBehavior": "Lorem: Lorem ipsum dolor sit amet." + }, + "evidence": { + "crisisCenter": true, + "counseling": true, + "family": true, + "faculty": true, + "police": true, + "medical": true, + "clergy": true, + "peers": true, + "journal": true, + "none": true, + "other": true, + "otherDetails": "photographic evidence" + }, + "traumaTreatment": false, + "treatmentProviders": { + "privateCare": true, + "vetCenter": false, + "communityCare": false, + "vamc": true, + "cboc": false, + "mtf": true, + "none": false + }, + "treatmentProvidersDetails": [ + { + "facilityInfo": "Walter Reed, Bethesda, MD", + "treatmentMonth": "02", + "treatmentYear": "2014", + "providerOverflow": { + "value": "", + "extras_value": "Treatment Information Number: 1\n\nTreatment Facility Name and Location: \n\nWalter Reed, Bethesda, MD\n\nTreatment Date: 02-2014" + } + }, + { + "facilityInfo": "Cedarwood Behavioral Health Center, 4321 Oak Ridge Rd, Maplewood, MN", + "treatmentYear": "2024", + "providerOverflow": { + "value": "", + "extras_value": "Treatment Information Number: 2\n\nTreatment Facility Name and Location: \n\nCedarwood Behavioral Health Center, 4321 Oak Ridge Rd, Maplewood, MN\n\nTreatment Date: XX-2024" + } + }, + { + "facilityInfo": "Silver Oak Recovery Center, 745 Greenfield Avenue, Clearwater, FL", + "noDates": true, + "providerOverflow": { + "value": "", + "extras_value": "Treatment Information Number: 3\n\nTreatment Facility Name and Location: \n\nSilver Oak Recovery Center, 745 Greenfield Avenue, Clearwater, FL\n\nTreatment Date: Don't have date" + } + } + ], + "optionIndicator": { + "yes": false, + "no": false, + "revoke": false, + "notEnrolled": true + }, + "signatureDate": { + "month": "01", + "day": "31", + "year": "2016" + }, + "veteranSocialSecurityNumber1": { + "first": "123", + "second": "45", + "third": "6789" + }, + "veteranSocialSecurityNumber2": { + "first": "123", + "second": "45", + "third": "6789" + }, + "treatment": 1, + "noTreatment": 1, + "reportFiled": 0, + "noReportFiled": null, + "restrictedReport": 0, + "unrestrictedReport": null, + "neitherReport": null, + "policeReport": 3, + "otherReport": 4, + "signature": "/es/ Testy Testerson" +} + diff --git a/spec/lib/pdf_fill/forms/va210781v2_spec.rb b/spec/lib/pdf_fill/forms/va210781v2_spec.rb new file mode 100644 index 00000000000..1f089adf739 --- /dev/null +++ b/spec/lib/pdf_fill/forms/va210781v2_spec.rb @@ -0,0 +1,371 @@ +# frozen_string_literal: true + +require 'rails_helper' +require 'pdf_fill/forms/va210781v2' + +def basic_class + PdfFill::Forms::Va210781v2.new({}) +end + +describe PdfFill::Forms::Va210781v2 do + let(:form_data) do + {} + end + + let(:new_form_class) do + described_class.new(form_data) + end + + def class_form_data + new_form_class.instance_variable_get(:@form_data) + end + + test_method( + basic_class, + 'split_phone', + [ + [[{}, nil], nil], + [[{ phone: '1112223333' }, :phone], { 'first' => '111', 'second' => '222', 'third' => '3333' }], + [[{ phone: '111-222-3333' }, :phone], { 'first' => '111', 'second' => '222', 'third' => '3333' }] + ] + ) + + describe '#merge_fields' do + it 'merges the right fields', run_at: '2024-03-21 00:00:00 EDT' do + expect(described_class.new(get_fixture('pdf_fill/21-0781V2/kitchen_sink')).merge_fields.to_json).to eq( + get_fixture('pdf_fill/21-0781V2/merge_fields').to_json + ) + end + end + + describe '#expand_signature' do + let(:form_data) do + { 'signatureDate' => '2017-02-14', + 'veteranFullName' => { 'first' => 'Foo', + 'last' => 'Bar' } } + end + let(:new_form_class) { described_class.new(form_data) } + + it 'expands the Signature and Signature Date correctly' do + new_form_class.expand_signature(form_data['veteranFullName'], form_data['signatureDate']) + + expect( + JSON.parse(new_form_class.instance_variable_get(:@form_data).to_json) + ).to eq( + { 'signature' => 'Foo Bar', + 'veteranFullName' => { + 'first' => 'Foo', + 'last' => 'Bar' + }, + 'signatureDate' => '2017-02-14' } + ) + end + end + + describe '#format_other_behavior_details' do + context 'with no data' do + it 'does nothing and returns nil' do + new_form_class.instance_variable_set(:@form_data, {}) + + expect(new_form_class.send(:format_other_behavior_details)).to be_nil + end + end + + context 'with data' do + let(:other_behavior) { 'Exhaustion' } + let(:details) { 'Always feeling tired' } + let :data do + { + 'behaviors' => { 'otherBehavior' => other_behavior }, + 'behaviorsDetails' => { 'otherBehavior' => details } + } + end + + it 'formats data correctly' do + new_form_class.instance_variable_set(:@form_data, data) + new_form_class.send(:format_other_behavior_details) + + expect(new_form_class.instance_variable_get(:@form_data)['behaviorsDetails']['otherBehavior']).to eq( + "#{other_behavior}: #{details}" + ) + end + end + end + + describe '#format_police_report_location' do + context 'when no police data are provided' do + it 'does nothing and leaves the data unchanged' do + new_form_class.instance_variable_set(:@form_data, { 'reportsDetails' => {} }) + new_form_class.send(:format_police_report_location) + + expect(new_form_class.instance_variable_get(:@form_data)['reportsDetails']).to eq({}) + end + end + + context 'when report data are provided' do + let(:incomplete_data) do + { + 'agency' => '', + 'city' => 'Springfield', + 'state' => 'IL', + 'country' => '' + } + end + + let(:complete_data) do + incomplete_data.merge( + 'agency' => 'Local Police Department', + 'country' => 'USA' + ) + end + + context 'when all fields are present' do + let(:data) do + { 'reportsDetails' => { 'police' => complete_data } } + end + + it 'formats the police report location correctly' do + new_form_class.instance_variable_set(:@form_data, data) + new_form_class.send(:format_police_report_location) + + expect(new_form_class.instance_variable_get(:@form_data)['reportsDetails']['police']).to eq( + 'Local Police Department, Springfield, IL, USA' + ) + end + end + + context 'when some fields are empty' do + let(:data_with_empty_fields) do + { + 'reportsDetails' => { 'police' => incomplete_data } + } + end + + it 'formats the police report correctly, ignoring empty fields' do + new_form_class.instance_variable_set(:@form_data, data_with_empty_fields) + new_form_class.send(:format_police_report_location) + + expect(new_form_class.instance_variable_get(:@form_data)['reportsDetails']['police']).to eq('Springfield, IL') + end + end + end + end + + describe '#format_event' do + context 'when event data are provided' do + let(:event_data) do + { 'details' => 'Sample event detail.', 'location' => 'Room 101', 'timing' => '2024-12-02' } + end + let(:index) { 1 } + + it 'formats the event correctly' do + result = new_form_class.send(:format_event, event_data, index) + + expect(result).to eq( + [ + 'Event Number: 1', + "Event Description: \n\nSample event detail.", + "Event Location: \n\nRoom 101", + "Event Date: \n\n2024-12-02" + ] + ) + end + end + + context 'when event data are incomplete' do + let(:incomplete_event_data) do + { 'details' => 'Sample event detail.', 'location' => '', 'timing' => '' } + end + let(:index) { 2 } + + it 'formats the event correctly, ignoring empty fields' do + result = new_form_class.send(:format_event, incomplete_event_data, index) + + expect(result).to eq( + [ + 'Event Number: 2', + "Event Description: \n\nSample event detail.", + "Event Location: \n\n", + "Event Date: \n\n" + ] + ) + end + end + + context 'when event data are blank' do + let(:blank_event_data) { nil } + let(:index) { 3 } + + it 'returns nil' do + result = new_form_class.send(:format_event, blank_event_data, index) + + expect(result).to be_nil + end + end + end + + describe '#format_provider' do + context 'when treatment data are provided' do + let(:treatment_data) do + { + 'facilityInfo' => 'Veterans Medical Center', + 'treatmentMonth' => '01', + 'treatmentYear' => '2024', + 'noDates' => false + } + end + let(:index) { 1 } + + it 'formats the treatment information correctly' do + result = new_form_class.send(:format_provider, treatment_data, index) + + expect(result).to eq( + [ + 'Treatment Information Number: 1', + "Treatment Facility Name and Location: \n\nVeterans Medical Center", + 'Treatment Date: 01-2024' + ] + ) + end + end + + context 'when some treatment data are missing' do + let(:incomplete_treatment_data) do + { + 'facilityInfo' => 'Veterans Medical Center', + 'treatmentYear' => '2024', + 'noDates' => false + } + end + let(:index) { 2 } + + it 'formats the treatment information correctly, using default values for missing fields' do + result = new_form_class.send(:format_provider, incomplete_treatment_data, index) + + expect(result).to eq( + [ + 'Treatment Information Number: 2', + "Treatment Facility Name and Location: \n\nVeterans Medical Center", + 'Treatment Date: XX-2024' + ] + ) + end + end + + context 'when no treatment data are provided' do + let(:blank_treatment_data) { nil } + let(:index) { 3 } + + it 'returns nil' do + result = new_form_class.send(:format_provider, blank_treatment_data, index) + + expect(result).to be_nil + end + end + + context 'when treatment has no date' do + let(:no_date_treatment_data) do + { + 'facilityInfo' => 'Veterans Medical Center', + 'noDates' => true + } + end + let(:index) { 4 } + + it 'formats the treatment information with "Don\'t have date" for missing dates' do + result = new_form_class.send(:format_provider, no_date_treatment_data, index) + + expect(result).to eq( + [ + 'Treatment Information Number: 4', + "Treatment Facility Name and Location: \n\nVeterans Medical Center", + "Treatment Date: Don't have date" + ] + ) + end + end + end + + describe '#expand_collection' do + context 'when eventsDetails is populated' do + let(:event_details) do + [ + { 'details' => 'Event 1 details', 'location' => 'Location 1', 'timing' => '2024-12-02' } + ] + end + let(:formatted_event) do + [ + 'Event Number: 1', + "Event Description: \n\nEvent 1 details", + "Event Location: \n\nLocation 1", + "Event Date: \n\n2024-12-02" + ] + end + + before do + new_form_class.instance_variable_set(:@form_data, { 'eventsDetails' => event_details }) + new_form_class.send(:expand_collection, 'eventsDetails', :format_event, 'eventOverflow') + end + + it 'formats the event correctly and assigns to eventOverflow' do + event_overflow = new_form_class.instance_variable_get(:@form_data)['eventsDetails'][0]['eventOverflow'] + formatted_value = formatted_event.join("\n\n") + + expect(event_overflow).to be_a(PdfFill::FormValue) + expect(event_overflow.extras_value).to eq(formatted_value) + end + end + + context 'when eventsDetails is empty' do + it 'does nothing and leaves the data unchanged' do + new_form_class.instance_variable_set(:@form_data, { 'eventsDetails' => [] }) + new_form_class.send(:expand_collection, 'eventsDetails', :format_event, 'eventOverflow') + + expect(new_form_class.instance_variable_get(:@form_data)['eventsDetails']).to eq([]) + end + end + + context 'when treatmentProvidersDetails is populated' do + let(:provider_details) do + [ + { + 'facilityInfo' => 'Army Medical Center', + 'treatmentMonth' => '02', + 'treatmentYear' => '2024', + 'noDates' => false + } + ] + end + let(:formatted_treatment) do + [ + 'Treatment Information Number: 1', + "Treatment Facility Name and Location: \n\nArmy Medical Center", + 'Treatment Date: 02-2024' + ] + end + + before do + new_form_class.instance_variable_set(:@form_data, { 'treatmentProvidersDetails' => provider_details }) + new_form_class.send(:expand_collection, 'treatmentProvidersDetails', :format_provider, 'providerOverflow') + end + + it 'formats the treatment information and assigns it to providerOverflow' do + form_data = new_form_class.instance_variable_get(:@form_data) + provider_overflow = form_data['treatmentProvidersDetails'][0]['providerOverflow'] + formatted_value = formatted_treatment.join("\n\n") + + expect(provider_overflow).to be_a(PdfFill::FormValue) + expect(provider_overflow.extras_value).to eq(formatted_value) + end + end + + context 'when treatmentProvidersDetails is empty' do + it 'does nothing and leaves the data unchanged' do + new_form_class.instance_variable_set(:@form_data, { 'treatmentProvidersDetails' => [] }) + new_form_class.send(:expand_collection, 'treatmentProvidersDetails', :format_provider, 'providerOverflow') + + expect(new_form_class.instance_variable_get(:@form_data)['treatmentProvidersDetails']).to eq([]) + end + end + end +end From c77131b8aebd476d3d40406bde8c96e681b85930 Mon Sep 17 00:00:00 2001 From: Michael Clement <18408628+michaelclement@users.noreply.github.com> Date: Fri, 13 Dec 2024 08:23:52 -0600 Subject: [PATCH 22/57] updated mapping to match what is received from FE (#19878) --- modules/ivc_champva/app/form_mappings/vha_10_7959a.json.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ivc_champva/app/form_mappings/vha_10_7959a.json.erb b/modules/ivc_champva/app/form_mappings/vha_10_7959a.json.erb index 187ca5e087e..b30cec049f7 100644 --- a/modules/ivc_champva/app/form_mappings/vha_10_7959a.json.erb +++ b/modules/ivc_champva/app/form_mappings/vha_10_7959a.json.erb @@ -24,7 +24,7 @@ "form1[0].#subform[0].#area[0].OutsdWrkAccdnt[0]": "<%= ['true', true].include?(form.data.dig('claims', 0, 'claim_is_auto_related')) ? 0 : 1 %>", "form1[0].#subform[0].PtntCverage[0]": "<%= ['true', true].include?(form.data.dig('has_ohi')) ? 0 : 1 %>", "form1[0].#subform[0].#area[1].RadioButtonList[0]": "<%= form.data.dig('policies', 0, 'type') === 'group' ? 1 : - form.data.dig('policies', 0, 'type') === 'non_group' ? 2 : + form.data.dig('policies', 0, 'type') === 'nonGroup' ? 2 : form.data.dig('policies', 0, 'type') === 'medicare' ? 3 : form.data.dig('policies', 0, 'type') === 'other' ? 4 : 0 %>", "form1[0].#subform[0].#area[1].SpecifyOtherPrimaryHealthInsurance[0]": "<%= form.data.dig('policies', 0, 'other_type') %>", From bfd2c885e6683e0c19c646295886bdad19f6ff1a Mon Sep 17 00:00:00 2001 From: Andrew Herzberg Date: Fri, 13 Dec 2024 09:46:33 -0700 Subject: [PATCH 23/57] add more committee helper specs (#19703) * add more committee helper specs * add more committee helper specs --- modules/mobile/docs/index.html | 278 +++++++----------- modules/mobile/docs/openapi.json | 168 ++++++----- modules/mobile/docs/openapi.yaml | 6 +- .../docs/schemas/CommunityCareProviders.yml | 29 +- modules/mobile/docs/schemas/Debt.yml | 1 + modules/mobile/docs/schemas/Dependents.yml | 35 ++- .../schemas/DependentsRequestDecisions.yml | 6 + modules/mobile/docs/schemas/Efolder.yml | 12 +- .../schemas/IndividualDisabilityRatings.yml | 2 + .../mobile/docs/schemas/LighthouseErrors.yml | 5 +- .../v0/community_care_providers_spec.rb | 26 +- .../spec/requests/mobile/v0/debts_spec.rb | 11 +- .../v0/dependents/request_decisions_spec.rb | 14 +- .../requests/mobile/v0/dependents_spec.rb | 11 +- .../mobile/v0/disability_rating_spec.rb | 47 +-- .../spec/requests/mobile/v0/efolder_spec.rb | 6 +- .../mobile/v0/enrollment_status_spec.rb | 13 +- .../v0/legacy_disability_rating_spec.rb | 5 - .../schemas/dependents_request_decisions.json | 248 ---------------- .../schemas/disability_rating_response.json | 45 --- 20 files changed, 345 insertions(+), 623 deletions(-) delete mode 100644 modules/mobile/spec/support/schemas/dependents_request_decisions.json delete mode 100644 modules/mobile/spec/support/schemas/disability_rating_response.json diff --git a/modules/mobile/docs/index.html b/modules/mobile/docs/index.html index 1bdb44d63b7..7bfe6d06a54 100755 --- a/modules/mobile/docs/index.html +++ b/modules/mobile/docs/index.html @@ -12,7 +12,7 @@ margin: 0; } -