mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-13 19:51:30 +00:00
updated streamline-setup v2
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AccountType;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class AccountTypeTableUpdateSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$names = array(
|
||||
'Other Current Liabilities',
|
||||
'Non-Current Liabilities',
|
||||
'Other Current Assets'
|
||||
);
|
||||
|
||||
foreach ($names as $name) {
|
||||
|
||||
// Prevent re-seeding the same data
|
||||
AccountType::firstOrCreate([
|
||||
'name' => $name,
|
||||
'description' => '',
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1
|
||||
]);
|
||||
}
|
||||
|
||||
// Update account names
|
||||
$oldTypes = AccountType::all();
|
||||
foreach ($oldTypes as $type) {
|
||||
if ($type->name == 'Liabilities') {
|
||||
DB::table('account_types')->where('id', $type->id)->update([
|
||||
'name' => 'Current Liabilities'
|
||||
]);
|
||||
}
|
||||
|
||||
if ($type->name == 'Fixed Asset') {
|
||||
DB::table('account_types')->where('id', $type->id)->update([
|
||||
'name' => 'Non-Current Assets'
|
||||
]);
|
||||
}
|
||||
|
||||
if ($type->name == 'Current Asset') {
|
||||
DB::table('account_types')->where('id', $type->id)->update([
|
||||
'name' => 'Current Assets'
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
//use Illuminate\Support\Facades\DB;
|
||||
use Streamline\Models\AccountType;
|
||||
|
||||
class AccountTypesTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
/* please not that these are used in the reports based on their IDs. EDit the AccountTypeTableUpdate seeder instead */
|
||||
$names = array(
|
||||
'Income',
|
||||
'Expense',
|
||||
'Fixed Asset',
|
||||
'Bank Account',
|
||||
'Equity',
|
||||
'Liabilities',
|
||||
'Cost Of Goods',
|
||||
'Accounts Receivables',
|
||||
'Accounts Payable',
|
||||
'Current Asset'
|
||||
);
|
||||
|
||||
foreach ($names as $name) {
|
||||
|
||||
// Prevent re-seeding the same data
|
||||
AccountType::firstOrCreate([
|
||||
'name' => $name,
|
||||
'description' => '',
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class AccountsReceivableClearanceSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$debtors = \Streamline\Models\Debtor::all();
|
||||
foreach ($debtors as $debtor){
|
||||
clearDebt($debtor->id);
|
||||
}
|
||||
$debt_plans = \Streamline\Models\DebtPlan::all();
|
||||
foreach ($debt_plans as $debt_plan){
|
||||
clearDebtPlan($debt_plan->id);
|
||||
}
|
||||
|
||||
$paid_invoices = \Streamline\Models\InvoicePayment::all();
|
||||
foreach ($paid_invoices as $invoice) {
|
||||
clearInvoice($invoice->invoice_number);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
//use Illuminate\Support\Facades\DB;
|
||||
use Streamline\Models\AgeGroup;
|
||||
|
||||
class AgeGroupsTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$groups = [
|
||||
['name' => 'Infant (0-28 Days)', 'age_type' => 3, 'from_age' => 0, 'to_age' => 28],
|
||||
['name' => 'Infant (1-12 Months)', 'age_type' => 2, 'from_age' => 1, 'to_age' => 12],
|
||||
['name' => 'Child (1-5 Years)', 'age_type' => 1, 'from_age' => 1, 'to_age' => 5],
|
||||
['name' => 'Child (6-12 Years)', 'age_type' => 1, 'from_age' => 5, 'to_age' => 12],
|
||||
['name' => 'Adult', 'age_type' => 1, 'from_age' => 12, 'to_age' => 150]
|
||||
];
|
||||
|
||||
foreach ($groups as $group) {
|
||||
// Prevent re-seeding the same data
|
||||
AgeGroup::firstOrCreate([
|
||||
'name' => $group['name'],
|
||||
'age_type' => $group['age_type'],
|
||||
'from_age' => $group['from_age'],
|
||||
'to_age' => $group['to_age'],
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnaesthesiaAirway;
|
||||
|
||||
class AnaesthesiaAirwaysTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`anaesthesia_airway` */
|
||||
$anaesthesia_airway = array(
|
||||
array('Id' => '1','Name' => 'Nasal prongs'),
|
||||
array('Id' => '2','Name' => 'Mask'),
|
||||
array('Id' => '3','Name' => 'Bag & mask ventilation'),
|
||||
array('Id' => '4','Name' => 'Intubated s/r'),
|
||||
array('Id' => '5','Name' => 'Intubated ventilated'),
|
||||
array('Id' => '6','Name' => 'Nil'),
|
||||
array('Id' => '7','Name' => 'Test airway edittted'),
|
||||
array('Id' => '8','Name' => 'Another Test Airway edited'),
|
||||
array('Id' => '9','Name' => 'Test Two Airway'),
|
||||
array('Id' => '10','Name' => 'Test Three Airway'),
|
||||
array('Id' => '12','Name' => 'Test four Airway'),
|
||||
array('Id' => '13','Name' => 'Test airway random'),
|
||||
array('Id' => '14','Name' => 'Final Airway name'),
|
||||
array('Id' => '15','Name' => 'Laryngeal Mask')
|
||||
);
|
||||
|
||||
foreach ($anaesthesia_airway as $airway):
|
||||
AnaesthesiaAirway::firstOrCreate([
|
||||
"id" => $airway['Id'],
|
||||
"name" => $airway['Name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnaesthesiaEtt;
|
||||
|
||||
class AnaesthesiaEttsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`anaesthesia_ett` */
|
||||
$anaesthesia_ett = array(
|
||||
array('Ett_Id' => '1','Ett_Name' => '2.5'),
|
||||
array('Ett_Id' => '2','Ett_Name' => '3.0'),
|
||||
array('Ett_Id' => '3','Ett_Name' => '3.5'),
|
||||
array('Ett_Id' => '4','Ett_Name' => '4.0'),
|
||||
array('Ett_Id' => '5','Ett_Name' => '4.5'),
|
||||
array('Ett_Id' => '6','Ett_Name' => '5.0'),
|
||||
array('Ett_Id' => '7','Ett_Name' => '5.5'),
|
||||
array('Ett_Id' => '8','Ett_Name' => '6.0'),
|
||||
array('Ett_Id' => '9','Ett_Name' => '6.5'),
|
||||
array('Ett_Id' => '10','Ett_Name' => '7.0'),
|
||||
array('Ett_Id' => '11','Ett_Name' => '7.5'),
|
||||
array('Ett_Id' => '12','Ett_Name' => '8.0'),
|
||||
array('Ett_Id' => '13','Ett_Name' => '8.5'),
|
||||
array('Ett_Id' => '14','Ett_Name' => '9.0'),
|
||||
array('Ett_Id' => '15','Ett_Name' => '9.5'),
|
||||
array('Ett_Id' => '16','Ett_Name' => '10.0')
|
||||
);
|
||||
|
||||
foreach ($anaesthesia_ett as $ett):
|
||||
AnaesthesiaEtt::firstOrCreate([
|
||||
"id" => $ett['Ett_Id'],
|
||||
"name" => $ett['Ett_Name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnaesthesiaInduction;
|
||||
|
||||
class AnaesthesiaInductionsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`anaesthesia_induction` */
|
||||
$anaesthesia_inductions = array(
|
||||
array('Induction_Id' => '1','Induction_Name' => 'Thiopentone'),
|
||||
array('Induction_Id' => '2','Induction_Name' => 'Ketamine'),
|
||||
array('Induction_Id' => '3','Induction_Name' => 'Halothane'),
|
||||
array('Induction_Id' => '4','Induction_Name' => 'Propofol'),
|
||||
array('Induction_Id' => '5','Induction_Name' => 'Other')
|
||||
);
|
||||
|
||||
foreach ($anaesthesia_inductions as $anaesthesia_induction):
|
||||
AnaesthesiaInduction::firstOrCreate([
|
||||
"id" => $anaesthesia_induction['Induction_Id'],
|
||||
"name" => $anaesthesia_induction['Induction_Name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Procedure;
|
||||
|
||||
class AnaesthesiaTypesSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`procedures` */
|
||||
$procedures = array(
|
||||
array('Procedure_Name' => 'Inguinal hernia (PPV) child unilateral', 'Cost' => '150000', 'Status' => '0', 'Insurance' => '', 'Account_Id' => '8', 'Category' => '2', 'Hmis_No' => '', 'Prompt' => '', 'Reference_Text' => '', 'Reference_Link' => '', 'Slug' => NULL, 'User_Id' => NULL, 'Created_At' => '2018-05-15 15:09:01'),
|
||||
array('Procedure_Name' => 'Anaesthetics: Local Infiltration / Ring block', 'Cost' => '14000', 'Status' => '0', 'Insurance' => 'Yes', 'Account_Id' => '12', 'Category' => '3', 'Hmis_No' => '', 'Prompt' => '', 'Reference_Text' => '', 'Reference_Link' => '', 'Slug' => 'Local', 'User_Id' => NULL, 'Created_At' => '2018-05-15 15:09:01'),
|
||||
array('Procedure_Name' => 'Anaesthetics: Regional block', 'Cost' => '30000', 'Status' => '0', 'Insurance' => 'No', 'Account_Id' => '8', 'Category' => '3', 'Hmis_No' => '', 'Prompt' => '', 'Reference_Text' => '', 'Reference_Link' => '', 'Slug' => 'Regional', 'User_Id' => NULL, 'Created_At' => '2018-05-15 15:09:01'),
|
||||
array('Procedure_Name' => 'Anaesthetics: Spinal / Epidural / Caudal', 'Cost' => '35000', 'Status' => '0', 'Insurance' => 'Yes', 'Account_Id' => '8', 'Category' => '3', 'Hmis_No' => '', 'Prompt' => '', 'Reference_Text' => '', 'Reference_Link' => '', 'Slug' => 'Spinal', 'User_Id' => NULL, 'Created_At' => '2018-05-15 15:09:01'),
|
||||
array('Procedure_Name' => 'Anaesthetics: General with face mask', 'Cost' => '35000', 'Status' => '0', 'Insurance' => 'Yes', 'Account_Id' => '8', 'Category' => '3', 'Hmis_No' => '', 'Prompt' => '', 'Reference_Text' => '', 'Reference_Link' => '', 'Slug' => 'General', 'User_Id' => NULL, 'Created_At' => '2018-05-15 15:09:01'),
|
||||
array('Procedure_Name' => 'Anaesthetics: General with intubation', 'Cost' => '50000', 'Status' => '0', 'Insurance' => 'Yes', 'Account_Id' => '8', 'Category' => '3', 'Hmis_No' => '', 'Prompt' => '', 'Reference_Text' => '', 'Reference_Link' => '', 'Slug' => 'General', 'User_Id' => NULL, 'Created_At' => '2018-05-15 15:09:01')
|
||||
);
|
||||
|
||||
foreach ($procedures as $procedure) {
|
||||
Procedure::firstOrCreate([
|
||||
'name' => $procedure['Procedure_Name'],
|
||||
'insurance' => $procedure['Insurance'],
|
||||
'insured_price' => 0,
|
||||
'non_insured_price' => $procedure['Cost'],
|
||||
'account_id' => $procedure['Account_Id'],
|
||||
'category_id' => $procedure['Category'],
|
||||
'hmis_number' => $procedure['Hmis_No'],
|
||||
'reference_text' => $procedure['Reference_Text'],
|
||||
'reference_link' => $procedure['Reference_Link'],
|
||||
'slug' => $procedure['Slug']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnaestheticAgent;
|
||||
|
||||
class AnaestheticAgentsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`anaesthesic_agents` */
|
||||
$anaesthesic_agents = array(
|
||||
array('Agent_Id' => '8','Agent_Name' => '0.5% bupivicaine'),
|
||||
array('Agent_Id' => '1','Agent_Name' => '0.5% lignocaine'),
|
||||
array('Agent_Id' => '3','Agent_Name' => '0.5% lignocaine with adrenaline'),
|
||||
array('Agent_Id' => '2','Agent_Name' => '1% lignocaine'),
|
||||
array('Agent_Id' => '4','Agent_Name' => '1% lignocaine with adrenaline'),
|
||||
array('Agent_Id' => '7','Agent_Name' => '2% lignocaine'),
|
||||
array('Agent_Id' => '5','Agent_Name' => 'Bupivicaine'),
|
||||
array('Agent_Id' => '6','Agent_Name' => 'Other')
|
||||
);
|
||||
|
||||
foreach ($anaesthesic_agents as $agent):
|
||||
AnaestheticAgent::firstOrCreate([
|
||||
"id" => $agent['Agent_Id'],
|
||||
"name" => $agent['Agent_Name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnaestheticTechnique;
|
||||
|
||||
class AnaestheticTechniquesTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`anaesthesic_techniques` */
|
||||
$anaesthesic_techniques = array(
|
||||
array('Technique_Id' => '1','Technique_Name' => 'Infiltration'),
|
||||
array('Technique_Id' => '2','Technique_Name' => 'Nerve block'),
|
||||
array('Technique_Id' => '3','Technique_Name' => 'Bier\'s block')
|
||||
);
|
||||
|
||||
foreach ($anaesthesic_techniques as $technique):
|
||||
AnaestheticTechnique::firstOrCreate([
|
||||
"id" => $technique['Technique_Id'],
|
||||
"name" => $technique['Technique_Name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Analgesic;
|
||||
|
||||
class AnalgesicsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`analgesics` */
|
||||
$analgesics = array(
|
||||
array('Analgesic_Id' => '1','Analgesic_Name' => 'Diclofenac'),
|
||||
array('Analgesic_Id' => '2','Analgesic_Name' => 'Morphine'),
|
||||
array('Analgesic_Id' => '3','Analgesic_Name' => 'Pethidine'),
|
||||
array('Analgesic_Id' => '4','Analgesic_Name' => 'Tramadol'),
|
||||
array('Analgesic_Id' => '5','Analgesic_Name' => 'Test Analgesic'),
|
||||
array('Analgesic_Id' => '6','Analgesic_Name' => 'Test Analgesic'),
|
||||
array('Analgesic_Id' => '7','Analgesic_Name' => 'Another test '),
|
||||
array('Analgesic_Id' => '8','Analgesic_Name' => 'Another random test re-edited'),
|
||||
array('Analgesic_Id' => '9','Analgesic_Name' => 'Random Analgesic'),
|
||||
array('Analgesic_Id' => '10','Analgesic_Name' => 'random two analgesic test'),
|
||||
array('Analgesic_Id' => '11','Analgesic_Name' => 'brighttest'),
|
||||
array('Analgesic_Id' => '12','Analgesic_Name' => 'Final analgesic test'),
|
||||
array('Analgesic_Id' => '13','Analgesic_Name' => 'Nil'),
|
||||
array('Analgesic_Id' => '14','Analgesic_Name' => 'Nil')
|
||||
);
|
||||
|
||||
foreach ($analgesics as $analgesic):
|
||||
Analgesic::firstOrCreate([
|
||||
"id" => $analgesic['Analgesic_Id'],
|
||||
"name" => $analgesic['Analgesic_Name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnteNatalClinicAccuracy;
|
||||
|
||||
class AnteNatalClinicAccuraciesTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$names = ['Sure of dates','Approximate dates','No idea of dates'];
|
||||
foreach ($names as $name) {
|
||||
AnteNatalClinicAccuracy::firstOrCreate(['name'=>$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnteNatalClinicEngagement;
|
||||
|
||||
class AnteNatalClinicEngagementsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$anc_engagement = array(
|
||||
array('Engagement_Id' => '1','Engagement_Name' => '5/5 Free'),
|
||||
array('Engagement_Id' => '2','Engagement_Name' => '4/5'),
|
||||
array('Engagement_Id' => '3','Engagement_Name' => '3/5 Engaged'),
|
||||
array('Engagement_Id' => '4','Engagement_Name' => '2/5'),
|
||||
array('Engagement_Id' => '5','Engagement_Name' => '1/5'),
|
||||
array('Engagement_Id' => '6','Engagement_Name' => '0/5'),
|
||||
array('Engagement_Id' => '7','Engagement_Name' => 'Not Applicable')
|
||||
);
|
||||
|
||||
foreach ($anc_engagement as $engagement) {
|
||||
AnteNatalClinicEngagement::firstOrCreate([
|
||||
'id' => $engagement['Engagement_Id'],
|
||||
'name' => $engagement['Engagement_Name']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnteNatalClinicLie;
|
||||
|
||||
class AnteNatalClinicLiesTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$anc_lies = array(
|
||||
array('Lie_Id' => '1','Lie_Name' => 'Longitudinal'),
|
||||
array('Lie_Id' => '2','Lie_Name' => 'Oblique'),
|
||||
array('Lie_Id' => '3','Lie_Name' => 'Transverse'),
|
||||
array('Lie_Id' => '4','Lie_Name' => 'Not Applicable')
|
||||
);
|
||||
|
||||
foreach ($anc_lies as $lie) {
|
||||
AnteNatalClinicLie::firstOrCreate([
|
||||
'id' => $lie['Lie_Id'],
|
||||
'name' => $lie['Lie_Name']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnteNatalClinicOutcome;
|
||||
|
||||
class AnteNatalClinicOutcomesTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$anc_outcomes = array(
|
||||
array('Outcome_Id' => '1','Outcome' => 'Live singleton'),
|
||||
array('Outcome_Id' => '2','Outcome' => 'Live multiple'),
|
||||
array('Outcome_Id' => '3','Outcome' => 'Fresh SB'),
|
||||
array('Outcome_Id' => '4','Outcome' => 'Macerated SB'),
|
||||
array('Outcome_Id' => '5','Outcome' => 'Spontaneous abortion')
|
||||
);
|
||||
|
||||
foreach ($anc_outcomes as $outcome) {
|
||||
AnteNatalClinicOutcome::firstOrCreate([
|
||||
'id' => $outcome['Outcome_Id'],
|
||||
'name' => $outcome['Outcome']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnteNatalClinicPosition;
|
||||
|
||||
class AnteNatalClinicPositionTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`anc_position` */
|
||||
$anc_position = array(
|
||||
array('Position_Id' => '1','Position_Name' => 'ROA'),
|
||||
array('Position_Id' => '2','Position_Name' => 'ROL'),
|
||||
array('Position_Id' => '3','Position_Name' => 'ROP'),
|
||||
array('Position_Id' => '4','Position_Name' => 'LOA'),
|
||||
array('Position_Id' => '5','Position_Name' => 'LOL'),
|
||||
array('Position_Id' => '6','Position_Name' => 'LOP'),
|
||||
array('Position_Id' => '7','Position_Name' => 'RSA'),
|
||||
array('Position_Id' => '8','Position_Name' => 'LSA'),
|
||||
array('Position_Id' => '9','Position_Name' => 'RSP'),
|
||||
array('Position_Id' => '10','Position_Name' => 'LSP'),
|
||||
array('Position_Id' => '11','Position_Name' => 'Not Applicable')
|
||||
);
|
||||
|
||||
foreach ($anc_position as $position) {
|
||||
AnteNatalClinicPosition::firstOrCreate([
|
||||
'id' => $position['Position_Id'],
|
||||
'name' => $position['Position_Name']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\AnteNatalClinicPresentation;
|
||||
|
||||
class AnteNatalClinicPresentationTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$anc_presentation = array(
|
||||
array('Presentation_Id' => '1','Presentation_Name' => 'Cephalic'),
|
||||
array('Presentation_Id' => '2','Presentation_Name' => 'Breech - frank'),
|
||||
array('Presentation_Id' => '3','Presentation_Name' => 'Breech - knee'),
|
||||
array('Presentation_Id' => '4','Presentation_Name' => 'Breech - footling'),
|
||||
array('Presentation_Id' => '5','Presentation_Name' => 'Transverse'),
|
||||
array('Presentation_Id' => '6','Presentation_Name' => 'Compund'),
|
||||
array('Presentation_Id' => '7','Presentation_Name' => 'Not Applicable'),
|
||||
array('Presentation_Id' => '8','Presentation_Name' => 'Not Applicable')
|
||||
);
|
||||
|
||||
foreach ($anc_presentation as $presentation) {
|
||||
AnteNatalClinicPresentation::firstOrCreate([
|
||||
'id' => $presentation['Presentation_Id'],
|
||||
'name' => $presentation['Presentation_Name']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\ArtCardFamilyPlanningMethod;
|
||||
|
||||
class ArtCardFamilyPlanningMethodsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$names = ['Pregnant','Condoms','Oral Contraceptive Pills','Injectable / Implant hormones','Diaphragm / Cervical cap','Intra-uterine device (IUD)','Vasectomy / Tubal ligation','No family planning used'];
|
||||
foreach ($names as $name) {
|
||||
ArtCardFamilyPlanningMethod::firstOrCreate(['name'=>$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\ArtOi;
|
||||
|
||||
class ArtOiTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$names = ['Zoster','Pneumonia','Dementia','Encephalitis','Thrush – oral / vaginal','Cough','Fever','Difficult breathing','Weight loss','Urethral Discharge','Pelvic inflammatory disease','Ulcers – oral / other','Genital ulcer disease','Kaposi Sarcoma','Cryptococcal meningitis','Immune reconstitution inflammatory syndrome'];
|
||||
foreach ($names as $name) {
|
||||
ArtOi::firstOrCreate(['name'=>$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\ArtPotentialSideEffect;
|
||||
|
||||
class ArtPotentialSideEffectsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$names = ['Nausea','Diarrhoea','Fatigue','FAT Changes','Burning / numb / tingling','Dizzy, anxiety, nightmare, depression','Rash','Headache','Anaemia','Jaundice','Abdominal Pain','Vomiting'];
|
||||
foreach ($names as $name) {
|
||||
ArtPotentialSideEffect::firstOrCreate(['name'=>$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\ArvAdherenceReason;
|
||||
|
||||
class ArvAdherenceReasonTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$names = ['Toxicity / Side effects','Share with others','Forgot','Felt better','Too ill','Stigma, disclosure or privacy issues','Drug stockout','Patient lost/ran out of pills','Delivery / Travel problems','Inability to pay','Alcohol','Depression','Pill Burden','Lack of Food','Other'];
|
||||
foreach ($names as $name) {
|
||||
ArvAdherenceReason::firstOrCreate(['name'=>$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Banking;
|
||||
|
||||
class BankingSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$deposits = \Streamline\Models\BankDeposit::all();
|
||||
$transfers = \Streamline\Models\BankTransfer::all();
|
||||
|
||||
foreach ($transfers as $transfer){
|
||||
$record = new Banking;
|
||||
$record->memo = $transfer->deposit_memo;
|
||||
$record->trans_type = 'TRANSFER';
|
||||
$record->trans_date = $transfer->transfer_date;
|
||||
$record->bank = $transfer->from_account;
|
||||
$record->other_accounts = $transfer->to_account;
|
||||
$record->trans_id = $transfer->trans_id;
|
||||
$record->credit = 0;
|
||||
$record->debit = $transfer->balance;
|
||||
$record->account_balance = $transfer->previous_from_account_balance;
|
||||
$record->created_by = $transfer->created_by;
|
||||
$record->updated_by = $transfer->updated_by;
|
||||
$record->created_at = $transfer->created_at;
|
||||
$record->deleted_at = $transfer->deleted_at;
|
||||
$record->save();
|
||||
}
|
||||
|
||||
foreach ($deposits as $deposit){
|
||||
$bank_record = new Banking;
|
||||
$bank_record->trans_type = 'DEPOSIT';
|
||||
$bank_record->trans_date = $deposit->date_of_deposit;
|
||||
$bank_record->bank = $deposit->deposit_to;
|
||||
$bank_record->other_accounts = $deposit->from_account;
|
||||
$bank_record->account_balance = ((int)$deposit->previous_to_account_balance + (int)$deposit->amount);
|
||||
$bank_record->credit = $deposit->amount;
|
||||
$bank_record->debit = 0;
|
||||
$bank_record->memo = $deposit->deposit_memo;
|
||||
$bank_record->trans_id = $deposit->trans_id;
|
||||
$bank_record->created_by = $deposit->created_by;
|
||||
$bank_record->updated_by = $deposit->updated_by;
|
||||
$bank_record->created_at = $deposit->created_at;
|
||||
$bank_record->deleted_at = $deposit->deleted_at;
|
||||
$bank_record->save();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\BloodGroup;
|
||||
|
||||
class BloodGroupsSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$blood_groups = [
|
||||
'A Pos',
|
||||
'A Neg',
|
||||
'AB Pos',
|
||||
'AB Neg',
|
||||
'B Pos',
|
||||
'B Neg',
|
||||
'O Pos',
|
||||
'O Neg',
|
||||
'Unknown'
|
||||
];
|
||||
|
||||
foreach ($blood_groups as $value) {
|
||||
BloodGroup::firstOrCreate([
|
||||
'name' => $value
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\CaesarianSection;
|
||||
|
||||
class CaesarianSectionTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$options = [
|
||||
'Forceps','Vacuum Extraction'
|
||||
];
|
||||
foreach ($options as $option) {
|
||||
CaesarianSection::firstOrCreate([
|
||||
'name'=>$option,
|
||||
'created_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\CareEntryPoint;
|
||||
|
||||
class CareEntryPointsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$names = ['eMTCT','Out Patient','TB','STI','YCC','In Patient','SMC','Outreach','Other'];
|
||||
foreach ($names as $name) {
|
||||
CareEntryPoint::firstOrCreate(['name'=>$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class ChartOfAccountSlugTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$slugs = array(
|
||||
['name' => 'accumulated_depreciation'],
|
||||
['name' => 'opening_inventory'],
|
||||
['name' => 'family_account_deposits'],
|
||||
['name' => 'retained_earnings'],
|
||||
['name' => 'opening_balance_for_family_accounts'],
|
||||
['name' => 'patient_account_balance'],
|
||||
['name' => 'daily_cash_collections'],
|
||||
);
|
||||
|
||||
foreach ($slugs as $slug) {
|
||||
\Streamline\Models\ChartOfAccountSlug::updateOrCreate([
|
||||
'name' => $slug['name']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,83 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\ChartOfAccount;
|
||||
|
||||
class ChartOfAccountsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run(){
|
||||
$accounts = array(
|
||||
array('name' => 'Insurance Expenditure', 'type' => '2'),
|
||||
array('name' => 'Insurance Income', 'type' => '1'),
|
||||
array('name' => 'Utilities', 'type' => '2'),
|
||||
array('name' => 'Drugs', 'type' => '1'),
|
||||
array('name' => 'Sundries Cost Of Goods', 'type' => '7'),
|
||||
array('name' => 'Medical Equipment', 'type' => '3'),
|
||||
array('name' => 'Consultation', 'type' => '1'),
|
||||
array('name' => 'Procedures', 'type' => '1'),
|
||||
array('name' => 'Medico-legal', 'type' => '1'),
|
||||
array('name' => 'Undeposited funds', 'type' => '4'),
|
||||
array('name' => 'Investigations', 'type' => '1'),
|
||||
array('name' => 'Sundries', 'type' => '1'),
|
||||
array('name' => 'Salaries', 'type' => '2'),
|
||||
array('name' => 'Account Payable', 'type' => '9'),
|
||||
array('name' => 'Family Account deposits', 'type' => '6'),
|
||||
array('name' => 'Accounts Receivables', 'type' => '8'),
|
||||
array('name' => 'Drugs Cost Of Goods', 'type' => '7'),
|
||||
array('name' => 'Drugs Inventory Assets', 'type' => '10'),
|
||||
array('name' => 'Other Services', 'type' => '1'),
|
||||
array('name' => 'Fixed Asset Depreciation', 'type' => '2'),
|
||||
array('name' => 'Labs Cost Of Goods', 'type' => '2'),
|
||||
array('name' => 'Radiologies Cost Of Goods', 'type' => '2'),
|
||||
array('name' => 'Dentals Cost Of Goods', 'type' => '2'),
|
||||
array('name' => 'Sundries Inventory Assets', 'type' => '10'),
|
||||
array('name' => 'Equity Account', 'type' => '5'),
|
||||
array('name' => 'Retained Earnings', 'type' => '5'),
|
||||
array('name' => 'Patient Account Balance', 'type' => '6'),
|
||||
array('name' => 'Opening Balance for Banks', 'type' => '5'),
|
||||
array('name' => 'Opening Inventory', 'type' => '5'),
|
||||
array('name' => 'Inpatient Deposits', 'type' => '1'),
|
||||
array('name' => 'Opening Fixed Assets', 'type' => '5'),
|
||||
array('name' => 'Opening Balance for Family Accounts', 'type' => '5'),
|
||||
array('name' => 'Daily Cash Collections', 'type' => '4'),
|
||||
array('name' => 'One Off Discounts', 'type' => '2'),
|
||||
array('name' => 'Ward Discounts', 'type' => '2'),
|
||||
array('name' => 'Stock Adjustment', 'type' => '1'),
|
||||
array('name' => 'Labs Expense Account', 'type' => '2'),
|
||||
array('name' => 'Radiologies Expense Account', 'type' => '2'),
|
||||
array('name' => 'General Items Expense Account', 'type' => '2'),
|
||||
array('name' => 'Dentals Expense Account', 'type' => '2'),
|
||||
array('name' => 'Patient Dependants Expense Account', 'type' => '2'),
|
||||
array('name' => 'Ward Extras Income Account', 'type' => '1'),
|
||||
array('name' => 'General Items Expense Account', 'type' => '2'),
|
||||
array('name' => 'Eye Glasses Cost of Goods', 'type' => '7'),
|
||||
);
|
||||
|
||||
foreach ($accounts as $account) {
|
||||
try {
|
||||
// Prevent re-seeding the same data
|
||||
$slug = str_replace(" ", "_", strtolower($account['name']));
|
||||
|
||||
if (get_name($slug, 'slug', 'id', 'chart_of_accounts') == 'N/A') {
|
||||
ChartOfAccount::firstOrCreate([
|
||||
'name' => $account['name'],
|
||||
'type' => $account['type'],
|
||||
'slug' => $slug,
|
||||
'description' => '',
|
||||
'sub_account_of' => '0',
|
||||
'balance' => 0,
|
||||
'core' => 1,
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1
|
||||
]);
|
||||
}
|
||||
} catch (\Exception $exception) {}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Modules\ClinicalData\Http\Controllers\ClinicController;
|
||||
use Modules\ClinicalData\Services\Clinics\ClinicsServiceInterface;
|
||||
use Streamline\Models\Clinic;
|
||||
|
||||
class ClinicsSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$clinics = array(
|
||||
array('name' => 'ANTE-NATAL Clinic', 'slug' => 'ante_natal'),
|
||||
array('name' => 'A.R.T Clinic', 'slug' => 'art'),
|
||||
array('name' => 'Dental Clinic', 'slug' => 'general'),
|
||||
array('name' => 'Diabetes Clinic', 'slug' => 'diabetes'),
|
||||
array('name' => 'Paediatric Clinic', 'slug' => 'general'),
|
||||
array('name' => 'Psychiatry Clinic', 'slug' => 'mental_health'),
|
||||
array('name' => 'TB Clinic', 'slug' => 'general'),
|
||||
array('name' => 'Accident & Emergency Clinic', 'slug' => 'general'),
|
||||
array('name' => 'General Adult Clinic', 'slug' => 'general'),
|
||||
array('name' => 'Maternity Clinic', 'slug' => 'maternity'),
|
||||
);
|
||||
|
||||
foreach ($clinics as $clinic):
|
||||
Clinic::firstOrCreate([
|
||||
"name" => $clinic['name'],
|
||||
"slug" => $clinic['slug']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\SundryDeposit;
|
||||
use Streamline\Models\TreatmentDeposits;
|
||||
|
||||
class CostPriceSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$sundry_invoices = \Streamline\Models\PatientCategoryInvoice::where('tag_id', 5)->get();
|
||||
$treatment_invoices = \Streamline\Models\PatientCategoryInvoice::where('tag_id', 3)->orWhere('tag_id', 1)->get();
|
||||
$sundries = SundryDeposit::get();
|
||||
$treatments = TreatmentDeposits::get();
|
||||
|
||||
foreach ($treatments as $item){
|
||||
$cost_price_array = [];
|
||||
$items_array = explode(',',$item->treatment_items);
|
||||
for ($x = 0; $x < count($items_array); $x++){
|
||||
$current_cost_price = get_name($items_array[$x], 'id', 'cost_price', 'drugs');
|
||||
array_push($cost_price_array, $current_cost_price);
|
||||
}
|
||||
$cost_price_string = implode(',',$cost_price_array);
|
||||
TreatmentDeposits::where('id', $item->id)->update(['cost_price' => $cost_price_string]);
|
||||
}
|
||||
foreach ($sundries as $item){
|
||||
$cost_price_array = [];
|
||||
$items_array = explode(',',$item->sundry_items);
|
||||
for ($x = 0; $x < count($items_array); $x++){
|
||||
$current_cost_price = get_name($items_array[$x], 'id', 'cost_price', 'sundries');
|
||||
array_push($cost_price_array, $current_cost_price);
|
||||
}
|
||||
$cost_price_string = implode(',',$cost_price_array);
|
||||
SundryDeposit::where('id', $item->id)->update(['cost_price' => $cost_price_string]);
|
||||
}
|
||||
foreach ($treatment_invoices as $item){
|
||||
$cost_price_array = [];
|
||||
$items_array = explode(',',$item->items_ids);
|
||||
for ($x = 0; $x < count($items_array); $x++){
|
||||
$current_cost_price = get_latest_inventory_cost_price($items_array[$x], 1, Carbon::today()->toDateString());
|
||||
array_push($cost_price_array, $current_cost_price);
|
||||
}
|
||||
$cost_price_string = implode(',',$cost_price_array);
|
||||
\Streamline\Models\PatientCategoryInvoice::where('id', $item->id)->update(['cost_price' => $cost_price_string]);
|
||||
}
|
||||
foreach ($sundry_invoices as $item){
|
||||
$cost_price_array = [];
|
||||
$items_array = explode(',',$item->items_ids);
|
||||
for ($x = 0; $x < count($items_array); $x++){
|
||||
$current_cost_price = get_latest_inventory_cost_price($items_array[$x], 2, Carbon::today()->toDateString());
|
||||
array_push($cost_price_array, $current_cost_price);
|
||||
}
|
||||
$cost_price_string = implode(',',$cost_price_array);
|
||||
\Streamline\Models\PatientCategoryInvoice::where('id', $item->id)->update(['cost_price' => $cost_price_string]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+486
@@ -0,0 +1,486 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\County;
|
||||
|
||||
class CountiesSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
// $counties = [
|
||||
// ['id' => '1', 'name' => 'Rubabo', 'district_id' => '1'],
|
||||
// ['id' => '2', 'name' => 'Rujumbura', 'district_id' => '1'],
|
||||
// ['id' => '3', 'name' => 'Rukungiri Municipality', 'district_id' => '1'],
|
||||
// ['id' => '4', 'name' => 'Kajara', 'district_id' => '6'],
|
||||
// ['id' => '5', 'name' => 'Ruhaama', 'district_id' => '6'],
|
||||
// ['id' => '6', 'name' => 'Rushenyi', 'district_id' => '6'],
|
||||
// ['id' => '7', 'name' => 'Ntungamo Municipality', 'district_id' => '6'],
|
||||
// ['id' => '8', 'name' => 'Rukiga', 'district_id' => '3'],
|
||||
// ['id' => '9', 'name' => 'Kabale Municipality', 'district_id' => '3'],
|
||||
// ['id' => '10', 'name' => 'Rubanda', 'district_id' => '3'],
|
||||
// ['id' => '11', 'name' => 'Ndorwa', 'district_id' => '3'],
|
||||
// ['id' => '12', 'name' => 'Kinkiizi', 'district_id' => '2'],
|
||||
// ['id' => '13', 'name' => 'RUSHENYI', 'district_id' => '6'],
|
||||
// ['id' => '14', 'name' => 'Rutenga', 'district_id' => '2'],
|
||||
// ['id' => '15', 'name' => 'kinkizi', 'district_id' => '8'],
|
||||
// ['id' => '16', 'name' => 'kayungwe', 'district_id' => '8'],
|
||||
// ['id' => '17', 'name' => 'Rubabo', 'district_id' => '5'],
|
||||
// ['id' => '18', 'name' => 'IBALE', 'district_id' => '5'],
|
||||
// ['id' => '19', 'name' => 'Bushenyi Municipality', 'district_id' => '5'],
|
||||
// ['id' => '20', 'name' => 'Bukanga', 'district_id' => '9'],
|
||||
// ['id' => '21', 'name' => 'RUHINDA', 'district_id' => '10'],
|
||||
// ['id' => '22', 'name' => 'KASHAMBYA', 'district_id' => '3'],
|
||||
// ['id' => '23', 'name' => 'kabira', 'district_id' => '10'],
|
||||
// ['id' => '24', 'name' => 'Rugarama', 'district_id' => '6'],
|
||||
// ['id' => '25', 'name' => 'RUREHE', 'district_id' => '10'],
|
||||
// ['id' => '26', 'name' => 'Kibale South', 'district_id' => '11'],
|
||||
// ['id' => '27', 'name' => 'Test Sub County', 'district_id' => '12'],
|
||||
// ['id' => '28', 'name' => 'RUJUMBURA', 'district_id' => '14'],
|
||||
// ['id' => '29', 'name' => 'Rukinga', 'district_id' => '3'],
|
||||
// ['id' => '30', 'name' => 'Kibale East', 'district_id' => '11'],
|
||||
// ['id' => '31', 'name' => 'Rwampara', 'district_id' => '4'],
|
||||
// ['id' => '32', 'name' => 'Isingiro', 'district_id' => '9'],
|
||||
// ['id' => '33', 'name' => 'Kabura', 'district_id' => '15'],
|
||||
// ['id' => '34', 'name' => 'Entebbe', 'district_id' => '16'],
|
||||
// ['id' => '35', 'name' => 'Ruhama', 'district_id' => '18'],
|
||||
// ['id' => '36', 'name' => 'Kitwe', 'district_id' => '18'],
|
||||
// ['id' => '37', 'name' => 'Nsiika', 'district_id' => '19'],
|
||||
// ['id' => '38', 'name' => 'Migamba', 'district_id' => '20'],
|
||||
// ['id' => '39', 'name' => 'Kyaka', 'district_id' => '20'],
|
||||
// ['id' => '40', 'name' => 'Kashongi', 'district_id' => '13'],
|
||||
// ['id' => '41', 'name' => 'Kazo', 'district_id' => '13'],
|
||||
// ['id' => '42', 'name' => 'BUFUMBIRA SOUTH', 'district_id' => '21'],
|
||||
// ['id' => '43', 'name' => 'kanshagama', 'district_id' => '15'],
|
||||
// ['id' => '44', 'name' => 'kabula', 'district_id' => '15'],
|
||||
// ['id' => '45', 'name' => 'Kashari', 'district_id' => '4'],
|
||||
// ['id' => '46', 'name' => 'Buwekura', 'district_id' => '23'],
|
||||
// ['id' => '47', 'name' => 'Mahogola', 'district_id' => '25'],
|
||||
// ['id' => '48', 'name' => 'Rubanda', 'district_id' => '26'],
|
||||
// ['id' => '49', 'name' => 'Ibanda', 'district_id' => '27'],
|
||||
// ['id' => '50', 'name' => 'Sheema', 'district_id' => '14'],
|
||||
// ['id' => '51', 'name' => 'Bunyaruguru', 'district_id' => '5'],
|
||||
// ['id' => '52', 'name' => 'Buyaga West', 'district_id' => '29'],
|
||||
// ['id' => '53', 'name' => 'Buyaruguru', 'district_id' => '12'],
|
||||
// ['id' => '54', 'name' => 'Buyaruguru', 'district_id' => '12'],
|
||||
// ['id' => '55', 'name' => 'Buyaruguru', 'district_id' => '12'],
|
||||
// ['id' => '56', 'name' => 'Buyaruguru', 'district_id' => '12'],
|
||||
// ['id' => '57', 'name' => 'Bunyaruguru', 'district_id' => '12'],
|
||||
// ['id' => '58', 'name' => 'Bukinda', 'district_id' => '3'],
|
||||
// ['id' => '59', 'name' => 'Rwamucucu', 'district_id' => '3'],
|
||||
// ['id' => '60', 'name' => 'Rwasamere', 'district_id' => '6'],
|
||||
// ['id' => '61', 'name' => 'Rwashamere', 'district_id' => '6'],
|
||||
// ['id' => '62', 'name' => 'Buyaga west', 'district_id' => '8'],
|
||||
// ['id' => '63', 'name' => 'Byeru', 'district_id' => '12'],
|
||||
// ['id' => '64', 'name' => 'Ryeru', 'district_id' => '12'],
|
||||
// ['id' => '65', 'name' => 'Mbarara Municipality', 'district_id' => '4'],
|
||||
// ['id' => '66', 'name' => 'Kooki', 'district_id' => '31'],
|
||||
// ['id' => '67', 'name' => 'Mushunga', 'district_id' => '10'],
|
||||
// ['id' => '68', 'name' => 'Sheema North', 'district_id' => '14'],
|
||||
// ['id' => '69', 'name' => 'Rwemiyaga', 'district_id' => '25'],
|
||||
// ['id' => '70', 'name' => 'rubanda', 'district_id' => '8'],
|
||||
// ['id' => '71', 'name' => 'Kakabara', 'district_id' => '20'],
|
||||
// ['id' => '72', 'name' => 'Igaara', 'district_id' => '5'],
|
||||
// ['id' => '73', 'name' => 'Ruheija', 'district_id' => '26'],
|
||||
// ['id' => '74', 'name' => 'Mahogora', 'district_id' => '25'],
|
||||
// ['id' => '75', 'name' => 'Northern Division', 'district_id' => '21'],
|
||||
// ['id' => '76', 'name' => 'Eitah', 'district_id' => '11'],
|
||||
// ['id' => '77', 'name' => 'Eitaha', 'district_id' => '11'],
|
||||
// ['id' => '78', 'name' => 'kitagwenda', 'district_id' => '11'],
|
||||
// ['id' => '79', 'name' => 'Mwenge', 'district_id' => '33'],
|
||||
// ['id' => '80', 'name' => 'Ruabaga', 'district_id' => '34'],
|
||||
// ['id' => '81', 'name' => 'Erute South', 'district_id' => '35'],
|
||||
// ['id' => '82', 'name' => 'Bufimbira North', 'district_id' => '21'],
|
||||
// ['id' => '83', 'name' => 'Lyantonde', 'district_id' => '15'],
|
||||
// ['id' => '84', 'name' => 'Kasambya', 'district_id' => '23'],
|
||||
// ['id' => '85', 'name' => 'Katerera', 'district_id' => '12'],
|
||||
// ['id' => '86', 'name' => 'Bufumbira East', 'district_id' => '21'],
|
||||
// ['id' => '87', 'name' => 'Burahya', 'district_id' => '32'],
|
||||
// ['id' => '88', 'name' => 'Nakyenyi', 'district_id' => '37'],
|
||||
// ['id' => '89', 'name' => 'kazo', 'district_id' => '39'],
|
||||
// ['id' => '90', 'name' => 'Busiro', 'district_id' => '16'],
|
||||
// ['id' => '91', 'name' => 'Bugangeizi West', 'district_id' => '40'],
|
||||
// ['id' => '92', 'name' => 'Kibale', 'district_id' => '11'],
|
||||
// ['id' => '93', 'name' => 'Buhweju', 'district_id' => '19'],
|
||||
// ['id' => '94', 'name' => 'Bunyangaro', 'district_id' => '32'],
|
||||
// ['id' => '95', 'name' => 'Nyabushozi', 'district_id' => '39'],
|
||||
// ['id' => '96', 'name' => 'Nyabushozi', 'district_id' => '13'],
|
||||
// ['id' => '97', 'name' => 'Buyanja', 'district_id' => '1'],
|
||||
// ['id' => '98', 'name' => 'Bufumbira', 'district_id' => '21'],
|
||||
// ['id' => '99', 'name' => 'Kawempe', 'district_id' => '34'],
|
||||
// ['id' => '100', 'name' => 'Rutete', 'district_id' => '29'],
|
||||
// ['id' => '101', 'name' => 'Mirongo', 'district_id' => '4'],
|
||||
// ['id' => '102', 'name' => 'Mutara', 'district_id' => '10'],
|
||||
// ['id' => '103', 'name' => 'kyamuhunga', 'district_id' => '5']
|
||||
// ];
|
||||
$counties = array(
|
||||
array('id' => '1','name' => 'LABWOR','district_id' => '1','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:06','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '2','name' => 'ADJUMANI WEST','district_id' => '2','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:11','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '3','name' => 'ADJUMANI EAST','district_id' => '2','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:12','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '4','name' => 'AGAGO','district_id' => '3','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:13','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '5','name' => 'AGAGO NORTH','district_id' => '3','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '6','name' => 'AGAGO WEST','district_id' => '3','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:19','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '7','name' => 'MOROTO','district_id' => '4','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:21','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '8','name' => 'AJURI','district_id' => '4','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:23','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '9','name' => 'KIOGA','district_id' => '5','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:26','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '10','name' => 'KIOGA NORTH','district_id' => '5','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:28','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '11','name' => 'UPE','district_id' => '6','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:30','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '12','name' => 'AMURIA COUNTY','district_id' => '7','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:33','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '13','name' => 'ORUNGO COUNTY','district_id' => '7','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:36','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '14','name' => 'KILAK SOUTH','district_id' => '8','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:38','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '15','name' => 'KILAK NORTH','district_id' => '8','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:39','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '16','name' => 'MARUZI','district_id' => '9','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:41','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '17','name' => 'APAC MUNICIPALITY','district_id' => '9','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:42','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '18','name' => 'MARUZI NORTH','district_id' => '9','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:43','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '19','name' => 'VURRA','district_id' => '10','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:44','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '20','name' => 'AYIVU DIVISION EAST','district_id' => '11','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:46','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '21','name' => 'ARUA CENTRAL DIVISION','district_id' => '11','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:47','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '22','name' => 'AYIVU DIVISION WEST','district_id' => '11','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:48','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '23','name' => 'BUDAKA','district_id' => '12','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:49','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '24','name' => 'IKI-IKI','district_id' => '12','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:51','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '25','name' => 'MANJIYA','district_id' => '13','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:52','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '26','name' => 'LUTSESHE','district_id' => '13','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:16:56','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '27','name' => 'BUSHIGAI','district_id' => '13','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:00','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '28','name' => 'BUKOOLI COUNTY CENTRAL','district_id' => '14','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:02','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '29','name' => 'BUKOOLI COUNTY NORTH','district_id' => '14','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:05','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '30','name' => 'BUGIRI MUNICIPALITY','district_id' => '14','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:07','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '31','name' => 'BUGWERI COUNTY','district_id' => '15','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:07','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '32','name' => 'BUHWEJU','district_id' => '16','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:09','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '33','name' => 'BUHWEJU WEST','district_id' => '16','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:10','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '34','name' => 'NJERU MUNICIPALITY','district_id' => '17','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:12','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '35','name' => 'LUGAZI MUNICIPALITY','district_id' => '17','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:13','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '36','name' => 'BUIKWE COUNTY SOUTH','district_id' => '17','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:14','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '37','name' => 'BUKEDEA COUNTY','district_id' => '18','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '38','name' => 'KACHUMBALA COUNTY','district_id' => '18','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:20','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '39','name' => 'BUKOMANSIMBI NORTH','district_id' => '19','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:22','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '40','name' => 'BUKOMANSIMBI SOUTH','district_id' => '19','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:23','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '41','name' => 'KONGASIS','district_id' => '20','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:24','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '42','name' => 'T\'OO','district_id' => '20','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:27','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '43','name' => 'BULAMBULI','district_id' => '21','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:30','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '44','name' => 'ELGON','district_id' => '21','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:33','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '45','name' => 'ELGON NORTH','district_id' => '21','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:35','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '46','name' => 'BULIISA','district_id' => '22','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:39','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '47','name' => 'BWAMBA','district_id' => '23','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:40','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '48','name' => 'BUGHENDERA','district_id' => '23','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:44','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '49','name' => 'BUNYANGABU','district_id' => '24','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:48','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '50','name' => 'IGARA COUNTY EAST','district_id' => '25','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:51','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '51','name' => 'IGARA COUNY WEST','district_id' => '25','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:52','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '52','name' => 'BUSHENYI-ISHAKA MUNICIPALITY','district_id' => '25','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:54','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '53','name' => 'SAMIA BUGWE COUNTY NORTH','district_id' => '26','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:55','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '54','name' => 'SAMIA BUGWE COUNTY SOUTH','district_id' => '26','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:57','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '55','name' => 'BUSIA MUNICIPALITY','district_id' => '26','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:58','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '56','name' => 'SAMIA BUGWE CENTRAL COUNTY','district_id' => '26','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:58','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '57','name' => 'BUNYOLE EAST','district_id' => '27','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:17:59','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '58','name' => 'BUNYOLE WEST','district_id' => '27','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:02','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '59','name' => 'BUTAMBALA','district_id' => '28','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:04','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '60','name' => 'BUTEBO COUNTY','district_id' => '29','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:05','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '61','name' => 'BUVUMA ISLANDS','district_id' => '30','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:08','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '62','name' => 'BUDIOPE WEST','district_id' => '31','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:10','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '63','name' => 'BUDIOPE EAST','district_id' => '31','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:12','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '64','name' => 'DOKOLO NORTH','district_id' => '32','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:14','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '65','name' => 'DOKOLO SOUTH','district_id' => '32','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:17','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '66','name' => 'FORT PORTAL CENTRAL DIVISION','district_id' => '34','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:18','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '67','name' => 'FORT PORTAL NORTH DIVISION','district_id' => '34','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:19','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '68','name' => 'GOMBA EAST','district_id' => '35','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:20','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '69','name' => 'GOMBA WEST','district_id' => '35','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:21','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '70','name' => 'ASWA','district_id' => '36','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:22','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '71','name' => 'BARDEGE-LAYIBI DIVISION','district_id' => '37','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:25','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '72','name' => 'LAROO-PECE DIVISION','district_id' => '37','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:25','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '73','name' => 'BUGAHYA','district_id' => '38','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:26','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '74','name' => 'KIGOROBYA','district_id' => '38','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:28','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '75','name' => 'HOIMA EAST DIVISION','district_id' => '39','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:29','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '76','name' => 'HOIMA WEST DIVISION','district_id' => '39','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:29','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '77','name' => 'IBANDA COUNTY NORTH','district_id' => '40','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:30','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '78','name' => 'IBANDA COUNTY SOUTH','district_id' => '40','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:31','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '79','name' => 'IBANDA MUNICIPALITY','district_id' => '40','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:33','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '80','name' => 'KIGULU COUNTY NORTH','district_id' => '41','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:34','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '81','name' => 'KIGULU COUNTY SOUTH','district_id' => '41','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:35','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '82','name' => 'IGANGA MUNICIPALITY','district_id' => '41','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:36','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '83','name' => 'BUKANGA','district_id' => '42','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:37','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '84','name' => 'ISINGIRO COUNTY NORTH','district_id' => '42','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:38','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '85','name' => 'ISINGIRO COUNTY SOUTH','district_id' => '42','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:40','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '86','name' => 'BUKANGA NORTH','district_id' => '42','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:42','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '87','name' => 'ISINGIRO WEST','district_id' => '42','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:43','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '88','name' => 'BUTEMBE COUNTY','district_id' => '43','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:44','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '89','name' => 'KAGOMA COUNTY','district_id' => '43','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:45','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '90','name' => 'KAGOMA NORTH COUNTY','district_id' => '43','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:46','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '91','name' => 'JINJA SOUTH DIVISION EAST','district_id' => '44','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:46','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '92','name' => 'JINJA SOUTH DIVISION WEST','district_id' => '44','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:47','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '93','name' => 'JINJA NORTH DIVISION','district_id' => '44','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:47','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '94','name' => 'DODOTH EAST','district_id' => '45','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:48','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '95','name' => 'IK','district_id' => '45','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:50','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '96','name' => 'DODOTH NORTH','district_id' => '45','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:50','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '97','name' => 'NDORWA COUNTY EAST','district_id' => '46','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:52','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '98','name' => 'NDORWA COUNTY WEST','district_id' => '46','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:54','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '99','name' => 'KABALE MUNICIPALITY','district_id' => '46','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:56','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '100','name' => 'BURAHYA','district_id' => '47','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:18:57','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '101','name' => 'KABERAMAIDO COUNTY','district_id' => '48','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:00','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '102','name' => 'OCHERO COUNTY','district_id' => '48','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:01','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '103','name' => 'BUYAGA EAST','district_id' => '49','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:02','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '104','name' => 'BUYAGA WEST','district_id' => '49','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:06','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '105','name' => 'BUGANGAIZI WEST','district_id' => '50','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:10','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '106','name' => 'BUGANGAIZI EAST','district_id' => '50','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:13','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '107','name' => 'BUGANGAIZI SOUTH','district_id' => '50','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:14','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '108','name' => 'KALAKI','district_id' => '51','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '109','name' => 'BUJUMBA','district_id' => '52','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:18','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '110','name' => 'KYAMUSWA','district_id' => '52','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:18','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '111','name' => 'BULAMOGI','district_id' => '53','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:19','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '112','name' => 'BULAMOGI NORTH WEST','district_id' => '53','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:22','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '113','name' => 'KALUNGU EAST','district_id' => '54','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:24','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '114','name' => 'KALUNGU WEST','district_id' => '54','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:25','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '115','name' => 'KAMPALA CENTRAL DIVISION','district_id' => '55','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:26','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '116','name' => 'KAWEMPE DIVISION NORTH','district_id' => '55','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:27','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '117','name' => 'KAWEMPE DIVISION SOUTH','district_id' => '55','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:27','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '118','name' => 'MAKINDYE DIVISION EAST','district_id' => '55','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:28','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '119','name' => 'MAKINDYE DIVISION WEST','district_id' => '55','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:29','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '120','name' => 'RUBAGA DIVISION NORTH','district_id' => '55','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:29','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '121','name' => 'RUBAGA DIVISION SOUTH','district_id' => '55','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:30','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '122','name' => 'NAKAWA DIVISION EAST','district_id' => '55','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:30','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '123','name' => 'NAKAWA DIVISION WEST','district_id' => '55','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:31','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '124','name' => 'BUGABULA COUNTY NORTH','district_id' => '56','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:32','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '125','name' => 'BUGABULA COUNTY SOUTH','district_id' => '56','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:33','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '126','name' => 'BUZAAYA','district_id' => '56','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:35','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '127','name' => 'KAMULI MUNICIPALITY','district_id' => '56','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:37','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '128','name' => 'KIBALE','district_id' => '57','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:38','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '129','name' => 'KIBALE EAST','district_id' => '57','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:40','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '130','name' => 'KINKIZI COUNTY EAST','district_id' => '58','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:42','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '131','name' => 'KINKIZI COUNTY WEST','district_id' => '58','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:45','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '132','name' => 'TINGEY COUNTY','district_id' => '59','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:47','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '133','name' => 'KAPCHORWA MUNICIPALITY','district_id' => '59','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:51','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '134','name' => 'KAPELEBYONG','district_id' => '60','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:52','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '135','name' => 'DODOTH WEST','district_id' => '61','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:55','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '136','name' => 'NAPORE WEST','district_id' => '61','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:57','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '137','name' => 'BUKONZO COUNTY EAST','district_id' => '62','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:19:57','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '138','name' => 'BUKONJO COUNTY WEST','district_id' => '62','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:00','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '139','name' => 'BUSONGORA COUNTY NORTH','district_id' => '62','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:03','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '140','name' => 'BUSONGORA COUNTY SOUTH','district_id' => '62','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:06','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '141','name' => 'KASESE MUNICIPALITY','district_id' => '62','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:08','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '142','name' => 'KASSANDA COUNTY NORTH','district_id' => '63','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:09','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '143','name' => 'KASSANDA COUNTY SOUTH','district_id' => '63','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:10','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '144','name' => 'BUKUYA','district_id' => '63','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:12','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '145','name' => 'USUK COUNTY','district_id' => '64','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:14','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '146','name' => 'TOROMA COUNTY','district_id' => '64','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:15','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '147','name' => 'NGARIAM COUNTY','district_id' => '64','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:17','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '148','name' => 'BBALE','district_id' => '65','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:20','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '149','name' => 'NTENJERU COUNTY NORTH','district_id' => '65','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:22','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '150','name' => 'NTENJERU COUNTY SOUTH','district_id' => '65','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:24','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '151','name' => 'KAZO','district_id' => '66','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:25','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '152','name' => 'BUYANJA','district_id' => '67','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:27','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '153','name' => 'BUYANJA EAST','district_id' => '67','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:29','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '154','name' => 'KIBOGA EAST','district_id' => '68','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:31','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '155','name' => 'KIBOGA WEST','district_id' => '68','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:33','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '156','name' => 'KIBUKU COUNTY','district_id' => '69','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:34','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '157','name' => 'KABWERI COUNTY','district_id' => '69','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:36','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '158','name' => 'BUHAGUZI','district_id' => '70','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:39','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '159','name' => 'BUHAGUZI EAST','district_id' => '70','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:41','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '160','name' => 'NYABUSHOZI','district_id' => '71','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:41','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '161','name' => 'KASHONGI','district_id' => '71','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:44','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '162','name' => 'KIBANDA SOUTH','district_id' => '72','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:45','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '163','name' => 'KIBANDA NORTH','district_id' => '72','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:46','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '164','name' => 'BUFUMBIRA COUNTY EAST','district_id' => '73','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:48','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '165','name' => 'BUFUMBIRA COUNTY NORTH','district_id' => '73','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:49','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '166','name' => 'BUFUMBIRA COUNTY SOUTH','district_id' => '73','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:49','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '167','name' => 'KISORO MUNICIPALITY','district_id' => '73','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:50','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '168','name' => 'BUKIMBIRI COUNTY','district_id' => '73','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:51','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '169','name' => 'KITAGWENDA','district_id' => '74','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:52','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '170','name' => 'CHUA WEST','district_id' => '75','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:56','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '171','name' => 'CHUA EAST','district_id' => '75','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:20:58','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '172','name' => 'KITGUM MUNICIPALITY','district_id' => '75','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:01','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '173','name' => 'KOBOKO','district_id' => '76','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:02','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '174','name' => 'KOBOKO NORTH','district_id' => '76','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:04','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '175','name' => 'KOBOKO MUNICIPALITY','district_id' => '76','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:05','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '176','name' => 'KOLE SOUTH','district_id' => '77','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:05','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '177','name' => 'KOLE NORTH','district_id' => '77','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:07','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '178','name' => 'JIE','district_id' => '78','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:09','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '179','name' => 'KOTIDO MUNICIPALITY','district_id' => '78','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:13','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '180','name' => 'KUMI COUNTY','district_id' => '79','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:14','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '181','name' => 'KANYUM COUNTY','district_id' => '79','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:17','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '182','name' => 'KUMI MUNICIPALITY','district_id' => '79','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:20','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '183','name' => 'KWANIA','district_id' => '80','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:21','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '184','name' => 'KWANIA NORTH','district_id' => '80','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:22','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '185','name' => 'KWEEN COUNTY','district_id' => '81','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:24','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '186','name' => 'SOI COUNTY','district_id' => '81','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:29','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '187','name' => 'NTWETWE','district_id' => '82','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:30','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '188','name' => 'BUTEMBA','district_id' => '82','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:33','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '189','name' => 'KYAKA NORTH','district_id' => '83','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:36','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '190','name' => 'KYAKA SOUTH','district_id' => '83','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:38','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '191','name' => 'KYAKA CENTRAL','district_id' => '83','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:40','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '192','name' => 'MWENGE COUNTY NORTH','district_id' => '84','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:41','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '193','name' => 'MWENGE COUNTY SOUTH','district_id' => '84','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:44','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '194','name' => 'MWENGE CENTRAL','district_id' => '84','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:48','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '195','name' => 'KAKUUTO','district_id' => '85','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:50','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '196','name' => 'KYOTERA','district_id' => '85','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:51','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '197','name' => 'LAMWO','district_id' => '86','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:53','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '198','name' => 'PALABEK','district_id' => '86','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:56','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '199','name' => 'ERUTE COUNTY NORTH','district_id' => '87','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:21:58','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '200','name' => 'ERUTE COUNTY SOUTH','district_id' => '87','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:00','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '201','name' => 'LIRA EAST DIVISION','district_id' => '88','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:02','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '202','name' => 'LIRA WEST DIVISION','district_id' => '88','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:04','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '203','name' => 'LUUKA NORTH','district_id' => '89','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:05','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '204','name' => 'LUUKA SOUTH','district_id' => '89','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:06','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '205','name' => 'KATIKAMU COUNTY NORTH','district_id' => '90','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:08','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '206','name' => 'KATIKAMU COUNTY SOUTH','district_id' => '90','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:09','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '207','name' => 'BAMUNANIKA','district_id' => '90','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:11','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '208','name' => 'BUKOTO COUNTY MID-WEST','district_id' => '91','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:14','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '209','name' => 'BUKOTO COUNTYSOUTH','district_id' => '91','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '210','name' => 'KABULA','district_id' => '92','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:17','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '211','name' => 'UPPER MADI','district_id' => '93','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:18','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '212','name' => 'LOWER MADI','district_id' => '93','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:20','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '213','name' => 'BUBULO COUNTY WEST','district_id' => '94','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:21','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '214','name' => 'BUTIRU','district_id' => '94','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:27','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '215','name' => 'MARACHA','district_id' => '95','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:31','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '216','name' => 'MARACHA EAST','district_id' => '95','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:33','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '217','name' => 'BUKOTO COUNTY EAST','district_id' => '96','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:36','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '218','name' => 'BUKOTO COUNTY CENTRAL','district_id' => '96','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:37','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '219','name' => 'KIMAANYA-KABONERA DIVISION','district_id' => '97','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:37','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '220','name' => 'NYENDO-MUKUNGWE DIVISION','district_id' => '97','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:38','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '221','name' => 'BUJENJE','district_id' => '98','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:39','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '222','name' => 'BURULI','district_id' => '98','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:40','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '223','name' => 'MASINDI MUNICIPALITY','district_id' => '98','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:41','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '224','name' => 'BUNYA COUNTY EAST','district_id' => '99','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:42','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '225','name' => 'BUNYA COUNTY SOUTH','district_id' => '99','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:43','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '226','name' => 'BUNYA COUNTY WEST','district_id' => '99','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:45','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '227','name' => 'BUNGOKHO COUNTY NORTH','district_id' => '100','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:47','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '228','name' => 'BUNGOKHO COUNTY SOUTH','district_id' => '100','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:48','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '229','name' => 'BUNGOKHO CENTRAL COUNTY','district_id' => '100','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:50','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '230','name' => 'INDUSTRIAL DIVISION','district_id' => '101','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:52','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '231','name' => 'NORTHERN DIVISION','district_id' => '101','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:53','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '232','name' => 'KASHARI NORTH','district_id' => '102','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:55','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '233','name' => 'KASHARI SOUTH','district_id' => '102','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:56','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '234','name' => 'MBARARA NORTH DIVISION','district_id' => '103','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:57','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '235','name' => 'MBARARA SOUTH DIVISION','district_id' => '103','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:58','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '236','name' => 'RUHINDA','district_id' => '104','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:22:59','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '237','name' => 'RUHINDA NORTH','district_id' => '104','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:00','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '238','name' => 'RUHINDA SOUTH','district_id' => '104','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:02','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '239','name' => 'BUSUJJU','district_id' => '105','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:03','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '240','name' => 'MITYANA COUNTY NORTH','district_id' => '105','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:05','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '241','name' => 'MITYANA COUNTY SOUTH','district_id' => '105','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:06','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '242','name' => 'MITYANA MUNICIPALITY','district_id' => '105','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:07','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '243','name' => 'MATHENIKO','district_id' => '106','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:08','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '244','name' => 'MOROTO MUNICIPALITY','district_id' => '106','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:10','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '245','name' => 'TEPETH','district_id' => '106','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:10','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '246','name' => 'WEST MOYO','district_id' => '107','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:11','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '247','name' => 'MAWOKOTA COUNTY NORTH','district_id' => '108','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:13','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '248','name' => 'MAWOKOTA COUNTY SOUTH','district_id' => '108','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:15','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '249','name' => 'BUWEKULA','district_id' => '109','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '250','name' => 'KASAMBYA','district_id' => '109','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:17','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '251','name' => 'MUBENDE MUNICIPALITY','district_id' => '109','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:19','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '252','name' => 'BUWEKULA SOUTH','district_id' => '109','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:20','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '253','name' => 'MUKONO COUNTY NORTH','district_id' => '110','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:21','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '254','name' => 'MUKONO COUNTY SOUTH','district_id' => '110','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:22','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '255','name' => 'NAKIFUMA COUNTY','district_id' => '110','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:24','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '256','name' => 'MUKONO MUNICIPALITY','district_id' => '110','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:26','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '257','name' => 'PIAN','district_id' => '111','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:27','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '258','name' => 'CHEKWII (KADAM)','district_id' => '112','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:28','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '259','name' => 'CHEKWII EAST','district_id' => '112','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:29','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '260','name' => 'NAKASEKE SOUTH','district_id' => '113','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:30','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '261','name' => 'NAKASEKE NORTH','district_id' => '113','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:32','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '262','name' => 'NAKASEKE CENTRAL','district_id' => '113','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:33','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '263','name' => 'NAKASONGOLA','district_id' => '114','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:34','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '264','name' => 'BUDYEBO','district_id' => '114','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:36','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '265','name' => 'BUKOOLI SOUTH','district_id' => '115','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:37','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '266','name' => 'BUKOOLI ISLAND','district_id' => '115','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:38','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '267','name' => 'NAMAYINGO SOUTH','district_id' => '115','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:39','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '268','name' => 'NAMISINDWA COUNTY','district_id' => '116','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:40','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '269','name' => 'BUBULO EAST COUNTY','district_id' => '116','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:45','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '270','name' => 'BUSIKI','district_id' => '117','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:51','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '271','name' => 'BUKONO','district_id' => '117','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:54','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '272','name' => 'BUSIKI NORTH','district_id' => '117','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:55','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '273','name' => 'BOKORA','district_id' => '118','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:57','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '274','name' => 'BOKORA EAST','district_id' => '118','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:23:58','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '275','name' => 'PADYERE','district_id' => '119','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:00','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '276','name' => 'NEBBI MUNICIPALITY','district_id' => '119','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:04','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '277','name' => 'NGORA','district_id' => '120','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:05','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '278','name' => 'KAPIR','district_id' => '120','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:06','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '279','name' => 'NTOROKO','district_id' => '121','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:08','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '280','name' => 'KAJARA','district_id' => '122','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:10','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '281','name' => 'RUHAAMA','district_id' => '122','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:12','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '282','name' => 'RUSHENYI','district_id' => '122','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:15','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '283','name' => 'NTUNGAMO MUNICIPALITY','district_id' => '122','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:17','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '284','name' => 'RUHAAMA EAST','district_id' => '122','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:17','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '285','name' => 'NWOYA','district_id' => '123','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:18','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '286','name' => 'NWOYA EAST','district_id' => '123','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:20','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '287','name' => 'OBONGI','district_id' => '124','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:20','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '288','name' => 'OMORO','district_id' => '125','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:22','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '289','name' => 'TOCHI','district_id' => '125','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:24','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '290','name' => 'OTUKE','district_id' => '126','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:26','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '291','name' => 'OTUKE EAST','district_id' => '126','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:28','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '292','name' => 'OYAM COUNTY NORTH','district_id' => '127','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:30','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '293','name' => 'OYAM COUNTY SOUTH','district_id' => '127','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:33','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '294','name' => 'ARUU','district_id' => '128','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:36','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '295','name' => 'ARUU NORTH','district_id' => '128','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:38','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '296','name' => 'JONAM','district_id' => '129','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:42','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '297','name' => 'PALLISA COUNTY','district_id' => '130','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:46','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '298','name' => 'AGULE COUNTY','district_id' => '130','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:48','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '299','name' => 'KIBALE COUNTY','district_id' => '130','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:49','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '300','name' => 'GOGONYO COUNTY','district_id' => '130','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:50','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '301','name' => 'KOOKI','district_id' => '131','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:51','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '302','name' => 'BUYAMBA','district_id' => '131','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:54','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '303','name' => 'RUBANDA COUNTY EAST','district_id' => '132','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:56','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '304','name' => 'RUBANDA COUNTY WEST','district_id' => '132','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:24:57','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '305','name' => 'BUNYARUGURU','district_id' => '133','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:00','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '306','name' => 'KATERERA','district_id' => '133','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:01','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '307','name' => 'RUKIGA','district_id' => '134','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:03','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '308','name' => 'RUBABO','district_id' => '135','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:05','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '309','name' => 'RUJUMBURA','district_id' => '135','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:08','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '310','name' => 'RUKUNGIRI MUNICIPALITY','district_id' => '135','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:10','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '311','name' => 'RWAMPARA','district_id' => '136','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:11','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '312','name' => 'RWAMPARA EAST','district_id' => '136','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:12','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '313','name' => 'KASILO COUNTY','district_id' => '137','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:13','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '314','name' => 'SERERE COUNTY','district_id' => '137','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:14','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '315','name' => 'PINGIRE COUNTY','district_id' => '137','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '316','name' => 'SHEEMA COUNTY NORTH','district_id' => '138','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:17','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '317','name' => 'SHEEMA COUNTY SOUTH','district_id' => '138','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:18','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '318','name' => 'SHEEMA MUNICIPALITY','district_id' => '138','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:20','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '319','name' => 'BUDADIRI COUNTY WEST','district_id' => '139','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:22','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '320','name' => 'BUDADIRI COUNTY EAST','district_id' => '139','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:25','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '321','name' => 'SOROTI COUNTY','district_id' => '140','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:35','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '322','name' => 'DAKABELA COUNTY','district_id' => '140','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:36','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '323','name' => 'GWERI COOUNTY','district_id' => '140','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:38','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '324','name' => 'SOROTI EAST DIVISION','district_id' => '141','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:38','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '325','name' => 'SOROTI WEST DIVISION','district_id' => '141','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:39','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '326','name' => 'LWEMIYAGA','district_id' => '142','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:40','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '327','name' => 'MAWOGOLA','district_id' => '142','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:41','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '328','name' => 'MAWOGOLA NORTH','district_id' => '142','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:42','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '329','name' => 'MAWOGOLA WEST','district_id' => '142','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:43','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '330','name' => 'TEREGO WEST','district_id' => '143','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:44','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '331','name' => 'TEREGO EAST','district_id' => '143','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:46','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '332','name' => 'WEST BUDAMA COUNTY NORTH','district_id' => '144','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:47','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '333','name' => 'WEST BUDAMA COUNTY SOUTH','district_id' => '144','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:49','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '334','name' => 'TORORO SOUTH COUNTY','district_id' => '144','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:50','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '335','name' => 'TORORO MUNICIPALITY','district_id' => '144','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:53','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '336','name' => 'TORORO NORTH COUNTY','district_id' => '144','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:53','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '337','name' => 'WEST BUDAMA CENTRAL COUNTY','district_id' => '144','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:55','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '338','name' => 'WEST BUDAMA NORTH EAST COUNTY','district_id' => '144','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:57','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '339','name' => 'BUSIRO COUNTY EAST','district_id' => '145','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:25:59','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '340','name' => 'BUSIRO COUNTY NORTH','district_id' => '145','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:00','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '341','name' => 'BUSIRO COUNTY SOUTH','district_id' => '145','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:02','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '342','name' => 'KYADONDO COUNTY EAST','district_id' => '145','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:04','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '343','name' => 'NANSANA MUNICIPALITY','district_id' => '145','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:04','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '344','name' => 'MAKINDYE-SSABAGABO MUNICIPALITY','district_id' => '145','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:06','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '345','name' => 'ENTEBBE MUNICIPALITY','district_id' => '145','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:06','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '346','name' => 'KIRA MUNICIPALITY','district_id' => '145','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:06','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '347','name' => 'ARINGA','district_id' => '146','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:07','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '348','name' => 'ARINGA NORTH','district_id' => '146','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:09','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '349','name' => 'ARINGA SOUTH','district_id' => '146','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:13','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '350','name' => 'ARINGA EAST','district_id' => '146','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '351','name' => 'OKORO','district_id' => '147','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:19','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '352','name' => 'ORA','district_id' => '147','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 17:26:22','updated_at' => NULL,'deleted_at' => NULL)
|
||||
);
|
||||
|
||||
foreach ($counties as $county):
|
||||
|
||||
County::firstOrCreate([
|
||||
"id" => $county['id'],
|
||||
"name" => $county['name'],
|
||||
"district_id" => $county['district_id']
|
||||
]);
|
||||
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Country;
|
||||
|
||||
class CountriesTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$countries = [
|
||||
'CONGO',
|
||||
'UGANDA',
|
||||
'RWANDA',
|
||||
'KENYA',
|
||||
'TANZANIA',
|
||||
'BURUNDI'
|
||||
];
|
||||
|
||||
foreach ($countries as $country):
|
||||
|
||||
Country::firstOrCreate([
|
||||
"name" => $country,
|
||||
]);
|
||||
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DataCorrectionBillDateSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$all_bills = \Streamline\Models\HospitalBill::all();
|
||||
foreach ($all_bills as $bill){
|
||||
\Streamline\Models\HospitalBill::where('id', $bill->id)->update([
|
||||
'bill_date' => \Carbon\Carbon::parse($bill->bill_date)->toDateString(),
|
||||
'bill_due_date' => \Carbon\Carbon::parse($bill->bill_due_date)->toDateString(),
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Debtor;
|
||||
use Streamline\Models\DebtPlan;
|
||||
use Streamline\Models\SundryDeposit;
|
||||
use Streamline\Models\TreatmentDeposits;
|
||||
|
||||
class DataCorrectionCheckForCompleteOnDeposits extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$sundry_deposits = \Streamline\Models\SundryDeposit::all();
|
||||
$treatment_deposits = \Streamline\Models\TreatmentDeposits::all();
|
||||
$invoices = \Streamline\Models\PatientCategoryInvoice::all();
|
||||
|
||||
$treatments = $sundries = $debts = $debt_plans = $invoices = [];
|
||||
|
||||
foreach ($treatment_deposits as $deposit){
|
||||
if ($deposit->patient_amount_paid != array_sum(explode(',', $deposit->treatment_subtotals))){
|
||||
$balance = array_sum(explode(',', $deposit->treatment_subtotals)) - $deposit->patient_amount_paid ;
|
||||
$treatments[] = $deposit;
|
||||
$debts[] = Debtor::where('patient_id', $deposit->patient_id)->where('episode_id', $deposit->episode_id)->where('balance', $balance)->get()->first();
|
||||
$debt_plans[] = DebtPlan::where('patient_id', $deposit->patient_id)->where('episode_id', $deposit->episode_id)->where('staff_guarantor_to_pay', $balance)->get()->first();
|
||||
|
||||
TreatmentDeposits::where('id', $deposit->id)->update(['payment_complete'=>0]);
|
||||
}else{
|
||||
TreatmentDeposits::where('id', $deposit->id)->update(['payment_complete'=>1]);
|
||||
}
|
||||
}
|
||||
foreach ($sundry_deposits as $deposit){
|
||||
if ($deposit->patient_amount_paid != array_sum(explode(',', $deposit->sundry_subtotals))){
|
||||
$balance = array_sum(explode(',', $deposit->sundry_subtotals)) - $deposit->patient_amount_paid ;
|
||||
$sundries[] = $deposit;
|
||||
$debts[] = Debtor::where('patient_id', $deposit->patient_id)->where('episode_id', $deposit->episode_id)->where('balance', $balance)->get()->first();
|
||||
$debt_plans[] = DebtPlan::where('patient_id', $deposit->patient_id)->where('episode_id', $deposit->episode_id)->where('staff_guarantor_to_pay', $balance)->get()->first();
|
||||
|
||||
SundryDeposit::where('id', $deposit->id)->update(['payment_complete'=>0]);
|
||||
}else{
|
||||
SundryDeposit::where('id', $deposit->id)->update(['payment_complete'=>1]);
|
||||
}
|
||||
}
|
||||
foreach ($invoices as $invoice){
|
||||
if($invoice->tag_id == 5 || $invoice->tag_id == 3 || $invoice->tag_id == 1){
|
||||
if ($deposit->patient_amount_paid != array_sum(explode(',', $deposit->items_amounts))){
|
||||
$balance = array_sum(explode(',', $deposit->items_amounts)) - $deposit->amount_paid_off ;
|
||||
$invoice[] = $invoice;
|
||||
\Streamline\Models\PatientCategoryInvoice::where('id', $invoice->id)->update(['payment_complete'=>0]);
|
||||
}else{
|
||||
\Streamline\Models\PatientCategoryInvoice::where('id', $invoice->id)->update(['payment_complete'=>1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Executable
+42
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Banking;
|
||||
use Streamline\Models\CashierIncome;
|
||||
|
||||
class DataCorrectionCopyCashierIncomeRecordToBanking extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$cashier_incomes = CashierIncome::all();
|
||||
foreach ($cashier_incomes as $income){
|
||||
$exists = Banking::where('trans_id', $income->receipt_number)->get()->toArray();
|
||||
if (empty($exists)){
|
||||
|
||||
$current_bank_balance = Banking::where('bank', 10)->latest('trans_date')->first();
|
||||
$balance_after_addition = (!is_null($current_bank_balance)) ? (int)$current_bank_balance->account_balance + (int)$income->amount : 0;
|
||||
|
||||
$bank_record = new Banking;
|
||||
$bank_record->trans_type = 'DEPOSIT';
|
||||
$bank_record->trans_date = Carbon::parse($income->created_at)->toDateString();
|
||||
$bank_record->bank = 10;
|
||||
$bank_record->other_accounts = 'sales and payments';
|
||||
$bank_record->account_balance = $balance_after_addition;
|
||||
$bank_record->credit = $income->amount;
|
||||
$bank_record->debit = 0;
|
||||
$bank_record->memo = 'deposit to un-deposited funds.';
|
||||
$bank_record->trans_id = $income->receipt_number;
|
||||
$bank_record->created_by = $income->brought_by;
|
||||
$bank_record->save();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DataCorrectionDebtorPaymentSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$payments = \Streamline\Models\DebtorPayment::all();
|
||||
foreach ($payments as $payment){
|
||||
if($payment->amount_paid_history == null){
|
||||
$amount_paid_history = serialize(array($payment->amount_paid));
|
||||
\Streamline\Models\DebtorPayment::where('id', $payment->id)->update(['amount_paid_history'=>$amount_paid_history]);
|
||||
}
|
||||
if($payment->receipt_history == null){
|
||||
$receipt_history = serialize(array($payment->receipt_no));
|
||||
\Streamline\Models\DebtorPayment::where('id', $payment->id)->update(['receipt_history'=>$receipt_history]);
|
||||
}
|
||||
if($payment->balance_history == null){
|
||||
$balance_history = serialize(array(0));
|
||||
\Streamline\Models\DebtorPayment::where('id', $payment->id)->update(['balance_history'=>$balance_history]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Executable
+67
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DataCorrectionHospitalBillPayableAccountSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$bills = \Streamline\Models\HospitalBill::all();
|
||||
|
||||
foreach ($bills as $bill){
|
||||
$payable_account_array = []; $item_amount_paid = []; $item_balance_remaining = []; $deductions = [];
|
||||
$items_array = explode(',', $bill->item_ids);
|
||||
$items_subtotal_array = explode(',', $bill->item_subtotals);
|
||||
|
||||
$bill_balance = $bill->balance;
|
||||
$bill_total = $bill->total_amount;
|
||||
$bill_amount_paid = (is_null($bill_balance) ? 0 : (int)$bill_total - (int)$bill_balance);
|
||||
|
||||
for($x = 0; $x < count($items_array); $x++){
|
||||
|
||||
$new_amount = $bill_amount_paid - array_sum($deductions);
|
||||
|
||||
$payable_account = get_name($items_array[$x], 'id', 'payable_account','payment_items');
|
||||
$payable_account_array[] = ($bill->bill_type == 'GEN') ? $payable_account : 14;
|
||||
|
||||
if(is_null($bill_balance)){
|
||||
|
||||
$item_amount_paid[] = 0;
|
||||
$item_balance_remaining[] = $items_subtotal_array[$x];
|
||||
|
||||
}else if($bill_balance == 0){
|
||||
|
||||
$item_amount_paid[] = $items_subtotal_array[$x];
|
||||
$item_balance_remaining[] = 0;
|
||||
|
||||
}
|
||||
else{
|
||||
|
||||
if($items_subtotal_array[$x] <= $new_amount){
|
||||
|
||||
$item_amount_paid[] = $items_subtotal_array[$x];
|
||||
$item_balance_remaining[] = 0;
|
||||
$deductions[] = $items_subtotal_array[$x];
|
||||
|
||||
}else{
|
||||
|
||||
$item_amount_paid[] = $new_amount;
|
||||
$item_balance_remaining[] = (int)$items_subtotal_array[$x] - (int)$new_amount;
|
||||
$deductions[] = $new_amount;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
\Streamline\Models\HospitalBill::where('id', $bill->id)->update([
|
||||
'payable_account' => implode(',', $payable_account_array),
|
||||
'item_amount_paid' => implode(',', $item_amount_paid),
|
||||
'item_balance_remaining' => implode(',', $item_balance_remaining)
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DataCorrectionIncomeAccountAmounts extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$service_payments = \Streamline\Models\ServiceDeposit::all();
|
||||
$investigation_payments = \Streamline\Models\InvestigationDeposit::all();
|
||||
$procedure_payments = \Streamline\Models\ProcedureDeposit::all();
|
||||
$sundry_payments = \Streamline\Models\SundryDeposit::all();
|
||||
$treatment_payments = \Streamline\Models\TreatmentDeposits::all();
|
||||
|
||||
foreach ($service_payments as $payment){
|
||||
split_service_payment($payment->id);
|
||||
}
|
||||
|
||||
foreach ($investigation_payments as $payment){
|
||||
split_investigation_payment($payment->id);
|
||||
}
|
||||
|
||||
foreach ($procedure_payments as $payment){
|
||||
split_procedure_payment($payment->id);
|
||||
}
|
||||
|
||||
foreach ($sundry_payments as $payment){
|
||||
split_sundry_payment($payment->id);
|
||||
}
|
||||
|
||||
foreach ($treatment_payments as $payment){
|
||||
split_treatment_payment($payment->id);
|
||||
}
|
||||
}
|
||||
}
|
||||
+65
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DataCorrectionIncomeAccountStrings extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$service_payments = \Streamline\Models\ServiceDeposit::all();
|
||||
$investigation_payments = \Streamline\Models\InvestigationDeposit::all();
|
||||
$procedure_payments = \Streamline\Models\ProcedureDeposit::all();
|
||||
$sundry_payments = \Streamline\Models\SundryDeposit::all();
|
||||
$treatment_payments = \Streamline\Models\TreatmentDeposits::all();
|
||||
|
||||
foreach ($service_payments as $payment){
|
||||
$income_account_array = [];
|
||||
$item_array = explode(',', $payment->items_ids);
|
||||
for ($x = 0; $x < count($item_array); $x ++){
|
||||
$income_account_array[] = get_name($item_array[$x], 'id', 'account_id', 'services');
|
||||
}
|
||||
\Streamline\Models\ServiceDeposit::where('id', $payment->id)->update(['current_chart_of_accounts'=> implode(',',$income_account_array)]);
|
||||
}
|
||||
|
||||
foreach ($investigation_payments as $payment){
|
||||
$income_account_array = [];
|
||||
$item_array = explode(',', $payment->investigation_items);
|
||||
for ($x = 0; $x < count($item_array); $x ++){
|
||||
$income_account_array[] = get_name($item_array[$x], 'id', 'account_id', 'investigations');
|
||||
}
|
||||
\Streamline\Models\InvestigationDeposit::where('id', $payment->id)->update(['current_chart_of_accounts'=> implode(',',$income_account_array)]);
|
||||
}
|
||||
|
||||
foreach ($procedure_payments as $payment){
|
||||
$income_account_array = [];
|
||||
$item_array = explode(',', $payment->procedure_items);
|
||||
for ($x = 0; $x < count($item_array); $x ++){
|
||||
$income_account_array[] = get_name($item_array[$x], 'id', 'account_id', 'procedures');
|
||||
}
|
||||
\Streamline\Models\ProcedureDeposit::where('id', $payment->id)->update(['current_chart_of_accounts'=> implode(',',$income_account_array)]);
|
||||
}
|
||||
|
||||
foreach ($treatment_payments as $payment){
|
||||
$income_account_array = [];
|
||||
$item_array = explode(',', $payment->treatment_items);
|
||||
for ($x = 0; $x < count($item_array); $x ++){
|
||||
$income_account_array[] = get_name($item_array[$x], 'id', 'account_id', 'drugs');
|
||||
}
|
||||
\Streamline\Models\TreatmentDeposits::where('id', $payment->id)->update(['current_chart_of_accounts'=> implode(',',$income_account_array)]);
|
||||
}
|
||||
|
||||
foreach ($sundry_payments as $payment){
|
||||
$income_account_array = [];
|
||||
$item_array = explode(',', $payment->sundry_items);
|
||||
for ($x = 0; $x < count($item_array); $x ++){
|
||||
$income_account_array[] = get_name($item_array[$x], 'id', 'account_id', 'sundries');
|
||||
}
|
||||
\Streamline\Models\SundryDeposit::where('id', $payment->id)->update(['current_chart_of_accounts'=> implode(',',$income_account_array)]);
|
||||
}
|
||||
}
|
||||
}
|
||||
Executable
+51
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DataCorrectionInventoryAndCostOfGoodsAccountSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$drugs = \Streamline\Models\Drug::all();
|
||||
$sundries = \Streamline\Models\Sundry::all();
|
||||
|
||||
$sundry_deposits = \Streamline\Models\SundryDeposit::all();
|
||||
$treatment_deposits = \Streamline\Models\TreatmentDeposits::all();
|
||||
$drugs_cost_of_good_account_id = \Streamline\Models\ChartOfAccount::where('id', 17)->pluck('id')->first();
|
||||
$sundries_cost_of_good_account_id = \Streamline\Models\ChartOfAccount::where('id', 5)->pluck('id')->first();
|
||||
$drugs_inventory_asset_account_id = \Streamline\Models\ChartOfAccount::where('id', 18)->pluck('id')->first();
|
||||
$sundries_inventory_asset_account_id = \Streamline\Models\ChartOfAccount::where('id', 24)->pluck('id')->first();
|
||||
|
||||
|
||||
foreach ($drugs as $drug) {
|
||||
\Streamline\Models\Drug::where('id', $drug->id)->update([
|
||||
'cost_of_goods_account' => $drugs_cost_of_good_account_id,
|
||||
'inventory_account' => $drugs_inventory_asset_account_id
|
||||
]);
|
||||
}
|
||||
foreach ($sundries as $sundry) {
|
||||
\Streamline\Models\Sundry::where('id', $sundry->id)->update([
|
||||
'cost_of_goods_account' => $sundries_cost_of_good_account_id,
|
||||
'inventory_account' => $sundries_inventory_asset_account_id
|
||||
]);
|
||||
}
|
||||
|
||||
foreach ($treatment_deposits as $treatment) {
|
||||
\Streamline\Models\TreatmentDeposits::where('id', $treatment->id)->update([
|
||||
'cost_of_goods_account' => $drugs_cost_of_good_account_id,
|
||||
'inventory_account' => $drugs_inventory_asset_account_id
|
||||
]);
|
||||
}
|
||||
foreach ($sundry_deposits as $sundry) {
|
||||
\Streamline\Models\TreatmentDeposits::where('id', $treatment->id)->update([
|
||||
'cost_of_goods_account' => $sundries_cost_of_good_account_id,
|
||||
'inventory_account' => $sundries_inventory_asset_account_id
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+219
@@ -0,0 +1,219 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
use Database\Seeders\AccountTypesTableSeeder;
|
||||
use Database\Seeders\AccountTypeTableUpdateSeeder;
|
||||
use Database\Seeders\AgeGroupsTableSeeder;
|
||||
use Database\Seeders\AnaesthesiaAirwaysTableSeeder;
|
||||
use Database\Seeders\AnaesthesiaEttsTableSeeder;
|
||||
use Database\Seeders\AnaesthesiaInductionsTableSeeder;
|
||||
use Database\Seeders\AnaestheticAgentsTableSeeder;
|
||||
use Database\Seeders\AnaestheticTechniquesTableSeeder;
|
||||
use Database\Seeders\AnalgesicsTableSeeder;
|
||||
use Database\Seeders\AnteNatalClinicAccuraciesTableSeeder;
|
||||
use Database\Seeders\AnteNatalClinicEngagementsTableSeeder;
|
||||
use Database\Seeders\AnteNatalClinicLiesTableSeeder;
|
||||
use Database\Seeders\AnteNatalClinicOutcomesTableSeeder;
|
||||
use Database\Seeders\AnteNatalClinicPositionTableSeeder;
|
||||
use Database\Seeders\AnteNatalClinicPresentationTableSeeder;
|
||||
use Database\Seeders\ArtCardFamilyPlanningMethodsTableSeeder;
|
||||
use Database\Seeders\ArtOiTableSeeder;
|
||||
use Database\Seeders\ArtPotentialSideEffectsTableSeeder;
|
||||
use Database\Seeders\ArvAdherenceReasonTableSeeder;
|
||||
use Database\Seeders\BloodGroupsSeeder;
|
||||
use Database\Seeders\CareEntryPointsTableSeeder;
|
||||
use Database\Seeders\ChartOfAccountsTableSeeder;
|
||||
use Database\Seeders\CountiesSeeder;
|
||||
use Database\Seeders\CountriesTableSeeder;
|
||||
use Database\Seeders\DebtPlanArrangementsTableSeeder;
|
||||
use Database\Seeders\DefaultBedCategoryIncomeAccount;
|
||||
use Database\Seeders\DentalsTableSeeder;
|
||||
use Database\Seeders\DiagnosesTableSeeder;
|
||||
use Database\Seeders\DiscountCategoriesTableSeeder;
|
||||
use Database\Seeders\DistrictsTableSeeder;
|
||||
use Database\Seeders\DonorsTableSeeder;
|
||||
use Database\Seeders\DosageFrequenciesClassTableSeeder;
|
||||
use Database\Seeders\DrugCategoriesTableSeeder;
|
||||
use Database\Seeders\DrugFormsTableSeeder;
|
||||
use Database\Seeders\DrugUnitsTableSeeder;
|
||||
use Database\Seeders\FamilyPlanningMethodsTableSeeder;
|
||||
use Database\Seeders\FamilyRelationshipsTableSeeder;
|
||||
use Database\Seeders\FinancePointTagTableSeeder;
|
||||
use Database\Seeders\GeneralSettingsSeeder;
|
||||
use Database\Seeders\HeadsofFamilyTableSeeder;
|
||||
use Database\Seeders\HeartRegularitiesTableSeeder;
|
||||
use Database\Seeders\HmisCategoriesTableSeeder;
|
||||
use Database\Seeders\HmisInvestigationCategoriesInpatientTableSeeder;
|
||||
use Database\Seeders\InsuranceGroupsTableSeeder;
|
||||
use Database\Seeders\InsuranceMembersTableSeeder;
|
||||
use Database\Seeders\InvestigationCategoriesTableSeeder;
|
||||
use Database\Seeders\InvestigationSuperCategoriesSeeder;
|
||||
use Database\Seeders\IvFluidsTableSeeder;
|
||||
use Database\Seeders\LaboratorySpecimenTableSeeder;
|
||||
use Database\Seeders\LabsTableSeeder;
|
||||
use Database\Seeders\LicenceCouncilsSeeder;
|
||||
use Database\Seeders\LocationOfDeliveryTableSeeder;
|
||||
use Database\Seeders\MaritalStatusSeeder;
|
||||
use Database\Seeders\MaternityProgressTableSeeder;
|
||||
use Database\Seeders\MessageBoardTableSeeder;
|
||||
use Database\Seeders\ModeOfDeliveryTableSeeder;
|
||||
use Database\Seeders\MuscleRelaxantsTableSeeder;
|
||||
use Database\Seeders\NeedleTypesTableSeeder;
|
||||
use Database\Seeders\NutritionTableSeeder;
|
||||
use Database\Seeders\ObservationsTableSeeder;
|
||||
use Database\Seeders\OccupationsTableSeeder;
|
||||
use Database\Seeders\OutcomesTableSeeder;
|
||||
use Database\Seeders\ParishesSeeder;
|
||||
use Database\Seeders\PasswordExpirationForExistingUsersSeeder;
|
||||
use Database\Seeders\PatientCategorySeeder;
|
||||
use Database\Seeders\PatientDiscountsTableSeeder;
|
||||
use Database\Seeders\PatientsTableSeeder;
|
||||
use Database\Seeders\PaymentItemsTableSeeder;
|
||||
use Database\Seeders\PayrollDefaultsSeeder;
|
||||
use Database\Seeders\PermissionsCategoryTableSeeder;
|
||||
use Database\Seeders\PermissionTableSeeder;
|
||||
use Database\Seeders\PremiumsTableSeeder;
|
||||
use Database\Seeders\ProcedureCategoriesTableSeeder;
|
||||
use Database\Seeders\QuotationTypesTableSeeder;
|
||||
use Database\Seeders\RadiologiesTableSeeder;
|
||||
use Database\Seeders\ReferralHospitalsSeeder;
|
||||
use Database\Seeders\ReligionsTableSeeder;
|
||||
use Database\Seeders\ResourceCategoriesTableSeeder;
|
||||
use Database\Seeders\ResourcesTableSeeder;
|
||||
use Database\Seeders\RolesTableSeeder;
|
||||
use Database\Seeders\SecurityQuestionsTableSeeder;
|
||||
use Database\Seeders\SpecialitiesTableSeeder;
|
||||
use Database\Seeders\SpecializedInvestigationVariablesSeeder;
|
||||
use Database\Seeders\SpontaneousRegularRespirationInMinuteTableSeeder;
|
||||
use Database\Seeders\StaffPositionsSeeder;
|
||||
use Database\Seeders\SubcountiesSeeder;
|
||||
use Database\Seeders\SuppliersTableSeeder;
|
||||
use Database\Seeders\SymptomsSeeder;
|
||||
use Database\Seeders\TheatreLocationsTableSeeder;
|
||||
use Database\Seeders\TuberclosisStatusTableSeeder;
|
||||
use Database\Seeders\UnitOfMeasureTableSeeder;
|
||||
use Database\Seeders\UsersTableSeeder;
|
||||
use Database\Seeders\VillagesTableSeeder;
|
||||
use Database\Seeders\HmisWardSeeder;
|
||||
use Database\Seeders\VolatileLiquidAnaestheticsTableSeeder;
|
||||
use Database\Seeders\AnaesthesiaTypesSeeder;
|
||||
use Database\Seeders\ChartOfAccountSlugTableSeeder;
|
||||
use Database\Seeders\PersonTitlesTableSeeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$this->call(AccountTypesTableSeeder::class);
|
||||
$this->call(AgeGroupsTableSeeder::class);
|
||||
$this->call(AnaesthesiaAirwaysTableSeeder::class);
|
||||
$this->call(AnaesthesiaEttsTableSeeder::class);
|
||||
$this->call(AnaesthesiaInductionsTableSeeder::class);
|
||||
$this->call(AnaestheticAgentsTableSeeder::class);
|
||||
$this->call(AnaestheticTechniquesTableSeeder::class);
|
||||
$this->call(AnalgesicsTableSeeder::class);
|
||||
$this->call(AnteNatalClinicAccuraciesTableSeeder::class);
|
||||
$this->call(AnteNatalClinicEngagementsTableSeeder::class);
|
||||
$this->call(AnteNatalClinicLiesTableSeeder::class);
|
||||
$this->call(AnteNatalClinicOutcomesTableSeeder::class);
|
||||
$this->call(AnteNatalClinicPositionTableSeeder::class);
|
||||
$this->call(AnteNatalClinicPresentationTableSeeder::class);
|
||||
$this->call(BloodGroupsSeeder::class);
|
||||
$this->call(ChartOfAccountsTableSeeder::class);
|
||||
//$this->call(ClinicsSeeder::class);
|
||||
$this->call(CountiesSeeder::class);
|
||||
$this->call(DebtPlanArrangementsTableSeeder::class);
|
||||
$this->call(DiagnosesTableSeeder::class);
|
||||
$this->call(DistrictsTableSeeder::class);
|
||||
$this->call(DosageFrequenciesClassTableSeeder::class);
|
||||
$this->call(DrugCategoriesTableSeeder::class);
|
||||
$this->call(DrugFormsTableSeeder::class);
|
||||
//$this->call(DrugsTableSeeder::class);
|
||||
$this->call(DrugUnitsTableSeeder::class);
|
||||
$this->call(FamilyPlanningMethodsTableSeeder::class);
|
||||
$this->call(FamilyRelationshipsTableSeeder::class);
|
||||
$this->call(HeartRegularitiesTableSeeder::class);
|
||||
$this->call(HmisCategoriesTableSeeder::class);
|
||||
$this->call(HmisCategoryOptionsSeeder::class);
|
||||
//$this->call(HospitalInformationTableSeeder::class);
|
||||
$this->call(InvestigationCategoriesTableSeeder::class);
|
||||
//$this->call(InvestigationSeeder::class);
|
||||
$this->call(IvFluidsTableSeeder::class);
|
||||
$this->call(LicenceCouncilsSeeder::class);
|
||||
$this->call(LocationOfDeliveryTableSeeder::class);
|
||||
$this->call(MaritalStatusSeeder::class);
|
||||
$this->call(MaternityProgressTableSeeder::class);
|
||||
$this->call(MessageBoardTableSeeder::class);
|
||||
$this->call(ModeOfDeliveryTableSeeder::class);
|
||||
$this->call(MuscleRelaxantsTableSeeder::class);
|
||||
$this->call(NeedleTypesTableSeeder::class);
|
||||
$this->call(ObservationsTableSeeder::class);
|
||||
$this->call(OccupationsTableSeeder::class);
|
||||
$this->call(OutcomesTableSeeder::class);
|
||||
$this->call(ParishesSeeder::class);
|
||||
$this->call(PatientCategorySeeder::class);
|
||||
$this->call(PatientsTableSeeder::class);
|
||||
$this->call(PayrollDefaultsSeeder::class);
|
||||
$this->call(PermissionTableSeeder::class);
|
||||
$this->call(ProcedureCategoriesTableSeeder::class);
|
||||
//$this->call(ProceduresTableSeeder::class);
|
||||
$this->call(QuotationTypesTableSeeder::class);
|
||||
$this->call(ReferralHospitalsSeeder::class);
|
||||
$this->call(ReligionsTableSeeder::class);
|
||||
$this->call(ResourceCategoriesTableSeeder::class);
|
||||
$this->call(ResourcesTableSeeder::class);
|
||||
$this->call(RolesTableSeeder::class);
|
||||
//$this->call(ServicesTableSeeder::class);
|
||||
$this->call(SpecialitiesTableSeeder::class);
|
||||
$this->call(SpontaneousRegularRespirationInMinuteTableSeeder::class);
|
||||
$this->call(StaffPositionsSeeder::class);
|
||||
$this->call(SubcountiesSeeder::class);
|
||||
//$this->call(SundriesTableSeeder::class);
|
||||
$this->call(SuppliersTableSeeder::class);
|
||||
$this->call(SymptomsSeeder::class);
|
||||
$this->call(UnitOfMeasureTableSeeder::class);
|
||||
$this->call(UsersTableSeeder::class);
|
||||
$this->call(VillagesTableSeeder::class);
|
||||
//$this->call(WardsTableSeeder::class);
|
||||
$this->call(PermissionsCategoryTableSeeder::class);
|
||||
$this->call(FinancePointTagTableSeeder::class);
|
||||
$this->call(PaymentItemsTableSeeder::class);
|
||||
|
||||
$this->call(DentalsTableSeeder::class);
|
||||
$this->call(RadiologiesTableSeeder::class);
|
||||
$this->call(LabsTableSeeder::class);
|
||||
$this->call(SecurityQuestionsTableSeeder::class);
|
||||
$this->call(CareEntryPointsTableSeeder::class);
|
||||
$this->call(ArtCardFamilyPlanningMethodsTableSeeder::class);
|
||||
$this->call(TuberclosisStatusTableSeeder::class);
|
||||
$this->call(ArtPotentialSideEffectsTableSeeder::class);
|
||||
$this->call(ArtOiTableSeeder::class);
|
||||
$this->call(NutritionTableSeeder::class);
|
||||
$this->call(ArvAdherenceReasonTableSeeder::class);
|
||||
$this->call(TheatreLocationsTableSeeder::class);
|
||||
$this->call(CountriesTableSeeder::class);
|
||||
$this->call(GeneralSettingsSeeder::class);
|
||||
$this->call(LaboratorySpecimenTableSeeder::class);
|
||||
$this->call(InvestigationSuperCategoriesSeeder::class);
|
||||
$this->call(SpecializedInvestigationVariablesSeeder::class);
|
||||
$this->call(HmisInvestigationCategoriesInpatientTableSeeder::class);
|
||||
$this->call(PasswordExpirationForExistingUsersSeeder::class);
|
||||
$this->call(AccountTypeTableUpdateSeeder::class);
|
||||
$this->call(DefaultBedCategoryIncomeAccount::class);
|
||||
$this->call(VolatileLiquidAnaestheticsTableSeeder::class);
|
||||
$this->call(AnaesthesiaTypesSeeder::class);
|
||||
$this->call(ChartOfAccountSlugTableSeeder::class);
|
||||
$this->call(PersonTitlesTableSeeder::class);
|
||||
$this->call(HmisWardSeeder::class);
|
||||
$this->call(SlitLampTestAreaValueSeeder::class);
|
||||
$this->call(SlitLampTestAreaSeeder::class);
|
||||
$this->call(DiagnosisCategorySeeder::class);
|
||||
}
|
||||
|
||||
}
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\DebtPlanArrangement;
|
||||
|
||||
class DebtPlanArrangementsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$debt_plan_arrangements = array(
|
||||
array('id' => '1','name' => 'Pay in 1 installment','installments' => '1'),
|
||||
array('id' => '2','name' => 'Pay in 2 installments','installments' => '2'),
|
||||
array('id' => '3','name' => 'Pay in 3 installments','installments' => '3'),
|
||||
array('id' => '4','name' => 'Pay in 4 installments','installments' => '4')
|
||||
);
|
||||
|
||||
foreach ($debt_plan_arrangements as $arrangement) {
|
||||
DebtPlanArrangement::firstOrCreate([
|
||||
'id'=>$arrangement['id'],
|
||||
'name'=>$arrangement['name'],
|
||||
'installments'=>$arrangement['installments']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,120 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Debtor;
|
||||
use Streamline\Models\DebtPlan;
|
||||
use Streamline\Models\InsuranceExpenditure;
|
||||
|
||||
class DebtTablesAccountSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$debtors = \Streamline\Models\Debtor::all();
|
||||
$debt_plans = \Streamline\Models\DebtPlan::all();
|
||||
$insurance_expenditures = \Streamline\Models\InsuranceExpenditure::all();
|
||||
$inventory_account_id = \Streamline\Models\ChartOfAccount::where('type', 10)->pluck('id')->first();
|
||||
$cost_of_good_account_id = \Streamline\Models\ChartOfAccount::where('type', 7)->pluck('id')->first();
|
||||
|
||||
foreach ($debtors as $invoice){
|
||||
//Consultations / Services
|
||||
if($invoice->tag_id == 6 || $invoice->tag_id == 8 || $invoice->tag_id == 7 || $invoice->tag_id == 10){
|
||||
Debtor::where('id', $invoice->id)->update(['income_account'=> 7]);
|
||||
}
|
||||
//Drugs / Treatments
|
||||
elseif ($invoice->tag_id == 3 || $invoice->tag_id == 1){
|
||||
|
||||
Debtor::where('id', $invoice->id)->update([
|
||||
'income_account'=> 4,
|
||||
'inventory_account'=> $inventory_account_id,
|
||||
'cost_of_goods_account'=> $cost_of_good_account_id
|
||||
]);
|
||||
|
||||
}
|
||||
//Sundries
|
||||
elseif ($invoice->tag_id == 5 ){
|
||||
|
||||
Debtor::where('id', $invoice->id)->update([
|
||||
'income_account'=> 4,
|
||||
'inventory_account'=> $inventory_account_id,
|
||||
'cost_of_goods_account'=> $cost_of_good_account_id
|
||||
]);
|
||||
}
|
||||
//Investigations
|
||||
elseif ($invoice->tag_id == 2 ){
|
||||
Debtor::where('id', $invoice->id)->update(['income_account'=> 11]);
|
||||
}
|
||||
//Procedures
|
||||
elseif ($invoice->tag_id == 4 ){
|
||||
Debtor::where('id', $invoice->id)->update(['income_account'=> 8]);
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($debt_plans as $invoice){
|
||||
//Consultations / Services
|
||||
if($invoice->tag_id == 6 || $invoice->tag_id == 8 || $invoice->tag_id == 7 || $invoice->tag_id == 10){
|
||||
DebtPlan::where('id', $invoice->id)->update(['income_account'=> 7]);
|
||||
}
|
||||
//Drugs / Treatments
|
||||
elseif ($invoice->tag_id == 3 || $invoice->tag_id == 1){
|
||||
DebtPlan::where('id', $invoice->id)->update([
|
||||
'income_account'=> 4,
|
||||
'inventory_account'=> $inventory_account_id,
|
||||
'cost_of_goods_account'=> $cost_of_good_account_id
|
||||
]);
|
||||
|
||||
}
|
||||
//Sundries
|
||||
elseif ($invoice->tag_id == 5 ){
|
||||
DebtPlan::where('id', $invoice->id)->update([
|
||||
'income_account'=> 4,
|
||||
'inventory_account'=> $inventory_account_id,
|
||||
'cost_of_goods_account'=> $cost_of_good_account_id
|
||||
]);
|
||||
}
|
||||
//Investigations
|
||||
elseif ($invoice->tag_id == 2 ){
|
||||
DebtPlan::where('id', $invoice->id)->update(['income_account'=> 11]);
|
||||
}
|
||||
//Procedures
|
||||
elseif ($invoice->tag_id == 4 ){
|
||||
DebtPlan::where('id', $invoice->id)->update(['income_account'=> 8]);
|
||||
}
|
||||
}
|
||||
foreach ($insurance_expenditures as $invoice){
|
||||
//Consultations / Services
|
||||
if($invoice->tag_id == 6 || $invoice->tag_id == 8 || $invoice->tag_id == 7 || $invoice->tag_id == 10){
|
||||
InsuranceExpenditure::where('id', $invoice->id)->update(['income_account'=> 7]);
|
||||
}
|
||||
//Drugs / Treatments
|
||||
elseif ($invoice->tag_id == 3 || $invoice->tag_id == 1){
|
||||
InsuranceExpenditure::where('id', $invoice->id)->update([
|
||||
'income_account'=> 4,
|
||||
'inventory_account'=> $inventory_account_id,
|
||||
'cost_of_goods_account'=> $cost_of_good_account_id
|
||||
]);
|
||||
|
||||
}
|
||||
//Sundries
|
||||
elseif ($invoice->tag_id == 5 ){
|
||||
InsuranceExpenditure::where('id', $invoice->id)->update([
|
||||
'income_account'=> 12,
|
||||
'inventory_account'=> $inventory_account_id,
|
||||
'cost_of_goods_account'=> $cost_of_good_account_id
|
||||
]);
|
||||
}
|
||||
//Investigations
|
||||
elseif ($invoice->tag_id == 2 ){
|
||||
InsuranceExpenditure::where('id', $invoice->id)->update(['income_account'=> 11]);
|
||||
}
|
||||
//Procedures
|
||||
elseif ($invoice->tag_id == 4 ){
|
||||
InsuranceExpenditure::where('id', $invoice->id)->update(['income_account'=> 8]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\ChartOfAccount;
|
||||
|
||||
class DefaultBedCategoryIncomeAccount extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$account = ChartOfAccount::firstOrCreate([
|
||||
'name' => 'Ward Accomodation Income Account',
|
||||
'slug' => 'default_ward_accomodation_income',
|
||||
'type' => 1,
|
||||
'created_by' => 1,
|
||||
'core' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Dental;
|
||||
|
||||
class DentalsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$inventory_items = array(
|
||||
array('Item_Id' => '913','Item_Name' => 'Dental needles','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '2','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '914','Item_Name' => 'Amalgam caps','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '915','Item_Name' => 'Lignocaine 2% Adrenaline Dental Cartridges ','Cost_Price' => '1200','Selling_Price' => '0','Quantity' => '100','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-02-06','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '916','Item_Name' => 'High speed dental bars','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '917','Item_Name' => 'Dental wire','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '918','Item_Name' => 'Alginake Powder ','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '919','Item_Name' => 'Sansodyne','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '920','Item_Name' => 'Dental floss','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '921','Item_Name' => 'Dental stone','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '922','Item_Name' => 'Composite','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '923','Item_Name' => 'Glass lonomer (big-9)','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '924','Item_Name' => 'Anaesthetic gel','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '925','Item_Name' => 'Stain remover','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '926','Item_Name' => 'Floride gel','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '927','Item_Name' => 'Glass lonomer cement','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '928','Item_Name' => 'Zinc Oxide','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '929','Item_Name' => 'Calcium Hydroxide','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '28','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '930','Item_Name' => 'Pumice','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '931','Item_Name' => 'Root canal filling material','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '932','Item_Name' => 'hand piece oil','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '933','Item_Name' => 'Slow speed hand piece','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '1079','Item_Name' => 'Sensodyne Tooth Paste 75ml','Cost_Price' => '25000','Selling_Price' => '28000','Quantity' => '2','Reoder_Level' => '1','Description' => 'Tooth Paste','Drug_Form' => '7','Drug_Unit' => '4','Updated_At' => NULL,'Created_At' => '2019-04-12 10:10:37','Item_Category_Id' => '0','Supplier_Id' => '20','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => ',','Reference_Name' => ',','Insurance_Coverage' => '0','Drug_Category' => '99','Account_Id' => '4','Item_Type' => 'Dental','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2020-12-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'No')
|
||||
);
|
||||
|
||||
foreach ($inventory_items as $dental):
|
||||
Dental::firstOrCreate([
|
||||
"id" => $dental['Item_Id'],
|
||||
"name" => $dental['Item_Name'],
|
||||
"insurance_coverage" => $dental['Insurance_Coverage'],
|
||||
"account_id" => $dental['Account_Id'],
|
||||
"buying_price" => $dental['Cost_Price'],
|
||||
"non_insured_price" => $dental['Selling_Price'],
|
||||
"insured_price" => 0,
|
||||
"store_stock" => $dental['Quantity'],
|
||||
"pharmacy_stock" => $dental['Pharmacy_Stock'],
|
||||
"re_order_level" => $dental['Reoder_Level'],
|
||||
"supplier_id" => $dental['Supplier_Id'],
|
||||
"expiry_date" => $dental['Expiry_Date']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\DiagnosisCategory;
|
||||
|
||||
class DiagnosisCategorySeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$categories = [
|
||||
['name'=>'Eye Lids'],
|
||||
['name'=>'Normal Eyes'],
|
||||
['name'=>'Sclera'],
|
||||
['name'=>'Choroid'],
|
||||
['name'=>'Retina'],
|
||||
['name'=>'Vitreous'],
|
||||
['name'=>'Eye Ball Deforminty'],
|
||||
['name'=>'Optic Nerve'],
|
||||
['name'=>'Glaucoma'],
|
||||
['name'=>'Strabismus or ocular motility'],
|
||||
['name'=>'Nystagmus'],
|
||||
['name'=>'Visual field Defect'],
|
||||
['name'=>'Colour vision deficiency'],
|
||||
['name'=>'Refraction'],
|
||||
['name'=>'Lens'],
|
||||
['name'=>'Pupils'],
|
||||
['name'=>'Anterior Uveitis'],
|
||||
['name'=>'Iris'],
|
||||
['name'=>'Conjunctiva'],
|
||||
['name'=>'Cornea'],
|
||||
['name'=>'Lacriamal system'],
|
||||
['name'=>'Orbit']
|
||||
];
|
||||
|
||||
foreach ($categories as $category) {
|
||||
DiagnosisCategory::firstOrCreate([
|
||||
"name" => $category['name'],
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1,
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\DiscountCategories;
|
||||
|
||||
class DiscountCategoriesTableSeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run(){
|
||||
DiscountCategories::firstOrCreate(['id' => '1', 'name' => 'Test Fixed Figure', 'discount_type' => '1', 'donor_id' => '1', 'patient_category' => '1', 'donor_amount' => 20000, 'patient_amount' => 10000, 'created_by' => 1, 'updated_by' => 1]);
|
||||
|
||||
DiscountCategories::firstOrCreate(['id' => '2', 'name' => 'Test Patient Ceiling', 'discount_type' => '2', 'donor_id' => '1', 'patient_category' => '1', 'donor_amount' => 0, 'patient_amount' => 10000, 'created_by' => 1, 'updated_by' => 1]);
|
||||
|
||||
DiscountCategories::firstOrCreate(['id' => '3', 'name' => 'Test Patient TopUp', 'discount_type' => '3', 'donor_id' => '1', 'patient_category' => '1', 'donor_amount' => 20000, 'patient_amount' => 0, 'created_by' => 1, 'updated_by' => 1]);
|
||||
|
||||
DiscountCategories::firstOrCreate(['id' => '4', 'name' => 'Test Fixed Figure', 'discount_type' => '1', 'donor_id' => '1', 'patient_category' => '2', 'donor_amount' => 20000, 'patient_amount' => 10000, 'created_by' => 1, 'updated_by' => 1]);
|
||||
|
||||
DiscountCategories::firstOrCreate(['id' => '5', 'name' => 'Test Patient Ceiling', 'discount_type' => '2', 'donor_id' => '1', 'patient_category' => '2', 'donor_amount' => 0, 'patient_amount' => 10000, 'created_by' => 1, 'updated_by' => 1]);
|
||||
|
||||
DiscountCategories::firstOrCreate(['id' => '6', 'name' => 'Test Patient TopUp', 'discount_type' => '3', 'donor_id' => '1', 'patient_category' => '2', 'donor_amount' => 20000, 'patient_amount' => 0, 'created_by' => 1, 'updated_by' => 1]);
|
||||
|
||||
DiscountCategories::firstOrCreate(['id' => '7', 'name' => 'Test Fixed Figure', 'discount_type' => '1', 'donor_id' => '1', 'patient_category' => '3', 'donor_amount' => 20000, 'patient_amount' => 10000, 'created_by' => 1, 'updated_by' => 1]);
|
||||
|
||||
DiscountCategories::firstOrCreate(['id' => '8', 'name' => 'Test Patient Ceiling', 'discount_type' => '2', 'donor_id' => '1', 'patient_category' => '3', 'donor_amount' => 0, 'patient_amount' => 10000, 'created_by' => 1, 'updated_by' => 1]);
|
||||
|
||||
DiscountCategories::firstOrCreate(['id' => '9', 'name' => 'Test Patient TopUp', 'discount_type' => '3', 'donor_id' => '1', 'patient_category' => '3', 'donor_amount' => 20000, 'patient_amount' => 0, 'created_by' => 1, 'updated_by' => 1]);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,218 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\District;
|
||||
|
||||
class DistrictsTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
// $districts = [
|
||||
// ['id' => '1', 'name' => 'Rukungiri'],
|
||||
// ['id' => '2', 'name' => 'Kanungu'],
|
||||
// ['id' => '3', 'name' => 'Kabale'],
|
||||
// ['id' => '4', 'name' => 'Mbarara'],
|
||||
// ['id' => '5', 'name' => 'Bushenyi'],
|
||||
// ['id' => '6', 'name' => 'Ntungamo'],
|
||||
// ['id' => '8', 'name' => 'Kibale'],
|
||||
// ['id' => '9', 'name' => 'Isingiro'],
|
||||
// ['id' => '10', 'name' => 'Mitooma'],
|
||||
// ['id' => '11', 'name' => 'Kamwenge'],
|
||||
// ['id' => '12', 'name' => 'Rubirizi'],
|
||||
// ['id' => '13', 'name' => 'Kirihura'],
|
||||
// ['id' => '14', 'name' => 'Sheema'],
|
||||
// ['id' => '15', 'name' => 'Lyantonde'],
|
||||
// ['id' => '16', 'name' => 'Wakiso'],
|
||||
// ['id' => '17', 'name' => 'Ttitwe'],
|
||||
// ['id' => '18', 'name' => 'kitwe'],
|
||||
// ['id' => '19', 'name' => 'Buhweju'],
|
||||
// ['id' => '20', 'name' => 'Kyegegwa'],
|
||||
// ['id' => '21', 'name' => 'Kisoro'],
|
||||
// ['id' => '22', 'name' => 'lwatonde'],
|
||||
// ['id' => '23', 'name' => 'Mubende'],
|
||||
// ['id' => '24', 'name' => 'sembabure'],
|
||||
// ['id' => '25', 'name' => 'Sembabule'],
|
||||
// ['id' => '26', 'name' => 'Rubanda'],
|
||||
// ['id' => '27', 'name' => 'Ibanda'],
|
||||
// ['id' => '28', 'name' => 'Hamurwa'],
|
||||
// ['id' => '29', 'name' => 'Kagadi'],
|
||||
// ['id' => '30', 'name' => 'kamwengye'],
|
||||
// ['id' => '31', 'name' => 'Rakai'],
|
||||
// ['id' => '32', 'name' => 'Kabarole'],
|
||||
// ['id' => '33', 'name' => 'Kyenjojo'],
|
||||
// ['id' => '34', 'name' => 'Kampala'],
|
||||
// ['id' => '35', 'name' => 'Lira'],
|
||||
// ['id' => '36', 'name' => 'Rwengo'],
|
||||
// ['id' => '37', 'name' => 'Lwengo'],
|
||||
// ['id' => '38', 'name' => 'Kyankwanzi'],
|
||||
// ['id' => '39', 'name' => 'kiruhura'],
|
||||
// ['id' => '40', 'name' => 'Kakumiro'],
|
||||
// ['id' => '41', 'name' => 'Busia'],
|
||||
// ['id' => '42', 'name' => 'Tororo']
|
||||
// ];
|
||||
$districts = array(
|
||||
array('id' => '1','name' => 'Abim','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '2','name' => 'Adjumani','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '3','name' => 'Agago','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '4','name' => 'Alebtong','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '5','name' => 'Amolatar','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '6','name' => 'Amudat','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '7','name' => 'Amuria','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '8','name' => 'Amuru','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '9','name' => 'Apac','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '10','name' => 'Arua','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '11','name' => 'Arua City','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '12','name' => 'Budaka','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '13','name' => 'Bududa','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '14','name' => 'Bugiri','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '15','name' => 'Bugweri','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '16','name' => 'Buhweju','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '17','name' => 'Buikwe','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '18','name' => 'Bukedea','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '19','name' => 'Bukomansimbi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '20','name' => 'Bukwo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '21','name' => 'Bulambuli','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '22','name' => 'Buliisa','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '23','name' => 'Bundibugyo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '24','name' => 'Bunyangabu','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '25','name' => 'Bushenyi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '26','name' => 'Busia','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '27','name' => 'Butaleja','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '28','name' => 'Butambala','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '29','name' => 'Butebo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '30','name' => 'Buvuma','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '31','name' => 'Buyende','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '32','name' => 'Dokolo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '33','name' => 'Fort Portal','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '34','name' => 'Fort Portal City','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '35','name' => 'Gomba','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '36','name' => 'Gulu','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '37','name' => 'Gulu City','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '38','name' => 'Hoima','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '39','name' => 'Hoima City','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '40','name' => 'Ibanda','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '41','name' => 'Iganga','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '42','name' => 'Isingiro','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '43','name' => 'Jinja','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '44','name' => 'Jinja City','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '45','name' => 'Kaabong','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '46','name' => 'Kabale','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '47','name' => 'Kabarole','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '48','name' => 'Kaberamaido','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '49','name' => 'Kagadi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '50','name' => 'Kakumiro','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '51','name' => 'Kalaki','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '52','name' => 'Kalangala','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '53','name' => 'Kaliro','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '54','name' => 'Kalungu','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '55','name' => 'Kampala','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '56','name' => 'Kamuli','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '57','name' => 'Kamwenge','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '58','name' => 'Kanungu','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '59','name' => 'Kapchorwa','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '60','name' => 'Kapelebyong','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '61','name' => 'Karenga','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '62','name' => 'Kasese','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '63','name' => 'Kassanda','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '64','name' => 'Katakwi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '65','name' => 'Kayunga','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '66','name' => 'Kazo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '67','name' => 'Kibaale','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '68','name' => 'Kiboga','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '69','name' => 'Kibuku','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '70','name' => 'Kikuube','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '71','name' => 'Kiruhura','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '72','name' => 'Kiryandongo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '73','name' => 'Kisoro','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '74','name' => 'Kitagwenda','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '75','name' => 'Kitgum','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '76','name' => 'Koboko','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '77','name' => 'Kole','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '78','name' => 'Kotido','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '79','name' => 'Kumi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '80','name' => 'Kwania','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '81','name' => 'Kween','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '82','name' => 'Kyankwanzi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '83','name' => 'Kyegegwa','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '84','name' => 'Kyenjojo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '85','name' => 'Kyotera','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '86','name' => 'Lamwo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '87','name' => 'Lira','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '88','name' => 'Lira City','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '89','name' => 'Luuka','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '90','name' => 'Luweero','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '91','name' => 'Lwengo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '92','name' => 'Lyantonde','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '93','name' => 'Madi-okollo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '94','name' => 'Manafwa','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '95','name' => 'Maracha','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '96','name' => 'Masaka','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '97','name' => 'Masaka City','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '98','name' => 'Masindi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '99','name' => 'Mayuge','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '100','name' => 'Mbale','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '101','name' => 'Mbale City','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '102','name' => 'Mbarara','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '103','name' => 'Mbarara City','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '104','name' => 'Mitooma','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '105','name' => 'Mityana','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '106','name' => 'Moroto','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '107','name' => 'Moyo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '108','name' => 'Mpigi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '109','name' => 'Mubende','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '110','name' => 'Mukono','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '111','name' => 'Nabilatuk','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '112','name' => 'Nakapiripirit','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '113','name' => 'Nakaseke','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '114','name' => 'Nakasongola','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '115','name' => 'Namayingo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '116','name' => 'Namisindwa','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '117','name' => 'Namutumba','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '118','name' => 'Napak','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '119','name' => 'Nebbi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '120','name' => 'Ngora','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '121','name' => 'Ntoroko','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '122','name' => 'Ntungamo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '123','name' => 'Nwoya','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '124','name' => 'Obongi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '125','name' => 'Omoro','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '126','name' => 'Otuke','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '127','name' => 'Oyam','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '128','name' => 'Pader','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '129','name' => 'Pakwach','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '130','name' => 'Pallisa','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '131','name' => 'Rakai','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '132','name' => 'Rubanda','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '133','name' => 'Rubirizi','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '134','name' => 'Rukiga','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '135','name' => 'Rukungiri','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '136','name' => 'Rwampara','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '137','name' => 'Serere','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '138','name' => 'Sheema','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '139','name' => 'Sironko','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '140','name' => 'Soroti','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '141','name' => 'Soroti City','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '142','name' => 'Ssembabule','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '143','name' => 'Terego','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '144','name' => 'Tororo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '145','name' => 'Wakiso','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '146','name' => 'Yumbe','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL),
|
||||
array('id' => '147','name' => 'Zombo','created_by' => '2','updated_by' => NULL,'created_at' => '2022-10-11 10:56:16','updated_at' => NULL,'deleted_at' => NULL)
|
||||
);
|
||||
|
||||
foreach ($districts as $district):
|
||||
District::firstOrCreate([
|
||||
"id" => $district['id'],
|
||||
"name" => $district['name'],
|
||||
"created_by" => 1,
|
||||
"updated_by" => 1
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DonorsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run(){
|
||||
\Streamline\Models\Donors::firstOrCreate(['id' => '1', 'name' => 'Donor 1', 'created_at' => '1', 'updated_by' => '1']);
|
||||
}
|
||||
}
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\DosageFrequency;
|
||||
|
||||
class DosageFrequenciesClassTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$frequencies = [
|
||||
['Frequency_Id' => '1', 'Frequency' => 'every morning', 'Factor' => '1.00'],
|
||||
['Frequency_Id' => '2', 'Frequency' => 'Once daily', 'Factor' => '1.00'],
|
||||
['Frequency_Id' => '3', 'Frequency' => 'Twice daily', 'Factor' => '2.00'],
|
||||
['Frequency_Id' => '4', 'Frequency' => 'Three times a day', 'Factor' => '3.00'],
|
||||
['Frequency_Id' => '5', 'Frequency' => 'Four times a day', 'Factor' => '4.00'],
|
||||
['Frequency_Id' => '6', 'Frequency' => 'Every evening', 'Factor' => '1.00'],
|
||||
['Frequency_Id' => '7', 'Frequency' => 'Every 6 hours regularly', 'Factor' => '4.00'],
|
||||
['Frequency_Id' => '8', 'Frequency' => 'Every 6 hours if needed', 'Factor' => '3.00'],
|
||||
['Frequency_Id' => '9', 'Frequency' => 'Every 4 hours regularly', 'Factor' => '6.00'],
|
||||
['Frequency_Id' => '10', 'Frequency' => 'Every 4 hours if needed', 'Factor' => '4.00'],
|
||||
['Frequency_Id' => '11', 'Frequency' => 'Every 8 hours regularly', 'Factor' => '3.00'],
|
||||
['Frequency_Id' => '12', 'Frequency' => 'Every 8 hours if needed', 'Factor' => '2.00'],
|
||||
['Frequency_Id' => '13', 'Frequency' => 'Once a week', 'Factor' => '0.15'],
|
||||
['Frequency_Id' => '14', 'Frequency' => 'STAT', 'Factor' => '1.00'],
|
||||
['Frequency_Id' => '16', 'Frequency' => 'At bed time', 'Factor' => '1.00'],
|
||||
['Frequency_Id' => '17', 'Frequency' => 'Twice weekly', 'Factor' => '0.30'],
|
||||
['Frequency_Id' => '18', 'Frequency' => 'pre-breakfast / pre-supper', 'Factor' => '2.00'],
|
||||
['Frequency_Id' => '19', 'Frequency' => 'Every 2 hours', 'Factor' => '12.00'],
|
||||
['Frequency_Id' => '20', 'Frequency' => 'Day 0 (2 vials); Day 7 and 21 (1 vial each) r', 'Factor' => '4.00'],
|
||||
['Frequency_Id' => '21', 'Frequency' => 'Morning & evening', 'Factor' => '1.00'],
|
||||
['Frequency_Id' => '22', 'Frequency' => 'five times a day', 'Factor' => '5.00']
|
||||
];
|
||||
|
||||
foreach ($frequencies as $frequency) {
|
||||
DosageFrequency::firstOrCreate([
|
||||
'name' => $frequency['Frequency'],
|
||||
'factor' => $frequency['Factor']
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\DrugCategory;
|
||||
|
||||
class DrugCategoriesTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$categories = ['NSAID', 'CARBONIC ANHYDRASE INHIB.', 'ANTI-VIRAL', 'SYMPATHOMIMETIC', 'ANTI-HELMINTH', 'AMINOGLYCOSIDE', 'VACCINE', 'VITAMIN', 'TETRACYCLINE ANTIBIOTIC', 'SULPHONAMIDE/TMP', 'ANTIBIOTIC', 'BRONCHODILATOR', 'ANTI-DEPRESSANT', 'CALCIUM-CHANNEL BLOCKER', 'PENICILLIN', 'IMMUNOGLOBULIN', 'ANTI-MALARIAL', 'BETA BLOCKER', 'STATIN', 'ANTI-MUSCARINIC', 'STEROID', 'DIURETIC', 'ANTI-FUNGAL', 'LAXATIVE', 'LOCAL ANAESTHETIC', 'ACE INHIBITOR', 'ANTI-CONVULSANT', 'ANTI-THYROID', 'CEPHALOSPORIN', 'ANTIHISTAMINE', 'ANTISEPTIC', 'PHENOTHIAZINE', 'ANTI-OESTROGEN', 'ANTI-PLATELET', 'OPIATE', 'I V FLUID', 'BENZODIAZEPINE', 'CARDIAC GLYCOSIDE', 'INOTROPE', 'ANTICOAGULANT', 'MACROLIDE ANTIBIOTIC', 'SULPHONAMIDE ANTI-MALARIAL', 'IRON', 'SULFONYLUREA', 'NITRATE', 'ANTI-PSYCHOTIC', 'ANAESTHETIC', 'ANALGESIC', 'ANGIOTENSIN-II RECEPTOR ANTAGONIST', 'ANTACID', 'ANTI-DIARRHOEAL', 'ANTI-HYPERTENSIVE', 'ANTI-MANIC', 'ANTICONVULSANT', 'BIGUANIDE', 'DOPAMINE ANTAGONIST', 'H2 ANTAGONIST', 'HORMONE', 'HORMONE ANTAGONIST', 'INSULIN', 'MUSCLE RELAXANT', 'MYOCLONUS TREATMENT', 'OPIATE ANTAGONIST', 'OXYTOCIC', 'PROGESTOGEN', 'PROTON PUMP INHIBITOR', 'SCHISTOSOMISIDE', 'GYNAE', 'Alpha blocker', '5α-reductase inhibitor', 'Nucleoside Reverse Transcriptase Inhibitors (NRTI)', 'Protease Inhibitor', 'NRTI', 'NRTI and Non-nucleoside RTI combination', 'Antifibrinolytic drus and Haemostatics', 'ANTIMETABOLITES', 'ANTISPASMODIC', 'Light therapy', 'Sundry'];
|
||||
|
||||
foreach ($categories as $category):
|
||||
DrugCategory::firstOrCreate([
|
||||
"name" => $category
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\DrugForm;
|
||||
|
||||
class DrugFormsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$forms = ['tablets', 'Packets', 'bottles', 'applications', 'vial', 'ampoule', 'tube', 'capsule', 'canister', 'litre', 'tebts', 'kit tin', 'roll', 'pce', 'sacket', 'jug', 'jerrican', 'set', 'kg', 'g', 'NA', 'Mmol/L', 'mLs', 'Pessary', 'drops'];
|
||||
|
||||
foreach ($forms as $form):
|
||||
DrugForm::firstOrCreate([
|
||||
"name" => $form
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\DrugUnit;
|
||||
|
||||
class DrugUnitsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$units = [
|
||||
'g','mg', 'microgram', 'mL', 'applications',
|
||||
'Drops', 'Puffs', 'Mega-Units', 'millimoles',
|
||||
'International U', 'Tablets', 'litres/minute',
|
||||
'Vaginal pessary', 'U/L', 'g/dL', 'IU/L',
|
||||
'mg/dL', 'RBC/uL', 'mg/mL', 'WBC/uL', 'K/uL', '%',
|
||||
'fL', 'Pg', 'M/uL', 'millions/mL', 'millions/vol. of semen', 'Millions', 'minutes'];
|
||||
|
||||
foreach ($units as $unit):
|
||||
DrugUnit::firstOrCreate([
|
||||
"name" => $unit
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Streamline\Models\Drug;
|
||||
use Streamline\Models\TreatmentDeposits;
|
||||
|
||||
class DrugsCostOfGoodsSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$drugs_cog_account_id = get_name("Drugs Cost Of Goods", "name", "id", "chart_of_accounts");
|
||||
|
||||
$drugs_without_cog_account = DB::table('drugs')->where('available', 1)->whereNull('cost_of_goods_account')->get();
|
||||
|
||||
foreach ($drugs_without_cog_account as $drug) {
|
||||
$drug = Drug::withTrashed()->find($drug->id);
|
||||
$drug->cost_of_goods_account = $drugs_cog_account_id;
|
||||
$drug->update();
|
||||
}
|
||||
|
||||
|
||||
/* run this in case of any treatment deposits that do not have attached cost_of_goods_account */
|
||||
$treatment_deposits_without_cog_account = DB::table('treatment_deposits')->whereNull('cost_of_goods_account')->get();
|
||||
foreach ($treatment_deposits_without_cog_account as $deposit) {
|
||||
$treatment_deposit = TreatmentDeposits::find($deposit->id);
|
||||
$treatment_deposit->cost_of_goods_account = $drugs_cog_account_id;
|
||||
$treatment_deposit->update();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\File;
|
||||
use Streamline\Models\Drug;
|
||||
|
||||
class DrugsTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$json = File::get('database/data/drugs_kisiizi.json');
|
||||
$data = json_decode($json);
|
||||
|
||||
foreach ($data as $drug_item) {
|
||||
|
||||
Drug::firstOrCreate([
|
||||
'id' => $drug_item->id,
|
||||
'name' => $drug_item->name,
|
||||
'cost_price' => $drug_item->cost_price,
|
||||
'non_insured_price' => $drug_item->non_insured_price,
|
||||
'insured_price' => 0,
|
||||
'store_stock' => $drug_item->store_stock,
|
||||
'reorder_level' => $drug_item->reorder_level,
|
||||
'description' => $drug_item->description,
|
||||
'form_id' => $drug_item->form_id,
|
||||
'unit_id' => $drug_item->unit_id,
|
||||
'supplier_id' => $drug_item->supplier_id,
|
||||
'prompt' => $drug_item->prompt,
|
||||
'info_vernacular' => $drug_item->info_vernacular,
|
||||
'info_english' => $drug_item->info_english,
|
||||
'insurance_coverage' => $drug_item->insurance_coverage,
|
||||
'category_id' => $drug_item->category_id,
|
||||
'account_id' => 4,
|
||||
'pharmacy_comment' => $drug_item->pharmacy_comment,
|
||||
'restricted_prescription' => $drug_item->restricted_prescription,
|
||||
'long_term' => $drug_item->long_term,
|
||||
'pharmacy_stock' => $drug_item->pharmacy_stock,
|
||||
'expiry_date' => $drug_item->expiry_date,
|
||||
'pricing_factor_adult' => $drug_item->pricing_factor_adult,
|
||||
'ip_daily_cost_adult' => $drug_item->ip_daily_cost_adult,
|
||||
'pricing_factor_children' => $drug_item->pricing_factor_children,
|
||||
'ip_daily_cost_children' => null,
|
||||
'pricing_factor_infant' => $drug_item->pricing_factor_infant,
|
||||
'ip_daily_cost_infant' => $drug_item->ip_daily_cost_infant,
|
||||
'pack' => $drug_item->pack,
|
||||
'strength' => $drug_item->strength,
|
||||
'hssip' => $drug_item->hssip,
|
||||
'reference_areas' => $drug_item->Reference_Areas,
|
||||
'reference_name' => $drug_item->Reference_Name
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class ExpenseAccountSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$expenses = \Streamline\Models\Payment::get();
|
||||
foreach ($expenses as $expense ){
|
||||
$expense_account = get_name($expense->item_id, 'id', 'account_id', 'payment_items');
|
||||
\Streamline\Models\Payment::where('id', $expense->id)->update(['expense_account'=>$expense_account]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,476 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Diagnosis;
|
||||
|
||||
class EyeClinicDiagnosisSeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$diagnoses = [
|
||||
['Abscess of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Atopic eczema of eyelids', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Benign essential blepharospasm', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharitis [allergic]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharitis [infectious]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharitis [Posterior]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharochalasis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharoconjunctivitis [Allergic]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharoconjunctivitis [contact]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharoconjunctivitis [Infectious]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharoptosis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Capillary Haemangioma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Cyst [dermoid]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Dermatitis or eczema of eyelids', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Dermatochalasis of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Distichiasis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Dystopia canthorum', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Ectropion [Congenital]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Ectropion of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Entropion [congenital]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Entropion of eyelid [acquired]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Epiblepharon', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Eyelid retraction', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Facial tic', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Floppy eyelid syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Growth [benign]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Herpes simplex infection of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Hypertelorism', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Hypotelorism', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Lagophthalmos', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Madarosis of eyelid or periocular area', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Marcus-Gunn syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Meibomian Gland Dysfunction', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Molluscum contagiosum of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Movement disorders of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Ocular cicatricial pemphigoid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Preseptal cellulitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Ptosis [congenital]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Ptosis of eyelid [acquired]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Seborrhoeic dermatitis of eyelids', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Sunken Sulcus Deformity', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Symblepharon, acquired', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Telecanthus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Tic disorders', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Traumatic scar of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Trichiasis without entropion', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Verruca vulgaris of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Zoster infection of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Amaurosis fugax ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '2', NULL],
|
||||
['Entoptic phenomena', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '2', NULL],
|
||||
['Normal eyes ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '2', NULL],
|
||||
['Visual floaters ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '2', NULL],
|
||||
['Blue sclera ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '3', NULL],
|
||||
['Degenerative myopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '3', NULL],
|
||||
['Episcleritis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '3', NULL],
|
||||
['Scleral staphyloma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '3', NULL],
|
||||
['Scleritis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '3', NULL],
|
||||
['Angioid streaks ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Atrophy of choroid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Chorioretinal inflammation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Chorioretinal scars', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroidal detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroidal dystrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroidal haemorrhage or rupture', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroidal rupture ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroidal tumour', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroiditis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroiditis, unspecified', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Infectious posterior choroiditis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Intermediate choroiditis infectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Intermediate choroiditis noninfectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Late syphilitic posterior uveitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Noninfectious posterior choroiditis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Ocular Behçet disease ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Panuveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Posterior uveitis Infectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Posterior uveitis noninfectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Sclerosis of choroid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Tuberculous posterior uveitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Age related macular degeneration', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Asphyxiating thoracic dystrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Autoimmune retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Central serous chorioretinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Chorioretinal scars after surgery for detachment ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Coats disease ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Combined arterial and vein occlusion', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Cytomegaloviral retinitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Degenerative high myopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Diabetic macular oedema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Diabetic retinopathy, unspecified', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Drusen macular degeneration', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Eales disease', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['HIV retinitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Hollenhorst plaque', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Hypertensive retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Inherited retinal dystrophies', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Macular cyst', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Macular hole', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Macular telangiectasia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Melanoma associated retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Microcystoid degeneration of retina ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Nonproliferative diabetic retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Other specified retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Paraneoplastic retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Paraneoplastic retinopathy, unspecified', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Presence of retina Implant ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Proliferative diabetic retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Radiation retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Renal retinitis in chronic kidney disease, stage 5', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Reticular pseudodrusen', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal artery occlusions', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal atrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal break', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal breaks without detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal cysts', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal detachments or breaks', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal haemorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal ischaemia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal oedema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal tumour', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal vasculitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal venous occlusions', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinopathy of prematurity', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinopathy, unspecified', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinoschisis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retrolental fibroplasia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Rhegmatogenous retinal detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Serous retinal detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Sjögren-Larsson syndrome ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Traumatic injuries of the retina ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Traumatic retinal haemorrhage ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Usher syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Viral retinitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Endophthalmitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Panuveitis infectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Panuveitis noninfectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Posterior vitreous detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Sympathetic uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Vitreous haemorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Vitreous membranes and strands', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Vitreous prolapse', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Microphthalmos ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Atrophic Bulbi', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Clinical anophthalmos ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Congenital malformation of optic disc ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Nanophthalmos', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Phthisis Bulbi', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Compressive optic neuropathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Disorder of higher visual centres', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Disorder of optic chiasm', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Disorder of post chiasmal visual pathways', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Disorder of visual cortex', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Glaucomatous optic neuropathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Infectious optic neuropathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Injury of optic nerve, unilateral ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Ischaemic optic neuropathy [anterior]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Ischaemic optic neuropathy [posterior]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Late syphilitic retrobulbar neuritis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Malignant neoplasm of the optic nerve ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Neuromyelitis optica ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Neuroretinitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic atrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic disc swelling', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic neuritis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic neuropathy [infiltrative]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic neuropathy [leber]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic neuropathy [traumatic]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Papilloedema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Perineuritis of optic nerve', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Retrobulbar neuritis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Acute angle closure with pupillary block', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Aniridia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Chronic angle-closure', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Developmental glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Ghost cell glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma associated with intraocular haemorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma associated with retinal detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma caused by increased episcleral venous pressure', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma due to drugs', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma due to eye inflammation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma due to eye trauma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma due to intraocular tumours', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma due to ocular surgery or laser ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma of newborn', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma suspect', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucomato-cyclitic crisis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Intermittent angle-closure', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Lens-induced secondary open-angle glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Marfan syndrome ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Neovascular secondary angle closure glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Neurofibromatoses', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Normal tension glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Ocular hypertension', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Oculocerebrorenal syndrome ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Pierre Robin syndrome ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Pigmentary open-angle glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Primary angle closure without pupillary block', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Primary congenital glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Primary infantile glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Primary open-angle glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Pseudoexfoliative open-angle glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary angle closure glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary angle closure glaucoma due to endothelial overgrowth', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary angle closure glaucoma due to epithelial ingrowth', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary angle closure glaucoma with pupillary block', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary angle closure glaucoma without pupillary block', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary childhood glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary glaucoma due to extra-ocular mass', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary open angle glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary open angle glaucoma due to parasitic eye disease', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Esotropia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Exotropia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['External ophthalmoplegia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Fourth nerve palsy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Intermittent strabismus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Sixth nerve palsy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Third nerve palsy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Down beat nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Gaze-evoked nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Perverted nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Physiological nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Seesaw nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Torsional nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Upbeat nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Vestibular nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Visual deprivation nystagmus [Amblyopia]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Bi-nasal defects heteronymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Bi-temporal defects heteronymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Enlarged blind spot', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Heteronymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Homonymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Left hemi-field homonymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Right hemi-field homonymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['achromatopsia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['acquired colour vision deficiency', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['colour blindness', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['Impairment of colour vision', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['Impairment of contrast vision', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['Impairment of light sensitivity', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['Vitamin A deficiency with night blindness ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['Aniseikonia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '14', NULL],
|
||||
['Astigmatism', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '14', NULL],
|
||||
['Presbyopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '14', NULL],
|
||||
['Spasm of accommodation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '14', NULL],
|
||||
['Transient refractive change', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '14', NULL],
|
||||
['Age-related cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Aphakia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Congenital cataract ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Cortical Cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Diabetic cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Dislocation of lens', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Infantile or juvenile cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Intumescent Cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['PCO', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Pex Cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Post operative complications', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['PSC', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Sublaxation of lens', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Traumatic cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Argyll Robertson pupil', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Episodic unilateral mydriasis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Horner syndrome ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Iris sphincter disorders', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Light-near dissociations', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Parasympathoparetic pupils', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Pharmacologic inhibition of the parasympathetic pathway', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Physiologic anisocoria', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Anterior uveitis associated with systemic conditions', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Anterior uveitis not associated with systemic conditions', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Anterior uveitis with sarcoidosis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Axial spondyloarthritis-associated anterior uveitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Gonococcal anterior uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Herpes simplex anterior uveitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Pseudophakic Uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Secondary syphilitic anterior uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Traumatic Uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Tuberculous anterior uveitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Corectopia ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Floppy iris syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Iris atrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Iris bombé', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Iris cyst', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Iris defects', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Plateau iris syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Polycoria ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Pupillary membranes', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Rubeosis of iris', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Blebitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Complications with glaucoma drainage devices', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctival haemangioma or haemolymphangioma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctival Harmorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctival scars', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctivitis Allergic', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctivitis Bacterial', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctivitis Cicatricial', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctivitis Viral', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Foreign body in conjunctival sac', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['keratoconjunctivitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Pingueculae', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Pseudopterygium of conjunctiva ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Trauma of conjunctival', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Vitamin A deficiency with conjunctival xerosis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Adherent leukoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Autoimmune keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Bullous keratopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Chemical burn of cornea or conjunctival sac ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Contact lens-associated corneal infiltrates', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Cornea plana ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal abscess', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal degeneration', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal dystrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal laceration', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal neovascularization', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal oedema [primary]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal oedema [secondary]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal perforation self sealed', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal perforation with iris prolapse', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal pigmentations [anterior]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal pigmentations [posterior]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal pigmentations [stromal]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal scars or opacities', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal staphyloma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal ulcer', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Cyst in the anterior chamber of the eye', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Exposure keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Foreign body in cornea ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Herpes simplex keratitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Hyphaema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Infectious keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Keratoconus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Megalocornea ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Microcornea ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Mooren ulcer', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Neurotrophic keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Parasites in the anterior chamber of the eye', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Recurrent erosion of cornea', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Retained foreign body in anterior chamber of eye ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Ruptured globe', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Sclerosing keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Secondary corneal oedema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Traumatic keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Canaliculitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Dacryocele', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Dacryocystitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Dacryolith', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Dry Eye [ Meibomian gland malfunction]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Dry Eye [ Tear production deficiency]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Hyperlacrimation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal duct agenesis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal duct obstruction acquired', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal duct obstruction congenital', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal gland Infection', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal gland tumour', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal punctum Eversion', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal punctum obstruction/stenosis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Orbital inflammatory syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Anophthalmic socket', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Atrophy of soft tissue of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Bony deformity of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Contracted socket', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Contraction of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Cyst [epidermoid]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Diffuse orbital inflammation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Distortion of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Dysthyroid orbitopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Enlargement of bony orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Enophthalmos', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Exophthalmos', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Exostosis of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Expansion of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Granulomatous orbital inflammation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Haemorrhage of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Hydatic cyst', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Microphthalmic socket', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Oedema of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital cyst', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital infection', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital inflammation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital subperiosteal abscess', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital trauma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital tumour', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Osteomyelitis of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Periostitis of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Proptosis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Teratoma of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Post Phaco Trab', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-08 08:09:17', '2021-04-08 08:09:17', NULL, '9', NULL],
|
||||
['Post PPV + Silicone Oil', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-08 10:48:09', '2021-04-08 10:48:09', NULL, '5', NULL],
|
||||
['Post corneal repair', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-08 11:42:53', '2021-04-08 11:42:53', NULL, '20', NULL],
|
||||
['Viral keratoconjunctivitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-12 08:20:25', '2021-04-12 08:20:25', NULL, '20', NULL],
|
||||
['post SLT', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-15 15:33:57', '2021-04-15 15:33:57', NULL, '9', NULL],
|
||||
['Bupthalmos', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-20 12:34:37', '2021-04-20 12:34:37', NULL, '7', NULL],
|
||||
['Post-Excision', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-04-21 07:23:47', '2021-04-21 07:23:47', NULL, '19', NULL],
|
||||
['end-stage Glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-04-22 12:06:59', '2021-04-22 12:06:59', NULL, '9', NULL],
|
||||
['Post Cryo', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-22 12:21:14', '2021-04-22 12:21:14', NULL, '9', NULL],
|
||||
['Post Phaco', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-04-27 07:59:57', '2021-04-27 07:59:57', NULL, '15', NULL],
|
||||
['Post Trab', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-29 08:53:13', '2021-04-29 08:53:13', NULL, '9', NULL],
|
||||
['Acute Anterior Uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-04 10:29:13', '2021-05-04 10:29:13', NULL, '17', NULL],
|
||||
['Chronic Uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-04 10:29:27', '2021-05-04 10:29:27', NULL, '17', NULL],
|
||||
['Recurrent Uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-04 10:29:40', '2021-05-04 10:29:40', NULL, '17', NULL],
|
||||
['Post SICS TRAB', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-04 13:05:35', '2021-05-04 13:05:35', NULL, '9', NULL],
|
||||
['Secondary cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-06 07:29:22', '2021-05-06 07:29:22', NULL, '15', NULL],
|
||||
['Painful Blind Eye', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-06 08:10:03', '2021-05-06 08:10:03', NULL, '9', NULL],
|
||||
['Advanced POAG', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-06 10:23:06', '2021-05-06 10:23:06', NULL, '9', NULL],
|
||||
['Post I&C', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-12 08:06:22', '2021-05-12 08:06:22', NULL, '1', NULL],
|
||||
['SOCKET INFECTION', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-05-14 09:50:50', '2021-05-14 09:50:50', NULL, '22', NULL],
|
||||
['OSSN', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-14 12:38:23', '2021-05-14 12:38:23', NULL, '19', NULL],
|
||||
['Photophobia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-15 07:05:03', '2021-05-15 07:05:03', NULL, '14', NULL],
|
||||
['Traumatic retinal hemorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-15 09:46:51', '2021-05-15 09:46:51', NULL, '5', NULL],
|
||||
['inflamed Pinguecula', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-17 07:22:16', '2021-05-17 07:22:16', NULL, '19', NULL],
|
||||
['Complicated cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-17 07:43:59', '2021-05-17 07:43:59', NULL, '15', NULL],
|
||||
['Post-operative Endophthalmitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-17 08:04:58', '2021-05-17 08:04:58', NULL, '17', NULL],
|
||||
['Cystic bleb', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-17 11:55:47', '2021-05-17 11:55:47', NULL, '19', NULL],
|
||||
['Conjunctival cyst', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-17 11:58:48', '2021-05-17 11:58:48', NULL, '19', NULL],
|
||||
['Sclero-cornea', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-18 13:04:07', '2021-05-18 13:04:07', NULL, '7', NULL],
|
||||
['Cystoid Macular Edema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-20 12:17:14', '2021-05-20 12:17:14', NULL, '5', NULL],
|
||||
['Limbal dermoid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-31 07:08:16', '2021-05-31 07:08:16', NULL, '20', NULL],
|
||||
['Absolute glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-31 10:45:13', '2021-05-31 10:45:13', NULL, '9', NULL],
|
||||
['Post excision', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-06-01 07:22:26', '2021-06-01 07:22:26', NULL, '19', NULL],
|
||||
['Simple ocular irritation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-06-02 08:12:28', '2021-06-02 08:12:28', NULL, '19', NULL],
|
||||
['Aphakic', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-06-07 09:27:45', '2021-06-07 09:27:45', NULL, '9', NULL],
|
||||
['Macula scar', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-06-08 08:57:19', '2021-06-08 08:57:19', NULL, '5', NULL],
|
||||
['Cystic bleb repair', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-06-14 06:30:46', '2021-06-14 06:30:46', NULL, '9', NULL],
|
||||
['post cryo', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-06-14 09:44:19', '2021-06-14 09:44:19', NULL, '9', NULL],
|
||||
['Dislocated IOL', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-06-17 08:21:21', '2021-06-17 08:21:21', NULL, '15', NULL],
|
||||
['chorio-retinal degeneration', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-06-17 08:22:52', '2021-06-17 08:22:52', NULL, '5', NULL],
|
||||
['low grade anterior uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-06-22 09:44:22', '2021-06-22 09:44:22', NULL, '17', NULL],
|
||||
['Caterpillar hair', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-06-23 09:29:10', '2021-06-23 09:29:10', NULL, '1', NULL],
|
||||
['Graft', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-07-05 07:06:04', '2021-07-05 07:06:04', NULL, '20', NULL],
|
||||
['Dacroadenitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-07-12 10:07:00', '2021-07-12 10:07:00', NULL, '21', NULL],
|
||||
['Post LASIK', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, NULL, '2021-07-19 14:31:20', '2021-07-19 14:31:20', NULL, '20', NULL],
|
||||
['NO PERCEPTION OF LIGHT', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-20 08:31:19', '2021-07-20 08:31:19', NULL, '9', NULL],
|
||||
['POST PPV', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-20 10:42:57', '2021-07-20 10:42:57', NULL, '5', NULL],
|
||||
['RESOLVING ANTERIOR UVEITS', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-21 09:49:52', '2021-07-21 09:49:52', NULL, '17', NULL],
|
||||
['resolved bacterial conjunctivitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-24 06:54:03', '2021-07-24 06:54:03', NULL, '19', NULL],
|
||||
['SUBTARSAL CONCRETIONS', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 14, NULL, '2021-07-24 10:13:40', '2021-07-24 10:13:40', NULL, '19', NULL],
|
||||
['CYSTS', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-26 08:15:34', '2021-07-26 08:15:34', NULL, '19', NULL],
|
||||
['allergic conjunctuvitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-28 09:02:56', '2021-07-28 09:02:56', NULL, '19', NULL],
|
||||
['Subconjuctival haemorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 16, NULL, '2021-07-28 13:58:51', '2021-07-28 13:58:51', NULL, '19', NULL],
|
||||
['DEGENERATIVE RETINA,DR SCREENING', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 11, NULL, '2021-08-02 11:24:07', '2021-08-02 11:24:07', NULL, '5', NULL],
|
||||
['POSTERIOR SUBCAPSULAR CATARACT', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 11, NULL, '2021-08-02 13:20:21', '2021-08-02 13:20:21', NULL, '15', NULL],
|
||||
['SUSPECT GLAUCOMA ,TO R/O', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 11, NULL, '2021-08-03 09:55:42', '2021-08-03 09:55:42', NULL, '9', NULL],
|
||||
['CORNEAL FB REMOVED', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 11, NULL, '2021-08-04 07:50:14', '2021-08-04 07:50:14', NULL, '20', NULL],
|
||||
['MULTIPLE FORNICELAL PARTICLES', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 15, NULL, '2021-08-07 10:55:36', '2021-08-07 10:55:36', NULL, '19', NULL]
|
||||
];
|
||||
|
||||
foreach ($diagnoses as $row) {
|
||||
Diagnosis::firstOrCreate([
|
||||
'name' => $row[0],
|
||||
'icd10_code' => $row[1],
|
||||
'hmis_no_outpatient' => $row[2],
|
||||
'hmis_no_inpatient' => $row[3],
|
||||
'prompts' => $row[4],
|
||||
'reference_areas' => $row[5],
|
||||
'reference_names' => $row[6],
|
||||
'chronic_status' => $row[7],
|
||||
'hmis_category' => $row[8],
|
||||
'diagnosis_category' => $row[14]
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\FamilyPlanningMethod;
|
||||
|
||||
class FamilyPlanningMethodsTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$methods = [
|
||||
"None",
|
||||
"Condom",
|
||||
"Pill",
|
||||
"Depo",
|
||||
"Injections",
|
||||
"Implant",
|
||||
"BTL",
|
||||
"Vasectomy",
|
||||
"LAM",
|
||||
"Other",
|
||||
"IUD",
|
||||
"Currently Pregnant"
|
||||
];
|
||||
|
||||
foreach ($methods as $method) :
|
||||
FamilyPlanningMethod::firstOrCreate(["name" => $method]);
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\FamilyRelationship;
|
||||
|
||||
class FamilyRelationshipsTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$relations = [
|
||||
'Self', 'Wife', 'Husband', 'Mother', 'Father', 'Sister', 'Brother', 'Daughter',
|
||||
'Son', 'GrandMother', 'GrandFather', 'Other', 'Uncle', 'Aunt'
|
||||
];
|
||||
|
||||
foreach ($relations as $relation):
|
||||
FamilyRelationship::firstOrCreate([
|
||||
"name" => $relation
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\FinancePointTag;
|
||||
|
||||
class FinancePointTagTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
|
||||
// change the name of this file to something more appropriate
|
||||
$tags = array(
|
||||
array('id' => '1','name' => 'Drugs (Not used in favour of treatments)'),
|
||||
array('id' => '2','name' => 'Investigations'),
|
||||
array('id' => '3','name' => 'Treatments'),
|
||||
array('id' => '4','name' => 'Procedures'),
|
||||
array('id' => '5','name' => 'Sundries'),
|
||||
array('id' => '6','name' => 'Consultation'),
|
||||
array('id' => '7','name' => 'Co-Payments'),
|
||||
array('id' => '8','name' => 'Services'),
|
||||
array('id' => '9','name' => 'Inpatient-Bills'),
|
||||
array('id' => '10','name' => 'Inpatient-Deposits'),
|
||||
array('id' => '11','name' => 'Central Billing'),
|
||||
array('id' => '12','name' => 'Collective Bills'),
|
||||
array('id' => '13','name' => 'Debtor Payments'),
|
||||
array('id' => '14','name' => 'Family Accounts'),
|
||||
array('id' => '15','name' => 'Patient Accounts'),
|
||||
array('id' => '16','name' => 'Patient Dependants'),
|
||||
array('id' => '17','name' => 'Patient Category Invoice Payments'),
|
||||
array('id' => '18','name' => 'CHI Deposits'),
|
||||
array('id' => '19','name' => 'Eye Glasses'),
|
||||
);
|
||||
|
||||
foreach ($tags as $tag):
|
||||
FinancePointTag::firstOrCreate([
|
||||
"id" => $tag['id'],
|
||||
"name" => $tag['name'],
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\File;
|
||||
use Streamline\Models\FrequentlyAskedQuestion;
|
||||
|
||||
class FrequentlyAskedQuestionSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
DB::table('frequently_asked_questions')->delete();
|
||||
$json = File::get('database/data/frequently_asked_questions.json');
|
||||
$data = json_decode($json);
|
||||
foreach ($data as $item){
|
||||
FrequentlyAskedQuestion::create(
|
||||
array(
|
||||
'question' => (isset($item->Question) ? $item->Question : ''),
|
||||
'answer' => (isset($item->Answer) ? $item->Answer : ''),
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\GenderBasedViolence;
|
||||
|
||||
class GenderBasedViolenceTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$options = [
|
||||
'Sexual', 'Physical', 'Psycho social'
|
||||
];
|
||||
foreach ($options as $option) {
|
||||
GenderBasedViolence::firstOrCreate([
|
||||
'name'=>$option,
|
||||
'created_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\GeneralSettings;
|
||||
|
||||
class GeneralSettingsSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
GeneralSettings::firstOrCreate([
|
||||
'ward_prescription_model' => '1',
|
||||
'donor_feature' => '0',
|
||||
'currency_code' => 'Ugx',
|
||||
]);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class HeadsofFamilyTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
\Streamline\Models\HeadOfFamily::firstOrCreate(['id' => '1','name' => 'Test Insurance Active','photo' => null,'group_id' => '1','patient_id' => '3','created_by' => '1','updated_by' => '1']);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\HeartRegularity;
|
||||
|
||||
class HeartRegularitiesTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$names = ['Regular','Irregular'];
|
||||
foreach ($names as $name) {
|
||||
HeartRegularity::firstOrCreate(['name'=>$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
//use Illuminate\Support\Facades\DB;
|
||||
use Streamline\Models\HmisCategory;
|
||||
|
||||
class HmisCategoriesTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
|
||||
$titles = array(
|
||||
//title mapped to number
|
||||
// ['id' => '1','name' => 'Epidemic-Prone Diseases', 'number' => '1.3.1', 'type' => '1', 'section_number' => null],
|
||||
['id' => '2','name' => 'Other Infectious/Communicable Diseases', 'number' => '1.3.2','type' => '1', 'section_number' => null],
|
||||
// ['id' => '3','name' => 'Neonatal Diseases', 'number' => '1.3.3', 'type' => '1', 'section_number' => null],
|
||||
['id' => '4','name' => 'None Communicable Diseases/Conditions', 'number' => '1.3.4', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '5','name' => 'Oral Diseases', 'number' => '', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '6','name' => 'ENT Conditions', 'number' => '', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '7','name' => 'Eye Conditions', 'number' => '', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '8','name' => 'Mental Health', 'number' => '', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '9','name' => 'Chronic Respiratory Diseases', 'number' => '', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '10','name' => 'Cancers', 'number' => '', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '11','name' => 'Cardiovascular Diseases', 'number' => '', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '12','name' => 'Endocrine and Metabolic Disorders', 'number' => '', 'type' => '1', 'section_number' => null],
|
||||
['id' => '13','name' => 'Malnutrition', 'number' => '', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '14','name' => 'Injuries', 'number' => '', 'type' => '1', 'section_number' => null],
|
||||
['id' => '15','name' => 'Minor Operations in OPD', 'number' => '1.3.5', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '16','name' => 'Neglected Tropical Diseases (NTDs)', 'number' => '1.3.6', 'type' => '1', 'section_number' => null],
|
||||
// ['id' => '17','name' => 'Maternal Conditions', 'number' => '1.3.7', 'type' => '1', 'section_number' => null],
|
||||
['id' => '18','name' => 'Other OPD Conditions', 'number' => '1.3.8', 'type' => '1', 'section_number' => null],
|
||||
['id' => '10046','name' => 'Obstetrics/Gynaecology', 'number' => '3.1', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10047','name' => 'Cardiothoracic Surgery', 'number' => '3.2', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10048','name' => 'Plastic/ reconstructive surgery', 'number' => '3.3', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10049','name' => 'Paediatric Surgery', 'number' => '3.4', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10050','name' => 'Ocular surgery', 'number' => '3.5', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10051','name' => 'Orthopaedics', 'number' => '3.6', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10052','name' => 'Neuro Surgery', 'number' => '3.7', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10053','name' => 'ENT Surgery', 'number' => '3.8', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10054','name' => 'Endocrine Surgery', 'number' => '3.9', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10055','name' => 'Urology', 'number' => '3.10', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10056','name' => 'Gastro-intestinal tract', 'number' => '3.11', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10057','name' => 'Oral surgery', 'number' => '3.12', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10058','name' => 'Other Un-classified Surgical Procedures', 'number' => '3.13', 'type' => '1', 'section_number' => '3'],
|
||||
['id' => '10059','name' => 'X-Ray', 'number' => '5.1', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10060','name' => 'Fluoroscopy Gastrointestinal tract', 'number' => '5.2', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10061','name' => 'Water soluble contrast examination', 'number' => '5.3', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10062','name' => 'Urinary tract', 'number' => '5.4', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10063','name' => 'Micturating cystourethrography', 'number' => '5.5', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10064','name' => 'Computed tomography', 'number' => '5.6', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10065','name' => 'Mammography', 'number' => '5.7', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10066','name' => 'Magnetic Resonance Imaging (MRI)', 'number' => '5.8', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10067','name' => 'Ultrasound', 'number' => '5.9', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10068','name' => 'Intervention procedure Types', 'number' => '5.10', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10069','name' => 'Imaging modality', 'number' => '5.11', 'type' => '1', 'section_number' => '5'],
|
||||
['id' => '10070','name' => 'Epidemic-Prone Diseases/Notifiable Diseases', 'number' => '6.1.1', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10071','name' => 'Haemorragic Fevers', 'number' => '6.1.2', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10072','name' => 'Hepatitis', 'number' => '6.1.3', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10073','name' => 'Meningitis', 'number' => '6.1.4', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10074','name' => "Neglected Tropical Diseases (NTD's)", 'number' => '6.1.5', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10075','name' => 'Neonatal Diseases', 'number' => '6.1.6', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10076','name' => 'Other Infectious /communicable diseases', 'number' => '6.1.7', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10077','name' => 'Oral Diseases', 'number' => '6.2.1', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10078','name' => 'Cardiovascular Diseases', 'number' => '6.2.2', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10079','name' => 'Chronic respiratory diseases', 'number' => '6.2.3', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10080','name' => 'Cancers', 'number' => '6.2.4', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10081','name' => 'Gastro-Intestinal Disorders (non-Infective)', 'number' => '6.2.5', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10082','name' => 'Rheumatologically and Musculoskeletal diseases', 'number' => '6.2.6', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10083','name' => 'ENT conditions', 'number' => '6.2.7', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10084','name' => 'Eye Conditions', 'number' => '6.2.8', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10085','name' => 'Endocrine and metabolic disorders', 'number' => '6.2.9', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10086','name' => 'Injuries', 'number' => '6.2.10', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10087','name' => 'Toxicology', 'number' => '6.2.11', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10088','name' => 'Renal Diseases', 'number' => '6.2.12', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10089','name' => 'Neurology', 'number' => '6.2.13', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10090','name' => 'Other Diagnosis', 'number' => '6.2.14', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10091','name' => 'Medical Emergencies', 'number' => '6.2.15', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10092','name' => 'Maternal conditions', 'number' => '6.2.16', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10093','name' => 'Gynaecological conditions', 'number' => '6.2.17', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10094','name' => 'Other non-communicable diseases', 'number' => '6.2.18', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10095','name' => 'Mental Health', 'number' => '7', 'type' => '1', 'section_number' => '7'],
|
||||
['id' => '10096','name' => 'Epidemic-Prone Diseases', 'number' => '1.3.1', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10097','name' => 'Other Infectious / Communicable Diseases', 'number' => '1.3.2', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10098','name' => 'Neonatal Diseases', 'number' => '1.3.3', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10099','name' => 'Non Communicable Diseases/Conditions', 'number' => '1.3.4', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10100','name' => 'Oral diseases', 'number' => '1.3.5', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10101','name' => 'ENT conditions', 'number' => '1.3.6', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10102','name' => 'Eye conditions', 'number' => '1.3.7', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10103','name' => 'Mental Health', 'number' => '1.3.8', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10104','name' => 'Neurological Disorders', 'number' => '1.3.9', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10105','name' => 'Chronic respiratory diseases', 'number' => '1.3.10', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10106','name' => 'Cancers', 'number' => '1.3.11', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10107','name' => 'Physiotherapy', 'number' => '1.3.12', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10108','name' => 'Occupational therapy conditions', 'number' => '1.3.13', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10109','name' => 'Speech and Language Therapy', 'number' => '1.3.14', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10110','name' => 'Disabilities', 'number' => '1.3.15', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10111','name' => 'Cardiovascular diseases', 'number' => '1.3.16', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10112','name' => 'Endocrine and Metabolic Disorders', 'number' => '1.3.17', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10113','name' => 'Injuries', 'number' => '1.3.18', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10114','name' => 'Minor Operations in OPD', 'number' => '1.3.19', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10115','name' => 'Neglected Tropical Diseases (NTDs)', 'number' => '1.3.20', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10116','name' => 'Maternal conditions', 'number' => '1.3.21', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10117','name' => 'Other OPD conditions', 'number' => '1.3.22', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10118','name' => 'Risky Behaviours', 'number' => '1.3.23', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10119','name' => 'Emergency Medical Services', 'number' => '1.3.24', 'type' => '0', 'section_number' => '1.3'],
|
||||
);
|
||||
|
||||
foreach ($titles as $title) {
|
||||
|
||||
// Prevent re-seeding the same data
|
||||
HmisCategory::firstOrCreate([
|
||||
'id' => $title['id'],
|
||||
'number' => $title['number'],
|
||||
'title' => $title['name'],
|
||||
'type' => $title['type'],
|
||||
'section_number' => $title['section_number'],
|
||||
'created_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,710 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\HmisCategoryOptions;
|
||||
|
||||
class HmisCategoryOptionsSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$hmis_category_options = array(
|
||||
['id' => '1','name' => 'Caesarean sections','number' => 'SP01','hmis_category_id' => '10046'],
|
||||
['id' => '2','name' => 'Obstetric fistula repair (RVF, VVF, RVVF)','number' => 'SP02','hmis_category_id' => '10046'],
|
||||
['id' => '3','name' => 'Evacuations (incomplete abortion)','number' => 'SP03','hmis_category_id' => '10046'],
|
||||
['id' => '4','name' => 'Laparotomy','number' => 'SP04','hmis_category_id' => '10046'],
|
||||
['id' => '5','name' => 'Hysterectomy','number' => 'SP05','hmis_category_id' => '10046'],
|
||||
['id' => '6','name' => 'Thoracotomy','number' => 'CS01','hmis_category_id' => '10047'],
|
||||
['id' => '7','name' => 'Skin grafting','number' => 'PR01','hmis_category_id' => '10048'],
|
||||
['id' => '8','name' => 'Ramsteidts Procedure','number' => 'PS01','hmis_category_id' => '10049'],
|
||||
['id' => '9','name' => 'PSARP (Posterior Saggital Anorectoplasty)','number' => 'PS03','hmis_category_id' => '10049'],
|
||||
['id' => '10','name' => 'Pull through','number' => 'PS04','hmis_category_id' => '10049'],
|
||||
['id' => '11','name' => 'Kasai Procedure','number' => 'PS05','hmis_category_id' => '10049'],
|
||||
['id' => '12','name' => 'Gastroschisis repair','number' => 'PS06','hmis_category_id' => '10049'],
|
||||
['id' => '13','name' => 'Diaphragmatic hernia repair','number' => 'PS07','hmis_category_id' => '10049'],
|
||||
['id' => '14','name' => 'Tracheal-eosophageal fistula repair','number' => 'PS08','hmis_category_id' => '10049'],
|
||||
['id' => '15','name' => 'Congenital cyst excision','number' => 'PS09','hmis_category_id' => '10049'],
|
||||
['id' => '16','name' => 'Congenital hernia repair','number' => 'PS10','hmis_category_id' => '10049'],
|
||||
['id' => '17','name' => 'Cut down','number' => 'PS11','hmis_category_id' => '10049'],
|
||||
['id' => '18','name' => 'Cataract Surgery','number' => 'OC01','hmis_category_id' => '10050'],
|
||||
['id' => '19','name' => 'Glaucoma Surgery','number' => 'OC02','hmis_category_id' => '10050'],
|
||||
['id' => '20','name' => 'Orbital Surgery','number' => 'OC03','hmis_category_id' => '10050'],
|
||||
['id' => '21','name' => 'Oculoplasty','number' => 'OC04','hmis_category_id' => '10050'],
|
||||
['id' => '22','name' => 'Eye lid Operation','number' => 'OC05','hmis_category_id' => '10050'],
|
||||
['id' => '23','name' => 'Opthalmic laser Interventions','number' => 'OC06','hmis_category_id' => '10050'],
|
||||
['id' => '24','name' => 'Strabismus Surgery','number' => 'OC07','hmis_category_id' => '10050'],
|
||||
['id' => '25','name' => 'Trachoma surgery for TT','number' => 'OC08','hmis_category_id' => '10050'],
|
||||
['id' => '26','name' => 'Other Extra Ocular Surgeries','number' => 'OC09','hmis_category_id' => '10050'],
|
||||
['id' => '27','name' => 'Sequestrectomy','number' => 'OR01','hmis_category_id' => '10051'],
|
||||
['id' => '28','name' => 'Spine surgery','number' => 'OR02','hmis_category_id' => '10051'],
|
||||
['id' => '29','name' => 'Arthroplasty','number' => 'OR03','hmis_category_id' => '10051'],
|
||||
['id' => '30','name' => 'Arthrotomy','number' => 'OR04','hmis_category_id' => '10051'],
|
||||
['id' => '31','name' => 'Limb disarticulation','number' => 'OR05','hmis_category_id' => '10051'],
|
||||
['id' => '32','name' => 'Bone reconstruction','number' => 'OR06','hmis_category_id' => '10051'],
|
||||
['id' => '33','name' => 'Amputation','number' => 'OR07','hmis_category_id' => '10051'],
|
||||
['id' => '34','name' => 'Corrective osteotomies','number' => 'OR08','hmis_category_id' => '10051'],
|
||||
['id' => '35','name' => 'Arthrodesis','number' => 'OR09','hmis_category_id' => '10051'],
|
||||
['id' => '36','name' => 'Arthroscopy','number' => 'OR10','hmis_category_id' => '10051'],
|
||||
['id' => '37','name' => 'Internal fixation','number' => 'OR11','hmis_category_id' => '10051'],
|
||||
['id' => '38','name' => 'Soft tissue releases','number' => 'OR12','hmis_category_id' => '10051'],
|
||||
['id' => '39','name' => 'Craniotomy','number' => 'NS01','hmis_category_id' => '10052'],
|
||||
['id' => '40','name' => 'Burr Hole','number' => 'NS02','hmis_category_id' => '10052'],
|
||||
['id' => '41','name' => 'Cranioplasty','number' => 'NS03','hmis_category_id' => '10052'],
|
||||
['id' => '42','name' => 'Microdiscectomy','number' => 'NS04','hmis_category_id' => '10052'],
|
||||
['id' => '43','name' => 'ETV/CPC (Endoscopic 3rd Ventriculostomy/choroid plexus cauterization)','number' => 'NS05','hmis_category_id' => '10052'],
|
||||
['id' => '44','name' => 'Spina-bifida surgery','number' => 'NS06','hmis_category_id' => '10052'],
|
||||
['id' => '45','name' => 'EVD (External Ventricular Drainage)','number' => 'NS07','hmis_category_id' => '10052'],
|
||||
['id' => '46','name' => 'Elevation of depressed skull fracture','number' => 'NS08','hmis_category_id' => '10052'],
|
||||
['id' => '47','name' => 'VP shunts','number' => 'NS09','hmis_category_id' => '10052'],
|
||||
['id' => '48','name' => 'Tracheostomy','number' => 'TS01','hmis_category_id' => '10053'],
|
||||
['id' => '49','name' => 'Adenotonsillectomy','number' => 'TS02','hmis_category_id' => '10053'],
|
||||
['id' => '50','name' => 'Nasal surgery','number' => 'TS03','hmis_category_id' => '10053'],
|
||||
['id' => '51','name' => 'Laryngological surgery','number' => 'TS04','hmis_category_id' => '10053'],
|
||||
['id' => '52','name' => 'Otological surgery','number' => 'TS05','hmis_category_id' => '10053'],
|
||||
['id' => '53','name' => 'ENT endoscopic surgery','number' => 'TS06','hmis_category_id' => '10053'],
|
||||
['id' => '54','name' => 'Other ENT surgeries','number' => 'TS07','hmis_category_id' => '10053'],
|
||||
['id' => '55','name' => 'Thyroidectomy','number' => 'ES01','hmis_category_id' => '10054'],
|
||||
['id' => '56','name' => 'Mastectomy','number' => 'ES02','hmis_category_id' => '10054'],
|
||||
['id' => '57','name' => 'Adrenalectomy','number' => 'ES03','hmis_category_id' => '10054'],
|
||||
['id' => '58','name' => 'Open Prostatectomy','number' => 'UR01','hmis_category_id' => '10055'],
|
||||
['id' => '59','name' => 'Radical prostatectomy','number' => 'UR02','hmis_category_id' => '10055'],
|
||||
['id' => '60','name' => 'Endo-urology','number' => 'UR03','hmis_category_id' => '10055'],
|
||||
['id' => '61','name' => 'Renal surgery (Nephrectomy etc.)','number' => 'UR04','hmis_category_id' => '10055'],
|
||||
['id' => '62','name' => 'Urinary stone Surgery','number' => 'UR05','hmis_category_id' => '10055'],
|
||||
['id' => '63','name' => 'Pyeloplasty','number' => 'UR06','hmis_category_id' => '10055'],
|
||||
['id' => '64','name' => 'Ureteric surgery','number' => 'UR07','hmis_category_id' => '10055'],
|
||||
['id' => '65','name' => 'Radical cystectomy','number' => 'UR08','hmis_category_id' => '10055'],
|
||||
['id' => '66','name' => 'Testicular Surgery (Orchidopexy, Ochidectomy, BSO)','number' => 'UR09','hmis_category_id' => '10055'],
|
||||
['id' => '67','name' => 'Urine diversion (SPC, Nephrostomy)','number' => 'UR010','hmis_category_id' => '10055'],
|
||||
['id' => '68','name' => 'Urethroplasty','number' => 'UR11','hmis_category_id' => '10055'],
|
||||
['id' => '69','name' => 'Penectomy','number' => 'UR12','hmis_category_id' => '10055'],
|
||||
['id' => '70','name' => 'Genitoplasty','number' => 'UR13','hmis_category_id' => '10055'],
|
||||
['id' => '71','name' => 'Varicocoelectomy','number' => 'UR14','hmis_category_id' => '10055'],
|
||||
['id' => '72','name' => 'Hypospadias repair','number' => 'UR15','hmis_category_id' => '10055'],
|
||||
['id' => '73','name' => 'Epispadias repair','number' => 'UR16','hmis_category_id' => '10055'],
|
||||
['id' => '74','name' => 'Bladder exstropy','number' => 'UR17','hmis_category_id' => '10055'],
|
||||
['id' => '75','name' => 'Kidney transplant','number' => 'UR18','hmis_category_id' => '10055'],
|
||||
['id' => '76','name' => 'Cholecystectomy','number' => 'GI01','hmis_category_id' => '10056'],
|
||||
['id' => '77','name' => 'Gastric Surgery','number' => 'GI02','hmis_category_id' => '10056'],
|
||||
['id' => '78','name' => 'Pancreatic Surgery','number' => 'GI03','hmis_category_id' => '10056'],
|
||||
['id' => '79','name' => 'Splenic Surgery','number' => 'GI04','hmis_category_id' => '10056'],
|
||||
['id' => '80','name' => 'Liver Surgery','number' => 'GI05','hmis_category_id' => '10056'],
|
||||
['id' => '81','name' => 'Liver transplant','number' => 'GI06','hmis_category_id' => '10056'],
|
||||
['id' => '82','name' => 'Colectomy','number' => 'GI07','hmis_category_id' => '10056'],
|
||||
['id' => '83','name' => 'Laproscopic Surgery','number' => 'GI08','hmis_category_id' => '10056'],
|
||||
['id' => '84','name' => 'Endoscopic Surgery','number' => 'GI09','hmis_category_id' => '10056'],
|
||||
['id' => '85','name' => 'Colostomy','number' => 'GI10','hmis_category_id' => '10056'],
|
||||
['id' => '86','name' => 'Herniorrhaphy','number' => 'GI12','hmis_category_id' => '10056'],
|
||||
['id' => '87','name' => 'Appendicectomy','number' => 'GI13','hmis_category_id' => '10056'],
|
||||
['id' => '88','name' => 'Hemi-Mandibulectomy','number' => 'OS01','hmis_category_id' => '10057'],
|
||||
['id' => '89','name' => 'Total Mandibulectomy','number' => 'OS02','hmis_category_id' => '10057'],
|
||||
['id' => '90','name' => 'Segmental Resection of Mandible','number' => 'OS03','hmis_category_id' => '10057'],
|
||||
['id' => '91','name' => 'Salivary gland Surgery','number' => 'OS04','hmis_category_id' => '10057'],
|
||||
['id' => '92','name' => 'Neck dissection','number' => 'OS05','hmis_category_id' => '10057'],
|
||||
['id' => '93','name' => 'Partial-glossectomy','number' => 'OS06','hmis_category_id' => '10057'],
|
||||
['id' => '94','name' => 'Excision biopsy of tumour','number' => 'OS07','hmis_category_id' => '10057'],
|
||||
['id' => '95','name' => 'Debridement','number' => 'OT01','hmis_category_id' => '10058'],
|
||||
['id' => '96','name' => 'Incision and drainage of abscesses','number' => 'OT02','hmis_category_id' => '10058'],
|
||||
['id' => '97','name' => 'Safe Male Circumcision','number' => 'OT03','hmis_category_id' => '10058'],
|
||||
['id' => '98','name' => 'Others','number' => 'OT04','hmis_category_id' => '10058'],
|
||||
['id' => '99','name' => 'Excision of Sacro-coccygeal teratome','number' => 'PS02','hmis_category_id' => '10049'],
|
||||
['id' => '100','name' => 'Plain radiography (X-ray)','number' => 'RA01','hmis_category_id' => '10059'],
|
||||
['id' => '101','name' => 'CXR (chest x-ray)','number' => 'RA02','hmis_category_id' => '10059'],
|
||||
['id' => '102','name' => 'Plain abdomen','number' => 'RA03','hmis_category_id' => '10059'],
|
||||
['id' => '103','name' => 'Spine','number' => 'RA04','hmis_category_id' => '10059'],
|
||||
['id' => '104','name' => 'Upper limbs','number' => 'RA05','hmis_category_id' => '10059'],
|
||||
['id' => '105','name' => 'Lower limbs','number' => 'RA06','hmis_category_id' => '10059'],
|
||||
['id' => '106','name' => 'Skull','number' => 'RA07','hmis_category_id' => '10059'],
|
||||
['id' => '107','name' => 'Pelvis','number' => 'RA08','hmis_category_id' => '10059'],
|
||||
['id' => '108','name' => 'Barium swallow','number' => 'FG01','hmis_category_id' => '10060'],
|
||||
['id' => '109','name' => 'Barium meal','number' => 'FG02','hmis_category_id' => '10060'],
|
||||
['id' => '110','name' => 'Barium follow-through','number' => 'FG03','hmis_category_id' => '10060'],
|
||||
['id' => '111','name' => 'Small bowel enema','number' => 'FG04','hmis_category_id' => '10060'],
|
||||
['id' => '112','name' => 'Barium enema','number' => 'FG05','hmis_category_id' => '10060'],
|
||||
['id' => '113','name' => 'The "instant" enema','number' => 'FG06','hmis_category_id' => '10060'],
|
||||
['id' => '114','name' => 'Sonogram/ Fistulogram','number' => 'FG07','hmis_category_id' => '10060'],
|
||||
['id' => '115','name' => 'Loopogram/ Colostogram','number' => 'FG08','hmis_category_id' => '10060'],
|
||||
['id' => '116','name' => 'Other specify (e.g. Balloon dialatation of Oesophageal strictures, Intussusception reduction)','number' => 'FG09','hmis_category_id' => '10060'],
|
||||
['id' => '117','name' => 'Pre-operative cholangiography','number' => 'WS01','hmis_category_id' => '10061'],
|
||||
['id' => '118','name' => 'Postoperative (T-tube) cholangiography','number' => 'WS02','hmis_category_id' => '10061'],
|
||||
['id' => '119','name' => 'Percutaneous extraction of retained biliary calculi','number' => 'WS03','hmis_category_id' => '10061'],
|
||||
['id' => '120','name' => 'Endoscopic retrograde cholangio pancreatography (ERCP)','number' => 'WS04','hmis_category_id' => '10061'],
|
||||
['id' => '121','name' => 'Percutaneous transhepatic cholangiography (PTCH)','number' => 'WS05','hmis_category_id' => '10061'],
|
||||
['id' => '122','name' => 'Excretion urography','number' => 'TR01','hmis_category_id' => '10062'],
|
||||
['id' => '123','name' => 'Percutaneous renal puncture','number' => 'TR02','hmis_category_id' => '10062'],
|
||||
['id' => '124','name' => 'Percutaneous nephrostomy','number' => 'TR03','hmis_category_id' => '10062'],
|
||||
['id' => '125','name' => 'Percutaneous nephrolithotomy','number' => 'TR04','hmis_category_id' => '10062'],
|
||||
['id' => '126','name' => 'Retrograde pyeloureterography','number' => 'TR05','hmis_category_id' => '10062'],
|
||||
['id' => '127','name' => 'Reproductive system','number' => 'MC01','hmis_category_id' => '10063'],
|
||||
['id' => '128','name' => 'Hysterosalpingography','number' => 'MC02','hmis_category_id' => '10063'],
|
||||
['id' => '129','name' => 'Sialography','number' => 'MC03','hmis_category_id' => '10063'],
|
||||
['id' => '130','name' => 'Fistulography','number' => 'MC04','hmis_category_id' => '10063'],
|
||||
['id' => '131','name' => 'Brain','number' => 'CT01','hmis_category_id' => '10064'],
|
||||
['id' => '132','name' => 'Orbits /paranasal sinuses','number' => 'CT02','hmis_category_id' => '10064'],
|
||||
['id' => '133','name' => 'Neck','number' => 'CT03','hmis_category_id' => '10064'],
|
||||
['id' => '134','name' => 'Chest','number' => 'CT04','hmis_category_id' => '10064'],
|
||||
['id' => '135','name' => 'Abdomen and pelvis','number' => 'CT05','hmis_category_id' => '10064'],
|
||||
['id' => '136','name' => 'Spine','number' => 'CT06','hmis_category_id' => '10064'],
|
||||
['id' => '137','name' => 'Limbs','number' => 'CT07','hmis_category_id' => '10064'],
|
||||
['id' => '138','name' => 'Angiography','number' => 'CT08','hmis_category_id' => '10064'],
|
||||
['id' => '139','name' => 'Diagnostic','number' => 'MA01','hmis_category_id' => '10065'],
|
||||
['id' => '140','name' => 'Screening','number' => 'MA02','hmis_category_id' => '10065'],
|
||||
['id' => '141','name' => 'Galactography','number' => 'MA03','hmis_category_id' => '10065'],
|
||||
['id' => '142','name' => 'Brain','number' => 'MR01','hmis_category_id' => '10066'],
|
||||
['id' => '143','name' => 'Spine','number' => 'MR02','hmis_category_id' => '10066'],
|
||||
['id' => '144','name' => 'Angiography','number' => 'MR04','hmis_category_id' => '10066'],
|
||||
['id' => '145','name' => 'Musculoskeletal','number' => 'MR05','hmis_category_id' => '10066'],
|
||||
['id' => '146','name' => 'Abdomen and pelvis','number' => 'UL01','hmis_category_id' => '10067'],
|
||||
['id' => '147','name' => 'Obstetrics','number' => 'UL02','hmis_category_id' => '10067'],
|
||||
['id' => '148','name' => 'Gynecology','number' => 'UL03','hmis_category_id' => '10067'],
|
||||
['id' => '149','name' => 'Small parts','number' => 'UL04','hmis_category_id' => '10067'],
|
||||
['id' => '150','name' => 'Musculoskeletal','number' => 'UL05','hmis_category_id' => '10067'],
|
||||
['id' => '151','name' => 'Cranial','number' => 'UL06','hmis_category_id' => '10067'],
|
||||
['id' => '152','name' => 'Endocavitary ultrasound (transvaginal, transrectal, transesophageal )','number' => 'UL07','hmis_category_id' => '10067'],
|
||||
['id' => '153','name' => 'Vascular','number' => 'UL08','hmis_category_id' => '10067'],
|
||||
['id' => '154','name' => 'Diagnostic','number' => 'IP01','hmis_category_id' => '10068'],
|
||||
['id' => '155','name' => 'Therapeutic','number' => 'IP02','hmis_category_id' => '10068'],
|
||||
['id' => '156','name' => 'Ultrasound guided','number' => 'IM01','hmis_category_id' => '10069'],
|
||||
['id' => '157','name' => 'CT guided','number' => 'IM02','hmis_category_id' => '10069'],
|
||||
['id' => '158','name' => 'Fluoroscopy','number' => 'IM03','hmis_category_id' => '10069'],
|
||||
['id' => '159','name' => 'MRI guided','number' => 'IM04','hmis_category_id' => '10069'],
|
||||
['id' => '160','name' => 'Stereotactic biopsy','number' => 'IM05','hmis_category_id' => '10069'],
|
||||
['id' => '161','name' => 'Malaria','number' => 'EP01','hmis_category_id' => '10070'],
|
||||
['id' => '162','name' => 'Acute Flaccid Paralysis','number' => 'EP02','hmis_category_id' => '10070'],
|
||||
['id' => '163','name' => 'Animal Bites (suspected rabies)','number' => 'EP03','hmis_category_id' => '10070'],
|
||||
['id' => '164','name' => 'Cholera','number' => 'EP04','hmis_category_id' => '10070'],
|
||||
['id' => '165','name' => 'Dysentery','number' => 'EP05','hmis_category_id' => '10070'],
|
||||
['id' => '166','name' => 'Guinea Worm','number' => 'EP06','hmis_category_id' => '10070'],
|
||||
['id' => '167','name' => 'Measles','number' => 'EP07','hmis_category_id' => '10070'],
|
||||
['id' => '168','name' => 'Neonatal tetanus','number' => 'EP08','hmis_category_id' => '10070'],
|
||||
['id' => '169','name' => 'Plague','number' => 'EP09','hmis_category_id' => '10070'],
|
||||
['id' => '170','name' => 'Yellow Fever','number' => 'EP10','hmis_category_id' => '10070'],
|
||||
['id' => '171','name' => 'Ebola','number' => 'HF01','hmis_category_id' => '10071'],
|
||||
['id' => '172','name' => 'Marburg','number' => 'HF02','hmis_category_id' => '10071'],
|
||||
['id' => '173','name' => 'Crimean-Congo Haemorrhagic Fever','number' => 'HF03','hmis_category_id' => '10071'],
|
||||
['id' => '174','name' => 'Other Viral Haemorrhagic Fevers (Specify)','number' => 'HF04','hmis_category_id' => '10071'],
|
||||
['id' => '175','name' => 'Severe Acute Respiratory Infection (SARI)','number' => 'HF05','hmis_category_id' => '10071'],
|
||||
['id' => '176','name' => 'Adverse Events Following Immunization (AEFI)','number' => 'HF06','hmis_category_id' => '10071'],
|
||||
['id' => '177','name' => 'Typhoid Fever','number' => 'HF07','hmis_category_id' => '10071'],
|
||||
['id' => '178','name' => 'Presumptive MDR TB Cases','number' => 'HF08','hmis_category_id' => '10071'],
|
||||
['id' => '179','name' => 'Other Emerging infectious Diseases,specify(e.g. Influenza like illness (ILI), SARS','number' => 'HF09','hmis_category_id' => '10071'],
|
||||
['id' => '180','name' => 'Liver cirrhosis related to HBV', 'number' => 'HP01','hmis_category_id' => '10072'],
|
||||
['id' => '181','name' => 'Liver cirrhosis related to HCV', 'number' => 'HP02','hmis_category_id' => '10072'],
|
||||
['id' => '182','name' => 'Hepatocellular carcinoma related to HBV','number' => 'HP03','hmis_category_id' => '10072'],
|
||||
['id' => '183','name' => 'Hepatocellular carcinoma related to HCV', 'number' => 'HP04','hmis_category_id' => '10072'],
|
||||
['id' => '185','name' => 'Acute Hepatitis', 'number' => 'HP05','hmis_category_id' => '10072'],
|
||||
['id' => '186','name' => 'Bacterial Meningitis', 'number' => 'MG01','hmis_category_id' => '10073'],
|
||||
['id' => '187','name' => 'Viral Meningitis', 'number' => 'MG02','hmis_category_id' => '10073'],
|
||||
['id' => '188','name' => 'Cryptoccocal Meningitis', 'number' => 'MG03','hmis_category_id' => '10073'],
|
||||
['id' => '189','name' => 'Other types of meningitis', 'number' => 'MG04','hmis_category_id' => '10073'],
|
||||
['id' => '190','name' => 'Leishmaniasis', 'number' => 'NT01','hmis_category_id' => '10074'],
|
||||
['id' => '191','name' => 'Lymphatic Filariasis (hydrocele)', 'number' => 'NT02','hmis_category_id' => '10074'],
|
||||
['id' => '192','name' => 'Lymphatic Filariasis (Lympoedema)', 'number' => 'NT03','hmis_category_id' => '10074'],
|
||||
['id' => '193','name' => 'Urinary Schistosomiasis', 'number' => 'NT04','hmis_category_id' => '10074'],
|
||||
['id' => '194','name' => 'Intestinal Schistosomiasis', 'number' => 'NT05','hmis_category_id' => '10074'],
|
||||
['id' => '196','name' => 'Onchocerciasis', 'number' => 'NT06','hmis_category_id' => '10074'],
|
||||
['id' => '197','name' => 'Nodding Syndrome', 'number' => 'NT07','hmis_category_id' => '10074'],
|
||||
['id' => '198','name' => 'Neonatal Sepsis (0-7 days)', 'number' => 'ND01','hmis_category_id' => '10075'],
|
||||
['id' => '199','name' => 'Neonatal Sepsis (8-28 days)', 'number' => 'ND02','hmis_category_id' => '10075'],
|
||||
['id' => '200','name' => 'Neonatal Pneumonia', 'number' => 'ND03','hmis_category_id' => '10075'],
|
||||
['id' => '201','name' => 'Neonatal Meningitis', 'number' => 'ND04','hmis_category_id' => '10075'],
|
||||
['id' => '203','name' => 'Neonatal Jaundice', 'number' => 'ND05','hmis_category_id' => '10075'],
|
||||
['id' => '204','name' => 'Premature baby (as condition that requires mgt)', 'number' => 'ND06','hmis_category_id' => '10075'],
|
||||
['id' => '205','name' => 'Other Neonatal Conditions', 'number' => 'ND07','hmis_category_id' => '10075'],
|
||||
['id' => '206','name' => 'Diarrhea – Acute', 'number' => 'CD01','hmis_category_id' => '10076'],
|
||||
['id' => '207','name' => 'Diarrhea – Persistent', 'number' => 'CD02','hmis_category_id' => '10076'],
|
||||
['id' => '208','name' => 'Genital Ulcers', 'number' => 'CD03','hmis_category_id' => '10076'],
|
||||
['id' => '209','name' => 'Septicemia', 'number' => 'CD04','hmis_category_id' => '10076'],
|
||||
['id' => '210','name' => 'Peritonitis', 'number' => 'CD05','hmis_category_id' => '10076'],
|
||||
['id' => '211','name' => 'Pneumonia', 'number' => 'CD06','hmis_category_id' => '10076'],
|
||||
['id' => '212','name' => 'No Pneumonia – Cough and cold', 'number' => 'CD07','hmis_category_id' => '10076'],
|
||||
['id' => '213','name' => 'Pyrexia of unknown origin (PUO)', 'number' => 'CD08','hmis_category_id' => '10076'],
|
||||
['id' => '214','name' => 'Tuberculosis', 'number' => 'CD09','hmis_category_id' => '10076'],
|
||||
['id' => '215','name' => 'Leprosy', 'number' => 'CD10','hmis_category_id' => '10076'],
|
||||
['id' => '216','name' => 'Osteomyelitis', 'number' => 'CD11','hmis_category_id' => '10076'],
|
||||
['id' => '217','name' => 'Urinary Tract Infections (UTI)', 'number' => 'CD12','hmis_category_id' => '10076'],
|
||||
['id' => '218','name' => 'Tetanus (over 28 days age)', 'number' => 'CD13','hmis_category_id' => '10076'],
|
||||
['id' => '219','name' => 'Sleeping sickness', 'number' => 'CD14','hmis_category_id' => '10076'],
|
||||
['id' => '220','name' => 'Dental Caries', 'number' => 'OD01','hmis_category_id' => '10077'],
|
||||
['id' => '221','name' => 'Gingivitis', 'number' => 'OD02','hmis_category_id' => '10077'],
|
||||
['id' => '222','name' => 'Jaw injuries', 'number' => 'OD03','hmis_category_id' => '10077'],
|
||||
['id' => '223','name' => 'Other oral diseases and conditions', 'number' => 'OD04','hmis_category_id' => '10077'],
|
||||
['id' => '224','name' => 'HIV-Oral lesions', 'number' => 'OD05','hmis_category_id' => '10077'],
|
||||
['id' => '225','name' => 'Oral Cancers', 'number' => 'OD06','hmis_category_id' => '10077'],
|
||||
['id' => '226','name' => 'Hypertension (newly diagnosed cases)', 'number' => 'CV01','hmis_category_id' => '10078'],
|
||||
['id' => '227','name' => 'Hypertension (old cases)', 'number' => 'CV02','hmis_category_id' => '10078'],
|
||||
['id' => '228','name' => 'Stroke/Cardiovascular Accident(CVA)', 'number' => 'CV03','hmis_category_id' => '10078'],
|
||||
['id' => '229','name' => 'Heart failure', 'number' => 'CV04','hmis_category_id' => '10078'],
|
||||
['id' => '230','name' => 'Ischemic Heart Diseases', 'number' => 'CV05','hmis_category_id' => '10078'],
|
||||
['id' => '231','name' => 'Rheumatic Heart Diseases', 'number' => 'CV06','hmis_category_id' => '10078'],
|
||||
['id' => '232','name' => 'Chronic Heart Diseases', 'number' => 'CV07','hmis_category_id' => '10078'],
|
||||
['id' => '233','name' => 'Other Cardiovascular Diseases', 'number' => 'CV08','hmis_category_id' => '10078'],
|
||||
['id' => '234','name' => 'Asthma', 'number' => 'CR01','hmis_category_id' => '10079'],
|
||||
['id' => '235','name' => 'Chronic Obstructive Pulmonary Diseases (COPD)', 'number' => 'CR02','hmis_category_id' => '10079'],
|
||||
['id' => '236','name' => 'Pulmonary Fibrosis', 'number' => 'CR03','hmis_category_id' => '10079'],
|
||||
['id' => '237','name' => 'Post TB Lung disease', 'number' => 'CR04','hmis_category_id' => '10079'],
|
||||
['id' => '238','name' => 'Kidney Cancer', 'number' => 'CA01','hmis_category_id' => '10080'],
|
||||
['id' => '239','name' => 'Breast Cancer', 'number' => 'CA02','hmis_category_id' => '10080'],
|
||||
['id' => '240','name' => 'Prostate Cancer', 'number' => 'CA03','hmis_category_id' => '10080'],
|
||||
['id' => '241','name' => 'Lung Cancer', 'number' => 'CA04','hmis_category_id' => '10080'],
|
||||
['id' => '242','name' => 'Liver Cancer', 'number' => 'CA05','hmis_category_id' => '10080'],
|
||||
['id' => '243','name' => 'Colon Cancer', 'number' => 'CA06','hmis_category_id' => '10080'],
|
||||
['id' => '244','name' => 'Kaposis Sarcoma', 'number' => 'CA07','hmis_category_id' => '10080'],
|
||||
['id' => '245','name' => 'Hepatocellular carcinoma', 'number' => 'CA08','hmis_category_id' => '10080'],
|
||||
['id' => '246','name' => 'Malignant neoplasm of Haemopoietin tissue e.g. leukaemia', 'number' => 'CA09','hmis_category_id' => '10080'],
|
||||
['id' => '247','name' => 'Other Cancers', 'number' => 'CA10','hmis_category_id' => '10080'],
|
||||
['id' => '248','name' => 'Abdominal Pain', 'number' => 'GD01','hmis_category_id' => '10081'],
|
||||
['id' => '249','name' => 'Intususception', 'number' => 'GD02','hmis_category_id' => '10081'],
|
||||
['id' => '250','name' => 'Peptic Ulcer Disease', 'number' => 'GD03','hmis_category_id' => '10081'],
|
||||
['id' => '251','name' => 'Gastro-esophageal reflux disease (GERD)', 'number' => 'GD04','hmis_category_id' => '10081'],
|
||||
['id' => '252','name' => 'Chronic Liver Disease', 'number' => 'GD05','hmis_category_id' => '10081'],
|
||||
['id' => '253','name' => 'Acute Hepatitis', 'number' => 'GD06','hmis_category_id' => '10081'],
|
||||
['id' => '254','name' => 'Irritable Bowel Syndrome', 'number' => 'GD07','hmis_category_id' => '10081'],
|
||||
['id' => '255','name' => 'Liver Cirrhosis', 'number' => 'GD08','hmis_category_id' => '10081'],
|
||||
['id' => '256','name' => 'Varices (oesophageal or gastric)', 'number' => 'GD09','hmis_category_id' => '10081'],
|
||||
['id' => '257','name' => 'Colorectal and anal disorder', 'number' => 'GD10','hmis_category_id' => '10081'],
|
||||
['id' => '258','name' => 'Multiple Myeloma', 'number' => 'GD11','hmis_category_id' => '10081'],
|
||||
['id' => '259','name' => 'Aplastic Anaemia', 'number' => 'GD12','hmis_category_id' => '10081'],
|
||||
['id' => '260','name' => 'Others (specify)', 'number' => 'GD13','hmis_category_id' => '10081'],
|
||||
['id' => '261','name' => 'Rheumatoid Arthritis', 'number' => 'RM01','hmis_category_id' => '10082'],
|
||||
['id' => '262','name' => 'Septic Arthritis', 'number' => 'RM02','hmis_category_id' => '10082'],
|
||||
['id' => '263','name' => 'Osteoarthritis', 'number' => 'RM03','hmis_category_id' => '10082'],
|
||||
['id' => '264','name' => 'Gout', 'number' => 'RM04','hmis_category_id' => '10082'],
|
||||
['id' => '265','name' => 'Systemic Lupus Erythematous (SLE)', 'number' => 'RM05','hmis_category_id' => '10082'],
|
||||
['id' => '266','name' => 'Polyarthritis unspecified', 'number' => 'RM06','hmis_category_id' => '10082'],
|
||||
['id' => '267','name' => 'Monoarthritis unspecified', 'number' => 'RM07','hmis_category_id' => '10082'],
|
||||
['id' => '268','name' => 'Myalgia', 'number' => 'RM08','hmis_category_id' => '10082'],
|
||||
['id' => '269','name' => 'Others (please specify)', 'number' => 'RM09','hmis_category_id' => '10082'],
|
||||
['id' => '270','name' => 'Otitis media', 'number' => 'EN01','hmis_category_id' => '10083'],
|
||||
['id' => '271','name' => 'Hearing loss', 'number' => 'EN02','hmis_category_id' => '10083'],
|
||||
['id' => '272','name' => 'Other ENT conditions', 'number' => 'EN03','hmis_category_id' => '10083'],
|
||||
['id' => '273','name' => 'Ophthalmic Neonatorum', 'number' => 'EC01','hmis_category_id' => '10084'],
|
||||
['id' => '274','name' => 'Cataracts', 'number' => 'EC02','hmis_category_id' => '10084'],
|
||||
['id' => '275','name' => 'Refractive errors', 'number' => 'EC03','hmis_category_id' => '10084'],
|
||||
['id' => '276','name' => 'Glaucoma', 'number' => 'EC04','hmis_category_id' => '10084'],
|
||||
['id' => '277','name' => 'Trachoma', 'number' => 'EC05','hmis_category_id' => '10084'],
|
||||
['id' => '278','name' => 'Tumours', 'number' => 'EC06','hmis_category_id' => '10084'],
|
||||
['id' => '279','name' => 'Blindness', 'number' => 'EC07','hmis_category_id' => '10084'],
|
||||
['id' => '280','name' => 'Diabetic Retinopathy', 'number' => 'EC08','hmis_category_id' => '10084'],
|
||||
['id' => '281','name' => 'Other eye conditions', 'number' => 'EC09','hmis_category_id' => '10084'],
|
||||
['id' => '282','name' => 'Diabetes mellitus', 'number' => 'EM01','hmis_category_id' => '10085'],
|
||||
['id' => '283','name' => 'Thyroid disease', 'number' => 'EM02','hmis_category_id' => '10085'],
|
||||
['id' => '284','name' => 'Other Endocrine and metabolic disorders', 'number' => 'EM03','hmis_category_id' => '10085'],
|
||||
['id' => '285','name' => 'Injuries - Road traffic Accidents', 'number' => 'IN01','hmis_category_id' => '10086'],
|
||||
['id' => '286','name' => 'Jaw injuries', 'number' => 'IN02','hmis_category_id' => '10086'],
|
||||
['id' => '287','name' => 'Injuries - Trauma due to other causes', 'number' => 'IN03','hmis_category_id' => '10086'],
|
||||
['id' => '288','name' => 'Animal Bites', 'number' => 'IN04','hmis_category_id' => '10086'],
|
||||
['id' => '289','name' => 'Snake Bites', 'number' => 'IN05','hmis_category_id' => '10086'],
|
||||
['id' => '290','name' => 'Organophosphate poisoning', 'number' => 'TX01','hmis_category_id' => '10087'],
|
||||
['id' => '291','name' => 'Drug overdose', 'number' => 'TX02','hmis_category_id' => '10087'],
|
||||
['id' => '292','name' => 'Rat Poisoning', 'number' => 'TX03','hmis_category_id' => '10087'],
|
||||
['id' => '293','name' => 'Snake poison', 'number' => 'TX04','hmis_category_id' => '10087'],
|
||||
['id' => '294','name' => 'Poison of unknown etiology', 'number' => 'TX05','hmis_category_id' => '10087'],
|
||||
['id' => '295','name' => 'Nephrotic syndrome', 'number' => 'RD01','hmis_category_id' => '10088'],
|
||||
['id' => '296','name' => 'End stage renal diseases (for those who need dialysis)', 'number' => 'RD02','hmis_category_id' => '10088'],
|
||||
['id' => '297','name' => 'Chronic Kidney Diseases', 'number' => 'RD03','hmis_category_id' => '10088'],
|
||||
['id' => '298','name' => 'Acute Kidney Injury', 'number' => 'RD04','hmis_category_id' => '10088'],
|
||||
['id' => '299','name' => 'HIV nephropathy', 'number' => 'RD05','hmis_category_id' => '10088'],
|
||||
['id' => '300','name' => 'Headache', 'number' => 'NR01','hmis_category_id' => '10089'],
|
||||
['id' => '301','name' => 'Epilepsy', 'number' => 'NR02','hmis_category_id' => '10089'],
|
||||
['id' => '302','name' => 'Cerebral Vascular disease', 'number' => 'NR03','hmis_category_id' => '10089'],
|
||||
['id' => '303','name' => 'Neuropathies', 'number' => 'NR04','hmis_category_id' => '10089'],
|
||||
['id' => '304','name' => "Parkinson's disease", 'number' => 'NR05','hmis_category_id' => '10089'],
|
||||
['id' => '305','name' => 'Other movement disorders', 'number' => 'NR06','hmis_category_id' => '10089'],
|
||||
['id' => '306','name' => 'Spinal Cord disorders', 'number' => 'NR07','hmis_category_id' => '10089'],
|
||||
['id' => '307','name' => 'Hernias', 'number' => 'LD01','hmis_category_id' => '10090'],
|
||||
['id' => '308','name' => 'Diseases of the appendix', 'number' => 'LD02','hmis_category_id' => '10090'],
|
||||
['id' => '309','name' => 'Diseases of the skin', 'number' => 'LD03','hmis_category_id' => '10090'],
|
||||
['id' => '310','name' => 'Muscular skeletal and connective tissue diseases', 'number' => 'LD04','hmis_category_id' => '10090'],
|
||||
['id' => '311','name' => 'Genital urinary system diseases (non-infective)', 'number' => 'LD05','hmis_category_id' => '10090'],
|
||||
['id' => '312','name' => 'Congenital malformations and chromosome abnormalities', 'number' => 'LD06','hmis_category_id' => '10090'],
|
||||
['id' => '313','name' => 'Complications of medical and surgical care', 'number' => 'LD07','hmis_category_id' => '10090'],
|
||||
['id' => '314','name' => "Benign neoplasm's (all types)", 'number' => 'LD08','hmis_category_id' => '10090'],
|
||||
['id' => '315','name' => 'Coetaneous ulcers', 'number' => 'LD09','hmis_category_id' => '10090'],
|
||||
['id' => '316','name' => 'Cerebro-vascular events', 'number' => 'ME01','hmis_category_id' => '10091'],
|
||||
['id' => '317','name' => 'Cardiac arrest', 'number' => 'ME02','hmis_category_id' => '10091'],
|
||||
['id' => '318','name' => 'Gastro-intestinal bleeding', 'number' => 'ME03','hmis_category_id' => '10091'],
|
||||
['id' => '319','name' => 'Respiratory distress', 'number' => 'ME04','hmis_category_id' => '10091'],
|
||||
['id' => '320','name' => 'Acute renal failure', 'number' => 'ME05','hmis_category_id' => '10091'],
|
||||
['id' => '321','name' => 'Acute sepsis', 'number' => 'ME06','hmis_category_id' => '10091'],
|
||||
['id' => '322','name' => 'All others', 'number' => 'ME07','hmis_category_id' => '10091'],
|
||||
['id' => '323','name' => 'Abortions due to Gender Based Violence GBV)', 'number' => 'MC01','hmis_category_id' => '10092'],
|
||||
['id' => '324','name' => 'Abortions due to other causes', 'number' => 'MC02','hmis_category_id' => '10092'],
|
||||
['id' => '325','name' => 'Malaria in pregnancy', 'number' => 'MC03','hmis_category_id' => '10092'],
|
||||
['id' => '326','name' => 'High blood pressure in pregnancy', 'number' => 'MC04','hmis_category_id' => '10092'],
|
||||
['id' => '327','name' => 'Obstructed labour', 'number' => 'MC05','hmis_category_id' => '10092'],
|
||||
['id' => '328','name' => 'Haemorrhage related to pregnancy (APH or PPH)', 'number' => 'MC06','hmis_category_id' => '10092'],
|
||||
['id' => '329','name' => 'Sepsis related to pregnancy e.g. puerperal sepsis, abortion sepsis etc', 'number' => 'MC07','hmis_category_id' => '10092'],
|
||||
['id' => '330','name' => 'Obstetric Fistula', 'number' => 'MC08','hmis_category_id' => '10092'],
|
||||
['id' => '331','name' => 'Number of women diagnosed with fistula and treated by catheter', 'number' => 'MC09','hmis_category_id' => '10092'],
|
||||
['id' => '332','name' => 'Number of fistulas closed and dry at discharge', 'number' => 'MC10','hmis_category_id' => '10092'],
|
||||
['id' => '333','name' => 'Number of Women repaired for Fistula who receive a modern contraceptive Method', 'number' => 'MC11','hmis_category_id' => '10092'],
|
||||
['id' => '334','name' => 'Other Complications of pregnancy', 'number' => 'MC12','hmis_category_id' => '10092'],
|
||||
['id' => '335','name' => 'Cancer of the cervix(newly diagnosed cases)', 'number' => 'GC01','hmis_category_id' => '10093'],
|
||||
['id' => '336','name' => 'Cancer of the cervix (re-attendance)', 'number' => 'GC02','hmis_category_id' => '10093'],
|
||||
['id' => '337','name' => 'Cancer of the breast', 'number' => 'GC03','hmis_category_id' => '10093'],
|
||||
['id' => '338','name' => 'Tubal Ovarian mass/cancer', 'number' => 'GC04','hmis_category_id' => '10093'],
|
||||
['id' => '339','name' => 'Pelvic Inflammatory Disease (PID)', 'number' => 'GC05','hmis_category_id' => '10093'],
|
||||
['id' => '340','name' => 'Uterine Fibroids', 'number' => 'GC06','hmis_category_id' => '10093'],
|
||||
['id' => '341','name' => 'Other Gynaecological conditions', 'number' => 'GC07','hmis_category_id' => '10093'],
|
||||
['id' => '342','name' => 'Haematological Diseases', 'number' => 'NC01','hmis_category_id' => '10094'],
|
||||
['id' => '343','name' => 'Anaemia', 'number' => 'NC02','hmis_category_id' => '10094'],
|
||||
['id' => '344','name' => 'Sickle cell disease', 'number' => 'NC03','hmis_category_id' => '10094'],
|
||||
['id' => '345','name' => 'Deep Vein Thrombosis', 'number' => 'NC04','hmis_category_id' => '10094'],
|
||||
['id' => '346','name' => 'Lymphoma', 'number' => 'NC05','hmis_category_id' => '10094'],
|
||||
['id' => '347','name' => 'Multiple Myeloma', 'number' => 'NC06','hmis_category_id' => '10094'],
|
||||
['id' => '348','name' => 'Pain Requiring Palliative Care', 'number' => 'NC07','hmis_category_id' => '10094'],
|
||||
['id' => '349','name' => 'Liver cirrhosis related to alcohol', 'number' => 'NC08','hmis_category_id' => '10094'],
|
||||
['id' => '350','name' => 'Liver cirrhosis related to other causes', 'number' => 'NC09','hmis_category_id' => '10094'],
|
||||
['id' => '351','name' => 'Total Hysterectomy', 'number' => 'SP05a','hmis_category_id' => '0','parent_option'=>'5'],
|
||||
['id' => '352','name' => 'Sub-Total Hysterectomy', 'number' => 'SP05b','hmis_category_id' => '0','parent_option'=>'5'],
|
||||
['id' => '353','name' => 'Total', 'number' => 'EP01a','hmis_category_id' => '0','parent_option'=>'161'],
|
||||
['id' => '354','name' => 'Confirmed (Microscopic & RDT)', 'number' => 'EP01b','hmis_category_id' => '0','parent_option'=>'161'],
|
||||
['id' => '355','name' => 'Serious', 'number' => 'HF06a','hmis_category_id' => '0','parent_option'=>'176'],
|
||||
['id' => '356','name' => 'Non - Serious', 'number' => 'HF06b','hmis_category_id' => '0','parent_option'=>'176'],
|
||||
['id' => '357','name' => 'Newly diagnosed cases', 'number' => 'EM01a','hmis_category_id' => '0','parent_option'=>'282'],
|
||||
['id' => '358','name' => 'Re-attendances', 'number' => 'EM01b','hmis_category_id' => '0','parent_option'=>'282'],
|
||||
['id' => '359','name' => 'Motor Vehicle', 'number' => 'IN01a','hmis_category_id' => '0','parent_option'=>'285'],
|
||||
['id' => '360','name' => 'Motor Cycle', 'number' => 'IN01b','hmis_category_id' => '0','parent_option'=>'285'],
|
||||
['id' => '361','name' => 'Bicycles', 'number' => 'IN01c','hmis_category_id' => '0','parent_option'=>'285'],
|
||||
['id' => '362','name' => 'Others', 'number' => 'IN01d','hmis_category_id' => '0','parent_option'=>'285'],
|
||||
['id' => '363','name' => 'Domestic', 'number' => 'IN04a','hmis_category_id' => '0','parent_option'=>'288'],
|
||||
['id' => '364','name' => 'Wild', 'number' => 'IN04b','hmis_category_id' => '0','parent_option'=>'288'],
|
||||
['id' => '365','name' => 'Insects', 'number' => 'IN04c','hmis_category_id' => '0','parent_option'=>'288'],
|
||||
['id' => '366','name' => 'Totals', 'number' => 'ME06a','hmis_category_id' => '0','parent_option'=>'321'],
|
||||
['id' => '367','name' => 'Given Oxygen', 'number' => 'ME06b','hmis_category_id' => '0','parent_option'=>'321'],
|
||||
['id' => '368','name' => 'Anxiety Disorders', 'number' => 'MH01','hmis_category_id' => '10095'],
|
||||
['id' => '369','name' => 'Unipolar Depressive Disorder', 'number' => 'MH02','hmis_category_id' => '10095'],
|
||||
['id' => '370','name' => 'Bipolar disorder', 'number' => 'MH03','hmis_category_id' => '10095'],
|
||||
['id' => '371','name' => 'Schizophrenia', 'number' => 'MH04','hmis_category_id' => '10095'],
|
||||
['id' => '372','name' => 'Post-Traumatic Stress Disorder', 'number' => 'MH05','hmis_category_id' => '10095'],
|
||||
['id' => '373','name' => 'Epilepsy', 'number' => 'MH06','hmis_category_id' => '10095'],
|
||||
['id' => '374','name' => 'HIV related psychosis', 'number' => 'MH07','hmis_category_id' => '10095'],
|
||||
['id' => '375','name' => "Alzheimer's disease", 'number' => 'MH08','hmis_category_id' => '10095'],
|
||||
['id' => '376','name' => 'HIV related dementia', 'number' => 'MH09','hmis_category_id' => '10095'],
|
||||
['id' => '377','name' => 'Alcohol related Dementia', 'number' => 'MH10','hmis_category_id' => '10095'],
|
||||
['id' => '378','name' => 'Dementia due to Cerebral Vascular Disease (Diabetes, Hypertension)', 'number' => 'MH11','hmis_category_id' => '10095'],
|
||||
['id' => '379','name' => 'Other form of Dementia', 'number' => 'MH12','hmis_category_id' => '10095'],
|
||||
['id' => '380','name' => 'Other Adult Mental Health Conditions', 'number' => 'MH13','hmis_category_id' => '10095'],
|
||||
['id' => '381','name' => 'Internet addiction', 'number' => 'MH14','hmis_category_id' => '10095'],
|
||||
['id' => '382','name' => 'Alcohol Use Disorder', 'number' => 'MH15','hmis_category_id' => '10095'],
|
||||
['id' => '383','name' => 'Substance (Drug) use Disorder', 'number' => 'MH16','hmis_category_id' => '10095'],
|
||||
['id' => '384','name' => 'Delirium', 'number' => 'MH17','hmis_category_id' => '10095'],
|
||||
['id' => '385','name' => 'Intellectual disability', 'number' => 'MH18','hmis_category_id' => '10095'],
|
||||
['id' => '386','name' => 'Autism spectrum disorders', 'number' => 'MH19','hmis_category_id' => '10095'],
|
||||
['id' => '387','name' => 'Child abuse and Neglect', 'number' => 'MH20','hmis_category_id' => '10095'],
|
||||
['id' => '388','name' => 'Attention Deficit Hyperactivity Disorder(ADHD)', 'number' => 'MH21','hmis_category_id' => '10095'],
|
||||
['id' => '389','name' => 'Learning Disability', 'number' => 'MH22','hmis_category_id' => '10095'],
|
||||
['id' => '390','name' => 'Conduct disorders', 'number' => 'MH23','hmis_category_id' => '10095'],
|
||||
['id' => '391','name' => 'Eating disorders (Anorexia, Bulimia, other feeding disorders', 'number' => 'MH24','hmis_category_id' => '10095'],
|
||||
['id' => '392','name' => 'Somatoform disorders', 'number' => 'MH25','hmis_category_id' => '10095'],
|
||||
['id' => '393','name' => 'Sleep Disorders', 'number' => 'MH26','hmis_category_id' => '10095'],
|
||||
['id' => '394','name' => 'Enuresis/Encopresis', 'number' => 'MH27','hmis_category_id' => '10095'],
|
||||
['id' => '395','name' => 'Other Childhood Mental Disorders', 'number' => 'MH28','hmis_category_id' => '10095'],
|
||||
['id' => '396','name' => 'Mental Illness due other Medical/surgical conditions', 'number' => 'MH29','hmis_category_id' => '10095'],
|
||||
['id' => '397','name' => 'Attempted Suicide/Self-harm', 'number' => 'MH30','hmis_category_id' => '10095'],
|
||||
['id' => '398','name' => 'Malaria', 'number' => 'EP01','hmis_category_id' => '10096'],
|
||||
['id' => '399','name' => 'Suspected fever', 'number' => 'EP01a','hmis_category_id' => '0','parent_option'=>'398'],
|
||||
['id' => '400','name' => 'Malaria Total', 'number' => 'EP01b','hmis_category_id' => '0','parent_option'=>'398'],
|
||||
['id' => '401','name' => 'Malaria confirmed (B/s and RDT Positive)', 'number' => 'EP01c','hmis_category_id' => '0','parent_option'=>'398'],
|
||||
['id' => '402','name' => 'Malaria cases treated', 'number' => 'EP01d','hmis_category_id' => '0','parent_option'=>'398'],
|
||||
['id' => '403','name' => 'Acute Flaccid Paralysis', 'number' => 'EP02','hmis_category_id' => '10096'],
|
||||
['id' => '404','name' => 'Animal Bites (suspected rabies)', 'number' => 'EP03','hmis_category_id' => '10096'],
|
||||
['id' => '405','name' => 'Cholera', 'number' => 'EP04','hmis_category_id' => '10096'],
|
||||
['id' => '406','name' => 'Dysentery', 'number' => 'EP05','hmis_category_id' => '10096'],
|
||||
['id' => '407','name' => 'Guinea Worm', 'number' => 'EP06','hmis_category_id' => '10096'],
|
||||
['id' => '408','name' => 'Measles', 'number' => 'EP07','hmis_category_id' => '10096'],
|
||||
['id' => '409','name' => 'Bacterial Meningitis', 'number' => 'EP08','hmis_category_id' => '10096'],
|
||||
['id' => '410','name' => 'Neonatal tetanus', 'number' => 'EP09','hmis_category_id' => '10096'],
|
||||
['id' => '411','name' => 'Plague', 'number' => 'EP10','hmis_category_id' => '10096'],
|
||||
['id' => '412','name' => 'Yellow Fever', 'number' => 'EP11','hmis_category_id' => '10096'],
|
||||
['id' => '412','name' => 'Other Viral Haemorrhagic Fevers', 'number' => 'EP12','hmis_category_id' => '10096'],
|
||||
['id' => '413','name' => 'Severe Acute Respiratory Infection (SARI)', 'number' => 'EP13','hmis_category_id' => '10096'],
|
||||
['id' => '414','name' => 'Adverse Events Following Immunization (AEFI)', 'number' => 'EP14','hmis_category_id' => '10096'],
|
||||
['id' => '415','name' => 'Serious', 'number' => 'EP14a','hmis_category_id' => '0','parent_option'=>'414'],
|
||||
['id' => '416','name' => 'Non-Serious', 'number' => 'EP14b','hmis_category_id' => '0','parent_option'=>'414'],
|
||||
['id' => '417','name' => 'Typhoid Fever', 'number' => 'EP15','hmis_category_id' => '10096'],
|
||||
['id' => '418','name' => 'Presumptive MDR TB cases', 'number' => 'EP16','hmis_category_id' => '10096'],
|
||||
['id' => '419','name' => 'Other Emerging infectious Diseases e.g. Influenza like illness (ILI), SARS', 'number' => 'EP17','hmis_category_id' => '10096'],
|
||||
['id' => '420','name' => 'Diarrhoea - Acute', 'number' => 'CD01','hmis_category_id' => '10097'],
|
||||
['id' => '421','name' => 'Diarrhoea - Persistent', 'number' => 'CD02','hmis_category_id' => '10097'],
|
||||
['id' => '422','name' => 'Urethral discharges', 'number' => 'CD03','hmis_category_id' => '10097'],
|
||||
['id' => '423','name' => 'Genital ulcers', 'number' => 'CD04','hmis_category_id' => '10097'],
|
||||
['id' => '424','name' => 'Sexually Transmitted Infection due to Sexual Gender Based Violence', 'number' => 'CD05','hmis_category_id' => '10097'],
|
||||
['id' => '425','name' => 'Other Sexually Transmitted Infections', 'number' => 'CD06','hmis_category_id' => '10097'],
|
||||
['id' => '426','name' => 'Urinary Tract Infections (UTI)', 'number' => 'CD07','hmis_category_id' => '10097'],
|
||||
['id' => '427','name' => 'Intestinal Worms', 'number' => 'CD08','hmis_category_id' => '10097'],
|
||||
['id' => '428','name' => 'Haematological Meningitis', 'number' => 'CD09','hmis_category_id' => '10097'],
|
||||
['id' => '429','name' => 'Other types of meningitis', 'number' => 'CD10','hmis_category_id' => '10097'],
|
||||
['id' => '430','name' => 'Cough or cold - No pneumonia', 'number' => 'CD11','hmis_category_id' => '10097'],
|
||||
['id' => '431','name' => 'Pneumonia', 'number' => 'CD12','hmis_category_id' => '10097'],
|
||||
['id' => '432','name' => 'Severe Pneumonia', 'number' => 'CD13','hmis_category_id' => '10097'],
|
||||
['id' => '433','name' => 'Skin Diseases', 'number' => 'CD14','hmis_category_id' => '10097'],
|
||||
['id' => '434','name' => 'Tetanus (over 28 days)', 'number' => 'CD15','hmis_category_id' => '10097'],
|
||||
['id' => '434','name' => 'Sleeping sickness', 'number' => 'CD16','hmis_category_id' => '10097'],
|
||||
['id' => '435','name' => 'Pelvic Inflammatory Disease (PID)', 'number' => 'CD17','hmis_category_id' => '10097'],
|
||||
['id' => '436','name' => 'Brucellosis', 'number' => 'CD18','hmis_category_id' => '10097'],
|
||||
['id' => '437','name' => 'Neonatal Sepsis (0-7days)', 'number' => 'ND01','hmis_category_id' => '10098'],
|
||||
['id' => '438','name' => 'Neonatal Sepsis (8-28days)', 'number' => 'ND02','hmis_category_id' => '10098'],
|
||||
['id' => '439','name' => 'Neonatal Pneumonia (0-7days)', 'number' => 'ND03','hmis_category_id' => '10098'],
|
||||
['id' => '440','name' => 'Neonatal Pneumonia(8-28days)', 'number' => 'ND04','hmis_category_id' => '10098'],
|
||||
['id' => '441','name' => 'Neonatal Meningitis', 'number' => 'ND05','hmis_category_id' => '10098'],
|
||||
['id' => '442','name' => 'Neonatal Jaundice', 'number' => 'ND06','hmis_category_id' => '10098'],
|
||||
['id' => '443','name' => 'Premature baby (as a Condition for management)', 'number' => 'ND07','hmis_category_id' => '10098'],
|
||||
['id' => '445','name' => 'Other Neonatal Conditions', 'number' => 'ND08','hmis_category_id' => '10098'],
|
||||
['id' => '446','name' => 'Sickle Cell Anaemia', 'number' => 'NC01','hmis_category_id' => '10099'],
|
||||
['id' => '447','name' => 'Other types of Anaemia', 'number' => 'NC02','hmis_category_id' => '10099'],
|
||||
['id' => '448','name' => 'Gastro-Intestinal Disorders (non-Infective)', 'number' => 'NC03','hmis_category_id' => '10099'],
|
||||
['id' => '449','name' => 'Pain Requiring Palliative Care', 'number' => 'NC04','hmis_category_id' => '10099'],
|
||||
['id' => '450','name' => 'Dental Caries', 'number' => 'OD01','hmis_category_id' => '10100'],
|
||||
['id' => '451','name' => 'Gingivitis', 'number' => 'OD02','hmis_category_id' => '10100'],
|
||||
['id' => '452','name' => 'HIV-Oral lesions', 'number' => 'OD03','hmis_category_id' => '10100'],
|
||||
['id' => '453','name' => 'Oral Cancers', 'number' => 'OD04','hmis_category_id' => '10100'],
|
||||
['id' => '454','name' => 'Other Oral Conditions', 'number' => 'OD05','hmis_category_id' => '10100'],
|
||||
['id' => '455','name' => 'Otitis media acute and chronic', 'number' => 'EN01','hmis_category_id' => '10101'],
|
||||
['id' => '456','name' => 'Mastoiditis', 'number' => 'EN02','hmis_category_id' => '10101'],
|
||||
['id' => '457','name' => 'Hearing loss', 'number' => 'EN03','hmis_category_id' => '10101'],
|
||||
['id' => '458','name' => 'Rhinitis', 'number' => 'EN04','hmis_category_id' => '10101'],
|
||||
['id' => '459','name' => 'Sinusitis', 'number' => 'EN05','hmis_category_id' => '10101'],
|
||||
['id' => '460','name' => 'Epixtasis', 'number' => 'EN06','hmis_category_id' => '10101'],
|
||||
['id' => '461','name' => 'Adenoid Hypertrophy', 'number' => 'EN07','hmis_category_id' => '10101'],
|
||||
['id' => '462','name' => 'Foreign Body in nose ear and aero- digestive system', 'number' => 'EN08','hmis_category_id' => '10101'],
|
||||
['id' => '463','name' => 'Infected pre -auricular sinuses and abscess', 'number' => 'EN09','hmis_category_id' => '10101'],
|
||||
['id' => '464','name' => 'Otitis external', 'number' => 'EN10','hmis_category_id' => '10101'],
|
||||
['id' => '465','name' => 'Mastoid abscess', 'number' => 'EN11','hmis_category_id' => '10101'],
|
||||
['id' => '466','name' => 'Vertigo', 'number' => 'EN12','hmis_category_id' => '10101'],
|
||||
['id' => '467','name' => 'Tonsillitis', 'number' => 'EN13','hmis_category_id' => '10101'],
|
||||
['id' => '468','name' => 'Tonsillar hypertrophy', 'number' => 'EN14','hmis_category_id' => '10101'],
|
||||
['id' => '469','name' => 'Tinnitus', 'number' => 'EN15','hmis_category_id' => '10101'],
|
||||
['id' => '470','name' => 'Head and neck cancers', 'number' => 'EN16','hmis_category_id' => '10101'],
|
||||
['id' => '471','name' => 'Other ENT conditions', 'number' => 'EN17','hmis_category_id' => '10101'],
|
||||
['id' => '472','name' => 'Allergic conjunctivitis', 'number' => 'EC01','hmis_category_id' => '10102'],
|
||||
['id' => '473','name' => 'Bacterial Conjunctivitis', 'number' => 'EC02','hmis_category_id' => '10102'],
|
||||
['id' => '474','name' => 'Ophthalmia neonatorum', 'number' => 'EC03','hmis_category_id' => '10102'],
|
||||
['id' => '475','name' => 'Other Forms of Conjunctivitis', 'number' => 'EC04','hmis_category_id' => '10102'],
|
||||
['id' => '476','name' => 'Corneal Ulcers/ Keratitis', 'number' => 'EC05','hmis_category_id' => '10102'],
|
||||
['id' => '477','name' => 'Un Operable Cataract (>6/60)', 'number' => 'EC06','hmis_category_id' => '10102'],
|
||||
['id' => '478','name' => 'Operable Cataract (< 6/60)', 'number' => 'EC07','hmis_category_id' => '10102'],
|
||||
['id' => '479','name' => 'Refractive errors', 'number' => 'EC08','hmis_category_id' => '10102'],
|
||||
['id' => '480','name' => 'Glaucoma', 'number' => 'EC09','hmis_category_id' => '10102'],
|
||||
['id' => '481','name' => 'Trachoma', 'number' => 'EC10','hmis_category_id' => '10102'],
|
||||
['id' => '482','name' => 'Vitamin A Deficiency', 'number' => 'EC11','hmis_category_id' => '10102'],
|
||||
['id' => '483','name' => 'Ocular trauma and Burns', 'number' => 'EC12','hmis_category_id' => '10102'],
|
||||
['id' => '484','name' => 'Diabetic Retinopathy (All stages)', 'number' => 'EC13','hmis_category_id' => '10102'],
|
||||
['id' => '485','name' => 'Chorioretinal, Macular & Vitreous Disorders', 'number' => 'EC14','hmis_category_id' => '10102'],
|
||||
['id' => '486','name' => 'Uveitis', 'number' => 'EC15','hmis_category_id' => '10102'],
|
||||
['id' => '487','name' => 'Endophthalmitis', 'number' => 'EC16','hmis_category_id' => '10102'],
|
||||
['id' => '488','name' => 'Corneal scars (Non trachomatous)', 'number' => 'EC17','hmis_category_id' => '10102'],
|
||||
['id' => '489','name' => 'Tumours', 'number' => 'EC18','hmis_category_id' => '10102'],
|
||||
['id' => '490','name' => 'Strabismus ( All types)', 'number' => 'EC19','hmis_category_id' => '10102'],
|
||||
['id' => '491','name' => 'Ptosis and other lid Disorders', 'number' => 'EC20','hmis_category_id' => '10102'],
|
||||
['id' => '492','name' => 'Squamous Cell Carcinoma of Conjunctiva', 'number' => 'EC21','hmis_category_id' => '10102'],
|
||||
['id' => '494','name' => 'Retinoblastoma', 'number' => 'EC22','hmis_category_id' => '10102'],
|
||||
['id' => '495','name' => 'Other Malignant Tumours', 'number' => 'EC23','hmis_category_id' => '10102'],
|
||||
['id' => '496','name' => 'Other Benign Tumours/Growths', 'number' => 'EC24','hmis_category_id' => '10102'],
|
||||
['id' => '497','name' => 'Other Eye Disorders', 'number' => 'EC25','hmis_category_id' => '10102'],
|
||||
['id' => '498','name' => 'Blindness', 'number' => 'EC26','hmis_category_id' => '10102'],
|
||||
['id' => '499','name' => 'Other eye conditions', 'number' => 'EC27','hmis_category_id' => '10102'],
|
||||
['id' => '500','name' => 'Spectacles Dispensed', 'number' => 'EC28','hmis_category_id' => '10102'],
|
||||
['id' => '501','name' => 'Anxiety Disorders', 'number' => 'MH01','hmis_category_id' => '10103'],
|
||||
['id' => '502','name' => 'Anxiety Disorders due to gender based violence', 'number' => 'MH02','hmis_category_id' => '10103'],
|
||||
['id' => '503','name' => 'Unipolar Depressive Disorder', 'number' => 'MH03','hmis_category_id' => '10103'],
|
||||
['id' => '504','name' => 'Bipolar disorder', 'number' => 'MH04','hmis_category_id' => '10103'],
|
||||
['id' => '505','name' => 'Schizophrenia', 'number' => 'MH05','hmis_category_id' => '10103'],
|
||||
['id' => '506','name' => 'Post -Traumatic Stress Disorder', 'number' => 'MH06','hmis_category_id' => '10103'],
|
||||
['id' => '507','name' => 'Epilepsy', 'number' => 'MH07','hmis_category_id' => '10103'],
|
||||
['id' => '508','name' => 'HIV related psychosis', 'number' => 'MH08','hmis_category_id' => '10103'],
|
||||
['id' => '509','name' => "Alzheimer's disease", 'number' => 'MH09','hmis_category_id' => '10103'],
|
||||
['id' => '510','name' => 'HIV related dementia', 'number' => 'MH10','hmis_category_id' => '10103'],
|
||||
['id' => '511','name' => 'Alcohol related Dementia', 'number' => 'MH11','hmis_category_id' => '10103'],
|
||||
['id' => '512','name' => 'Dementia due to stroke (Diabetes, Hypertension)', 'number' => 'MH12','hmis_category_id' => '10103'],
|
||||
['id' => '513','name' => 'Other form of Dementia', 'number' => 'MH13','hmis_category_id' => '10103'],
|
||||
['id' => '514','name' => 'Other Adult Mental Health Conditions', 'number' => 'MH14','hmis_category_id' => '10103'],
|
||||
['id' => '515','name' => 'Internet addiction', 'number' => 'MH15','hmis_category_id' => '10103'],
|
||||
['id' => '516','name' => 'Alcohol Use Disorder', 'number' => 'MH16','hmis_category_id' => '10103'],
|
||||
['id' => '517','name' => 'Substance (Drug) use Disorder', 'number' => 'MH17','hmis_category_id' => '10103'],
|
||||
['id' => '518','name' => 'Delirium', 'number' => 'MH18','hmis_category_id' => '10103'],
|
||||
['id' => '519','name' => 'Intellectual disability', 'number' => 'MH19','hmis_category_id' => '10103'],
|
||||
['id' => '520','name' => 'Autism spectrum disorders', 'number' => 'MH20','hmis_category_id' => '10103'],
|
||||
['id' => '521','name' => 'Aphasia or Loss of Language due to Stroke', 'number' => 'NE01','hmis_category_id' => '10104'],
|
||||
['id' => '522','name' => 'Dysarthria or Speech Disorder due to Stroke', 'number' => 'NE02','hmis_category_id' => '10104'],
|
||||
['id' => '523','name' => "Parkinson's disease", 'number' => 'NE03','hmis_category_id' => '10104'],
|
||||
['id' => '524','name' => 'Dementia or excessive forgetfulness due to advanced age', 'number' => 'NE04','hmis_category_id' => '10104'],
|
||||
['id' => '525','name' => 'Amyotrophic Lateral Sclerosis(ALS)', 'number' => 'NE05','hmis_category_id' => '10104'],
|
||||
['id' => '526','name' => 'Speech disorders due to Head Injuries(penetrating or closed)', 'number' => 'NE06','hmis_category_id' => '10104'],
|
||||
['id' => '527','name' => 'Persons in Coma / Emergency Care', 'number' => 'NE07','hmis_category_id' => '10104'],
|
||||
['id' => '528','name' => 'Alzheimer Disease', 'number' => 'NE08','hmis_category_id' => '10104'],
|
||||
['id' => '529','name' => 'Down Syndrome (DS)', 'number' => 'NE09','hmis_category_id' => '10104'],
|
||||
['id' => '530','name' => 'CP / PMLD', 'number' => 'NE10','hmis_category_id' => '10104'],
|
||||
['id' => '531','name' => 'Child abuse and Neglect', 'number' => 'NE11','hmis_category_id' => '10104'],
|
||||
['id' => '532','name' => 'Attention Deficit Hyperactivity disorder (ADHD)', 'number' => 'NE12','hmis_category_id' => '10104'],
|
||||
['id' => '533','name' => 'Learning Disability', 'number' => 'NE13','hmis_category_id' => '10104'],
|
||||
['id' => '534','name' => 'Conduct disorders', 'number' => 'NE14','hmis_category_id' => '10104'],
|
||||
['id' => '535','name' => 'Eating disorders (anorexia, Bulimia, other feeding)', 'number' => 'NE15','hmis_category_id' => '10104'],
|
||||
['id' => '536','name' => 'Somatoform disorders', 'number' => 'NE16','hmis_category_id' => '10104'],
|
||||
['id' => '537','name' => 'Sleeping Disorders', 'number' => 'NE17','hmis_category_id' => '10104'],
|
||||
['id' => '538','name' => 'Enuresis / Encopresis', 'number' => 'NE18','hmis_category_id' => '10104'],
|
||||
['id' => '539','name' => 'Other Childhood Mental Disorders', 'number' => 'NE19','hmis_category_id' => '10104'],
|
||||
['id' => '540','name' => 'Mental illness due other Medical/surgical conditions', 'number' => 'NE20','hmis_category_id' => '10104'],
|
||||
['id' => '541','name' => 'Attempted Suicide/Self-harm', 'number' => 'NE21','hmis_category_id' => '10104'],
|
||||
['id' => '542','name' => 'Asthma', 'number' => 'CR01','hmis_category_id' => '10105'],
|
||||
['id' => '543','name' => 'Chronic Obstructive Pulmonary Disease (COPD)', 'number' => 'CR02','hmis_category_id' => '10105'],
|
||||
['id' => '544','name' => 'Cervical Cancer', 'number' => 'CA01','hmis_category_id' => '10106'],
|
||||
['id' => '545','name' => 'Prostate Cancer', 'number' => 'CA02','hmis_category_id' => '10106'],
|
||||
['id' => '546','name' => 'Breast Cancer', 'number' => 'CA03','hmis_category_id' => '10106'],
|
||||
['id' => '547','name' => 'Lung Cancer', 'number' => 'CA04','hmis_category_id' => '10106'],
|
||||
['id' => '548','name' => 'Liver Cancer', 'number' => 'CA05','hmis_category_id' => '10106'],
|
||||
['id' => '549','name' => 'Colon Cancer', 'number' => 'CA06','hmis_category_id' => '10106'],
|
||||
['id' => '550','name' => 'Kaposis Sarcoma', 'number' => 'CA07','hmis_category_id' => '10106'],
|
||||
['id' => '551','name' => 'Other Cancers', 'number' => 'CA08','hmis_category_id' => '10106'],
|
||||
['id' => '552','name' => 'Muscular disorders', 'number' => 'PT01','hmis_category_id' => '10107'],
|
||||
['id' => '553','name' => 'Joint dysfunction', 'number' => 'PT02','hmis_category_id' => '10107'],
|
||||
['id' => '554','name' => 'Soft tissue injuries', 'number' => 'PT03','hmis_category_id' => '10107'],
|
||||
['id' => '555','name' => 'Chronic respiratory diseases', 'number' => 'PT04','hmis_category_id' => '10107'],
|
||||
['id' => '556','name' => 'Chest trauma / Injury', 'number' => 'PT05','hmis_category_id' => '10107'],
|
||||
['id' => '557','name' => 'Paralysis due to spinal cord injury and other diseases', 'number' => 'PT06','hmis_category_id' => '10107'],
|
||||
['id' => '558','name' => 'Cerebral Palsy/Delayed motor or sensory developmental milestones(CP)', 'number' => 'PT07','hmis_category_id' => '10107'],
|
||||
['id' => '559','name' => 'Upper Motor Neuron lesions (UMN)', 'number' => 'PT08','hmis_category_id' => '10107'],
|
||||
['id' => '560','name' => 'Facial palsy', 'number' => 'PT09','hmis_category_id' => '10107'],
|
||||
['id' => '561','name' => 'Lower motor neuron lesions (LMN)', 'number' => 'PT10','hmis_category_id' => '10107'],
|
||||
['id' => '562','name' => 'Gynaecological, obstetric and urogenital conditions', 'number' => 'PT11','hmis_category_id' => '10107'],
|
||||
['id' => '563','name' => 'Amputee', 'number' => 'PT12','hmis_category_id' => '10107'],
|
||||
['id' => '564','name' => 'Altered Posture and gait', 'number' => 'PT13','hmis_category_id' => '10107'],
|
||||
['id' => '565','name' => 'Injection neuritis/Acute flaccid paralysis', 'number' => 'PT14','hmis_category_id' => '10107'],
|
||||
['id' => '566','name' => 'Congenital abnormalities', 'number' => 'PT15','hmis_category_id' => '10107'],
|
||||
['id' => '567','name' => 'Spine disorders e.g neck, thoracic, lumber, coccygeal pains', 'number' => 'PT16','hmis_category_id' => '10107'],
|
||||
['id' => '568','name' => 'Lymph oedema', 'number' => 'PT17','hmis_category_id' => '10107'],
|
||||
['id' => '569','name' => 'Patients prescribed with assistive devices', 'number' => 'PT18','hmis_category_id' => '10107'],
|
||||
['id' => '570','name' => 'Others', 'number' => 'PT19','hmis_category_id' => '10107'],
|
||||
['id' => '571','name' => 'Neuro-developmental Disorders', 'number' => 'OT01','hmis_category_id' => '10108'],
|
||||
['id' => '572','name' => 'Sensory Integration disorders', 'number' => 'OT02','hmis_category_id' => '10108'],
|
||||
['id' => '573','name' => 'Adult Neurological Disorders', 'number' => 'OT03','hmis_category_id' => '10108'],
|
||||
['id' => '574','name' => 'Burn injuries', 'number' => 'OT04','hmis_category_id' => '10108'],
|
||||
['id' => '575','name' => 'Post-burns contractures', 'number' => 'OT05','hmis_category_id' => '10108'],
|
||||
['id' => '576','name' => 'Orthopaedic Conditions', 'number' => 'OT06','hmis_category_id' => '10108'],
|
||||
['id' => '577','name' => 'Mental Health Conditions', 'number' => 'OT07','hmis_category_id' => '10108'],
|
||||
['id' => '578','name' => 'Birth Defects and Trauma', 'number' => 'OT08','hmis_category_id' => '10108'],
|
||||
['id' => '579','name' => 'Arthrogryposis', 'number' => 'OT09','hmis_category_id' => '10108'],
|
||||
['id' => '580','name' => 'HIV / AIDS', 'number' => 'OT10','hmis_category_id' => '10108'],
|
||||
['id' => '581','name' => 'Diabetes', 'number' => 'OT11','hmis_category_id' => '10108'],
|
||||
['id' => '582','name' => 'Cancer', 'number' => 'OT12','hmis_category_id' => '10108'],
|
||||
['id' => '583','name' => 'Other chronic conditions', 'number' => 'OT13','hmis_category_id' => '10108'],
|
||||
['id' => '584','name' => 'Cardiac Conditions', 'number' => 'OT14','hmis_category_id' => '10108'],
|
||||
['id' => '585','name' => 'Patients prescribed with assistive devices', 'number' => 'OT15','hmis_category_id' => '10108'],
|
||||
['id' => '586','name' => 'Speech and language delay/disorder', 'number' => 'SL01','hmis_category_id' => '10109'],
|
||||
['id' => '587','name' => 'Motor speech disorders', 'number' => 'SL02','hmis_category_id' => '10109'],
|
||||
['id' => '588','name' => 'Hearing impairments', 'number' => 'SL03','hmis_category_id' => '10109'],
|
||||
['id' => '589','name' => 'Voice disorders', 'number' => 'SL04','hmis_category_id' => '10109'],
|
||||
['id' => '590','name' => 'Dysfluency / stammering', 'number' => 'SL05','hmis_category_id' => '10109'],
|
||||
['id' => '591','name' => 'Acquired neurological disorders', 'number' => 'SL06','hmis_category_id' => '10109'],
|
||||
['id' => '592','name' => 'Cleft lip and palate', 'number' => 'SL07','hmis_category_id' => '10109'],
|
||||
['id' => '593','name' => 'Others', 'number' => 'SL08','hmis_category_id' => '10109'],
|
||||
['id' => '594','name' => 'Individuals with Difficulty in seeing', 'number' => 'DS01','hmis_category_id' => '10110'],
|
||||
['id' => '595','name' => 'Individuals with Albinism', 'number' => 'DS02','hmis_category_id' => '10110'],
|
||||
['id' => '596','name' => 'Individuals with Difficulty in hearing', 'number' => 'DS03','hmis_category_id' => '10110'],
|
||||
['id' => '597','name' => 'Individuals with Speech Difficulties', 'number' => 'DS04','hmis_category_id' => '10110'],
|
||||
['id' => '598','name' => 'Individuals with delayed age specific motor development', 'number' => 'DS05','hmis_category_id' => '10110'],
|
||||
['id' => '599','name' => 'Individuals with Dwarfism', 'number' => 'DS06','hmis_category_id' => '10110'],
|
||||
['id' => '600','name' => 'Individuals with Difficulty understanding', 'number' => 'DS07','hmis_category_id' => '10110'],
|
||||
['id' => '601','name' => 'Individuals with Difficulty in remembering', 'number' => 'DS08','hmis_category_id' => '10110'],
|
||||
['id' => '602','name' => 'Individuals with Difficulty in reading', 'number' => 'DS09','hmis_category_id' => '10110'],
|
||||
['id' => '603','name' => 'Individuals with Difficulty in writing', 'number' => 'DS10','hmis_category_id' => '10110'],
|
||||
['id' => '604','name' => 'Individuals with Difficulty in self-care', 'number' => 'DS11','hmis_category_id' => '10110'],
|
||||
['id' => '605','name' => 'Individuals with Mentally impairment', 'number' => 'DS12','hmis_category_id' => '10110'],
|
||||
['id' => '606','name' => 'Individuals with Emotionally impairment', 'number' => 'DS13','hmis_category_id' => '10110'],
|
||||
['id' => '607','name' => 'Stroke/ Cardiovascular Accident(CVA)', 'number' => 'CV01','hmis_category_id' => '10111'],
|
||||
['id' => '608','name' => 'Hypertension', 'number' => 'CV02','hmis_category_id' => '10111'],
|
||||
['id' => '609','name' => 'Heart failure', 'number' => 'CV03','hmis_category_id' => '10111'],
|
||||
['id' => '610','name' => 'Ischemic Heart Diseases', 'number' => 'CV04','hmis_category_id' => '10111'],
|
||||
['id' => '611','name' => 'Rheumatic Heart Diseases', 'number' => 'CV05','hmis_category_id' => '10111'],
|
||||
['id' => '612','name' => 'Chronic Heart Diseases', 'number' => 'CV06','hmis_category_id' => '10111'],
|
||||
['id' => '613','name' => 'Other Cardiovascular Diseases', 'number' => 'CV07','hmis_category_id' => '10111'],
|
||||
['id' => '614','name' => 'Diabetes mellitus', 'number' => 'EM01','hmis_category_id' => '10112'],
|
||||
['id' => '615','name' => 'Thyroid Disease', 'number' => 'EM02','hmis_category_id' => '10112'],
|
||||
['id' => '616','name' => 'Other Endocrine and Metabolic Diseases', 'number' => 'EM03','hmis_category_id' => '10112'],
|
||||
['id' => '617','name' => 'Jaw injuries', 'number' => 'IN01','hmis_category_id' => '10113'],
|
||||
['id' => '618','name' => 'Road Traffic Injuries', 'number' => 'IN02','hmis_category_id' => '10113'],
|
||||
['id' => '619','name' => 'Motor Vehicle', 'number' => 'IN02a','hmis_category_id' => '0','parent_option'=>'618'],
|
||||
['id' => '620','name' => 'Motor Cycle', 'number' => 'IN02b','hmis_category_id' => '0','parent_option'=>'618'],
|
||||
['id' => '621','name' => 'Bicycles', 'number' => 'IN02c','hmis_category_id' => '0','parent_option'=>'618'],
|
||||
['id' => '622','name' => 'Others', 'number' => 'IN02d','hmis_category_id' => '0','parent_option'=>'618'],
|
||||
['id' => '623','name' => 'Injuries due to Gender based violence', 'number' => 'IN03','hmis_category_id' => '10113'],
|
||||
['id' => '624','name' => 'Injuries (Trauma due to other causes)', 'number' => 'IN04','hmis_category_id' => '10113'],
|
||||
['id' => '625','name' => 'Animal bites', 'number' => 'IN05','hmis_category_id' => '10113'],
|
||||
['id' => '626','name' => 'Domestic', 'number' => 'IN05a','hmis_category_id' => '0','parent_option'=>'625'],
|
||||
['id' => '627','name' => 'Wild', 'number' => 'IN05b','hmis_category_id' => '0','parent_option'=>'625'],
|
||||
['id' => '628','name' => 'Snake bites', 'number' => 'IN06','hmis_category_id' => '10113'],
|
||||
['id' => '629','name' => 'Insect bites', 'number' => 'IN07','hmis_category_id' => '10113'],
|
||||
['id' => '630','name' => 'Tooth extractions', 'number' => 'MN01','hmis_category_id' => '10114'],
|
||||
['id' => '631','name' => 'Dental Fillings', 'number' => 'MN02','hmis_category_id' => '10114'],
|
||||
['id' => '632','name' => 'Other Minor Operations', 'number' => 'MN03','hmis_category_id' => '10114'],
|
||||
['id' => '633','name' => 'Leishmaniasis', 'number' => 'NT01','hmis_category_id' => '10115'],
|
||||
['id' => '634','name' => 'Lymphatic Filariasis (hydrocele)', 'number' => 'NT02','hmis_category_id' => '10115'],
|
||||
['id' => '635','name' => 'Lymphatic Filariasis(Lympoedema)', 'number' => 'NT03','hmis_category_id' => '10115'],
|
||||
['id' => '636','name' => 'Urinary Schistosomiasis', 'number' => 'NT04','hmis_category_id' => '10115'],
|
||||
['id' => '637','name' => 'Intestinal Schistosomiasis', 'number' => 'NT05','hmis_category_id' => '10115'],
|
||||
['id' => '638','name' => 'Onchocerciasis', 'number' => 'NT06','hmis_category_id' => '10115'],
|
||||
['id' => '639','name' => 'Abortions due to Gender-Based Violence (GBV)', 'number' => 'MC01','hmis_category_id' => '10116'],
|
||||
['id' => '640','name' => 'Abortions due to other causes', 'number' => 'MC02','hmis_category_id' => '10116'],
|
||||
['id' => '641','name' => 'Number of Post Abortion women who received FP', 'number' => 'MC03','hmis_category_id' => '10116'],
|
||||
['id' => '642','name' => 'Malaria in pregnancy', 'number' => 'MC04','hmis_category_id' => '10116'],
|
||||
['id' => '643','name' => 'High blood pressure in pregnancy', 'number' => 'MC05','hmis_category_id' => '10116'],
|
||||
['id' => '644','name' => 'Obstructed labour', 'number' => 'MC06','hmis_category_id' => '10116'],
|
||||
['id' => '645','name' => 'Puerperal sepsis', 'number' => 'MC07','hmis_category_id' => '10116'],
|
||||
['id' => '646','name' => 'Haemorrhage related to pregnancy (APH)', 'number' => 'MC08','hmis_category_id' => '10116'],
|
||||
['id' => '647','name' => 'Haemorrhage related to pregnancy (PPH)', 'number' => 'MC09','hmis_category_id' => '10116'],
|
||||
['id' => '648','name' => 'Breast cancer', 'number' => 'MC10','hmis_category_id' => '10116'],
|
||||
['id' => '649','name' => 'Total Screened', 'number' => 'MC10a','hmis_category_id' => '0','parent_option'=>'648'],
|
||||
['id' => '650','name' => 'Number with breast cancer', 'number' => 'MC10b','hmis_category_id' => '0','parent_option'=>'648'],
|
||||
['id' => '651','name' => 'Cervical cancer', 'number' => 'MC11','hmis_category_id' => '10116'],
|
||||
['id' => '652','name' => 'Total Screened', 'number' => 'MC11a','hmis_category_id' => '0','parent_option'=>'651'],
|
||||
['id' => '653','name' => 'Number with cervical cancer', 'number' => 'MC11b','hmis_category_id' => '0','parent_option'=>'651'],
|
||||
['id' => '654','name' => 'All others', 'number' => 'OP01','hmis_category_id' => '10117'],
|
||||
['id' => '655','name' => 'Other diagnoses (specify priority diseases for District)', 'number' => 'OP02','hmis_category_id' => '10117'],
|
||||
['id' => '656','name' => 'Deaths in OPD', 'number' => 'OP03','hmis_category_id' => '10117'],
|
||||
['id' => '657','name' => 'Number of emergency cases at the facility', 'number' => 'ES01','hmis_category_id' => '10119'],
|
||||
['id' => '658','name' => 'Patients that receive care at the scene of emergency', 'number' => 'ES02','hmis_category_id' => '10119'],
|
||||
['id' => '659','name' => 'Emergency cases that arrive at the facility using an Ambulance', 'number' => 'ES03','hmis_category_id' => '10119'],
|
||||
['id' => '660','name' => 'Number of patients assessed for level of consciousness using GCS/ other comma score', 'number' => 'ES04','hmis_category_id' => '10119'],
|
||||
['id' => '661','name' => 'Number of patients accessing care within 1hr in an emergency unit', 'number' => 'ES05','hmis_category_id' => '10119'],
|
||||
['id' => '662','name' => 'Number of patients who develop complications within 24 hours after management/care', 'number' => 'ES06','hmis_category_id' => '10119'],
|
||||
['id' => '663','name' => 'Number of patients with hypoxemia administered with oxygen', 'number' => 'ES07','hmis_category_id' => '10119'],
|
||||
['id' => '664','name' => 'Number of patients with external haemorrhages controlled', 'number' => 'ES08','hmis_category_id' => '10119'],
|
||||
['id' => '665','name' => 'Number of death at emergency unit', 'number' => 'ES09','hmis_category_id' => '10119'],
|
||||
['id' => '666','name' => 'Medical emergencies', 'number' => 'ES09a','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '667','name' => 'Obstetrics gynaecology emergencies', 'number' => 'ES09b','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '668','name' => 'Paediatric emergencies', 'number' => 'ES09c','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '669','name' => 'Surgical emergencies', 'number' => 'ES09d','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '670','name' => 'Road traffic Injuries', 'number' => 'ES09e','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '671','name' => 'Burns', 'number' => 'ES09f','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '672','name' => 'Poisoning', 'number' => 'ES09g','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '673','name' => 'Total number of Death in Emergency Unit', 'number' => 'ES10','hmis_category_id' => '10119'],
|
||||
['id' => '674','name' => 'Tetanus', 'number' => 'ES11a','hmis_category_id' => '0','parent_option'=>'677'],
|
||||
['id' => '675','name' => 'Rabies', 'number' => 'ES11b','hmis_category_id' => '0','parent_option'=>'677'],
|
||||
['id' => '676','name' => 'Others', 'number' => 'ES11c','hmis_category_id' => '0','parent_option'=>'677'],
|
||||
['id' => '677','name' => 'Number of Patients receiving vaccination for', 'number' => 'ES11','hmis_category_id' => '10119'],
|
||||
['id' => '678','name' => 'Alcohol use ', 'number' => 'RB01','hmis_category_id' => '10118'],
|
||||
['id' => '679','name' => 'Tobacco use', 'number' => 'RB02','hmis_category_id' => '10118'],
|
||||
['id' => '680','name' => 'Tobacco exposure', 'number' => 'RB03','hmis_category_id' => '10118'],
|
||||
);
|
||||
|
||||
foreach ($hmis_category_options as $hmis_category_option) {
|
||||
|
||||
// Prevent re-seeding the same data
|
||||
HmisCategoryOptions::updateOrCreate(['id' => $hmis_category_option['id']],[
|
||||
'id'=>$hmis_category_option['id'],
|
||||
'name' => $hmis_category_option['name'],
|
||||
'number' => $hmis_category_option['number'],
|
||||
'hmis_category_id' => $hmis_category_option['hmis_category_id'],
|
||||
'parent_option' => $hmis_category_option['parent_option'] ?? null,
|
||||
'created_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
Executable
+38
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\HmisCategory;
|
||||
|
||||
class HmisInvestigationCategoriesInpatientTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$categories = [
|
||||
'5.1 X-Ray',
|
||||
'5.2 Fluoroscopy Gastrointestinal tract',
|
||||
'5.3 Water soluble contrast examination',
|
||||
'5.4 Urinary tract',
|
||||
'5.5 Micturating cystourethrography',
|
||||
'5.6 Computed tomography',
|
||||
'5.7 Mammography',
|
||||
'5.8 Magnetic Resonance Imaging (MRI)',
|
||||
'5.9 Ultrasound',
|
||||
'5.10 Intervention procedure Types',
|
||||
'5.11 Imaging modality'
|
||||
];
|
||||
|
||||
foreach ($categories as $category):
|
||||
HmisCategory::firstOrCreate([
|
||||
"title" => $category,
|
||||
"type" => 1
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\HmisCategory;
|
||||
|
||||
class HmisInvestigationCategoryTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$categories = [
|
||||
"HEMATOLOGY (BLOOD)",
|
||||
"BLOOD TRANSFUSION",
|
||||
"IMMUNOLOGY",
|
||||
"MOLECULAR",
|
||||
"PARASITOLOGY(Blood)",
|
||||
"STOOL MICROSCOPY",
|
||||
"CULTURE & SENSITIVITY",
|
||||
"SEROLOGY",
|
||||
"MICROBIOLOGY (CSF, URINE, STOOL, BLOOD, SPUTUM, SWABS)",
|
||||
"CLINICAL CHEMISTRY",
|
||||
"Renal Profile",
|
||||
"Liver Profile",
|
||||
"Lipid/Thyroid Profile",
|
||||
"Other Clinical Chemistry Tests",
|
||||
];
|
||||
|
||||
foreach ($categories as $category):
|
||||
HmisCategory::firstOrCreate([
|
||||
"title" => $category,
|
||||
"type" => 0
|
||||
]);
|
||||
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
use Streamline\Models\HmisWard;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class HmisWardSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$hmis_wards = [
|
||||
['id' => '1', 'slug'=>'medical-male', 'name'=>'Male medical ward'],
|
||||
['id' => '2', 'slug'=>'medical-female', 'name'=>'Female medical ward'],
|
||||
['id' => '3', 'slug'=>'paediatrics', 'name'=>'Paediatrics ward'],
|
||||
['id' => '4', 'slug'=>'maternity', 'name'=>'Maternity/Obstetric ward'],
|
||||
['id' => '5', 'slug'=>'male-surgical', 'name'=>'Male surgical'],
|
||||
['id' => '6', 'slug'=>'female-surgical', 'name'=>'Female surgical'],
|
||||
['id' => '7', 'slug'=>'tb', 'name'=>'TB ward'],
|
||||
['id' => '8', 'slug'=>'psychiatric', 'name'=>'Psychiatric ward'],
|
||||
['id' => '9', 'slug'=>'nutrition', 'name'=>'Nutrition Ward/Corner'],
|
||||
['id' => '10', 'slug'=>'emergency', 'name'=>'Emergency ward'],
|
||||
['id' => '11', 'slug'=>'gynaecology', 'name'=>'Gynaecology ward'],
|
||||
['id' => '12', 'slug'=>'acu', 'name'=>'Acute care unit (ACU)'],
|
||||
['id' => '13', 'slug'=>'palliative', 'name'=>'Palliative ward'],
|
||||
['id' => '14', 'slug'=>'eye', 'name'=>'Eye ward'],
|
||||
['id' => '15', 'slug'=>'icu', 'name'=>'Intensive care unit (ICU)'],
|
||||
['id' => '16', 'slug'=>'ent', 'name'=>'Ear, Nose and Throat (ENT)'],
|
||||
['id' => '17', 'slug'=>'orthopaedic', 'name'=>'Orthopaedic ward'],
|
||||
['id' => '18', 'slug'=>'others', 'name'=>'Others']
|
||||
];
|
||||
|
||||
foreach ($hmis_wards as $value) {
|
||||
HmisWard::firstOrCreate([
|
||||
"id" => $value['id'],
|
||||
"name" => $value['name'],
|
||||
"slug" => $value['slug'],
|
||||
"created_by" =>2
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
//use Illuminate\Support\Facades\DB;
|
||||
use Streamline\Models\HospitalInformation;
|
||||
|
||||
class HospitalInformationTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$names = ['COU KISIIZI HOSPITAL'];
|
||||
|
||||
foreach ($names as $name) {
|
||||
|
||||
// Prevent re-seeding the same data
|
||||
HospitalInformation::firstOrCreate([
|
||||
'name' => $name,
|
||||
'email' => 'kisiizihospital@yahoo.com',
|
||||
'website' => 'http://www.kisiizihospital.org.ug',
|
||||
'phone_number' => '0392700806',
|
||||
'app_name' => 'Stre@mline',
|
||||
'app_version' => '23.0',
|
||||
'logo' => 'uploads/logo/logo.png',
|
||||
'stamp' => null,
|
||||
'lab_stamp' => null,
|
||||
'address' => 'Hospital Address',
|
||||
'level' => 'Hospital',
|
||||
'code' => '',
|
||||
'country' => 'Uganda',
|
||||
'district' => 1,
|
||||
'parish' => 1,
|
||||
'sub_county' => 1,
|
||||
'sub_district' => 'Rubabo',
|
||||
'patient_number_abbr' => 'KIS'
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class InsuranceGroupsTableSeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run(){
|
||||
\Streamline\Models\InsuranceGroup::firstOrCreate(['id' => '1','name' => 'Group 1','contact_name' => 'Contact 1','contact_number' => '0777777777','insurance_start_date' => null,'created_by' => '1','updated_by' => '1']);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class InsuranceMembersTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
\Streamline\Models\InsuranceMember::firstOrCreate(['id' => '1','photo' => null,'relationship_to_head' => '1','group_id' => '1','family_id' => '1','is_family_head' => '1','patient_id' => '3','created_by' => '1','updated_by' => '1']);
|
||||
}
|
||||
}
|
||||
+368
@@ -0,0 +1,368 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class InventoryItemsClassesTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$inventory_items = array(
|
||||
array('Item_Id' => '1','Item_Name' => 'Aceclofenac +Paracetamol (100mg+500mg) tab','Cost_Price' => '223','Selling_Price' => '350','Quantity' => '1984','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in moderate renal impairment.?Caution in elderly. Contra-indicated in severe heart failure. Risk GI toxicity. May worsen asthma in some pts.','Patient_Info_Rukiga' => 'nigutamba okuzimba nobusasi. banza warya otakagumizire','Patient_Info' => 'Reduces inflammation & temperature. May cause nausea & sometimes bleeding from the stomach and ulcers. May worsen asthma. Usually avoid in pregnancy. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '495','Expiry_Date' => '2020-04-01','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '700','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '600.00','Active' => '0','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '2','Item_Name' => 'Aceclofenac 100mg tab','Cost_Price' => '144','Selling_Price' => '300','Quantity' => '-733','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in moderate renal impairment.?Caution in elderly. Contra-indicated in severe heart failure. Risk GI toxicity. May worsen asthma in some pts.','Patient_Info_Rukiga' => 'nigutamba okuzimba nobusasi. banza warya otakagumizire','Patient_Info' => 'Reduces inflammation & temperature. May cause nausea & sometimes bleeding from the stomach and ulcers. May worsen asthma. Usually avoid in pregnancy. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '1135','Expiry_Date' => '2020-04-03','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '600','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '100.00','Active' => '0','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '3','Item_Name' => 'Aceclofenac SR 200mg tab','Cost_Price' => '540','Selling_Price' => '700','Quantity' => '-100','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in moderate renal impairment.?Caution in elderly. Contra-indicated in severe heart failure. Risk GI toxicity. May worsen asthma in some pts.','Patient_Info_Rukiga' => 'nigutamba okuzimba nobusasi. banza warya otakagumizire','Patient_Info' => 'Reduces inflammation & temperature. May cause nausea & sometimes bleeding from the stomach and ulcers. May worsen asthma. Usually avoid in pregnancy. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '223','Expiry_Date' => '2020-04-03','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '700','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '200.00','Active' => '0','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '4','Item_Name' => 'Acetazolamide 250mg tab','Cost_Price' => '1500','Selling_Price' => '2000','Quantity' => '616','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Sulphonamide derivative. Avoid in hypokalaemia, hyponatraemia, hyperchloraemia. Not recommended for long-term use.','Patient_Info_Rukiga' => 'Nekyendeza emishonga omurisho kandi esheshese munonga','Patient_Info' => 'Reduces pressure in the eye in glaucoma. Increases urine production. ','Reference_Areas' => 'http://www.google.com, http://www.google.com/wate,http://www.google.com/home','Reference_Name' => 'EST,EST2, EST3','Insurance_Coverage' => 'Yes','Drug_Category' => '2','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '391','Expiry_Date' => '2020-04-09','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '8000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '4000','Pack' => '1.00','Strength' => '250.00','Active' => '0','Pricing_Factor_Infant' => '5.00','IP_Infant_Daily_Cost' => '10000','Hssip' => 'bb','Government_Essential' => 'Yes'),
|
||||
array('Item_Id' => '5','Item_Name' => 'Aciclovir Eye Ointment 30mg','Cost_Price' => '30960','Selling_Price' => '32000','Quantity' => '260','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'ogute omumaisho ','Patient_Info' => 'Fights virus infections such as cold sores','Reference_Areas' => 'http://www.google.com,http://www.google.com,http://www.google.com','Reference_Name' => 'Abra,Bods,Coke','Insurance_Coverage' => '','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '113','Expiry_Date' => '2017-04-14','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '6400','Pricing_Factor_Children' => '0.15','IP_Paed_Daily_Cost' => '4800','Pack' => '30.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'Yes'),
|
||||
array('Item_Id' => '6','Item_Name' => 'Aciclovir 200mg tab','Cost_Price' => '112','Selling_Price' => '200','Quantity' => '-64','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'maintain adequate hydration.','Patient_Info_Rukiga' => 'nigwita obukoko omushagama
|
||||
.onywe amaizi mingi','Patient_Info' => 'Fights virus infections such as cold sores','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => 'Yes','Drug_Category' => '3','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '297','Expiry_Date' => '2018-04-07','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '10.00','Ip_Adult_Daily_Cost' => '2000','Pricing_Factor_Children' => '5.00','IP_Paed_Daily_Cost' => '1000','Pack' => '1.00','Strength' => '200.00','Active' => '0','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => 'cc','Government_Essential' => 'No'),
|
||||
array('Item_Id' => '7','Item_Name' => 'Aciclovir skin cream 10g','Cost_Price' => '1785','Selling_Price' => '2500','Quantity' => '-614','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'ogusiige hamubiri wamara kunaabagye, okesimura','Patient_Info' => 'Fights virus infections such as cold sores','Reference_Areas' => 'http://www.google.com,http://www.google.com,http://www.google.com','Reference_Name' => 'Abra,Bods,Coke','Insurance_Coverage' => '','Drug_Category' => '3','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '586','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '500','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '2500','Pack' => '15.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'No'),
|
||||
array('Item_Id' => '8','Item_Name' => 'Adrenaline 1mg / 1ml inj (epinephrine)','Cost_Price' => '1536','Selling_Price' => '2000','Quantity' => '-25','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Do not use IV except cardiac arrest. Use IM as first-line Rx for Anaphylaxis. Can nebulise in croup but may be transient benefit.','Patient_Info_Rukiga' => '','Patient_Info' => 'Emergency treatment for severe allergic reactions etc.','Reference_Areas' => 'http://www.google.com,http://www.google.com,http://www.google.com','Reference_Name' => 'Abra,Bods,Coke','Insurance_Coverage' => '','Drug_Category' => '4','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '54','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '2000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '2000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '6.00','IP_Infant_Daily_Cost' => '12000','Hssip' => '','Government_Essential' => 'Yes'),
|
||||
array('Item_Id' => '9','Item_Name' => 'Albendazole 400mg tab','Cost_Price' => '380','Selling_Price' => '0','Quantity' => '-202','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigwita obujoka omunda','Patient_Info' => 'Kills worms in the gut','Reference_Areas' => 'http://www.google.com,http://www.google.com,http://www.google.com','Reference_Name' => 'Abra,Bods,Coke','Insurance_Coverage' => '','Drug_Category' => '5','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '476','Expiry_Date' => '2018-02-28','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '400.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'No'),
|
||||
array('Item_Id' => '10','Item_Name' => 'Amikacin 500mg / 2mL inj','Cost_Price' => '16000','Selling_Price' => '25000','Quantity' => '94','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'To avoid overdose in obese pts use ideal weight for height to calculate dose. Main side effects are dose related. Where possible do not exceed 7 days parenteral rx. Avoid in myasthenia. Ototoxicity worsened by furosemide. Reduced dose in renal impairment ','Patient_Info_Rukiga' => '','Patient_Info' => 'Powerful antibiotic','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '6','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '*** deposit','Long_Term' => 'No','Pharmacy_Stock' => '-683','Expiry_Date' => '2017-11-14','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '50000','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '2.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'No'),
|
||||
array('Item_Id' => '11','Item_Name' => 'Aminophyline 250mg / 10ml inj','Cost_Price' => '405','Selling_Price' => '1500','Quantity' => '100','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Usually give loading dose over 20-30min followed by infusion. In obese pts calculate dose from ideal wt for ht. Potential risk arrhythmias.','Patient_Info_Rukiga' => 'niguyamba ahakwisagye ','Patient_Info' => 'Opens up tight airways in asthma, mildly stimulates more urine production','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '12','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-40','Expiry_Date' => '2018-06-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '4500','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '3000','Pack' => '10.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'Yes'),
|
||||
array('Item_Id' => '12','Item_Name' => 'Aminophylline 100mg tab','Cost_Price' => '53','Selling_Price' => '100','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'In obese pts calculate dose from ideal wt for ht. Potential risk arrhythmias.','Patient_Info_Rukiga' => 'niguyamba ahakwisagye
|
||||
ogumire ogumare','Patient_Info' => 'Opens up tight airways in asthma, mildly stimulates more urine production','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '12','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '196','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '200','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'No'),
|
||||
array('Item_Id' => '13','Item_Name' => 'Amitriptyline 25mg tab','Cost_Price' => '42','Selling_Price' => '100','Quantity' => '23500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Tricyclic, caution in cardiovascular disease as risk arrhythmias, care in diabetes & epilepsy. May worsen prostatic hypertrophy. May worsen psychosis or bipolar disorder.','Patient_Info_Rukiga' => 'niguyamba emisi kwiguka . ','Patient_Info' => 'Anti-depressant medicine also used in severe nerve pain','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => 'No','Drug_Category' => '13','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '134','Expiry_Date' => '2019-11-08','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '600','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '300','Pack' => '1.00','Strength' => '25.00','Active' => '0','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'Yes'),
|
||||
array('Item_Id' => '14','Item_Name' => 'Amlodipine 10mg tab','Cost_Price' => '483','Selling_Price' => '700','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'can be given once daily. Common flushing & headache & ankle swelling side effects. Contraindicated in cardiogenic shock, unstable angina, significant aortic stenosis','Patient_Info_Rukiga' => 'niguyamba aha kukyendeza puresha .kyendeeza hamwonyo nebishaju ebyorarya','Patient_Info' => 'Reduces blood pressure and risk of angina. Can cause ankle swelling.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '14','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '-1','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '2100','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '700','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'No'),
|
||||
array('Item_Id' => '15','Item_Name' => 'Amlodipine 5mg tab','Cost_Price' => '100','Selling_Price' => '150','Quantity' => '4092','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'can be given once daily. Common flushing & headache & ankle swelling side effects. Contraindicated in cardiogenic shock, unstable angina, significant aortic stenosis','Patient_Info_Rukiga' => 'kukyendeza puresha .kyendeeza hamwonyo nebishaju ebyorarya','Patient_Info' => 'Reduces blood pressure and risk of angina. Can cause ankle swelling.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '14','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '6230','Expiry_Date' => '2018-07-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '150','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '75','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'Yes'),
|
||||
array('Item_Id' => '16','Item_Name' => 'Amoxicillin 250mg cap','Cost_Price' => '63','Selling_Price' => '100','Quantity' => '74200','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'NOTE INCREASED DOSE REGIME RECOMMENDED: 1 MONTH - 1 YEAR 125mg TDS; 1-5 YEARS : 250mg TDS; 5-12 YEARS: 500MG TDS; 12-18 YEARS 500mg TDS; see BNF. maintain adequate hydration with high dose;','Patient_Info_Rukiga' => 'nigwita obukooko omumubiri .
|
||||
miira omubazi ogumare','Patient_Info' => 'Penicillin Anti-biotic to fight bacterial infections such as pneumonia. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '4625','Expiry_Date' => '2018-04-19','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '600','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '300','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '17','Item_Name' => 'Amoxicilin+ Clavulinic Acid 250mg+125mg (375mg) tab','Cost_Price' => '348','Selling_Price' => '800','Quantity' => '1299','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'maintain adequate hydration with high dose; Cholestatic jaundice can occur during or shortly after use','Patient_Info_Rukiga' => 'nigwita obukooko omumubiri .
|
||||
miira omubazi ogumare','Patient_Info' => 'Penicillin Anti-biotic to fight bacterial infections such as pneumonia. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-93','Expiry_Date' => '2016-11-04','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '4800','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '2400','Pack' => '1.00','Strength' => '375.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '18','Item_Name' => 'Amoxicillin 125mg/5mL 100ml susp','Cost_Price' => '1818','Selling_Price' => '2500','Quantity' => '503','Reoder_Level' => '0','Description' => '','Drug_Form' => '23','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'NOTE INCREASED DOSE REGIME RECOMMENDED: 1 MONTH - 1 YEAR 125mg TDS; 1-5 YEARS : 250mg TDS; 5-12 YEARS: 500MG TDS; 12-18 YEARS 500mg TDS; see BNF. maintain adequate hydration with high dose;','Patient_Info_Rukiga' => 'nigwita obukooko omumubiri .
|
||||
miira omubazi ogumare','Patient_Info' => 'Penicillin Anti-biotic to fight bacterial infections such as pneumonia.Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-36','Expiry_Date' => '2018-03-29','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '7500','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '7500','Pack' => '100.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '19','Item_Name' => 'Amoxycillin/Clavulinic Acid 500+125mg (625mg) tab','Cost_Price' => '900','Selling_Price' => '1400','Quantity' => '3062','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'maintain adequate hydration with high dose; Cholestatic jaundice can occur during or shortly after use','Patient_Info_Rukiga' => 'nigwiita obukooko omushagama.
|
||||
onywe amaizi mingi
|
||||
ogumire ogumare','Patient_Info' => 'Penicillin Anti-biotic to fight bacterial infections such as pneumonia. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '116','Expiry_Date' => '2018-01-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '4200','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '625.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '20','Item_Name' => 'Amphotericin B 50mg inj in 10mls','Cost_Price' => '27284','Selling_Price' => '35000','Quantity' => '18','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'CONSULTANT OR M.O. PRESCRIPTION ONLY. Toxic','Patient_Info_Rukiga' => '','Patient_Info' => 'Anti-fungal treatment for severe fungal infections. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '23','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '*** deposit','Long_Term' => 'No','Pharmacy_Stock' => '8','Expiry_Date' => '2017-08-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.50','Ip_Adult_Daily_Cost' => '52500','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '35000','Pack' => '10.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '21','Item_Name' => 'Ampicilin 500mg inj in 2mls','Cost_Price' => '579','Selling_Price' => '1500','Quantity' => '150','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'rashes in glandular fever, CMV, leukaemia. Reduce does in renal impairment.','Patient_Info_Rukiga' => 'nigwita obukoko omus hagama
|
||||
','Patient_Info' => 'Penicillin Anti-biotic to fight bacterial infections such as pneumonia.Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '0','Expiry_Date' => '2017-07-29','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '1500','Pack' => '2.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '22','Item_Name' => 'Anti-D Immunoglobulin 300 microgram in 2mL inj','Cost_Price' => '214200','Selling_Price' => '270000','Quantity' => '4','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '3','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '"Anti D prophylaxis should be routinely offered to non-sensitised pregnant women who are rhesus negative" Nice Guidance 2008','Patient_Info_Rukiga' => '','Patient_Info' => 'Reduces the risk of mothers reacting with the baby in the next pregnancy causing the baby to have severe jaundice etc.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '16','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '*** deposit','Long_Term' => 'No','Pharmacy_Stock' => '3','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '1080000','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '2.00','Strength' => '150.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '23','Item_Name' => 'Anti Snake Serum 10ml inj','Cost_Price' => '345999','Selling_Price' => '450000','Quantity' => '4','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Read product insert leaflet carefully','Patient_Info_Rukiga' => 'niguyamab waba orumirwe enjoka.','Patient_Info' => 'Treats some of the complications of snake poison','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => 'deposit but not restricted','Long_Term' => 'No','Pharmacy_Stock' => '3','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '450000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '450000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '24','Item_Name' => 'Antihaemorroid cream 30g','Cost_Price' => '7380','Selling_Price' => '10000','Quantity' => '8','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba eshundwe zomukibunu','Patient_Info' => 'Topical cream to reduce inflammation and provide symptomatic relief.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '9','Expiry_Date' => '2019-08-01','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.10','Ip_Adult_Daily_Cost' => '1000','Pricing_Factor_Children' => '0.05','IP_Paed_Daily_Cost' => '500','Pack' => '30.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '25','Item_Name' => 'Artemether 20mg/ml inj','Cost_Price' => '1367','Selling_Price' => '2500','Quantity' => '-10','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba omushwija gwensiri.','Patient_Info' => 'Treats malaria by killing the malarial parasites.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-47','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.50','Ip_Adult_Daily_Cost' => '3750','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '2500','Pack' => '1.00','Strength' => '20.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '26','Item_Name' => 'Artemether 80mg/ml inj','Cost_Price' => '2111','Selling_Price' => '3500','Quantity' => '96','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba omushwija gwensiri.','Patient_Info' => 'Treats malaria by killing the malarial parasites.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '56','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '5250','Pack' => '1.00','Strength' => '80.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '27','Item_Name' => 'Artesunate 60mg inj (6mLs)','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '159','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba omushwija gwensiri.','Patient_Info' => 'Treats severe malaria by killing the malarial parasites.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '174','Expiry_Date' => '2019-01-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '6.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '28','Item_Name' => 'Artesunate Rectal Suppository 200mg','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '-5','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba omushwija gwesiiri .orare omukatimba kensiri','Patient_Info' => 'Treats malaria by killing the malarial parasites.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '5','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '29','Item_Name' => 'Artesunate Rectal Suppository 50mg','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '-55','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba omushwija gwesiiri .orare omukatimba kensiri','Patient_Info' => 'Treats malaria by killing the malarial parasites.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '55','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '30','Item_Name' => 'Arthemether 20/Lumefantrine 120mg 18 tabs','Cost_Price' => '218','Selling_Price' => '0','Quantity' => '-11','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '(Co-Artem 140mg per tablet, pt weight 25-35kg usual dose 420mg)
|
||||
contraindicated in history of arryhthmias or marked bradycardia, prolongs QT interval so avoid in congenital long QT or with drugs that increase QT duration. Caution if electrolyte disturbance.','Patient_Info_Rukiga' => 'nigutamba omushwija gwesiiri .orare omukatimba kensiri
|
||||
orye ebyokurya birimu ebishaju kandi omare omubazi .','Patient_Info' => 'Treats malaria by killing the malarial parasites. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '606','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '140.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '31','Item_Name' => 'Arthemether 20mg/Lumefantrine 120mg 24 tabs','Cost_Price' => '209','Selling_Price' => '0','Quantity' => '3535','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '(Co-Artem 140mg per tablet, pt weight >35kg usual dose 560mg) contraindicated in history of arryhthmias or marked bradycardia, prolongs QT interval so avoid in congenital long QT or with drugs that increase QT duration. Caution if electrolyte disturbance.','Patient_Info_Rukiga' => 'nigutamba omushwija gwesiiri .orare omukatimba kensiri
|
||||
orye ebyokurya birimu ebishaju kandi omare omubazi .','Patient_Info' => 'Treats malaria by killing the malarial parasites. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '1125','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '140.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '32','Item_Name' => 'Arthemether 20mg/Lumefantrine 120mg 12 tabs','Cost_Price' => '225','Selling_Price' => '0','Quantity' => '2156','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '(Co-Artem 140mg per tablet, pt weight 15-25kg usual dose 280mg) contraindicated in history of arryhthmias or marked bradycardia, prolongs QT interval so avoid in congenital long QT or with drugs that increase QT duration. Caution if electrolyte disturbance.','Patient_Info_Rukiga' => 'nigutamba omushwija gwesiiri .orare omukatimba kensiri
|
||||
orye ebyokurya birimu ebishaju kandi omare omubazi .','Patient_Info' => 'Treats malaria by killing the malarial parasites. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '334','Expiry_Date' => '2017-02-28','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '140.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '33','Item_Name' => 'Arthemether 20mg/Lumefantrine120mg 6 tabs','Cost_Price' => '0','Selling_Price' => '20','Quantity' => '2518','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '(Co-Artem 140mg per tablet, pt weight 5 - 15kg usual dose 140mg) contraindicated in history of arryhthmias or marked bradycardia, prolongs QT interval so avoid in congenital long QT or with drugs that increase QT duration. Caution if electrolyte disturbance.','Patient_Info_Rukiga' => 'nigutamba omushwija gwesiiri .orare omukatimba kensiri
|
||||
orye ebyokurya birimu ebishaju kandi omare omubazi .','Patient_Info' => 'Treats malaria by killing the malarial parasites. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '128','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '140.00','Active' => '1','Pricing_Factor_Infant' => '44.00','IP_Infant_Daily_Cost' => '880','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '34','Item_Name' => 'Ascobic Acid (vitamin C) 100mg tab','Cost_Price' => '29','Selling_Price' => '50','Quantity' => '8992','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigwongyera vitamin C omumubiri.
|
||||
ogunyunye','Patient_Info' => 'Vitamin C to increase the stores in the body','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '1246','Expiry_Date' => '2017-01-21','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '150','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '35','Item_Name' => 'Aspirin (cardiac ) 75mg tab','Cost_Price' => '73','Selling_Price' => '150','Quantity' => '5980','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'niguzibira eshagam kwekwata .
|
||||
banza warya otakagumizire','Patient_Info' => 'Anti-platelet drug used to thin the blood in the treatment and prevention of heart attacks and strokes. May cause stomach ulcers with abdominal pain and bleeding. Take with food.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '68','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '150','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '75.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '36','Item_Name' => 'Aspirin 300mg tab (non-cardiac use)','Cost_Price' => '36','Selling_Price' => '50','Quantity' => '730','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'contra-indicated in children under 16 except for specific anti platelet use, Kawasaki disease etc. due to risk of Reye syndrome. Avoid in severe hepatic dysfunction.Caution in G6PD deficiency.','Patient_Info_Rukiga' => 'kukyendeza puresha .kyendeeza hamwonyo nebishaju ebyorarya','Patient_Info' => 'Anti-platelet drug which helps to thin the blood and is used in the acute treatment of a heart attack.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '424','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '8.00','Ip_Adult_Daily_Cost' => '400','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '300.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '37','Item_Name' => 'Atenolol 50mg tab','Cost_Price' => '40','Selling_Price' => '100','Quantity' => '1400','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'contraindicated in asthma. DO NOT USE IN HEART FAILURE - instead use low dose Bisoprolol 2.5mg if not controlled on ACE inhibitor.
|
||||
Avoid in hypotension, second or third degree heart block','Patient_Info_Rukiga' => 'kukyendeza puresha .kyendeeza hamwonyo nebishaju ebyorarya','Patient_Info' => 'A drug used in the treatment of high blood pressure and angina. It can cause fatigue, cold extremities and sleep disturbance. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '18','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '623','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '200','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '38','Item_Name' => 'Atorvastatin 20mg tab','Cost_Price' => '849','Selling_Price' => '1200','Quantity' => '665','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Treat hypothyroidism before starting drug. Caution in pts c hepatic disease. Avoid in pregnancy as congenital anomalies reported so ensure adequate contraception during Rx.May cause myalgia to rhabdomyolysis.','Patient_Info_Rukiga' => 'niguchendeeza ebishaju omushagama','Patient_Info' => 'Reduces the level of cholesterol (fats) in the blood which helps to reduce the risk of heart attacks and strokes. Can cause muscle aches.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '19','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '146','Expiry_Date' => '2018-08-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1200','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '600','Pack' => '1.00','Strength' => '20.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '39','Item_Name' => 'Atropine 1mg 1ml inj','Cost_Price' => '214','Selling_Price' => '1500','Quantity' => '298','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'muscarinic side effects inc pupillary dilatation. Caution in Down syndrome pts & children& elderly. Contraindicated in myasthenia gravis, paralytic ileus, pyloric stenosis, toxic megacolon& prostatic enlargement.','Patient_Info_Rukiga' => 'niguyamba waba onywire obutwa','Patient_Info' => 'Treatment used in the reversal of organophosphate poisoning.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '20','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '102','Expiry_Date' => '2018-08-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '3000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '40','Item_Name' => 'Atropine eye drops (10mLs)','Cost_Price' => '9899','Selling_Price' => '20000','Quantity' => '3','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '6','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Can precipitate acute-angle glaucoma occasionally, usually in elderly patients','Patient_Info_Rukiga' => 'ogute omumaisho kandi obanze ohwezegye wamara kugutamu','Patient_Info' => 'Treatment use to dilate the pupil and relieve muscle spasm. Will cause blurred vision and you must not drive until the vision is clear.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '20','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '1','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '4000','Pricing_Factor_Children' => '0.15','IP_Paed_Daily_Cost' => '3000','Pack' => '50.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '41','Item_Name' => 'Beclomethasone Inhaler 50mcg','Cost_Price' => '11900','Selling_Price' => '15500','Quantity' => '20','Reoder_Level' => '0','Description' => '','Drug_Form' => '9','Drug_Unit' => '3','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Use a spacer device in all children and in adults with poor inhaler technique. Ensure good training in technique with inhaler. Rinse mouth out after use to reduce risk oral candida.','Patient_Info_Rukiga' => 'niguyamba aha kufundirirwa omukifuba.yetantare embeho,omucucu','Patient_Info' => 'A steroid inhaler used to reduce inflammation of the airways in Asthma. Most effective when used with a spacer device. Can cause oral thrush.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '34','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.03','Ip_Adult_Daily_Cost' => '465','Pricing_Factor_Children' => '0.02','IP_Paed_Daily_Cost' => '310','Pack' => '200.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '42','Item_Name' => 'Bendroflumethiazide 5mg tab','Cost_Price' => '57','Selling_Price' => '100','Quantity' => '4000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in refractory hypokalaemia, hyponatraemia,hypercalcaemia. Avoid in severe liver disease.','Patient_Info_Rukiga' => 'kukyendeza puresha .kyendeeza hamwonyo nebishaju ebyorarya','Patient_Info' => 'A diuretic medication which increases removal of water from the body. It is used for hypertension and leg swelling. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '22','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '873','Expiry_Date' => '2020-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '43','Item_Name' => 'Benzathine Penicillin 2.4 MIU inj IM only in 8mLs','Cost_Price' => '619','Selling_Price' => '1500','Quantity' => '81','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '8','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'DO NOT GIVE IV, ONLY IM. Useful in treating syphilis, long-acting.','Patient_Info_Rukiga' => 'nigwita obukooko omushagama','Patient_Info' => 'A powerful antibiotic used in the treatment of Syphilis and prevention of recurrence of rheumatic fever. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-61','Expiry_Date' => '2018-09-29','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1500','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '750','Pack' => '8.00','Strength' => '0.30','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '45','Item_Name' => 'Benzhexol 5mg (Trihexyphenidyl hydrochloride) tab','Cost_Price' => '56','Selling_Price' => '100','Quantity' => '3700','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'reduces idiopathic Parkinsonian symptoms & that induced by antipsychotic drugs. Do not improve tardive dsykinesia .Contraindicated in GI obstruction or Myasthenia gravis.','Patient_Info_Rukiga' => '','Patient_Info' => 'Treatment for movement disorders. It can cause constipation, dry mouth and dizziness. Do not stop this medication suddenly.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '20','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '646','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '200','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '46','Item_Name' => 'Benzyl Benzoate Emulsion 25% w/v100mL','Cost_Price' => '1428','Selling_Price' => '2000','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'irritant, do not use on broken skin. Treat all members of household simultaneously. Less effective than malathion and permethrin in treating scabies. Consider ivermectin if available for Norwegian type crusted scabies.','Patient_Info_Rukiga' => 'nigutamba obuhere nokwe yagura. gwesige wamara kunaaba . waheza onabe omungaro','Patient_Info' => 'Topical lotion used to treat scabies. Apply to the whole body and repeat the next day. Wash off 24 hours later. Avoid contact with eyes.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-1','Expiry_Date' => '2018-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '2000','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '1000','Pack' => '100.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '47','Item_Name' => 'Benzyl Penicillin 600mg 1MIU (2mLs)','Cost_Price' => '272','Selling_Price' => '1500','Quantity' => '6000','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '8','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'reduce dose in renal impairment','Patient_Info_Rukiga' => 'nigwita obukooko omushagama','Patient_Info' => 'Penicillin antibiotic to fight bacterial infections such as pneumonia.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '601','Expiry_Date' => '2018-06-29','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '1500','Pack' => '2.00','Strength' => '0.50','Active' => '1','Pricing_Factor_Infant' => '0.50','IP_Infant_Daily_Cost' => '750','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '48','Item_Name' => 'Betamethasone Cream 0.1% 15g','Cost_Price' => '1405','Selling_Price' => '2000','Quantity' => '60','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Potent steroid; risk of skin atrophy with prolonged use','Patient_Info_Rukiga' => 'nigukyendeza okuzimba ahamubiri.','Patient_Info' => 'Potent steroid cream used to reduce skin inflammation in conditions such as eczema. Apply thinly.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '2','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '400','Pricing_Factor_Children' => '0.15','IP_Paed_Daily_Cost' => '300','Pack' => '15.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '49','Item_Name' => 'Betamethasone 0.1% eye drops (10mLs)','Cost_Price' => '1085','Selling_Price' => '2500','Quantity' => '40','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '6','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'USE UNDER EXPERT SUPERVISION: will aggravate viral dendritic ulcers','Patient_Info_Rukiga' => 'ogute omumaisho kandi buza omushaho waza kuguma nogukozesa','Patient_Info' => 'Local treatment to reduce inflammation of the eye. Avoid prolonged use.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '16','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '500','Pricing_Factor_Children' => '0.10','IP_Paed_Daily_Cost' => '250','Pack' => '50.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '50','Item_Name' => 'Betamethasone 0.1%/Neomycin 0.5% drops (7.5mLs)','Cost_Price' => '2142','Selling_Price' => '3000','Quantity' => '60','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '6','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'USE UNDER EXPERT SUPERVISION: will aggravate viral dendritic ulcers','Patient_Info_Rukiga' => 'ogute omumaisho kandi buza omushaho waza kuguma nogukozesa','Patient_Info' => 'Local treatment to reduce inflammation and treat infection of the eye. Avoid prolonged use.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '20','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '600','Pricing_Factor_Children' => '0.10','IP_Paed_Daily_Cost' => '300','Pack' => '40.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '51','Item_Name' => 'Bisacodyl 5mg tab','Cost_Price' => '27','Selling_Price' => '50','Quantity' => '400','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'stimulant laxative, avoid in intestinal obstruction','Patient_Info_Rukiga' => 'nigworobesa ekihoroni
|
||||
wayirukana ogureke','Patient_Info' => 'Treatment used in constipation to stimulate the bowels. Can cause abdominal cramps. Excessive use could result in diarrhoea.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '24','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '271','Expiry_Date' => '2018-08-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.50','Ip_Adult_Daily_Cost' => '75','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '50','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '52','Item_Name' => 'Bisoprolol 5mg tab','Cost_Price' => '426','Selling_Price' => '600','Quantity' => '434','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'contraindicated in asthma, uncontrolled heart failure, hypotension, second or third degree heart block','Patient_Info_Rukiga' => 'nigucyendeza puresha ,omutima kwehuba . kyendeza omwonyo kyendnebishaju','Patient_Info' => 'A drug used in the treatment of high blood pressure, angina and heart failure. It can cause fatigue, cold extremities and sleep disturbances. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '18','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '92','Expiry_Date' => '2018-08-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '1800','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '1200','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '44.00','IP_Infant_Daily_Cost' => '26400','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '53','Item_Name' => 'Bupivacaine 0.5% 20ml inj','Cost_Price' => '12495','Selling_Price' => '20000','Quantity' => '160','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'potential cns and cvs side effects if absorbed systemically or inadvertently injected iv.','Patient_Info_Rukiga' => 'nigushanyaraza waza kushemezibwa','Patient_Info' => 'A local anaesthetic used to reduce sensation before procedures.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '25','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '20000','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '10000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '54','Item_Name' => 'Bupivacaine Hcl 0.5% in Dextrose 8% 4ml inj','Cost_Price' => '8342','Selling_Price' => '20000','Quantity' => '500','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'potential cns and cvs side effects if absorbed systemically or inadvertently injected iv.','Patient_Info_Rukiga' => 'nigushanyaraza waza kushemezibwa','Patient_Info' => 'A local anaesthetic used to reduce sensation before procedures.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '25','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '50','Expiry_Date' => '2017-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '55','Item_Name' => 'Calamine 8% & Zinc Oxide 8% Lotion 100mL','Cost_Price' => '1815','Selling_Price' => '2500','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba kweyagura aha mubiri','Patient_Info' => 'A topical lotion used in the symptomatic relief of itch.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '5','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '500','Pricing_Factor_Children' => '0.10','IP_Paed_Daily_Cost' => '250','Pack' => '100.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '56','Item_Name' => 'Calcium Gluconate 2.2 mmol 10 ml inj','Cost_Price' => '346','Selling_Price' => '1500','Quantity' => '-35','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '9','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'An injection of calcium used when there is a high level of potassium in the blood (to protect the heart) or a severely low level of calcium in the blood.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '44','Expiry_Date' => '2019-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1500','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '1500','Pack' => '10.00','Strength' => '0.22','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '57','Item_Name' => 'Calcium Lactate 300mg tab','Cost_Price' => '42','Selling_Price' => '100','Quantity' => '2400','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigwongyera calicium omumubiri','Patient_Info' => 'Calcium to increase the stores in the body.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '822','Expiry_Date' => '2018-07-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '300.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '58','Item_Name' => 'Captopril 25mg tab','Cost_Price' => '108','Selling_Price' => '150','Quantity' => '10000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'discontinue potassium supplements or potassium sparing diuretics e.g. spironolactone before introducing ACE inhibitor as risk of hyperkalaemia. Observe for first-dose hypotension esp if on furosemide. Check renal function before starting. May cause persis','Patient_Info_Rukiga' => 'nigu kyendeza puresha.
|
||||
nobasa kugira okukorora ','Patient_Info' => 'Medication used in the treatment of high blood pressure, heart failure and to protect the kidneys in diabetes. It can cause a persistent dry cough as well as significantly low blood pressure.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '26','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '1642','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '450','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '225','Pack' => '1.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '59','Item_Name' => 'Carbamazepine 200mg tab','Cost_Price' => '45','Selling_Price' => '100','Quantity' => '36900','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'drug of choice for simple & complex focal seizures & for tonic-clonic seizures secondary to focal discharge. Start with low dose & build up slowly to reduce chance of side effects.Caution with cardiac disease.Risk of blood, hepatic & skin disorders.','Patient_Info_Rukiga' => 'nigutamba esimbo .ogumire kwokomushaho yakuragira','Patient_Info' => 'A drug used to prevent seizures in epilepsy. Needs to be taken regularly. Seek urgent medical advice if develop fever, rash, mouth ulcers and bleeding. In women, discuss with a doctor before becoming pregnant.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '27','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '948','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '150','Pack' => '1.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '60','Item_Name' => 'Carbimazole 5mg tab','Cost_Price' => '323','Selling_Price' => '500','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Rash & pruritis common, treat with antihistamine. Caution in hepatic impairment.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used to treat an overactive thyroid gland. Seek urgent medical advice if you develop a sore throat or signs of infection. In women, discuss with your doctor before becoming pregnant. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '28','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '222','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '2000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '1000','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '61','Item_Name' => 'Ceftriaxone 1g (1000mg) inj ','Cost_Price' => '2500','Selling_Price' => '6000','Quantity' => '2050','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '1','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Third generation cephalosporin. 0.5 - 6.5% penicillin allergy patients will be allergic to cephalosporins. Risk of antibiotic-associated colitis. Contraindicated in neonates less than 41weeks post-menstrual age or those with jaundice.','Patient_Info_Rukiga' => 'nigwita obukooko momumubiri
|
||||
onywe amaizi mingi','Patient_Info' => 'A powerful antibiotic used in the treatment of severe infections such as sepsis, typhoid fever and meningitis.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '29','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '37','Expiry_Date' => '2018-03-01','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '12000','Pricing_Factor_Children' => '0.75','IP_Paed_Daily_Cost' => '4500','Pack' => '10.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '62','Item_Name' => 'Celecoxib 200mg cap ','Cost_Price' => '311','Selling_Price' => '500','Quantity' => '1300','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in moderate renal impairment.?Caution in elderly. Contra-indicated in severe heart failure. Risk GI toxicity. May worsen asthma in some pts.','Patient_Info_Rukiga' => 'nigukyendeza okuzimba nobusaasi.','Patient_Info' => 'Reduces inflammation and pain. Used in patients with joint pain. Can occasionally cause stomach ulcers with abdominal pain and bleeding.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '185','Expiry_Date' => '2018-10-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '1000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '500','Pack' => '1.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '63','Item_Name' => 'Cephalexin 250mg cap','Cost_Price' => '111','Selling_Price' => '250','Quantity' => '3000','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '0.5 - 6.5% penicillin allergy patients will be allergic to cephalosporins. Risk of antibiotic-associated colitis.','Patient_Info_Rukiga' => 'nigwita obukooko omushagama.
|
||||
otanywa amagwa.
|
||||
onywe amaizi mingi','Patient_Info' => 'An antibiotic used to treat infections such as urinary tract infection. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '29','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '585','Expiry_Date' => '2018-08-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '1500','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '750','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '64','Item_Name' => 'Cephalexin syrup 125 mg/5mls 100mL','Cost_Price' => '3261','Selling_Price' => '4500','Quantity' => '60','Reoder_Level' => '0','Description' => '','Drug_Form' => '23','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '0.5 - 6.5% penicillin allergy patients will be allergic to cephalosporins. Risk of antibiotic-associated colitis.','Patient_Info_Rukiga' => 'nigwita obukooko omushagama.
|
||||
otanywa amagwa.
|
||||
onywe amaizi mingi','Patient_Info' => 'An antibiotic used to treat infections such as urinary tract infection. Complete the full course','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '29','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-129','Expiry_Date' => '2017-07-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.30','Ip_Adult_Daily_Cost' => '1350','Pricing_Factor_Children' => '0.15','IP_Paed_Daily_Cost' => '675','Pack' => '100.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '65','Item_Name' => 'Cetirizine 10mg tab','Cost_Price' => '30','Selling_Price' => '100','Quantity' => '5500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'long acting, non-sedating as does not cross blood-brain barrier. Reduce dose in renal impairment.','Patient_Info_Rukiga' => 'niguyamba ha allergy. ogumiri nyekiro ,ornywe amaizi miingi','Patient_Info' => 'An anti-histamine used in the treatment of allergic reactions to reduce symptoms. Although rare drowsiness can occur. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '30','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '442','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '50','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '66','Item_Name' => 'Charcoal 250mg tab','Cost_Price' => '81','Selling_Price' => '150','Quantity' => '400','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'niguyamba waba on','Patient_Info' => 'Used in the treatment of poisoning to reduce the absorption into the body. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '400','Expiry_Date' => '2018-01-26','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '150','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '75','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '67','Item_Name' => 'Chloramphenicol 125mg/ 5mL 100mL susp','Cost_Price' => '2648','Selling_Price' => '4000','Quantity' => '12','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in neonates due to grey baby syndrome. Contraindicated in acute porphyria. Avoid repeated and prolonged courses. Risk of aplastic anaemia. Peripheral neuritis, headache, depression may occur.','Patient_Info_Rukiga' => 'nigwita obukooko omushagama. omare omubazi ogubakuha','Patient_Info' => 'Potent antibiotic used to treat infections particularly in children. Complete the full course','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '12','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.30','Ip_Adult_Daily_Cost' => '1200','Pricing_Factor_Children' => '0.15','IP_Paed_Daily_Cost' => '600','Pack' => '5.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '68','Item_Name' => 'Chloramphenicol 250mg cap','Cost_Price' => '103','Selling_Price' => '150','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in neonates due to grey baby syndrome. Contraindicated in acute porphyria. Avoid repeated and prolonged courses. Risk of aplastic anaemia. Peripheral neuritis, headache, depression may occur.','Patient_Info_Rukiga' => 'omushagama. omare omubazi ogubakuha','Patient_Info' => 'Potent antibiotic used to treat infections particularly in children. Complete the full course','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '241','Expiry_Date' => '2019-02-28','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '8.00','Ip_Adult_Daily_Cost' => '1200','Pricing_Factor_Children' => '4.00','IP_Paed_Daily_Cost' => '600','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '69','Item_Name' => 'Chloramphenicol 1000mg 1g inj in 3mls','Cost_Price' => '986','Selling_Price' => '2000','Quantity' => '150','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in neonates due to grey baby syndrome. Contraindicated in acute porphyria. Avoid repeated and prolonged courses. Risk of aplastic anaemia. Peripheral neuritis, headache, depression may occur.','Patient_Info_Rukiga' => 'omushagama. omare omubazi ogubakuha','Patient_Info' => 'Potent antibiotic used to treat infections particularly in children. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '88','Expiry_Date' => '2018-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '8000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '4000','Pack' => '3.00','Strength' => '333.30','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '70','Item_Name' => 'Chloramphenicol Eye drops (10mLs)','Cost_Price' => '512','Selling_Price' => '1500','Quantity' => '40','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '6','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigwita obukooko omumaisho /amatu','Patient_Info' => 'Local antibiotic used in the treatment of eye infections such as conjunctivitis.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '10','Expiry_Date' => '2017-08-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '0.15','IP_Paed_Daily_Cost' => '225','Pack' => '50.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '71','Item_Name' => 'Chlorhexidine 0.3% solution','Cost_Price' => '0','Selling_Price' => '2000','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'An anti-septic solution used to clean the skin before procedures.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '31','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '20','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '2000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '2000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '72','Item_Name' => 'Chlorphenamine 4mg tab','Cost_Price' => '15','Selling_Price' => '50','Quantity' => '500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'short acting, sedating. Use cetirizine if sedation not required. Caution in prostatic hypertrophy & urinary retention and in epilepsy. Avoid in severe liver disease.','Patient_Info_Rukiga' => 'nigutamba efumbi .nigubasa kukunyamisa','Patient_Info' => 'An anti-histamine used in the treatment of allergic reactions to reduce symptoms. Sedation can occur and care must be taken with driving.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '30','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '276','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '200','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '4.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '73','Item_Name' => 'Chlorpromazine 100mg tab','Cost_Price' => '150','Selling_Price' => '200','Quantity' => '17700','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '* RISK TO HEALTHCARE WORKERS OF CONTACT SENSITISATION SO AVOID DIRECT CONTACT WITH TABLETS & HANDLE SOLUTIONS WITH CARE.* Blocks dopamine D2 receptors. Extrapyramidal side effects & increased prolactin. Sedative.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used in the treatment of psychosis. It causes sedation and driving should be avoided. It can cause movement disorders such as tremor and uncontrolled movements. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '32','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '552','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '600','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '400','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '74','Item_Name' => 'Chlorpromazine 25mg/ml 2ml inj','Cost_Price' => '293','Selling_Price' => '1500','Quantity' => '600','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '* RISK TO HEALTHCARE WORKERS OF CONTACT SENSITISATION SO AVOID DIRECT CONTACT WITH TABLETS & HANDLE SOLUTIONS WITH CARE.* Blocks dopamine D2 receptors. Extrapyramidal side effects & increased prolactin. Sedative.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used in the treatment of psychosis. It causes sedation and driving should be avoided. It can cause movement disorders such as tremor and uncontrolled movements. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '32','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '28','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '9000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '3000','Pack' => '2.00','Strength' => '12.50','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '75','Item_Name' => 'Ciprofloxacin 500mg tab','Cost_Price' => '96','Selling_Price' => '200','Quantity' => '15500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Quinolone. Caution in epilepsy and patients with G6PD deficiency, myasthenia and in children & teenagers as risk of arthropathy.Avoid exposure to bright sunlight. May prolong QT interval. Tendon damage may occure with potential rupture, especially if give','Patient_Info_Rukiga' => 'wabaoragunira.\\
|
||||
nywa amaizi mingi','Patient_Info' => 'An antibiotic used to treat infections such as urinary tract infections and dysentery. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-25','Expiry_Date' => '2016-03-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '800','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '200','Pack' => '1.00','Strength' => '500.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '76','Item_Name' => 'Ciprofloxacin 200mg 100ml infusion','Cost_Price' => '915','Selling_Price' => '3000','Quantity' => '500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Quinolone. Caution in epilepsy and patients with G6PD deficiency, myasthenia and in children & teenagers as risk of arthropathy.Avoid exposure to bright sunlight. May prolong QT interval. Tendon damage may occure with potential rupture, especially if give','Patient_Info_Rukiga' => 'nigwiita obukooko omushagama.','Patient_Info' => 'An antibiotic used to treat infections such as urinary tract infections and dysentery. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '147','Expiry_Date' => '2017-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '3000','Pack' => '100.00','Strength' => '2.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '77','Item_Name' => 'Clomifene 50mg tab','Cost_Price' => '915','Selling_Price' => '1500','Quantity' => '120','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Anti-oestrogen. Risk of mulitple pregnancy. Ovarian cysts may enlarge while on treatment. Higher risk of ectopic pregnancy. Visual symptoms may arise.','Patient_Info_Rukiga' => 'niguyamba kugira ngu amahuri gabe mingi.','Patient_Info' => 'A medication used to help establish pregnancy in female infertility. There is a risk of multiple pregnancy.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '33','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '*** ','Long_Term' => 'No','Pharmacy_Stock' => '75','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '1500','Pack' => '1.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '78','Item_Name' => 'Clopidogrel 75mg tab','Cost_Price' => '600','Selling_Price' => '1000','Quantity' => '420','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'contraindicated in active bleeding. Pt at risk of increased bleeding from trauma, surgery etc. may cause dyspepsia. See BNF Appendix 1 for interactions with other drugs.','Patient_Info_Rukiga' => 'niguyamba kukyendeza okwekwata kweshagama..','Patient_Info' => 'An anti-platelet medication used to thin the blood in the treatment and prevention of heart attacks and strokes. Can increase the risk of bleeding. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '34','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '74','Expiry_Date' => '2017-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1000','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '75.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '79','Item_Name' => 'Clotrimazole Cream 1% 30g','Cost_Price' => '726','Selling_Price' => '2000','Quantity' => '216','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'An anti-fungal cream used in the local treatment of fungal infections of the skin.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '23','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '9','Expiry_Date' => '2018-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '2000','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '30.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '80','Item_Name' => 'Clotrimazole Pessaries 100mg','Cost_Price' => '129','Selling_Price' => '250','Quantity' => '600','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba kweyagura mubicweka byekihama.
|
||||
oteke omubukazi, yeyongwere ahabuyonjo','Patient_Info' => 'An anti-fungal treatment for vaginal candidiasis.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '23','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '152','Expiry_Date' => '2017-12-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '250','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '250','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '66.00','IP_Infant_Daily_Cost' => '16500','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '81','Item_Name' => 'Cloxacillin 250mg cap','Cost_Price' => '64','Selling_Price' => '150','Quantity' => '13500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Penicillin. Rare cause of cholestatic jaundice and hepatis up to two months after use. Caution in hepatic impairment. ','Patient_Info_Rukiga' => 'nigwita obukooko omumubiri. ogumire ogumare. onywe amaizi mingi','Patient_Info' => 'A Penicillin antibiotic used in the treatment of skin infections. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '5897','Expiry_Date' => '2018-01-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '150','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '82','Item_Name' => 'Cloxacillin 500mg inj in 2 mls','Cost_Price' => '526','Selling_Price' => '2000','Quantity' => '150','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Penicillin. Rare cause of cholestatic jaundice and hepatis up to two months after use. Caution in hepatic impairment. ','Patient_Info_Rukiga' => '','Patient_Info' => 'A Penicillin antibiotic used in the treatment of skin infections. Complete the full course.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '43','Expiry_Date' => '2017-08-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '8.00','Ip_Adult_Daily_Cost' => '16000','Pricing_Factor_Children' => '4.00','IP_Paed_Daily_Cost' => '8000','Pack' => '2.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '83','Item_Name' => 'Codeine Phosphate 30mg tab','Cost_Price' => '1003','Selling_Price' => '1500','Quantity' => '1300','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Narcotic, can cause dependence. Causes constipation. Avoid in acute respiratory depression or at risk of paralytic ileus. Do not use in coma. Avoid or reduce dose in hepatic impairment.','Patient_Info_Rukiga' => 'nigutamba obusaasi nenkorora. nigubasa kugumisa ekihoroni . onywe amaizi mingi','Patient_Info' => 'An opioid based painkiller used in mild to moderate pain. It can cause constipation with long term use.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '35','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '295','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '3000','Pack' => '1.00','Strength' => '30.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '84','Item_Name' => 'Co-trimoxazole 120mg cap','Cost_Price' => '83','Selling_Price' => '100','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Sulfonamide with Trimethoprim. Risk of Stevens-Johnson syndrome. Drug of choice in pneumocystis carinii infection associated c HIV infection. Maintain adequate fluid intake. Avoid in blood disorders. ','Patient_Info_Rukiga' => 'nigwita obukooko omushagama
|
||||
onywe amaizi mingi','Patient_Info' => 'An antibiotic used to treat and prevent infections. Complete the full course of treatment. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '10','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '7','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '200','Pack' => '1.00','Strength' => '120.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '85','Item_Name' => 'Co-trimoxazole 200mg/40mg susp in 5mLs (100mLs)','Cost_Price' => '1047','Selling_Price' => '1500','Quantity' => '10','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Sulfonamide with Trimethoprim. Risk of Stevens-Johnson syndrome. Drug of choice in pneumocystis carinii infection associated c HIV infection. Maintain adequate fluid intake. Avoid in blood disorders. ','Patient_Info_Rukiga' => 'nigwita obukooko omushagama
|
||||
onywe amaizi mingi','Patient_Info' => 'An antibiotic used to treat and prevent infections. Complete the full course of treatment.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '10','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '9','Expiry_Date' => '2016-11-05','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '3000','Pack' => '100.00','Strength' => '48.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '86','Item_Name' => 'Co-trimoxazole 480mg tab','Cost_Price' => '43','Selling_Price' => '100','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Sulfonamide with Trimethoprim. Risk of Stevens-Johnson syndrome. Drug of choice in pneumocystis carinii infection associated c HIV infection. Maintain adequate fluid intake. Avoid in blood disorders. ','Patient_Info_Rukiga' => 'nigwita obukooko omushagama
|
||||
onywe amaizi mingi','Patient_Info' => 'An antibiotic used to treat and prevent infections. Complete the full course of treatment.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '10','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '613','Expiry_Date' => '2019-02-28','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.15','IP_Paed_Daily_Cost' => '15','Pack' => '1.00','Strength' => '480.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '87','Item_Name' => 'Cough Expectorant 100mls','Cost_Price' => '2900','Selling_Price' => '4000','Quantity' => '390','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba enkorora. nigubasa kukuhungiza','Patient_Info' => 'Medication used to aid expulsion of sputum. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '21','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '16000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '8000','Pack' => '100.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '88','Item_Name' => 'Cough syrup paediatric eg Piritex 60ml','Cost_Price' => '2728','Selling_Price' => '3500','Quantity' => '520','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba enkorora. nigubasa kukuhungiza','Patient_Info' => 'Medication used to give symptomatic relief from cough.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '19','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.30','Ip_Adult_Daily_Cost' => '1050','Pricing_Factor_Children' => '0.15','IP_Paed_Daily_Cost' => '525','Pack' => '60.00','Strength' => '1.00','Active' => '0','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '89','Item_Name' => 'Cyanocobalamin (vitamin B12) 1mg 1ml inj','Cost_Price' => '1132','Selling_Price' => '3300','Quantity' => '10','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'for megaloblastic anaemias.','Patient_Info_Rukiga' => '','Patient_Info' => 'Vitamin B12 injection used to increase the stores in the body.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '14','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '9900','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '90','Item_Name' => 'Darrows Half Strength 500mL infusion','Cost_Price' => '1131','Selling_Price' => '3300','Quantity' => '30','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A liquid solution administered via a vein in malnourished children to help with hydration.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '36','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '45','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '3300','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '3300','Pack' => '500.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '91','Item_Name' => 'Dexamethasone 0.5mg tab','Cost_Price' => '96','Selling_Price' => '120','Quantity' => '500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Steroid. Prolonged use may cause adrenal atrophy, immunosuppression, increased risk of severe chickenpox or measles. If used long term pt should carry a warning card and be advised not to stop Rx abruptly. High doses may cause psychiatric problems, cata','Patient_Info_Rukiga' => '','Patient_Info' => 'A steroid used to reduce inflammation. It can cause stomach ulcers with abdominal pain and bleeding. If taking long term do not stop this medication suddenly. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '808','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '0.50','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '92','Item_Name' => 'Dexamethasone 4mg/1ml 2ml inj','Cost_Price' => '536','Selling_Price' => '1500','Quantity' => '588','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Steroid. Prolonged use may cause adrenal atrophy, immunosuppression, increased risk of severe chickenpox or measles. If used long term pt should carry a warning card and be advised not to stop Rx abruptly. High doses may cause psychiatric problems, cata','Patient_Info_Rukiga' => '','Patient_Info' => 'A steroid used to reduce inflammation. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '8','Expiry_Date' => '2017-01-22','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '3000','Pack' => '2.00','Strength' => '4.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '93','Item_Name' => 'Dexamethasone/Gentamicin 0.1% /0.3%w/v eye drops (5mLs)','Cost_Price' => '8000','Selling_Price' => '10000','Quantity' => '999','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '6','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigutamba obugwire bwamaisho . ','Patient_Info' => 'Local treatment to reduce inflammation and treat infection of the eye. Avoid prolonged use.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '10000','Pack' => '25.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '888.00','IP_Infant_Daily_Cost' => '8388607','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '94','Item_Name' => 'Dextrose 10% 250mL','Cost_Price' => '1500','Selling_Price' => '3000','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A liquid solution containing sugar (Dextrose) administered via a vein.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '36','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '230','Expiry_Date' => '2019-03-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '3000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '3000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '95','Item_Name' => 'Dextrose 5 % 500ml','Cost_Price' => '1135','Selling_Price' => '3000','Quantity' => '3310','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A liquid solution containing sugar (Dextrose) administered via a vein.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '36','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '1537','Expiry_Date' => '2017-02-04','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '96','Item_Name' => 'Dextrose 5% 250mL','Cost_Price' => '1135','Selling_Price' => '1500','Quantity' => '900','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigongyera sucari omushagama','Patient_Info' => 'A liquid solution containing sugar (Dextrose) administered via a vein.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '36','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '539','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '97','Item_Name' => 'Dextrose 50% 100mL','Cost_Price' => '1784','Selling_Price' => '3000','Quantity' => '300','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigongyera sucari omushagama','Patient_Info' => 'A liquid solution containing sugar (Dextrose) administered via a vein. Used to treat low blood sugars.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '36','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '494','Expiry_Date' => '2018-03-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '98','Item_Name' => 'Diazepam 5mg tab','Cost_Price' => '42','Selling_Price' => '100','Quantity' => '10000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'can precipitate coma if pt has hepatic impairment.caution in respiratory disease. Avoid prolonged use.Risk of respiratory arrest when given iv.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used to give symptomatic relief in anxiety and muscle spasms. Not for long term use.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '37','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '849','Expiry_Date' => '2017-07-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '99','Item_Name' => 'Diazepam 5mg/2mL inj','Cost_Price' => '238','Selling_Price' => '1500','Quantity' => '500','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'can precipitate coma if pt has hepatic impairment.caution in respiratory disease. Avoid prolonged use.Risk of respiratory arrest when given iv.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used to stop seizures.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '37','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '30','Expiry_Date' => '2018-05-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '9000','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '4500','Pack' => '2.00','Strength' => '2.50','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '100','Item_Name' => 'Diazepam Rectal Tube 5mg','Cost_Price' => '11287','Selling_Price' => '14000','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'can precipitate coma if pt has hepatic impairment.caution in respiratory disease. Avoid prolonged use.Risk of respiratory arrest when given iv.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used to stop seizures.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '37','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '7','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '28000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '14000','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '101','Item_Name' => 'Diclofenac 75mg/3mL 3ml inj','Cost_Price' => '1561','Selling_Price' => '2500','Quantity' => '400','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in moderate renal impairment.?Caution in elderly. Contra-indicated in severe heart failure. Risk GI toxicity. May worsen asthma in some pts.','Patient_Info_Rukiga' => 'nigukyendeza okuzimba,obusasi.
|
||||
baanzawarya otakagukozise','Patient_Info' => 'Reduces inflammation & temperature. May cause nausea & sometimes bleeding from the stomach and ulcers. May worsen asthma. Usually avoid in pregnancy. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '106','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '3.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '102','Item_Name' => 'Diclofenac 50mg tab','Cost_Price' => '17','Selling_Price' => '50','Quantity' => '1000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in moderate renal impairment.?Caution in elderly. Contra-indicated in severe heart failure. Risk GI toxicity. May worsen asthma in some pts.','Patient_Info_Rukiga' => 'nigukyendeza okuzimba,obusasi.
|
||||
baanzawarya otakagukozise','Patient_Info' => 'Reduces inflammation & temperature. May cause nausea & sometimes bleeding from the stomach and ulcers. May worsen asthma. Usually avoid in pregnancy. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '959','Expiry_Date' => '2021-07-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '50','Pack' => '1.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '103','Item_Name' => 'Diclofenac Gel 20g','Cost_Price' => '893','Selling_Price' => '2000','Quantity' => '280','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in moderate renal impairment.?Caution in elderly. Contra-indicated in severe heart failure. Risk GI toxicity. May worsen asthma in some pts.','Patient_Info_Rukiga' => 'nigu kyendeza obusasi nokuzimba. ogusige oraguhamisiriza','Patient_Info' => 'Topical treatment to reduce inflammation and pain in muscles.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '32','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '3000','Pack' => '20.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '104','Item_Name' => 'Digoxin 0.25mg tab','Cost_Price' => '42','Selling_Price' => '100','Quantity' => '300','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'USE ORAL DIGOXIN RATHER THAN IV UNLESS PATIENT VOMITING ++ AS SAFER. See BNF for cardiac contra-indications. Monitor electrolytes.','Patient_Info_Rukiga' => 'niguyamba omutiima kuteragye','Patient_Info' => 'A drug used to control the heart rate in patients with an irregular heart beat or heart failure.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '38','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '423','Expiry_Date' => '2019-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '0.25','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '105','Item_Name' => 'Digoxin 0.25mg/mL 2ml inj','Cost_Price' => '253','Selling_Price' => '1000','Quantity' => '30','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'USE ORAL DIGOXIN RATHER THAN IV UNLESS PATIENT VOMITING ++ AS SAFER. See BNF for cardiac contra-indications. Monitor electrolytes.','Patient_Info_Rukiga' => 'niguyamba omutiima kuteragye','Patient_Info' => 'A drug used to control the heart rate in patients with an irregular heart beat or heart failure.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '38','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-2','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1000','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '500','Pack' => '2.00','Strength' => '0.25','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '106','Item_Name' => 'Dopamine 200mg/5ml inj','Cost_Price' => '4555','Selling_Price' => '6000','Quantity' => '55','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Acts on beta1 receptors in cardiac muscle increasing contractility. Volume replacement first usually (but may worsen cardiogenic shock)','Patient_Info_Rukiga' => 'niguyamba omutiima kutera.','Patient_Info' => 'A drug used to stimulate the heart muscle to beat stronger in critically ill patients.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '39','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '55','Expiry_Date' => '2019-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '12000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '6000','Pack' => '5.00','Strength' => '40.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '107','Item_Name' => 'Doxycycline 100mg cap','Cost_Price' => '73','Selling_Price' => '100','Quantity' => '14500','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'antacids & milk may reduce absorption. Avoid under age 12 as deposited in growing bones and teeth.','Patient_Info_Rukiga' => '','Patient_Info' => 'An antibiotic used to treat infection. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '9','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '737','Expiry_Date' => '2018-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '108','Item_Name' => 'Drotaverine HCL (No-Spa) 40mg tab','Cost_Price' => '188','Selling_Price' => '500','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '68','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '***','Long_Term' => 'No','Pharmacy_Stock' => '191','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '500','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '40.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '109','Item_Name' => 'Enema Preparation 100ml','Cost_Price' => '10710','Selling_Price' => '15000','Quantity' => '30','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nibaguta omukibunu. kuyamba kushohoza gye','Patient_Info' => 'Medication used via the rectum to aid bowel movements.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '22','Expiry_Date' => '2018-10-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '30000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '30000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '110','Item_Name' => 'Enoxaparin (LMWH) 40 mg in 0.4mls inj ','Cost_Price' => '30705','Selling_Price' => '35000','Quantity' => '35','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'contraindicated in thrombocytopaenia, recent cerebral haemorrhage, severe hypertension, peptic ulcer, after major surgery or trauma, acute bacterial endocarditis','Patient_Info_Rukiga' => '','Patient_Info' => 'An injection which thins the blood and is used to treat blood clots.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '40','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '*** deposit','Long_Term' => 'No','Pharmacy_Stock' => '19','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '105000','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.40','Strength' => '40.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '111','Item_Name' => 'Ephedrine 30mg 1mL inj','Cost_Price' => '1778','Selling_Price' => '3000','Quantity' => '40','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'may cause acute urinary retention in prostatic hypertrophy; caution in hyperthyroidism, diabetes, ischaemic heart disease, hypertension.','Patient_Info_Rukiga' => '','Patient_Info' => 'Reversal of low blood pressure caused by spinal anaethesia.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '4','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '21','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '3000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '3000','Pack' => '1.00','Strength' => '30.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '112','Item_Name' => 'Erythromycin 125mg/5mL 100mL susp','Cost_Price' => '2899','Selling_Price' => '4000','Quantity' => '148','Reoder_Level' => '0','Description' => '','Drug_Form' => '23','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'may cause nausea, vomiting & diarrhoea. May be used as pro-kinetic. In neonates under 2 weeks old may give risk of pyloric stenosis. Avoid in acute porphyria.','Patient_Info_Rukiga' => 'nigwita obukooko omumubiri.
|
||||
baanza warya otakamizire omubazi','Patient_Info' => 'An antibiotic used to treat infection. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '41','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '9','Expiry_Date' => '2018-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.50','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '4000','Pack' => '100.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '113','Item_Name' => 'Erythromycin 250mg tab','Cost_Price' => '76','Selling_Price' => '150','Quantity' => '12000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'may cause nausea, vomiting & diarrhoea. May be used as pro-kinetic. In neonates under 2 weeks old may give risk of pyloric stenosis. Avoid in acute porphyria.','Patient_Info_Rukiga' => 'baanza warya otakamizire omubazi','Patient_Info' => 'An antibiotic used to treat infection. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '41','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '764','Expiry_Date' => '2018-05-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '150','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '150','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '114','Item_Name' => 'Fansidar 525mg tab','Cost_Price' => '119','Selling_Price' => '300','Quantity' => '2450','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'contains Sulfadoxine and pyrimethamine. Risk of Stevens-Johnson syndrome.','Patient_Info_Rukiga' => '','Patient_Info' => 'Treats malaria by killing the malarial parasites. Used as prevention during pregnancy.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '42','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'free for ANC','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '627','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.20','IP_Paed_Daily_Cost' => '60','Pack' => '1.00','Strength' => '525.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '115','Item_Name' => 'Ferro-B-Complex Tonic 100mL green iron & ammonium citrate 200mg,Vit B1,B2,B12,Nicotinamide 5mg','Cost_Price' => '2114','Selling_Price' => '3000','Quantity' => '48','Reoder_Level' => '0','Description' => '','Drug_Form' => '23','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'may cause GI irritation, constipation, nausea. May discolour stool.','Patient_Info_Rukiga' => '','Patient_Info' => 'A combination of iron and B vitamins to increase the stores in the body.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '43','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '11','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '8.00','Ip_Adult_Daily_Cost' => '24000','Pricing_Factor_Children' => '4.00','IP_Paed_Daily_Cost' => '12000','Pack' => '100.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '116','Item_Name' => 'Ferrous sulphate /Folic acid 200mg/0.25mg tab','Cost_Price' => '78','Selling_Price' => '100','Quantity' => '67000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'may cause GI irritation, constipation, nausea. May discolour stool.','Patient_Info_Rukiga' => '','Patient_Info' => 'A combination of iron and folic acid to increase the stores in the body in the treatment of anaemia.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '43','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'free for ANC','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '13039','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '117','Item_Name' => 'Ferrous Sulphate 200mg tab','Cost_Price' => '0','Selling_Price' => '50','Quantity' => '1300','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'may cause GI irritation, constipation, nausea. May discolour stool.','Patient_Info_Rukiga' => '','Patient_Info' => 'Iron supplement to increase the stores in the body and treat anaemia.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '43','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'free for ANC','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '148','Expiry_Date' => '2018-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.30','Ip_Adult_Daily_Cost' => '15','Pricing_Factor_Children' => '0.20','IP_Paed_Daily_Cost' => '10','Pack' => '1.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '118','Item_Name' => 'Fluconazole 100mg cap','Cost_Price' => '1811','Selling_Price' => '2200','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'caution with hepatic impairment, susceptibility to QT prolongation.Stevens-Johnson syndrome more frequent in HIV patients.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the treatment and prevention of fungal infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '23','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'HIV pts free govt stock','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-1','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '6600','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '4400','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '119','Item_Name' => 'Fluconazole 200mg cap','Cost_Price' => '342','Selling_Price' => '1000','Quantity' => '1202','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'caution with hepatic impairment, susceptibility to QT prolongation.Stevens-Johnson syndrome more frequent in HIV patients.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the treatment and prevention of fungal infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '23','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'HIV pts free govt stock','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '122','Expiry_Date' => '2018-11-23','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '3000','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '1500','Pack' => '1.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '120','Item_Name' => 'Fluoxetine 20mg cap','Cost_Price' => '125','Selling_Price' => '300','Quantity' => '3000','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Selective serotonin re-uptake inhibitor (SSRI). Contraindicated in Mania. Use with caution in pts with epilepsy, cardiac disease, diabetes, bleeding disorders,history of mania.Taper dose gradually over a few weeks to minimise side effects on withdrawal.','Patient_Info_Rukiga' => '','Patient_Info' => 'A treatment used to improve low mood. May take 4-6 weeks to notice improvement. In women inform the doctor if you become pregnant.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '13','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '274','Expiry_Date' => '2019-03-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '20.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '121','Item_Name' => 'Folic Acid 5mg tab','Cost_Price' => '27','Selling_Price' => '50','Quantity' => '10000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Folic acid supplement to increase the stores in the body.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '2705','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '50','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '50','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '122','Item_Name' => 'Furosemide 10mg/mL 2mL inj','Cost_Price' => '455','Selling_Price' => '1000','Quantity' => '700','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Potent loop diuretic.Correct hypovolaemia or hypotension before starting. Avoid in severe hypokalaemia, hyponatraemia,coma in cirrhosis, renal failure due to neprotoxic drugs.','Patient_Info_Rukiga' => '','Patient_Info' => 'A diuretic medication which increases removal of fluid from the body and is used in heart failure.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '22','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '169','Expiry_Date' => '2018-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1000','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '2.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '123','Item_Name' => 'Furosemide 40mg tab','Cost_Price' => '20','Selling_Price' => '50','Quantity' => '5000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Potent loop diuretic.Correct hypovolaemia or hypotension before starting. Avoid in severe hypokalaemia, hyponatraemia,coma in cirrhosis, renal failure due to neprotoxic drugs.','Patient_Info_Rukiga' => '','Patient_Info' => 'A diuretic medication which increases removal of fluid from the body and is used in heart failure.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '22','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '1251','Expiry_Date' => '2018-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.50','Ip_Adult_Daily_Cost' => '75','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '50','Pack' => '1.00','Strength' => '40.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '124','Item_Name' => 'Gentamicin eye / ear drops **','Cost_Price' => '509','Selling_Price' => '2000','Quantity' => '150','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '6','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Local antibiotic used to treat infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '6','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'This is another comment to be for testing only. Nothing else. Need it to be long for observation. ','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '20','Expiry_Date' => '2017-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '2000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '2000','Pack' => '50.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '125','Item_Name' => 'Gentamicin 40mg/ml 2 mL inj','Cost_Price' => '418','Selling_Price' => '3000','Quantity' => '800','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'To avoid overdose in obese pts use ideal weight for height to calculate dose. Main side effects are dose related. Where possible do not exceed 7 days parenteral rx. Avoid in myasthenia. Ototoxicity worsened by furosemide. Reduced dose in renal impairment ','Patient_Info_Rukiga' => '','Patient_Info' => 'A strong antibiotic used to treat severe infections.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '6','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '82','Expiry_Date' => '2018-12-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '3000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '3000','Pack' => '2.00','Strength' => '40.00','Active' => '1','Pricing_Factor_Infant' => '0.30','IP_Infant_Daily_Cost' => '900','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '126','Item_Name' => 'Gentian Violet 15mL','Cost_Price' => '900','Selling_Price' => '1500','Quantity' => '69','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A topical solution used to treat oral thrush and prevent infection in skin wounds.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '29','Expiry_Date' => '2019-08-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '2250','Pack' => '15.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '127','Item_Name' => 'Glibenclamide 5mg tab','Cost_Price' => '19','Selling_Price' => '50','Quantity' => '5000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Long-acting Sulfonylurea. Augments insulin secretion so require some residual beta-cell activity. Follow protocols, usually try diet & metformin first. High dose may cause long-lasting hypoglycaemia. Avoid in elderly pts & in presence of ketoacidosis. May','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in diabetes to lower the sugar level in the blood. Can cause episodes of very low blood sugar.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '44','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '2','Expiry_Date' => '2017-10-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.50','Ip_Adult_Daily_Cost' => '125','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '75','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => 'S39','Government_Essential' => NULL),
|
||||
array('Item_Id' => '128','Item_Name' => 'Glycerine Ear Drops **','Cost_Price' => '0','Selling_Price' => '1500','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '6','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Used to soften ear wax.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1500','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '1500','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '129','Item_Name' => 'Glyceryltrinitrate GTN (sublingual) 0.5mg tab','Cost_Price' => '336','Selling_Price' => '500','Quantity' => '30','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Sub-lingual administration. Contraindicated in hypotension / hypovolaemia, hypertrophic cardiomyopathy, aortic or mitral stenosis, tamponade, raised intracranial pressure due to trauma or haemorrhage; marked anaemia.','Patient_Info_Rukiga' => '','Patient_Info' => 'Medication used in the acute treatment of angina, heart attacks and heart failure. Can cause headache and dizziness on standing. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '45','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '85','Expiry_Date' => '2017-03-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '1000','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '250','Pack' => '1.00','Strength' => '0.50','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '130','Item_Name' => 'Griseofulvin 500mg tab','Cost_Price' => '212','Selling_Price' => '300','Quantity' => '1200','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'contraindicated in severe liver disease, SLE, porphyria. See BNF Appx 1 for interactions.','Patient_Info_Rukiga' => '','Patient_Info' => 'A strong anti-fungal medication used to treat fungal infections of the skin. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '23','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '255','Expiry_Date' => '2018-08-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.50','Ip_Adult_Daily_Cost' => '150','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '150','Pack' => '1.00','Strength' => '500.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '131','Item_Name' => 'Haloperidol (Decanoate) 50mg 1mL inj','Cost_Price' => '24000','Selling_Price' => '28000','Quantity' => '70','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'first-generation anti-psychotic, contraindicated in coma, cns depression. Caution if pt has severe respiratory or has cardiovascular disease, consider ECG. Caution in epileptic pts and those c prostatic hypertrophy. Do FBC if unexplained infection or feve','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used in the treatment of psychosis. It can cause sedation and movement disorders. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'GSF','Drug_Category' => '46','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '11','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.50','Ip_Adult_Daily_Cost' => '42000','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '14000','Pack' => '1.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '132','Item_Name' => 'Haloperidol 10mg tab','Cost_Price' => '220','Selling_Price' => '350','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'first-generation anti-psychotic, contraindicated in coma, cns depression. Caution if pt has severe respiratory or has cardiovascular disease, consider ECG. Caution in epileptic pts and those c prostatic hypertrophy. Do FBC if unexplained infection or feve','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used in the treatment of psychosis. It can cause sedation and movement disorders. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'GSF','Drug_Category' => '46','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '-58','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '350','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '350','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '133','Item_Name' => 'Haloperidol 5mg tab','Cost_Price' => '205','Selling_Price' => '300','Quantity' => '3200','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'first-generation anti-psychotic, contraindicated in coma, cns depression. Caution if pt has severe respiratory or has cardiovascular disease, consider ECG. Caution in epileptic pts and those c prostatic hypertrophy. Do FBC if unexplained infection or feve','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used in the treatment of psychosis. It can cause sedation and movement disorders. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'GSF','Drug_Category' => '46','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '588','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '600','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '300','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '134','Item_Name' => 'Haloperidol 5mg 1ml inj','Cost_Price' => '3600','Selling_Price' => '4600','Quantity' => '180','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'first-generation anti-psychotic, contraindicated in coma, cns depression. Caution if pt has severe respiratory or has cardiovascular disease, consider ECG. Caution in epileptic pts and those c prostatic hypertrophy. Do FBC if unexplained infection or feve','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used in the treatment of psychosis. It can cause sedation and movement disorders. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'GSF','Drug_Category' => '46','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-12','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '9200','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '2300','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '135','Item_Name' => 'Heparin Sodium 5000 IU /ml 5 ml vial','Cost_Price' => '16394','Selling_Price' => '22000','Quantity' => '5','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '10','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Heparin is a cheaper preparation than Enoxaparin (LMWH)| but needs more lab monitoring. It is contraindicated in thrombocytopaenia, recent cerebral haemorrhage, severe hypertension, peptic ulcer, after major surgery or trauma, acute bacterial endocarditis','Patient_Info_Rukiga' => '','Patient_Info' => 'An injection which thins the blood and is used to treat blood clots.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '40','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '5','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '22000','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '5.00','Strength' => '999.99','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '136','Item_Name' => 'Hepatitis B Vaccine (one dose) 2.5 IU in 0.5mL','Cost_Price' => '21292','Selling_Price' => '35000','Quantity' => '80','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '10','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'inactivated hepatitis B surface Antigen ','Patient_Info_Rukiga' => '','Patient_Info' => 'Given to help your immune system to protect you from developing hepatitis B.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '7','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '119','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '2.50','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '137','Item_Name' => 'Hydralazine 20mg 2ml inj','Cost_Price' => '19074','Selling_Price' => '22000','Quantity' => '10','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Vasodilator, used alone causes tachycadia & fluid retention so usually use as adjunct to other Rx eg beta blocker or thiazide. SLE should be suspected if pt develops unexplained wt loss, arthritis, or ill health.','Patient_Info_Rukiga' => '','Patient_Info' => 'Medication used to treat very high blood pressure.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '52','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '19','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '88000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '22000','Pack' => '2.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '138','Item_Name' => 'Hydralazine 25mg tab','Cost_Price' => '121','Selling_Price' => '200','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Medication used to treat high blood pressure which is resistent to other medication.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '52','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '29','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.50','Ip_Adult_Daily_Cost' => '500','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '300','Pack' => '1.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '139','Item_Name' => 'Hydrocortisone 100mg inj in 2mls','Cost_Price' => '1441','Selling_Price' => '3000','Quantity' => '190','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Steroid. Prolonged use may cause adrenal atrophy, immunosuppression, increased risk of severe chickenpox or measles. If used long term pt should carry a warning card and be advised not to stop Rx abruptly. High doses may cause psychiatric problems, cata','Patient_Info_Rukiga' => '','Patient_Info' => 'A steroid used to reduce inflammation and allergic reactions. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '61','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '3000','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '1500','Pack' => '2.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '140','Item_Name' => 'Hydrocortisone Oint 1% 20g','Cost_Price' => '2130','Selling_Price' => '3000','Quantity' => '72','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Weak steroid preparation, will not cause skin atrophy.','Patient_Info_Rukiga' => '','Patient_Info' => 'Mild steroid cream used to reduce skin inflammation in conditions such as eczema. Apply thinly.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '5','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '20.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '141','Item_Name' => 'Hyoscine Butyl Bromide 10mg tab','Cost_Price' => '108','Selling_Price' => '150','Quantity' => '2500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Relaxes the bowel wall to treat abdominal cramps.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '20','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '308','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '75','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '142','Item_Name' => 'Hyoscine Butyl Bromide 20mg 1mL inj','Cost_Price' => '385','Selling_Price' => '2000','Quantity' => '70','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Used to treat excessive respiratory secretions and bowel spasm in end of life care.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '20','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '29','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '8000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '2000','Pack' => '1.00','Strength' => '20.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '143','Item_Name' => 'Ibuprofen 200mg tab','Cost_Price' => '24','Selling_Price' => '50','Quantity' => '24800','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in moderate renal impairment.?Caution in elderly. Contra-indicated in severe heart failure. Risk GI toxicity. May worsen asthma in some pts.','Patient_Info_Rukiga' => '','Patient_Info' => 'Reduces inflammation & temperature. May cause nausea & sometimes bleeding from the stomach and ulcers. May worsen asthma. Usually avoid in pregnancy. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '149','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '50','Pack' => '1.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '144','Item_Name' => 'Ibuprofen syrup 100mg in 5mLs (100mL) ','Cost_Price' => '1500','Selling_Price' => '2500','Quantity' => '85','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Avoid in moderate renal impairment.?Caution in elderly. Contra-indicated in severe heart failure. Risk GI toxicity. May worsen asthma in some pts.','Patient_Info_Rukiga' => '','Patient_Info' => 'Reduces inflammation & temperature. May cause nausea & sometimes bleeding from the stomach and ulcers. May worsen asthma. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '2','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '2500','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '2500','Pack' => '100.00','Strength' => '20.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '145','Item_Name' => 'Imipramine 25mg tab','Cost_Price' => '96','Selling_Price' => '150','Quantity' => '3100','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Tricyclic, caution in cardiovascular disease as risk arrhythmias, care in diabetes & epilepsy. May worsen prostatic hypertrophy. May worsen psychosis or bipolar disorder.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used to improve low mood. It can take 4-6 weeks to notice improvement. Do not stop this medication suddenly.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '13','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '1384','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '900','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '450','Pack' => '1.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '146','Item_Name' => 'Insulin Soluble 100IU/mL 10mL (50% Gsf)','Cost_Price' => '17836','Selling_Price' => '20000','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '10','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '"Actrapid" insulin. Good Samaritan fund covers 50%','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the treatment of diabetes to lower the level of sugar in the blood. Can cause episodes of very low blood sugar.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'GSF','Drug_Category' => '60','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '47','Expiry_Date' => '2017-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '40000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '20000','Pack' => '10.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '147','Item_Name' => 'Insulin Isophane 100IU/mL 10mL (50% GSf )','Cost_Price' => '18082','Selling_Price' => '20000','Quantity' => '10','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '10','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Long acting insulin. Good Samaritan fund covers 50%','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the treatment of diabetes to lower the level of sugar in the blood. Can cause episodes of very low blood sugar.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'GSF','Drug_Category' => '60','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '22','Expiry_Date' => '2018-05-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '120000','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '60000','Pack' => '10.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '148','Item_Name' => 'Insuline Mixtard 30/70 100IU/ml 10 ml (50% Gsf )','Cost_Price' => '17000','Selling_Price' => '20000','Quantity' => '190','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '10','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Mixture of 30% short acting and 70% long acting. Good Samaritan fund covers 50%','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the treatment of diabetes to lower the level of sugar in the blood. Can cause episodes of very low blood sugar.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'GSF','Drug_Category' => '60','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '19','Expiry_Date' => '2018-07-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.30','IP_Paed_Daily_Cost' => '6000','Pack' => '10.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '149','Item_Name' => 'Ipratropium 500mcg + salbutamol 2.5mg Nebule 2.5mL','Cost_Price' => '900','Selling_Price' => '3000','Quantity' => '660','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '3','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'mix sympathomimetic and atropine-like action.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used to widen the airways in conditions such as asthma to improve breathing.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '12','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '63','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '3000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '150','Item_Name' => 'Ketamine 50mg/mL 10mL','Cost_Price' => '3808','Selling_Price' => '5000','Quantity' => '90','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Analgesic / bronchodilator effect as well as dissociative anaesthetic action. Potential for emergence delerium. Increases BP and ICP so contra-indicated in head injury.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used to put the patient to sleep before a procedure.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '47','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '10','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '1000','Pricing_Factor_Children' => '0.20','IP_Paed_Daily_Cost' => '1000','Pack' => '10.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '151','Item_Name' => 'Ketoconazole 200mg tab','Cost_Price' => '122','Selling_Price' => '200','Quantity' => '300','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Rare risk hepatotoxicity; tell pt to report immediately if develops anorexia,vomiting, fatigue, abdo pain, jaundice or dark urine. May cause pruritis. Lot of interactions see BNF Appendix to check.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used to treat fungal infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '23','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '325','Expiry_Date' => '2018-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '40','Pricing_Factor_Children' => '0.20','IP_Paed_Daily_Cost' => '40','Pack' => '1.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '152','Item_Name' => 'Lactulose 67g 100mL ','Cost_Price' => '8265','Selling_Price' => '12000','Quantity' => '29','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'semi-synthetic disaccharide, osmotic laxative. Used in hepatic encephalopathy and for Rx of constipation.','Patient_Info_Rukiga' => '','Patient_Info' => 'Treats constipation by softening the stool.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '24','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '*** deposit','Long_Term' => 'No','Pharmacy_Stock' => '-4','Expiry_Date' => '2018-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.20','Ip_Adult_Daily_Cost' => '2400','Pricing_Factor_Children' => '0.20','IP_Paed_Daily_Cost' => '2400','Pack' => '100.00','Strength' => '67.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '153','Item_Name' => 'Levofloxacin 500mg tab','Cost_Price' => '2635','Selling_Price' => '3500','Quantity' => '160','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Quinolone. Greater activity vs pneumococci than ciprofloxacin. Caution in epilepsy and patients with G6PD deficiency, myasthenia and in children & teenagers as risk of arthropathy.Avoid exposure to bright sunlight. May prolong QT interval. Tendon damage m','Patient_Info_Rukiga' => '','Patient_Info' => 'An antibiotic used to treat infection. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '74','Expiry_Date' => '2019-06-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '10500','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '5250','Pack' => '1.00','Strength' => '500.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '154','Item_Name' => 'Levo-thyroxine 0.1mg tab','Cost_Price' => '763','Selling_Price' => '1000','Quantity' => '364','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'in pan-hypopituitarism or predisposition to adrenal insufficiency initiate cortico-steroid prior to thyroxine.','Patient_Info_Rukiga' => '','Patient_Info' => 'Thyroid hormone replacement to increase availability in the body in patients with an under-active thyroid gland.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '58','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '175','Expiry_Date' => '2018-06-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '0.10','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '155','Item_Name' => 'Lidocaine (Lignocaine) 2% 20mL inj','Cost_Price' => '1428','Selling_Price' => '2000','Quantity' => '100','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'IV injection may cause convulsions & cardio-vascular collapse. Reduce dose in elderly or debilitated.','Patient_Info_Rukiga' => '','Patient_Info' => 'A local anaesthetic used to reduce sensation before procedures.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '25','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '55','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '4000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '2000','Pack' => '20.00','Strength' => '0.40','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '156','Item_Name' => 'Lisinopril 10mg tab','Cost_Price' => '483','Selling_Price' => '550','Quantity' => '2700','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'discontinue potassium supplements or potassium sparing diuretics e.g. spironolactone before introducing ACE inhibitor as risk of hyperkalaemia. Observe for first-dose hypotension esp if on furosemide. Check renal function before starting. May cause persis','Patient_Info_Rukiga' => 'niguyamba esingo omubarwaire bashukari,nigucyendeza puresha','Patient_Info' => 'Medication used in the treatment of high blood pressure, heart failure and to protect the kidneys in diabetes. It can cause a persistent dry cough as well as significantly low blood pressure.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '26','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '795','Expiry_Date' => '2018-11-16','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.50','Ip_Adult_Daily_Cost' => '275','Pricing_Factor_Children' => '0.25','IP_Paed_Daily_Cost' => '138','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '157','Item_Name' => 'Lithium Carbonate 400mg tab','Cost_Price' => '600','Selling_Price' => '800','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Lithium toxicity is worsened by sodium depletion so concurrent use of diuretics especially thiazides is hazardous and should be avoided. Avoid breast feeding. May develop hypo-throidism.','Patient_Info_Rukiga' => '','Patient_Info' => 'Medication used in mood disorders. Seek urgent advice if develop problems with movement or speech. Do not stop this medication suddenly.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '53','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '468','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '1600','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '800','Pack' => '1.00','Strength' => '400.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '158','Item_Name' => 'Loperamide 2mg cap','Cost_Price' => '30','Selling_Price' => '80','Quantity' => '100','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Anti-motility drug. Not suitable for young children. Avoid if abdominal distension, active ulcerative colitis or antibiotic-associated colitis.','Patient_Info_Rukiga' => 'nigutamba ekirukano','Patient_Info' => 'Drug used to stop diarrhoea.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '51','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '189','Expiry_Date' => '2018-11-17','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '160','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '80','Pack' => '1.00','Strength' => '2.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '159','Item_Name' => 'Losartan 50mg tab','Cost_Price' => '556','Selling_Price' => '800','Quantity' => '1280','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'useful alternative to ACE inhibitor if pt has persistent cough side-effect. Caution in renal artery stenosis. May cause vertigo.','Patient_Info_Rukiga' => 'nigukyendeza puresha .
|
||||
kyendeza omwonyo nebishaju','Patient_Info' => 'Medication used in the treatment of high blood pressure, heart failure and to protect the kidneys in diabetes. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '49','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '118','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '160','Item_Name' => 'Losartan 50mg Hydrochlothiazide 12.5mg tab','Cost_Price' => '601','Selling_Price' => '800','Quantity' => '1304','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'useful alternative to ACE inhibitor if pt has persistent cough side-effect. Caution in renal artery stenosis. May cause vertigo.','Patient_Info_Rukiga' => '','Patient_Info' => 'Medication used in the treatment of high blood pressure, heart failure and to protect the kidneys in diabetes. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '49','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '530','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '800','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '400','Pack' => '1.00','Strength' => '62.50','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '161','Item_Name' => 'Lubricating Jelly (KY) 42g','Cost_Price' => '11898','Selling_Price' => '15000','Quantity' => '33','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A water based gel used for lubrication in examinations.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '42','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '30000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '15000','Pack' => '42.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '162','Item_Name' => 'Magnesium Sulphate 50% 5g in 10mL inj','Cost_Price' => '3792','Selling_Price' => '8000','Quantity' => '50','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '1','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'SEE REGIME IN MATERNITY & A&E FOR ECLAMPSIA','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the acute prevention and treatment of seizures in pregnancy. Also used to treat acute asthma attacks.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '15','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '32000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '16000','Pack' => '10.00','Strength' => '500.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '163','Item_Name' => 'Magnesium Trisilicate susp 100mL','Cost_Price' => '1494','Selling_Price' => '2500','Quantity' => '132','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used in symptomatic relief of abdominal pain due to stomach acid/ulcers.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '50','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '38','Expiry_Date' => '2018-05-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '2500','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '100.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '164','Item_Name' => 'Magnesium Trisilicate 250mg tab','Cost_Price' => '7','Selling_Price' => '50','Quantity' => '3976','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used in symptomatic relief of abdominal pain due to stomach acid/ulcers.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'yes','Drug_Category' => '50','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '957','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '50','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '165','Item_Name' => 'Mannitol 20% 100 ml infusion 200g/L','Cost_Price' => '3392','Selling_Price' => '6600','Quantity' => '34','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '1','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Osmotic diuretic for treating raised intra-cranial or intra-occular pressure. Extravasation causes inflammation. Contra-indicated in severe cardiac failure or pulmonary oedema or intra-cranial bleeding. May cause hypotension and fluid/electrolyte imbalanc','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the acute treatment of high pressure in the brain. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '22','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '51','Expiry_Date' => '2016-11-11','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.50','Ip_Adult_Daily_Cost' => '3300','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '100.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '166','Item_Name' => 'Mebendazole 100mg tab','Cost_Price' => '43','Selling_Price' => '100','Quantity' => '4700','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => 'nigwita enjoka zomunda..
|
||||
onene obujuma','Patient_Info' => 'Medication used to kill worms living in the gut.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '5','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '276','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '167','Item_Name' => 'Metformin 500mg tab','Cost_Price' => '59','Selling_Price' => '120','Quantity' => '23500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Biguanide. Risk of lactic acidosis in renal impairment. Avoid in ketoacidosis. Drug of 1st choice in overwt pt where diet fails to control diabetes. Decreases gluconeogenesis, increases peripheral utilisation of glucose.','Patient_Info_Rukiga' => 'nigukyendeza sukari omushagama.
|
||||
nigubas kureta ekirukano.
|
||||
ogumire waaza kurya','Patient_Info' => 'Used to control blood sugar levels in diabetes. Can cause diarrhoea.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '55','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '2168','Expiry_Date' => '2018-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.30','Ip_Adult_Daily_Cost' => '36','Pricing_Factor_Children' => '0.15','IP_Paed_Daily_Cost' => '18','Pack' => '1.00','Strength' => '500.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => 'S38','Government_Essential' => NULL),
|
||||
array('Item_Id' => '168','Item_Name' => 'Ergometrine (methyl) 0.2mg 1ml inj','Cost_Price' => '1360','Selling_Price' => '2500','Quantity' => '160','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Caution in cardiac disease, hypertension, porphyria.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used to stop bleeding from the womb following miscarriages or labour. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '64','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '46','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '15000','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '7500','Pack' => '1.00','Strength' => '0.20','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '169','Item_Name' => 'Methyldopa 250mg tab','Cost_Price' => '185','Selling_Price' => '250','Quantity' => '600','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Centrally acting antihypertensive, can be used in pregnancy. Side effects reduced if daily dose less than 1 gram. Contraindicated in depressed patients. Start with small dose if renal impairment. Positive direct Coomb\'s test in up to 20% of patients on m','Patient_Info_Rukiga' => 'nigukyendeza puresha omubakazi benda.','Patient_Info' => 'Used to treat high blood pressure in pregnancy.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '52','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '555','Expiry_Date' => '2018-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '170','Item_Name' => 'Metoclopramide 10mg tab','Cost_Price' => '30','Selling_Price' => '50','Quantity' => '1500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'CONTRAINDICATED IN GI OBSTRUCTION/PERFORATION/HAEMORRHAGE AND FOR 4 DAYS POST GI SURGERY. CAUTION UNDER AGE 20.','Patient_Info_Rukiga' => 'nigutamba esheshemi nokutanaka','Patient_Info' => 'Used to prevent and treat nausea and vomiting.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '56','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '268','Expiry_Date' => '2018-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '5.00','Ip_Adult_Daily_Cost' => '250','Pricing_Factor_Children' => '5.00','IP_Paed_Daily_Cost' => '250','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '171','Item_Name' => 'Metoclopramide 5mg/1mL 2mL inj','Cost_Price' => '281','Selling_Price' => '1500','Quantity' => '400','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'CONTRAINDICATED IN GI OBSTRUCTION/PERFORATION/HAEMORRHAGE AND FOR 4 DAYS POST GI SURGERY. CAUTION UNDER AGE 20.','Patient_Info_Rukiga' => 'nigutamba esheshemi nokutanaka','Patient_Info' => 'Used to prevent and treat nausea and vomiting.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '56','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '184','Expiry_Date' => '2017-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '9000','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '2.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '172','Item_Name' => 'Metolazone 5mg tab','Cost_Price' => '718','Selling_Price' => '1000','Quantity' => '4200','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Thiazide diuretic, particularly effective if combined with loop diuretic such as furosemide, profound diuresis may occur so monitor pt carefully. Can cause chest pain.','Patient_Info_Rukiga' => '','Patient_Info' => 'A strong diuretic medication which increases the removal of fluid from the body. Used to treat heart failure.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '22','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '119','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '173','Item_Name' => 'Metronidazole 200mg tab','Cost_Price' => '16','Selling_Price' => '50','Quantity' => '54000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'high activity against anaerobic bacteria & protozoa, used in treatment of tetanus. Drug of first choice for acute necrotising ulcerative gingivitis (Vincent\'s infection). May react with alcohol. May cause taste disturbance.','Patient_Info_Rukiga' => '','Patient_Info' => 'An antibiotic used to treat infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '8319','Expiry_Date' => '2021-01-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '75','Pack' => '1.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '174','Item_Name' => 'Metronidazole 200mg/5mL susp 100mL','Cost_Price' => '866','Selling_Price' => '1500','Quantity' => '-65','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'high activity against anaerobic bacteria & protozoa, used in treatment of tetanus. Drug of first choice for acute necrotising ulcerative gingivitis (Vincent\'s infection). May react with alcohol. May cause taste disturbance.','Patient_Info_Rukiga' => '','Patient_Info' => 'An antibiotic used to treat infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '111','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '4500','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '3000','Pack' => '100.00','Strength' => '40.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '175','Item_Name' => 'Metronidazole 500mg 100mL infusion','Cost_Price' => '846','Selling_Price' => '2500','Quantity' => '1292','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'high activity against anaerobic bacteria & protozoa, used in treatment of tetanus. Drug of first choice for acute necrotising ulcerative gingivitis (Vincent\'s infection). May react with alcohol. May cause taste disturbance.','Patient_Info_Rukiga' => '','Patient_Info' => 'An antibiotic used to treat infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '526','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '7500','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '5000','Pack' => '100.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '176','Item_Name' => 'Miconazole/Clobetasol/Gentamicin (MCG) Cream 2/0.5/0.1% 15g','Cost_Price' => '3840','Selling_Price' => '5000','Quantity' => '40','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'use in selected patients - risk of encouraging resistant organisms. Contains potent steroid clobetasol with potential systemic & skin side effects.','Patient_Info_Rukiga' => '','Patient_Info' => 'A topical cream used to reduce inflammation and treat skin infections. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '***','Long_Term' => 'No','Pharmacy_Stock' => '16','Expiry_Date' => '2018-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '5000','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '2500','Pack' => '15.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '177','Item_Name' => 'Misoprostol 200microgram tab','Cost_Price' => '774','Selling_Price' => '2500','Quantity' => '800','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '3','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Synthetic prostaglandin analogue, used in Rx gastric & duodenal ulcers.Potent uterine stimulant. If used in women of childbearing age must use effective contraception. Used in induction of labour and treatment of post-partum haemorrhage (see protocols).','Patient_Info_Rukiga' => 'nigureta ebisha omubakazi benda','Patient_Info' => 'Used to induce labour.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '64','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'insurance covers maternity use but not GI long term','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '380','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '15000','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '7500','Pack' => '1.00','Strength' => '0.20','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => 'S28','Government_Essential' => NULL),
|
||||
array('Item_Id' => '178','Item_Name' => 'Morphine 15mg/mL inj','Cost_Price' => '1297','Selling_Price' => '3500','Quantity' => '290','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Controlled drug. Avoid in acute asthma or chronic obstructive pulmonary disease.Caution in obstructive or inflammatory bowel conditions. Avoid if risk of paralytic ileus. Avoid in raised intra-cranial pressure, coma, or head injury as interferes with pupi','Patient_Info_Rukiga' => '','Patient_Info' => 'An opioid based painkiller used in severe pain. Can cause drowsiness and confusion.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '35','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-10','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.30','IP_Paed_Daily_Cost' => '1050','Pack' => '1.00','Strength' => '15.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '179','Item_Name' => 'Morphine Solution 5mg in 5mL (250mLs)','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '10','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Controlled drug. Avoid in acute asthma or chronic obstructive pulmonary disease.Caution in obstructive or inflammatory bowel conditions. Avoid if risk of paralytic ileus. Avoid in raised intra-cranial pressure, coma, or head injury as interferes with pupi','Patient_Info_Rukiga' => 'nigucyendeza obusaasi bwingi.
|
||||
nigubas kureeta kugumigwa omukushohoza','Patient_Info' => 'An opioid based painkiller used in severe pain. Can cause drowsiness and confusion as well as constipation with long term use.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '35','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'free to all users','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '15237','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '0','Pack' => '250.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '180','Item_Name' => 'Multivitamin tab','Cost_Price' => '22','Selling_Price' => '50','Quantity' => '8500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '11','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A combination of vitamins used to increase the stores in the body.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '11658','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '50','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '50','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '181','Item_Name' => 'Nalidixic Acid 500mg tab','Cost_Price' => '203','Selling_Price' => '300','Quantity' => '100','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Quinolone. Caution in renal impairment. Caution in epilepsy and patients with G6PD deficiency, myasthenia and in children & teenagers as risk of arthropathy.Avoid exposure to bright sunlight. May prolong QT interval. Tendon damage may occure with potentia','Patient_Info_Rukiga' => '','Patient_Info' => 'An antibiotic used to treat urinary tract infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '360','Expiry_Date' => '2019-08-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '500.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '182','Item_Name' => 'Naloxone 0.4mg 1ml inj','Cost_Price' => '4146','Selling_Price' => '5000','Quantity' => '57','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Reversal of opioid effect, but half life shorter than the opioid so repeat dose may be needed. Also antagonises the analgesic effect of the opioid.','Patient_Info_Rukiga' => '','Patient_Info' => 'Acutely reverses the effects of opioid based medication.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '63','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '8','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '15000','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '7500','Pack' => '1.00','Strength' => '0.40','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '183','Item_Name' => 'Neuroton B1: 250mg/B2: 15mg/B6: 200mg/B12: 0.25mg/ Folic 0.5mg tab','Cost_Price' => '536','Selling_Price' => '1000','Quantity' => '1200','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '11','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A combination of folic acid and B vitamins to increase the stores in the body.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '*** deposit','Long_Term' => 'No','Pharmacy_Stock' => '1343','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '184','Item_Name' => 'Nifedipine 10mg (Regular) tab','Cost_Price' => '91','Selling_Price' => '150','Quantity' => '800','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the treatment of angina and hypertension.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '14','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '1978','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '900','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '450','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '185','Item_Name' => 'Nifedipine 20mg (Retard) tab','Cost_Price' => '28','Selling_Price' => '100','Quantity' => '10000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Common flushing & headache & ankle swelling side effects. Contraindicated in cardiogenic shock, unstable angina, significant aortic stenosis.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the treatment of angina and hypertension.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '14','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '4479','Expiry_Date' => '2019-08-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '400','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '200','Pack' => '1.00','Strength' => '20.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => 'S36','Government_Essential' => NULL),
|
||||
array('Item_Id' => '186','Item_Name' => 'Nitrofurantoin 100mg tab','Cost_Price' => '43','Selling_Price' => '100','Quantity' => '2700','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'For UTI\'s. Caution with anaemia, diabetes, electrolyte imbalance, pulmonary disease. Contraindicated under 3 months age; G6PD deficiency; acute porphyria. Jaundice reported. Peripheral neuropathy, LE type syndrome etc.','Patient_Info_Rukiga' => '','Patient_Info' => 'An antibiotic used in the treatment of urinary tract infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '577','Expiry_Date' => '2018-10-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '200','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '187','Item_Name' => 'Norethisterone 5mg tab','Cost_Price' => '1277','Selling_Price' => '2000','Quantity' => '120','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Progestogen / testosterone analogue. See BNF information.','Patient_Info_Rukiga' => '','Patient_Info' => 'used in management of premenstrual syndrome,endometriosis,dysfunctional bleeding','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '65','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '*** deposit','Long_Term' => 'No','Pharmacy_Stock' => '130','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '8000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '4000','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '188','Item_Name' => 'Nystatin Suspension 100,000U/mL 30mL','Cost_Price' => '1966','Selling_Price' => '3000','Quantity' => '-50','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '10','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Anti-fungal not absorbed from GI tract','Patient_Info_Rukiga' => 'nigutamba ebironda byomukanwa.','Patient_Info' => 'A topical solution used to treat oral thrush. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '23','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '99','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '9000','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '4500','Pack' => '30.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '189','Item_Name' => 'Nystatin Vag. Pessaries 100,000 Units ','Cost_Price' => '136','Selling_Price' => '250','Quantity' => '450','Reoder_Level' => '0','Description' => '','Drug_Form' => '24','Drug_Unit' => '13','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Local treatment for vaginal thrush.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '23','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-38','Expiry_Date' => '2017-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '750','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '500','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '190','Item_Name' => 'Omeprazole 20mg cap','Cost_Price' => '39','Selling_Price' => '150','Quantity' => '12900','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Proton pump inhibitor. May mask features of gastric cancer. Rebound acid hypersecretion may occur after discontinuing PPI.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used to reduce stomach acid in the treatment of stomach ulcers, acid reflux and H.pylori infection.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '66','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '1661','Expiry_Date' => '2018-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '600','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '300','Pack' => '1.00','Strength' => '20.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '191','Item_Name' => 'ORS Sachets ','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '975','Reoder_Level' => '0','Description' => '','Drug_Form' => '15','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A powder containing salts and sugars which is mixed with clean water and used to re-hydrate in diarrhoeal illness.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '540','Expiry_Date' => '2018-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => 'S05','Government_Essential' => NULL),
|
||||
array('Item_Id' => '192','Item_Name' => 'Oxcytocin10 IU 1mL inj','Cost_Price' => '481','Selling_Price' => '1000','Quantity' => '800','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '10','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Contraindicated in hypertonic uterine contractions, severe PET etc. Follow maternity guidelines carefully with adequate monitoring.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used to augment labour and to prevent bleeding after delivery of the placenta.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '64','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '360','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1000','Pricing_Factor_Children' => '0.30','IP_Paed_Daily_Cost' => '300','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '193','Item_Name' => 'Paracetamol 125mg/5mL 100mL susp','Cost_Price' => '1023','Selling_Price' => '1800','Quantity' => '450','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Check no paracetamol in other preparations being taken by the patient e.g. over the counter mixtures','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the treatment of mild to moderate pain and fever. Do not take above the prescribed dose.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '48','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '148','Expiry_Date' => '2018-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.40','Ip_Adult_Daily_Cost' => '720','Pricing_Factor_Children' => '0.20','IP_Paed_Daily_Cost' => '360','Pack' => '100.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '194','Item_Name' => 'Paracetamol 500mg tab','Cost_Price' => '15','Selling_Price' => '50','Quantity' => '96800','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Caution in alcohol dependence / hepatic disorders','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the treatment of mild to moderate pain and fever. Do not take above the prescribed dose.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '48','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '30709','Expiry_Date' => '2019-11-15','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '50','Pack' => '1.00','Strength' => '500.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '195','Item_Name' => 'Paracetamol Suppositories 250mg','Cost_Price' => '718','Selling_Price' => '1200','Quantity' => '250','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Caution in alcohol dependence / hepatic disorders','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the treatment of mild to moderate pain and fever. Do not take above the prescribed dose.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '48','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '176','Expiry_Date' => '2019-02-14','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '4800','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '1800','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '196','Item_Name' => 'Penicillin V 250mg tab','Cost_Price' => '60','Selling_Price' => '100','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Contraindicated in penicillin hypersensitivity. Reduce dose in renal impairment.','Patient_Info_Rukiga' => '','Patient_Info' => 'A penicillin antibiotic used to treat infection, especially tonsillitis. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '1341','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '197','Item_Name' => 'Pethidine 100mg/mL inj (1mL)','Cost_Price' => '1194','Selling_Price' => '3500','Quantity' => '4480','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'not suitable for severe continuing pain, accumulation of metabolites may cause neurotoxicity, cardiac arrythmias, cor pulmonale...','Patient_Info_Rukiga' => '','Patient_Info' => 'An opioid based painkiller used in moderate to severe pain, particularly during labour. Can cause drowsiness and confusion.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '35','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '100','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '3500','Pricing_Factor_Children' => '0.40','IP_Paed_Daily_Cost' => '1400','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '198','Item_Name' => 'Pethidine 50mg/ml inj (1mL)','Cost_Price' => '1113','Selling_Price' => '3500','Quantity' => '2910','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'not suitable for severe continuing pain, accumulation of metabolites may cause neurotoxicity, cardiac arrythmias, cor pulmonale...','Patient_Info_Rukiga' => '','Patient_Info' => 'An opioid based painkiller used in moderate to severe pain, particularly during labour. Can cause drowsiness and confusion.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '35','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '99','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '8.00','Ip_Adult_Daily_Cost' => '28000','Pricing_Factor_Children' => '4.00','IP_Paed_Daily_Cost' => '14000','Pack' => '1.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '199','Item_Name' => 'Phenobarbital100mg 1mL inj','Cost_Price' => '11890','Selling_Price' => '15000','Quantity' => '40','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Sedative. May cause hyperkinesia in children. Rebound seizures may occur on withdrawal. Respiratory depression. Avoid in severe hepatic disease as may precipitate coma. Can cause cholestasis.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the acute management of seizures, particularly in young children. Can cause slow breathing and patients need to be monitored closely.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '54','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '38','Expiry_Date' => '2017-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '8.00','Ip_Adult_Daily_Cost' => '120000','Pricing_Factor_Children' => '4.00','IP_Paed_Daily_Cost' => '60000','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '200','Item_Name' => 'Phenobarbitone 30mg tab','Cost_Price' => '12','Selling_Price' => '50','Quantity' => '2000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Sedative. May cause hyperkinesia in children. Rebound seizures may occur on withdrawal. Respiratory depression. Avoid in severe hepatic disease as may precipitate coma. Can cause cholestasis.','Patient_Info_Rukiga' => '','Patient_Info' => 'A drug used to prevent seizures in epilepsy. Needs to be taken regularly. In women, discuss with a doctor before becoming pregnant.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '54','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '848','Expiry_Date' => '2019-07-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '8.00','Ip_Adult_Daily_Cost' => '400','Pricing_Factor_Children' => '4.00','IP_Paed_Daily_Cost' => '200','Pack' => '1.00','Strength' => '30.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '201','Item_Name' => 'Phenytoin 100mg tab','Cost_Price' => '20','Selling_Price' => '50','Quantity' => '15000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Narrow therapeutic index. Variable absorption. Toxicity causes nystagmus, diplopia, slurred speech, ataxia,confusion, hyperglycaemia. May lead to hirsuitism, coarse facies, gingival hyperplasia. Rashes. See BNF.','Patient_Info_Rukiga' => '','Patient_Info' => 'A drug used to prevent seizures in epilepsy. Needs to be taken regularly. In women, discuss with a doctor before becoming pregnant.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '54','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '1206','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '200','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '202','Item_Name' => 'Phenytoin 50mg 1mL inj','Cost_Price' => '8000','Selling_Price' => '15000','Quantity' => '40','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Narrow therapeutic index. Variable absorption. Toxicity causes nystagmus, diplopia, slurred speech, ataxia,confusion, hyperglycaemia. May lead to hirsuitism, coarse facies, gingival hyperplasia. Rashes. See BNF.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the acute management of seizures. Can cause slow breathing and patients need to be monitored closely.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '54','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'out of stock','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '15','Expiry_Date' => '2018-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '60000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '30000','Pack' => '1.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '203','Item_Name' => 'Phytomenadione (vit k ) 1mg 1mL inj','Cost_Price' => '1817','Selling_Price' => '2500','Quantity' => '800','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'THE ONE OF 10MG EXPIRES END OF NOVEMBER 2016 PLEASE USE IT','Patient_Info_Rukiga' => '','Patient_Info' => 'Vitamin K supplement increase the stores in the body. Reduces the risk of bleeding in babies or to control bleeding in some adults.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '153','Expiry_Date' => '2018-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '5000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '2500','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '204','Item_Name' => 'Phytomenadione (Vit K) 10mg 1mL inj','Cost_Price' => '947','Selling_Price' => '2000','Quantity' => '80','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Vitamin K supplement increase the stores in the body. Reduces the risk of bleeding in babies or to control bleeding in some adults.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '49','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '12000','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '6000','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '205','Item_Name' => 'Piracetam 800mg (Nootropil) tab','Cost_Price' => '900','Selling_Price' => '1800','Quantity' => '540','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Aim to wean off Rx. Review at least every six months. Avoid abrupt withdrawal. Increased risk of bleeding including stroke. Contraindicated in cerebral haemorrhage.','Patient_Info_Rukiga' => '','Patient_Info' => 'A drug used to treat movement disorders. Do not stop this medication suddenly.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '62','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '*** deposit','Long_Term' => 'No','Pharmacy_Stock' => '150','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '10800','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '5400','Pack' => '1.00','Strength' => '800.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '206','Item_Name' => 'Potassium Chloride Slow Release 600mg tab','Cost_Price' => '409','Selling_Price' => '800','Quantity' => '180','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'contraindicated if plasma potassium above 5mmol/litre. ','Patient_Info_Rukiga' => '','Patient_Info' => 'Potassium supplement to increase the stores in the body. Can cause nausea and vomiting. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '234','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '600.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '207','Item_Name' => 'Potassium Chloride 10% 10mL','Cost_Price' => '1','Selling_Price' => '1500','Quantity' => '50','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'EXTREME CAUTION WITH IV POTASSIUM WHICH CAN CAUSE CARDIAC ARREST. MUST BE CORRECTLY DILUTED AND CHECKED.','Patient_Info_Rukiga' => '','Patient_Info' => 'Potassium supplement used in intravenous fluids to increase the stores in the body.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '85','Expiry_Date' => '2018-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1500','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '1500','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '208','Item_Name' => 'Praziquantel 600mg tab ','Cost_Price' => '780','Selling_Price' => '1200','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Effective broad-spectrum schistosomicide, low toxicity.','Patient_Info_Rukiga' => '','Patient_Info' => 'Treatment for schistosomiasis (bilharzia).','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '67','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'out of stock','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '100','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1200','Pricing_Factor_Children' => '0.50','IP_Paed_Daily_Cost' => '600','Pack' => '1.00','Strength' => '600.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '209','Item_Name' => 'Prednisolone Eye drops (5mLs)','Cost_Price' => '5000','Selling_Price' => '8000','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '6','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Steroid. Dangerous if patient has herpetic corneal ulcer. Must be checked by ophthalmic officer with fluorescein.','Patient_Info_Rukiga' => '','Patient_Info' => 'A topical steroid used to reduce inflammation in the eye. Not for long term use. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '30','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '16000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '8000','Pack' => '25.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '210','Item_Name' => 'Prednisolone 5mg tab','Cost_Price' => '36','Selling_Price' => '50','Quantity' => '6800','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Steroid. Prolonged use may cause adrenal atrophy, immunosuppression, increased risk of severe chickenpox or measles. If used long term pt should carry a warning card and be advised not to stop Rx abruptly. High doses may cause psychiatric problems, cata','Patient_Info_Rukiga' => '','Patient_Info' => 'A steroid used to reduce inflammation and allergic reactions. If on long term treatment do not stop this medication suddenly. Can cause stomach ulcers with abdominal pain and bleeding.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '2015','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '211','Item_Name' => 'Pregabalin 75mg tab','Cost_Price' => '960','Selling_Price' => '1200','Quantity' => '1320','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'for focal seizures with or without generalisation. Also for neuropathic pain., anxiety, migraine prophylaxis. Avoid abrupt withdrawal. Caution in diabetes, elderly, history of psychosis. Long list Side effects see BNF.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used to treat nerve pain. Can also be used in the treatment of epilepsy. Do not stop this medication suddenly.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '54','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '*** deposit','Long_Term' => 'Yes','Pharmacy_Stock' => '382','Expiry_Date' => '2018-03-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '4800','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '2400','Pack' => '1.00','Strength' => '75.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '212','Item_Name' => 'Procaine Penicillin Fortified (PPF) 4MIU inj in 8mLs','Cost_Price' => '619','Selling_Price' => '1500','Quantity' => '40','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '8','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'IM preparation. NOT for IV use. Contraindicated in penicillin hypersensitivity. Reduce dose in renal impairment.','Patient_Info_Rukiga' => '','Patient_Info' => 'An antibiotic used to treat infection. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '15','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-2','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '1500','Pack' => '8.00','Strength' => '0.50','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '213','Item_Name' => 'Promethazine 25mg tab','Cost_Price' => '21','Selling_Price' => '50','Quantity' => '6000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Sedating antihistamine. Significant anti-muscarinic activity so caution in prostatic hypertrophy, urinary retention, glaucoma. Care in epileptics.','Patient_Info_Rukiga' => '','Patient_Info' => 'An anti-histamine used in the treatment of allergic reactions to reduce symptoms. Sedation can occur and care must be taken with driving.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '30','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '9808','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '50','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '214','Item_Name' => 'Promethazine 25mg/mL 2mL inj','Cost_Price' => '202','Selling_Price' => '1500','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Sedating antihistamine. Significant anti-muscarinic activity so caution in prostatic hypertrophy, urinary retention, glaucoma. Care in epileptics. IM injection painful. Avoid extravasation iv use.','Patient_Info_Rukiga' => '','Patient_Info' => 'An anti-histamine used in the treatment of allergic reactions to reduce symptoms. Sedation can occur and care must be taken with driving.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '30','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '98','Expiry_Date' => '2016-12-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '1500','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '1500','Pack' => '2.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '215','Item_Name' => 'Propranolol 40mg tab','Cost_Price' => '28','Selling_Price' => '50','Quantity' => '77000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'contraindicated in asthma, uncontrolled heart failure, hypotension, second or third degree heart block','Patient_Info_Rukiga' => '','Patient_Info' => 'A drug used to treat physical symptoms of anxiety and overactive thyroid gland. It can cause fatigue, cold extremities and sleep disturbance. Avoid in asthma.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '18','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '49','Expiry_Date' => '2018-12-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '12.00','Ip_Adult_Daily_Cost' => '600','Pricing_Factor_Children' => '6.00','IP_Paed_Daily_Cost' => '300','Pack' => '1.00','Strength' => '40.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => 'S35','Government_Essential' => NULL),
|
||||
array('Item_Id' => '216','Item_Name' => 'Pylo-kit (lansoprazole, clarithromycin & tinidazole) cap','Cost_Price' => '25000','Selling_Price' => '40000','Quantity' => '10','Reoder_Level' => '0','Description' => '','Drug_Form' => '12','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A treatment used in the treatment of H.Pylori infection. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '***','Long_Term' => 'No','Pharmacy_Stock' => '6','Expiry_Date' => '2017-12-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '120000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '40000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '217','Item_Name' => 'Pyridoxine 25mg tab','Cost_Price' => '11','Selling_Price' => '50','Quantity' => '1500','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A B vitamin used to increase the stores in the body and to prevent nerve problems.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '992','Expiry_Date' => '2018-12-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '50','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '50','Pack' => '1.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '218','Item_Name' => 'Quinine 100mg/5mL 100mL syrup ','Cost_Price' => '2519','Selling_Price' => '3500','Quantity' => '35','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Caution in cardiac disease including AF, G6PD deficiency. Monitor glucose / electrolytes in parenteral use. Side effects = cinchonism including tinnitus., vertigo, headache etc. see BNF. Dangerous in overdosage.','Patient_Info_Rukiga' => '','Patient_Info' => 'Treats malaria by killing the malarial parasites. Can cause low blood sugar levels. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '7','Expiry_Date' => '2018-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '21000','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '10500','Pack' => '100.00','Strength' => '20.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '219','Item_Name' => 'Quinine Di-Hcl 600mg 2mL inj','Cost_Price' => '800','Selling_Price' => '1500','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Caution in cardiac disease including AF, G6PD deficiency. Monitor glucose / electrolytes in parenteral use. Side effects = cinchonism including tinnitus., vertigo, headache etc. see BNF. Dangerous in overdosage.','Patient_Info_Rukiga' => '','Patient_Info' => 'Treats malaria by killing the malarial parasites. Can cause low blood sugar levels.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '37','Expiry_Date' => '2018-12-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '4500','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '3000','Pack' => '2.00','Strength' => '300.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '220','Item_Name' => 'Quinine Sulphate 300mg tab','Cost_Price' => '145','Selling_Price' => '200','Quantity' => '1200','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Caution in cardiac disease including AF, G6PD deficiency. Monitor glucose / electrolytes in parenteral use. Side effects = cinchonism including tinnitus., vertigo, headache etc. see BNF. Dangerous in overdosage.','Patient_Info_Rukiga' => '','Patient_Info' => 'Treats malaria by killing the malarial parasites. Can cause low blood sugar levels. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '17','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '336','Expiry_Date' => '2018-12-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '600','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '400','Pack' => '1.00','Strength' => '300.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '221','Item_Name' => 'Rabies Vaccine ( course = 4 vials) 2.5 IU In 0.5mls','Cost_Price' => '27130','Selling_Price' => '35000','Quantity' => '10','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '10','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Used in the prevention of rabies by boosting the immune system. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '50%','Drug_Category' => '7','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '50% cover scheme','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '3','Expiry_Date' => '2016-12-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '222','Item_Name' => 'Ranitidine 150mg tab','Cost_Price' => '46','Selling_Price' => '100','Quantity' => '5100','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'H2 receptor blocker. May mask gastric cancer. Use half dose in renal impairment. May cause diarrhoea, headache, dizziness, rashes. Rarely hepatitis. Occasional blurred vision.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used to reduce stomach acid in the treatment of stomach ulcers and acid reflux.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '57','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '395','Expiry_Date' => '2019-01-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '100','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '150.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '223','Item_Name' => 'Ranitidine 50mg 2mL inj','Cost_Price' => '581','Selling_Price' => '3000','Quantity' => '270','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'H2 receptor blocker. May mask gastric cancer. Use half dose in renal impairment. May cause diarrhoea, headache, dizziness, rashes. Rarely hepatitis. Occasional blurred vision.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used to reduce stomach acid in the treatment of stomach ulcers and acid reflux.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '57','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '131','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '224','Item_Name' => 'Salbutamol 4mg tab','Cost_Price' => '0','Selling_Price' => '50','Quantity' => '800','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Oral salbutamol limited use, prefer inhaled salbutamol for asthma either nebuliser or MDI via spacer. Reduces K+, potentiated if aminophylline, diuretics or steroids also given. Lactic acidosis with high doses.Caution in hyperthyroidism, cardiovascular ','Patient_Info_Rukiga' => '','Patient_Info' => 'Medication used to treat asthma and wheeze by widening the airways. Can cause a tremor and palpitations.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '12','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '151','Expiry_Date' => '2017-06-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '150','Pack' => '1.00','Strength' => '4.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '225','Item_Name' => 'Salbutamol Inhaler 200 microgram','Cost_Price' => '5783','Selling_Price' => '8000','Quantity' => '80','Reoder_Level' => '0','Description' => '','Drug_Form' => '9','Drug_Unit' => '3','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Use spacer in children & in adults who have inadequate inhaler technique. Oral salbutamol limited use, prefer inhaled salbutamol for asthma either nebuliser or MDI via spacer. Reduces K+, potentiated if aminophylline, diuretics or steroids also given. L','Patient_Info_Rukiga' => '','Patient_Info' => 'Medication used to treat asthma wheeze by widening the airways. Can cause a tremor and palpitations.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '12','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '23','Expiry_Date' => '2017-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '48000','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '24000','Pack' => '200.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '226','Item_Name' => 'Salbutamol Nebules 5mg/ml','Cost_Price' => '2432','Selling_Price' => '4000','Quantity' => '30','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Reduces K+, potentiated if aminophylline, diuretics or steroids also given. Lactic acidosis with high doses.Caution in hyperthyroidism, cardiovascular disease, diabetes.','Patient_Info_Rukiga' => '','Patient_Info' => 'Medication used to treat acute asthma and wheeze by widening the airways. Can cause a tremor and palpitations.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '12','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '26','Expiry_Date' => '2018-08-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '227','Item_Name' => 'Secnidazole 1g tab','Cost_Price' => '825','Selling_Price' => '1500','Quantity' => '440','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '1','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'An drug used in the treatment of parasitic infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '28','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '4.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '3000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '228','Item_Name' => 'Silver Nitrate (stick) 40%','Cost_Price' => '7326','Selling_Price' => '11000','Quantity' => '7','Reoder_Level' => '0','Description' => '','Drug_Form' => '14','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Cauterisation. Protect surrounding skin with soft paraffin.','Patient_Info_Rukiga' => '','Patient_Info' => 'A topical treatment used to stop superficial bleeding and to treat warts on the skin. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '5','Expiry_Date' => '2018-11-17','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '8.00','Ip_Adult_Daily_Cost' => '88000','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '33000','Pack' => '20.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '229','Item_Name' => 'Silver Sulfadiazine cream 1% 15g','Cost_Price' => '1440','Selling_Price' => '4000','Quantity' => '66','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Sulfonamide. Caution G6PD Deficiency. Avoid in neonates. May cause leucopaenia.','Patient_Info_Rukiga' => '','Patient_Info' => 'Topical cream to prevent infection in burns, leg ulcers and sores.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '22','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '12000','Pricing_Factor_Children' => '1.50','IP_Paed_Daily_Cost' => '6000','Pack' => '15.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '230','Item_Name' => 'Sodium Chloride 0.9% 500ml','Cost_Price' => '1131','Selling_Price' => '3000','Quantity' => '7230','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A fluid containing salt administered to patients via a vein. Used in re-hydration and treatment of salt imbalances.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '36','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '11472','Expiry_Date' => '2019-07-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '3000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '3000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '231','Item_Name' => 'Sodium Lactate Compound 500ml','Cost_Price' => '1131','Selling_Price' => '3000','Quantity' => '1230','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A fluid administered to patients via a vein to maintain hydration.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '36','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '750','Expiry_Date' => '2019-06-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '9000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '6000','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '232','Item_Name' => 'Sodium Valpoate BP 133.5mg / Valproic Acid 58mg tab','Cost_Price' => '550','Selling_Price' => '800','Quantity' => '1280','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Anti-convulsant, also used in acute mania in bipolar disorder and migraine prophylaxis. Monitor liver function & blood count see BNF. Risk in children under 3 years.','Patient_Info_Rukiga' => '','Patient_Info' => 'A drug used to prevent seizures in epilepsy. Needs to be taken regularly. In women, discuss with a doctor before becoming pregnant.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '27','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '244','Expiry_Date' => '2018-07-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '1600','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '181.50','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '233','Item_Name' => 'Spironolactone 25mg tab','Cost_Price' => '232','Selling_Price' => '350','Quantity' => '2240','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Aldosterone antagonist, Potassium sparing diuretic so risk of hyperkalaemia. Side effects include hepatotoxicity, confusion, gynaecomastia, menstrual disturbance.','Patient_Info_Rukiga' => '','Patient_Info' => 'A diuretic medication which increases removal of fluid from the body and is used in liver disease and heart failure.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '22','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '1260','Expiry_Date' => '2019-07-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '350','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '350','Pack' => '1.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '234','Item_Name' => 'Streptomycin 1g inj in 5mLs','Cost_Price' => '1130','Selling_Price' => '2000','Quantity' => '100','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '1','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Aminoglycoside. To avoid overdose in obese pts use ideal weight for height to calculate dose. Main side effects are dose related. Avoid in myasthenia. Ototoxicity worsened by furosemide. Reduced dose in renal impairment with increased spacing of doses as ','Patient_Info_Rukiga' => '','Patient_Info' => 'A powerful antibiotic used to treat infections, especially TB. Can cause ear and kidney damage.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '6','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'free for TB Rx govt','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '40','Expiry_Date' => '2019-01-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '2000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '2000','Pack' => '5.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '235','Item_Name' => 'Suxamethonium 100mg 2mL inj','Cost_Price' => '3752','Selling_Price' => '5000','Quantity' => '10','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Short acting depolarising muscle relaxant used for endotracheal intubation.May cause bradycardia in children plus salivation so atropine premed may help. Occasional prolonged effect in cholinesterase deficient patients. Contraindicated if family history o','Patient_Info_Rukiga' => '','Patient_Info' => 'Used as part of general anaesthetic before a procedure or operation.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '61','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '50','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '2.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '236','Item_Name' => 'Tamoxifen 10mg tab','Cost_Price' => '0','Selling_Price' => '500','Quantity' => '120','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Increased risk of thrombo-embolic events. May cause hot flushes, vaginal bleeding - see BNF note on endometrial changes.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication used in the treatment of breast cancer. Can cause hot flushes. If you experience abnormal vaginal bleeding or discharge seek urgent medical assessment.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '59','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '-20','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '237','Item_Name' => 'Tetracycline 1% Eye Ointment 3.5g','Cost_Price' => '1071','Selling_Price' => '1500','Quantity' => '280','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Local antibiotic used to treat eye infections. Complete the full course.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '11','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '53','Expiry_Date' => '2018-08-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '4500','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '3000','Pack' => '21.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '238','Item_Name' => 'Thiamine 100mg tab','Cost_Price' => '615','Selling_Price' => '900','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A B Vitamin used to increase the stores in the body. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '2700','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '1800','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '239','Item_Name' => 'Thiopental 500mg inj in 10mls','Cost_Price' => '6307','Selling_Price' => '8500','Quantity' => '60','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Barbiturate. Re-distributed in body fat so wake quickly but metabolism slow so repeated doses may cause sedative effects for 24 hours. Very alkaline prepartion so avoid extravasation.','Patient_Info_Rukiga' => '','Patient_Info' => 'Used to put the patient to sleep before a procedure or operation as part of the general anaesthetic.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '47','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '65','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '8500','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '8500','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '240','Item_Name' => 'Tinoderm (benzoic acid 6% / Salicylic Acid 3% / Menthol 1%)10g paste**','Cost_Price' => '2360','Selling_Price' => '2700','Quantity' => '240','Reoder_Level' => '0','Description' => '','Drug_Form' => '14','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A topical cream used in the local treatment of fungal infections of the skin.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '23','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '10','Expiry_Date' => '2019-05-28','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '241','Item_Name' => 'Tramadol 100mg/2mL inj','Cost_Price' => '833','Selling_Price' => '2000','Quantity' => '325','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Opioid effect plus enhances serotonergic and adrenergic pathways. Fewer side effects like resp depression and constipation. May cause psychiatric reaction. Avoid in uncontrolled epilepsy. ','Patient_Info_Rukiga' => '','Patient_Info' => 'An opioid based painkiller used in moderate to severe pain. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '35','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '4000','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '2.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '242','Item_Name' => 'Tramadol 50mg tab','Cost_Price' => '166','Selling_Price' => '250','Quantity' => '600','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Opioid effect plus enhances serotonergic and adrenergic pathways. Fewer side effects like resp depression and constipation. May cause psychiatric reaction. Avoid in uncontrolled epilepsy. ','Patient_Info_Rukiga' => '','Patient_Info' => 'An opioid based painkiller used in moderate to severe pain. It can cause constipation with long term use.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '35','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '211','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '250','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '250','Pack' => '1.00','Strength' => '50.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '243','Item_Name' => 'Triamcinolone 40mg 1ml inj','Cost_Price' => '12000','Selling_Price' => '25000','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Steroid. As well as steroid side effects may cause proximal myopathy in high doses.','Patient_Info_Rukiga' => '','Patient_Info' => 'A steroid used to reduce inflammation and allergic reactions. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '21','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '***','Long_Term' => 'No','Pharmacy_Stock' => '5','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '50000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '25000','Pack' => '1.00','Strength' => '40.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '244','Item_Name' => 'Universal Linament (turpentine oil 2.5%) 100mL','Cost_Price' => '1140','Selling_Price' => '2000','Quantity' => '9','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A topical treatment used for muscle aches and pain.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '12','Expiry_Date' => '2018-11-02','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '20.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '245','Item_Name' => 'Vitamin A Capsules 200,000 IU cap','Cost_Price' => '286','Selling_Price' => '0','Quantity' => '2880','Reoder_Level' => '0','Description' => '','Drug_Form' => '8','Drug_Unit' => '10','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'overdose may cause rough skin, dry hair, hepatomegaly, raised ESR calcium and alkaline phosphatase levels. High level in pregnancy may cause birth defects.','Patient_Info_Rukiga' => '','Patient_Info' => 'Vitamin A supplement to increase the stores in the body.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => 'free from govt','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-2183','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '200.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '246','Item_Name' => 'Vitamin B Complex 2mL inj','Cost_Price' => '257','Selling_Price' => '50','Quantity' => '400','Reoder_Level' => '0','Description' => '','Drug_Form' => '6','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => ' nigwongyera vtamini B omumubiri','Patient_Info' => 'A mixture of B vitamins to increase the stores in the body.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '99','Expiry_Date' => '2018-11-02','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '150','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '100','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '247','Item_Name' => 'Vitamin B Complex (nicotinamide15mg / Riboflavin 1mg / Thiamine 1mg) tab','Cost_Price' => '18','Selling_Price' => '50','Quantity' => '20000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '11','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => ' nigwongyera vtamini B omumubiri','Patient_Info' => 'A mixture of B vitamins to increase the stores in the body.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '8','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '2580','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '6.00','Ip_Adult_Daily_Cost' => '300','Pricing_Factor_Children' => '3.00','IP_Paed_Daily_Cost' => '150','Pack' => '1.00','Strength' => '17.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '248','Item_Name' => 'Volini gel (Linseed oil, Diclofenac diethylamine 1.16%) 30g','Cost_Price' => '5714','Selling_Price' => '8000','Quantity' => '12','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Topical treatment to reduce inflammation and pain in muscles and joints.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '1','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '27','Expiry_Date' => '2017-02-28','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '8000','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '8000','Pack' => '21.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '249','Item_Name' => 'Warfarin 5mg tab','Cost_Price' => '137','Selling_Price' => '400','Quantity' => '140','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'Coumarin Anticoagulant. Monitor INR levels.Take 48 - 72 hours for effect to develop fully. See BNF for target INR for different conditions. Avoid cranberry juice! If any bleeding follow BNF guidance.','Patient_Info_Rukiga' => '','Patient_Info' => 'A medication which thins the blood and is used in the treatment of blood clots. Can cause bleeding.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '40','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '90','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '250','Item_Name' => 'Water for injection 100mL ','Cost_Price' => '71','Selling_Price' => '0','Quantity' => '-17400','Reoder_Level' => '0','Description' => '','Drug_Form' => '5','Drug_Unit' => '4','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A safe fluid used to administer medication via a vein.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '29970','Expiry_Date' => '2019-06-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '251','Item_Name' => 'Whitfields Ointment (Benzoic acid 6% /Salicylic acid 3%) 25g','Cost_Price' => '948','Selling_Price' => '2000','Quantity' => '6','Reoder_Level' => '0','Description' => '','Drug_Form' => '7','Drug_Unit' => '5','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'A topical cream used in the local treatment of fungal infections of the skin.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-13','Expiry_Date' => '2018-10-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '3.00','Ip_Adult_Daily_Cost' => '6000','Pricing_Factor_Children' => '2.00','IP_Paed_Daily_Cost' => '4000','Pack' => '25.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '252','Item_Name' => 'Zinc Sulphate 20mg tab','Cost_Price' => '129','Selling_Price' => '200','Quantity' => '3000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '2','Supplier_Id' => '2','Prompt' => 'reduces absorption of ciprofloxacin & tetracycline. May cause abdominal pain, nausea, vomiting, diarrhoea, headache, irritability.','Patient_Info_Rukiga' => ' nigukyendeza ekirukano','Patient_Info' => 'Zinc supplement used to increase the stores in the body and reduce the duration of diarrhoea.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '700','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '400','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '20.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '561','Item_Name' => 'Formalydehyde 35-38%','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '17','Reoder_Level' => '5','Description' => '','Drug_Form' => '4','Drug_Unit' => '4','Updated_At' => NULL,'Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '1','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => ' ','Patient_Info' => ' ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '47','Account_Id' => '8','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '1','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '999.99','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '563','Item_Name' => 'Mefanamic Acid 500mg tab','Cost_Price' => '130','Selling_Price' => '500','Quantity' => '800','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '3','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => 'Reduces inflammation and is used in the treatment of painful and heavy menstruation. May cause nausea & sometimes bleeding from the stomach and ulcers. May worsen asthma. Usually avoid in pregnancy. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '1','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '111','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '500.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '564','Item_Name' => 'Oxygen','Cost_Price' => '0','Selling_Price' => '2000','Quantity' => '100000','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '12','Updated_At' => NULL,'Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '3','Supplier_Id' => '1','Prompt' => 'Full SaO2 monitoring in babies under 1.5kg to avoid risk of Retinopathy of Prematurity','Patient_Info_Rukiga' => ' ','Patient_Info' => 'Used to increase the amount of oxygen available to a patient who has low oxygen levels in the blood. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '2000','Pricing_Factor_Children' => '0.75','IP_Paed_Daily_Cost' => '1500','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.50','IP_Infant_Daily_Cost' => '1000','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '565','Item_Name' => 'Dapsone 100mg','Cost_Price' => '73','Selling_Price' => '100','Quantity' => '1300','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-05-10 15:39:53','Item_Category_Id' => '3','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => ' nigwita obukooko omushagama ogumiire ogumare ','Patient_Info' => 'An antibiotic used to treat and prevent infections. Complete the full course of treatment.','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '11','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '220','Expiry_Date' => '2017-01-12','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '100.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '566','Item_Name' => 'Alfuzosin 10mg Tab','Cost_Price' => '1500','Selling_Price' => '2000','Quantity' => '220','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-05-13 15:27:30','Item_Category_Id' => '3','Supplier_Id' => '2','Prompt' => 'Alpha-1 selective relaxes smooth m uscle in benign prostatic hyperplasia reducing obstructive symptoms. Drops bp. Caution in elderly. Risk of floppy-iris syndrome in cataract surgery. Avoid if history of postural hypotension and micturition syncope.','Patient_Info_Rukiga' => 'niguyamba ahakurente enkarI
|
||||
BANZA WARYA OTAKAMIZIRE OMUBAZI
|
||||
i ','Patient_Info' => ' Relaxes muscles around the bladder easing the passing of urine. ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '69','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '2201','Expiry_Date' => '2018-10-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '1.00','Ip_Adult_Daily_Cost' => '2000','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'Yes'),
|
||||
array('Item_Id' => '567','Item_Name' => 'Doxazosin 2mg','Cost_Price' => '300','Selling_Price' => '1000','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-05-20 22:28:55','Item_Category_Id' => '3','Supplier_Id' => '0','Prompt' => 'monitor first dose for hypotension; risk intra-operative floppy iris syndrome in cataract surgery.','Patient_Info_Rukiga' => 'nigukyendeza puresha kandi guyamba enkari kwijagye ','Patient_Info' => 'Relaxes smooth muscle in those with an enlarged prostate to improve urinary flow. Can also be used to treat high blood pressure. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '69','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '-14','Expiry_Date' => '2017-01-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '2.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '568','Item_Name' => 'Finasteride 5mg tab','Cost_Price' => '670','Selling_Price' => '1200','Quantity' => '28','Reoder_Level' => '500','Description' => 'can use in benign prostatic hypertrophy','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-05-20 22:37:18','Item_Category_Id' => '3','Supplier_Id' => '2','Prompt' => '','Patient_Info_Rukiga' => ' ','Patient_Info' => 'Reduces the size of the prostate to improve urinary flow. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '70','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '28','Expiry_Date' => '2018-11-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '569','Item_Name' => 'Abacavir (ABC) 300mg / Lamivudine (3TC) 300mg','Cost_Price' => '1413','Selling_Price' => '0','Quantity' => '479','Reoder_Level' => '0','Description' => '','Drug_Form' => '2','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-06-03 13:58:02','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => 'Life-threatening Lactic acidosis with hepatomegaly reported with NRTIs. Caution esp c obese women c hepatomegaly or alcohol abuse.','Patient_Info_Rukiga' => ' nogw akakooko ka sirimu. wagira obuhere,omuriro,okutanaka,reba omushaho ','Patient_Info' => ' Treatment for HIV ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '107','Expiry_Date' => '2018-04-11','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '600.00','Active' => '0','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => 'S22','Government_Essential' => NULL),
|
||||
array('Item_Id' => '570','Item_Name' => 'Atazanavir 300mg / Ritonavir 100mg (ATV/r)','Cost_Price' => '2207','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '2','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-06-03 14:02:56','Item_Category_Id' => '3','Supplier_Id' => '2','Prompt' => 'Associated c hyperglycaemia so caution in diabetics. Avoid in acute porphyria. Caution in chronic hepatitis B or C.','Patient_Info_Rukiga' => 'nigukyendeza akakooko ka sirimu omushagama.nobasa kurotaguzibwa.
|
||||
nywa amaizi maingi ','Patient_Info' => 'Treatment for HIV ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '72','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '0','Expiry_Date' => '2017-06-01','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '400.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '571','Item_Name' => 'AZT (Zidovudine) 300mg / 3TC (Lamivudine) 150mg','Cost_Price' => '381','Selling_Price' => '0','Quantity' => '72','Reoder_Level' => '0','Description' => '','Drug_Form' => '2','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-06-03 14:05:48','Item_Category_Id' => '3','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => ' nigukyendeza akakooko ka sirimu.orye ebyokurwa birareta eshagama ','Patient_Info' => 'Treatment for HIV ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '71','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '0','Expiry_Date' => '2017-06-01','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '450.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '572','Item_Name' => 'AZT (Zidovudine) 300mg / 3TC (Lamivudine) 150mg / NVP (Nevirapine) 200mg','Cost_Price' => '362','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '2','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-06-03 14:14:31','Item_Category_Id' => '3','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => ' nigukyendeza akakooko ka sirimu.orye ebyokurwa birareta eshagama ','Patient_Info' => 'Treatment for HIV ','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '74','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '0','Expiry_Date' => '2017-06-01','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '650.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '573','Item_Name' => 'Fluphenazine Decanoate 25mg/mL (1mL)','Cost_Price' => '9000','Selling_Price' => '12000','Quantity' => '0','Reoder_Level' => '10','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-06-15 09:23:00','Item_Category_Id' => '3','Supplier_Id' => '2','Prompt' => 'May give rise to a higher incidence of extrapyramidal reactions','Patient_Info_Rukiga' => ' ','Patient_Info' => 'A medication used in the treatment of psychosis. It can cause sedation and movement disorders. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '46','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '52','Expiry_Date' => '2020-03-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '25.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '574','Item_Name' => 'Trifluoperazine 5mg','Cost_Price' => '177','Selling_Price' => '250','Quantity' => '5000','Reoder_Level' => '2000','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-06-15 09:42:08','Item_Category_Id' => '3','Supplier_Id' => '0','Prompt' => 'Used in Schizophrenia and psychoses, short term adjunctive management of psychomotor agitation,excitement,and violent or dangerously impulsive behaviour. Use with Caution in patients with cardiovascular disease','Patient_Info_Rukiga' => ' ','Patient_Info' => 'A medication used in the treatment of psychosis. It can cause sedation and movement disorders. ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '46','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '1255','Expiry_Date' => '2020-09-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '599','Item_Name' => 'Halothane (250mLs)','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '62','Reoder_Level' => '0','Description' => '','Drug_Form' => '4','Drug_Unit' => '4','Updated_At' => NULL,'Created_At' => '2016-06-21 11:17:56','Item_Category_Id' => '3','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => ' ','Patient_Info' => ' ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '47','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '50','Expiry_Date' => '2019-04-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '1.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '600','Item_Name' => 'Tranexamic Acid 250mg tab','Cost_Price' => '855','Selling_Price' => '1100','Quantity' => '200','Reoder_Level' => '20','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-06-21 12:02:49','Item_Category_Id' => '3','Supplier_Id' => '6','Prompt' => 'Can be used to prevent bleeding or treating bleeding associated with excessive fibronolysis. Caution in Massive Haematuria, Irregular menstrual bleeding, Patients receiving Oral contraceptives, Regular liver Function test in long term treatment of heriditary angioedema','Patient_Info_Rukiga' => ' nigukyendeza ahakujwa munonga ','Patient_Info' => ' antifibrinolytic and haemostatics used to prevent bleeding disorders ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '75','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '0','Expiry_Date' => '2018-11-02','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '250.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '601','Item_Name' => 'Tranexamic Acid 500mg inj *','Cost_Price' => '5500','Selling_Price' => '8000','Quantity' => '10','Reoder_Level' => '2','Description' => '','Drug_Form' => '6','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-06-21 12:04:47','Item_Category_Id' => '3','Supplier_Id' => '6','Prompt' => 'Can be used to prevent bleeding or treating bleeding associated with excessive fibronolysis. Caution in Massive Haematuria, Irregular menstrual bleeding, Patients receiving Oral contraceptives, Regular liver Function test in long term treatment of hereditary angioedema','Patient_Info_Rukiga' => ' nigukyendeza ahakujwa munonga ','Patient_Info' => ' antifibrinolytic and haemostatics used to prevent bleeding disorders ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '75','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '0','Expiry_Date' => '2017-07-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '602','Item_Name' => 'Methotrexate 2.5mg tab','Cost_Price' => '500','Selling_Price' => '700','Quantity' => '100','Reoder_Level' => '50','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-06-23 09:25:08','Item_Category_Id' => '3','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => ' ','Patient_Info' => ' ','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '76','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '60','Expiry_Date' => '2019-07-31','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '1.00','Strength' => '2.50','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '947','Item_Name' => 'Co-trimoxazole 960mg','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '184000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-12-07 16:05:37','Item_Category_Id' => '3','Supplier_Id' => '9','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '10','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '-5','Expiry_Date' => '2018-12-01','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '948','Item_Name' => 'Cough syrup( JUNIOR) each 5ml contains dextromethophan5mg,pseudoephedrine 15mg,chlopheniramine 10mg and paracetamol 125mg','Cost_Price' => '2737','Selling_Price' => '3000','Quantity' => '330','Reoder_Level' => '0','Description' => '','Drug_Form' => '23','Drug_Unit' => '4','Updated_At' => NULL,'Created_At' => '2016-12-12 17:58:36','Item_Category_Id' => '3','Supplier_Id' => '0','Prompt' => '1-5yrs 2.5mls tds/qds
|
||||
6-12yrs tds /qds','Patient_Info_Rukiga' => 'maycause drowsiness but heps to treat cough','Patient_Info' => 'nigubasa kutuma omwana yahungira konka nigutamba enkorora','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '31','Expiry_Date' => '2019-06-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.25','Ip_Adult_Daily_Cost' => '750','Pricing_Factor_Children' => '0.20','IP_Paed_Daily_Cost' => '600','Pack' => '100.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '949','Item_Name' => 'Cough syrup(PIRITEX BABY its free of centrally acting pyschotropic agents)','Cost_Price' => '2451','Selling_Price' => '2700','Quantity' => '170','Reoder_Level' => '0','Description' => '','Drug_Form' => '23','Drug_Unit' => '4','Updated_At' => NULL,'Created_At' => '2016-12-12 18:18:55','Item_Category_Id' => '3','Supplier_Id' => '0','Prompt' => 'to be used in babies above three months for relief of cough/colds','Patient_Info_Rukiga' => 'for relief of coughs and coldsin babies ','Patient_Info' => 'nigutamba enkorora omubana','Reference_Areas' => '','Reference_Name' => '','Insurance_Coverage' => '','Drug_Category' => '','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'No','Pharmacy_Stock' => '28','Expiry_Date' => '2019-06-25','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.25','Ip_Adult_Daily_Cost' => '675','Pricing_Factor_Children' => '0.20','IP_Paed_Daily_Cost' => '540','Pack' => '100.00','Strength' => '5.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => ''),
|
||||
array('Item_Id' => '950','Item_Name' => 'Cough syrup(PIRITEX BABY)','Cost_Price' => '0','Selling_Price' => '2700','Quantity' => '230','Reoder_Level' => '0','Description' => '','Drug_Form' => '3','Drug_Unit' => '4','Updated_At' => NULL,'Created_At' => '2016-12-16 11:12:26','Item_Category_Id' => '3','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'Yes','Drug_Category' => '','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2019-06-30','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '951','Item_Name' => 'Propranolol 10 mg tab','Cost_Price' => '30','Selling_Price' => '40','Quantity' => '55000','Reoder_Level' => '0','Description' => '','Drug_Form' => '1','Drug_Unit' => '2','Updated_At' => NULL,'Created_At' => '2016-12-17 11:42:45','Item_Category_Id' => '3','Supplier_Id' => '11','Prompt' => 'ontraindicated in asthma, uncontrolled heart failure, hypotension, second or third degree heart block','Patient_Info_Rukiga' => '','Patient_Info' => 'A drug used to treat physical symptoms of anxiety and overactive thyroid gland. It can cause fatigue, cold extremities and sleep disturbance. Avoid in asthma.','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '18','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => 'Yes','Pharmacy_Stock' => '5470','Expiry_Date' => '2017-06-01','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '2.00','Ip_Adult_Daily_Cost' => '80','Pricing_Factor_Children' => '1.00','IP_Paed_Daily_Cost' => '40','Pack' => '1.00','Strength' => '10.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '955','Item_Name' => 'aaaaaaaaa','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '25','Drug_Unit' => '12','Updated_At' => NULL,'Created_At' => '2017-11-11 10:27:00','Item_Category_Id' => '3','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => 'No','Drug_Category' => '69','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2017-11-17','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '0','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => 'Yes'),
|
||||
array('Item_Id' => '956','Item_Name' => 'aaaaaaaaaa','Cost_Price' => '2000','Selling_Price' => '3200','Quantity' => '231','Reoder_Level' => '12','Description' => 'Test','Drug_Form' => '8','Drug_Unit' => '1','Updated_At' => NULL,'Created_At' => '2017-11-13 10:20:03','Item_Category_Id' => '3','Supplier_Id' => '1','Prompt' => 'Test','Patient_Info_Rukiga' => 'Test','Patient_Info' => 'Test','Reference_Areas' => 'http://www.facebook.com,http://www.facebook.com/home,http://www.facebook.com/bored,','Reference_Name' => 'Test,Test2,Test3,','Insurance_Coverage' => 'No','Drug_Category' => '70','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2017-11-24','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '0','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => 'aa','Government_Essential' => 'No'),
|
||||
array('Item_Id' => '959','Item_Name' => 'epicephin','Cost_Price' => '7000','Selling_Price' => '12000','Quantity' => '50','Reoder_Level' => '25','Description' => '','Drug_Form' => '6','Drug_Unit' => '1','Updated_At' => NULL,'Created_At' => '2018-04-04 12:56:02','Item_Category_Id' => '3','Supplier_Id' => '2','Prompt' => 'for acute infections','Patient_Info_Rukiga' => '','Patient_Info' => 'git,urbance, drozness , ','Reference_Areas' => 'http://192.168.2.1:8090/httpclient.html?u=http://go.microsoft.com/fwlink/?LinkID=219472&clcid=0x409,','Reference_Name' => 'google,','Insurance_Coverage' => '','Drug_Category' => '29','Account_Id' => '4','Item_Type' => 'Drug','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2020-04-03','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => '')
|
||||
);
|
||||
|
||||
|
||||
foreach ($inventory_items as $inventory_item) {
|
||||
DB::table('drugs')->insert([
|
||||
'name' => $inventory_item['Item_Name'],
|
||||
'cost_price' => $inventory_item['Cost_Price'],
|
||||
'selling_price' => $inventory_item['Selling_Price'],
|
||||
'quantity' => $inventory_item['Quantity'],
|
||||
'reorder_level' => $inventory_item['Reoder_Level'],
|
||||
'description' => $inventory_item['Description'],
|
||||
'form_id' => $inventory_item['Drug_Form'],
|
||||
'unit_id' => $inventory_item['Drug_Unit'],
|
||||
'category_id' => $inventory_item['Item_Category_Id'],
|
||||
'supplier_id' => $inventory_item['Supplier_Id'],
|
||||
'prompt' => $inventory_item['Prompt'],
|
||||
'info_vernacular' => $inventory_item['Patient_Info_Rukiga'],
|
||||
'info_english' => $inventory_item['Patient_Info'],
|
||||
'insurance_coverage' => $inventory_item['Insurance_Coverage'],
|
||||
'account_id' => $inventory_item['Account_Id'],
|
||||
'pharmacy_comment' => $inventory_item['Comment'],
|
||||
'restricted_prescribing' => $inventory_item['Restricted_Prescribing'],
|
||||
'long_term' => $inventory_item['Long_Term'],
|
||||
'pharmacy_stock' => $inventory_item['Pharmacy_Stock'],
|
||||
'expiry_date' => \Carbon\Carbon::parse($inventory_item['Expiry_Date'])->format('Y-m-d')?\Carbon\Carbon::now():null,
|
||||
'pricing_factor_adult' => $inventory_item['Pricing_Factor_Adult'],
|
||||
'ip_adult_daily_cost' => $inventory_item['Ip_Adult_Daily_Cost'],
|
||||
'pricing_factor_children' => $inventory_item['Pricing_Factor_Children'],
|
||||
'pack' => $inventory_item['Pack'],
|
||||
'strength' => $inventory_item['Strength'],
|
||||
'pricing_factor_infant' => $inventory_item['Pricing_Factor_Infant'],
|
||||
'ip_infant_daily_cost' => $inventory_item['IP_Infant_Daily_Cost'],
|
||||
'hssip' => $inventory_item['Hssip']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
//use Illuminate\Support\Facades\DB;
|
||||
use Streamline\Models\InvestigationCategory;
|
||||
|
||||
class InvestigationCategoriesTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$names = array(
|
||||
array('id'=>'1','super_category_id'=>'1','name'=>'General Lab'),
|
||||
array('id'=>'2','super_category_id'=>'1','name'=>'Biochemistry'),
|
||||
array('id'=>'3','super_category_id'=>'1','name'=>'Chem Pathology'),
|
||||
array('id'=>'4','super_category_id'=>'1','name'=>'Haematology'),
|
||||
array('id'=>'5','super_category_id'=>'1','name'=>'Microbiology'),
|
||||
array('id'=>'6','super_category_id'=>'2','name'=>'General X-ray'),
|
||||
array('id'=>'7','super_category_id'=>'2','name'=>'Head'),
|
||||
array('id'=>'8','super_category_id'=>'2','name'=>'Upper Limb'),
|
||||
array('id'=>'9','super_category_id'=>'2','name'=>'Lower Limb'),
|
||||
array('id'=>'10','super_category_id'=>'2','name'=>'Chest'),
|
||||
array('id'=>'11','super_category_id'=>'2','name'=>'Spine'),
|
||||
array('id'=>'12','super_category_id'=>'2','name'=>'Abdomen'),
|
||||
array('id'=>'13','super_category_id'=>'2','name'=>'Pelvis'),
|
||||
array('id'=>'14','super_category_id'=>'2','name'=>'Special Exams'),
|
||||
array('id'=>'15','super_category_id'=>'3','name'=>'General Ultrasound'),
|
||||
array('id'=>'16','super_category_id'=>'4','name'=>'General Ultrasound(Obstetric)'),
|
||||
array('id'=>'17','super_category_id'=>'5','name'=>'General Cardiology'),
|
||||
array('id'=>'18','super_category_id'=>'5','name'=>'Doppler Studies'),
|
||||
array('id'=>'19','super_category_id'=>'1','name'=>'Routine And Special Chemistries'),
|
||||
array('id'=>'20','super_category_id'=>'1','name'=>'Serology And Immunology'),
|
||||
);
|
||||
|
||||
foreach ($names as $name) {
|
||||
|
||||
// Prevent re-seeding the same data
|
||||
InvestigationCategory::firstOrCreate([
|
||||
'id' => $name['id'],
|
||||
'name' => $name['name'],
|
||||
'super_category_id' => $name['super_category_id'],
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,270 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Investigation;
|
||||
|
||||
class InvestigationSeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run(){
|
||||
$investigations = [
|
||||
array('id' => '1','name' => 'Barium enema','category' => '14','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '60000','insured_price' => '60000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:28','updated_at' => '2020-02-09 14:13:28','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '2','name' => 'Barium meal','category' => '14','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => ' ','non_insured_price' => '60000','insured_price' => '60000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:28','updated_at' => '2020-02-09 14:13:28','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '3','name' => 'Barium swallow','category' => '14','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '50000','insured_price' => '50000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:28','updated_at' => '2020-02-09 14:13:28','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '4','name' => 'Barium meal & swallow','category' => '14','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '90000','insured_price' => '90000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:28','updated_at' => '2020-02-09 14:13:28','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '5','name' => 'Intra-venous urogram [IVU]','category' => '6','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '60000','insured_price' => '60000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:28','updated_at' => '2020-02-09 14:13:28','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '6','name' => 'Micturating cystourethrogram [MCUG]','category' => '6','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '52000','insured_price' => '52000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:28','updated_at' => '2020-02-09 14:13:28','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '7','name' => 'Ultrasound Abdomen','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '25000','insured_price' => '25000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:28','updated_at' => '2020-02-09 14:13:28','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '8','name' => 'Ultrasound Pelvis','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => 'Tell patient a full bladder is needed for a good scan','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '25000','insured_price' => '25000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:28','updated_at' => '2020-02-09 14:13:28','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '9','name' => 'Ultrasound Obstetric','category' => '16','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => 'Tell patient a full bladder is needed for a good scan','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '25000','insured_price' => '25000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:28','updated_at' => '2020-02-09 14:13:28','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '10','name' => 'Ultrasound guided aspiration','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '27000','insured_price' => '27000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:29','updated_at' => '2020-02-09 14:13:29','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '11','name' => 'Ultrasound vessels','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '27000','insured_price' => '27000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:29','updated_at' => '2020-02-09 14:13:29','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '12','name' => 'Ultrasound testes','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '27000','insured_price' => '27000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:29','updated_at' => '2020-02-09 14:13:29','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '13','name' => 'Ultrasound eye','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '27000','insured_price' => '27000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:29','updated_at' => '2020-02-09 14:13:29','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '14','name' => 'Ultrasound breast','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '27000','insured_price' => '27000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:29','updated_at' => '2020-02-09 14:13:29','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '15','name' => 'Ultrasound thyroid','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '27000','insured_price' => '27000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:29','updated_at' => '2020-02-09 14:13:29','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '16','name' => 'Ultrasound Cranial [infant]','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '27000','insured_price' => '27000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:30','updated_at' => '2020-02-09 14:13:30','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '17','name' => 'Echocardiogram - basic','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '25000','insured_price' => '25000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:30','updated_at' => '2020-02-09 14:13:30','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '18','name' => 'Echocardiogram - detailed','category' => '15','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '35000','insured_price' => '35000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '19','name' => 'Prostate Ultra sound Scan','category' => '15','units' => '21','minimum' => 'NA','sample_container' => NULL,'insurance_coverage' => '1','comments' => NULL,'normal_ranges' => 'NA','reagent_cost' => NULL,'lab_time' => 'NA','non_insured_price' => '27000','insured_price' => '27000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '20','name' => 'X-ray Abdomen','category' => '6','units' => '21','minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => 'Imaging','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '22000','insured_price' => '22000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '21','name' => 'X-ray Chest','category' => '6','units' => '21','minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => 'Imaging','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '22000','insured_price' => '22000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '22','name' => 'X-Ray Extremities','category' => '6','units' => '21','minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => 'Imaging','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '19000','insured_price' => '19000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '23','name' => 'X-Ray Skull','category' => '6','units' => '21','minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => 'Imaging','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '19000','insured_price' => '19000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '24','name' => 'X-Ray Spine','category' => '6','units' => '21','minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => 'Imaging','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '19000','insured_price' => '19000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '25','name' => 'X-Ray Pelvis','category' => '6','units' => '21','minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '1','comments' => 'Imaging','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '19000','insured_price' => '19000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '26','name' => 'Urethral Swab Analysis','category' => '5','units' => '29','minimum' => 'NA','sample_container' => NULL,'insurance_coverage' => '1','comments' => 'Urethral Swab Analysis','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => '30 min','non_insured_price' => '5000','insured_price' => '5000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '27','name' => 'Eye Swab','category' => '2','units' => '20','minimum' => '0.2','sample_container' => NULL,'insurance_coverage' => '1','comments' => 'General','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '5000','insured_price' => '5000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '28','name' => 'APTT','category' => '2','units' => '23','minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => 'Biochemistry test','normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => '20 min','non_insured_price' => '15000','insured_price' => '15000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '29','name' => 'Prothrombin Time / INR','category' => '4','units' => '5','minimum' => '5mL','sample_container' => NULL,'insurance_coverage' => '0','comments' => 'Lab reports both PT and INR','normal_ranges' => 'PT 10-14 sec','reagent_cost' => NULL,'lab_time' => '1 hour','non_insured_price' => '15000','insured_price' => '15000','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '30','name' => 'Skull AP+LAT','category' => '7','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '31','name' => 'Skull AP, LAT+ST','category' => '7','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '32','name' => 'P/sinus AP, LAT, OM','category' => '7','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '33','name' => 'I/auditory meati','category' => '7','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '34','name' => 'TM DL AP+Obliq','category' => '7','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '35','name' => 'Mandibles AP+Obliq','category' => '7','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:31','updated_at' => '2020-02-09 14:13:31','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '36','name' => 'Postnasal space LAT','category' => '7','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '37','name' => 'Mastoid AP + Obliq','category' => '7','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '38','name' => 'Shoulder JT AP+LAT','category' => '8','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '39','name' => 'Scapula JT AP+LAT','category' => '8','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '40','name' => 'Humerous AP+LAT','category' => '8','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '41','name' => 'Forearm AP+LAT','category' => '8','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '42','name' => 'Hand AP+LAT','category' => '8','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '43','name' => 'Finger AP+LAT','category' => '8','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '44','name' => 'Elbow AP+LAT','category' => '8','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '45','name' => 'Wrist AP+LAT','category' => '8','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '46','name' => 'Hip JT AP+LAT','category' => '9','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '47','name' => 'Femur AP+LAT','category' => '9','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '48','name' => 'Knee JT AP+LAT','category' => '9','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '49','name' => 'Knee JT AP+LATX2','category' => '9','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '50','name' => 'Tib/Fib AP+LAT','category' => '9','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '51','name' => 'Ankle JT AP+LAT','category' => '9','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '52','name' => 'Foot AP+LAT','category' => '9','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '53','name' => 'AP/PA','category' => '10','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '54','name' => 'LAT','category' => '10','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '55','name' => 'PA+LAT','category' => '10','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '56','name' => 'STERNUM RAO+LAP','category' => '10','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '57','name' => 'CLAVICLE','category' => '10','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '58','name' => 'Cervical AP+LAT','category' => '11','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '59','name' => 'Cervical Oblique','category' => '11','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '60','name' => 'Thoracic AP+LAT','category' => '11','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '61','name' => 'Thoraco Lumbar AP+LAT','category' => '11','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:32','updated_at' => '2020-02-09 14:13:32','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '62','name' => 'L-S Spine AP+LAT','category' => '11','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '63','name' => 'PA/AP Supine','category' => '12','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '64','name' => 'PA/AP Erect','category' => '12','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '65','name' => 'AP','category' => '13','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '66','name' => 'LAT (Pelvis)','category' => '13','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '67','name' => 'Intravenous Pyelogram','category' => '14','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '68','name' => 'Hysterosalpingogram','category' => '14','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '69','name' => 'Cystourethrogram','category' => '14','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '70','name' => 'EKG - Resting','category' => '17','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '71','name' => 'EKG - Stress','category' => '17','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '72','name' => 'Holter Monitor','category' => '17','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '73','name' => 'Echo','category' => '17','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '74','name' => 'Carotid - Left','category' => '18','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:33','updated_at' => '2020-02-09 14:13:33','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '75','name' => 'Carotid - Right','category' => '18','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '76','name' => 'Renal Artery','category' => '18','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '77','name' => 'Deep Veins (L)','category' => '18','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '78','name' => 'Deep Veins (R)','category' => '18','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '79','name' => 'Gluc','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '80','name' => 'Urea','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '81','name' => 'Creat','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '82','name' => 'NA, K, CI','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '83','name' => 'HCO3','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '84','name' => 'AMYLASE','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '85','name' => 'LIPASE','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '86','name' => 'PROT','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '87','name' => 'ALB','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '88','name' => 'BILI','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '89','name' => 'GGT','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '90','name' => 'ALP','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '91','name' => 'ALT','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '92','name' => 'AST','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '93','name' => 'CHOL','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '94','name' => 'HDL','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '95','name' => 'LDL','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:34','updated_at' => '2020-02-09 14:13:34','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '96','name' => 'TRIG','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '97','name' => 'CK','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '98','name' => 'CK-MB','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '99','name' => 'LDH','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '100','name' => 'URIC','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '101','name' => 'PHOS','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '102','name' => 'CA','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '103','name' => 'MG','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '104','name' => 'GTT','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '105','name' => 'GLUC,PP','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '106','name' => 'PROTEIN Electrophoresis','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '107','name' => 'ACP','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '108','name' => 'Troponin','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '109','name' => 'HBA1C','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '110','name' => 'FERITTIN','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '111','name' => 'B12','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '112','name' => 'G6PD','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '113','name' => 'TSH','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '114','name' => 'Free - T3','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '115','name' => 'Free - T4','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '116','name' => 'PSA','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:35','updated_at' => '2020-02-09 14:13:35','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '117','name' => 'AFP','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '118','name' => 'CEA','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '119','name' => 'FSH','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '120','name' => 'LH','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '121','name' => 'Estradiol','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '122','name' => 'Prolactin','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '123','name' => 'PROGE','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '124','name' => 'TESTO','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '125','name' => 'BhCG','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '126','name' => 'Urine - B. JONES','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '127','name' => 'Urine - 24 HR PROT','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '128','name' => 'Urine - 24 HR LYTES','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:36','updated_at' => '2020-02-09 14:13:36','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '129','name' => 'Urine - 24 HR CREAT','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:37','updated_at' => '2020-02-09 14:13:37','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '130','name' => 'Urine - CREAT CLEAR','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:37','updated_at' => '2020-02-09 14:13:37','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '131','name' => 'Urine - Microalbumin','category' => '19','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:37','updated_at' => '2020-02-09 14:13:37','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '132','name' => 'CBC','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:37','updated_at' => '2020-02-09 14:13:37','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '133','name' => 'DIFF','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:37','updated_at' => '2020-02-09 14:13:37','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '134','name' => 'ESR','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:37','updated_at' => '2020-02-09 14:13:37','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '135','name' => 'RETICS','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:37','updated_at' => '2020-02-09 14:13:37','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '136','name' => 'D.DIMER','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:37','updated_at' => '2020-02-09 14:13:37','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '137','name' => 'SCT','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:37','updated_at' => '2020-02-09 14:13:37','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '138','name' => 'HB Electrophoresis','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:38','updated_at' => '2020-02-09 14:13:38','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '139','name' => 'PT','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:38','updated_at' => '2020-02-09 14:13:38','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '140','name' => 'PTT','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:38','updated_at' => '2020-02-09 14:13:38','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '141','name' => 'BT','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:38','updated_at' => '2020-02-09 14:13:38','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '142','name' => 'CT','category' => '4','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:39','updated_at' => '2020-02-09 14:13:39','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '143','name' => 'ABORH','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:39','updated_at' => '2020-02-09 14:13:39','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '144','name' => 'X-Match','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:39','updated_at' => '2020-02-09 14:13:39','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '145','name' => 'DCT','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:39','updated_at' => '2020-02-09 14:13:39','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '146','name' => 'ICT','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:39','updated_at' => '2020-02-09 14:13:39','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '147','name' => 'CD4/CD8','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:39','updated_at' => '2020-02-09 14:13:39','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '148','name' => 'HIV-RNA-PCR','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:39','updated_at' => '2020-02-09 14:13:39','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '149','name' => 'HIV-DNA-PCR','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:39','updated_at' => '2020-02-09 14:13:39','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '150','name' => 'HIV','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:39','updated_at' => '2020-02-09 14:13:39','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '151','name' => 'VDRL','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '152','name' => 'TPHA','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '153','name' => 'CRAG','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '154','name' => 'H. Pylori','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '155','name' => 'T.B','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '156','name' => 'G. Xpert','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '157','name' => 'Typhoid','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '158','name' => 'Brucella A','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '159','name' => 'Brucella M','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '160','name' => 'RF','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '161','name' => 'ASOT','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '162','name' => 'C-RP','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '163','name' => 'ANA','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '164','name' => 'TOXO-G','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '165','name' => 'TOXO-M','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:40','updated_at' => '2020-02-09 14:13:40','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '166','name' => 'CMV-G','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '167','name' => 'CMV-M','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '168','name' => 'RUBELLA-G','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '169','name' => 'RUBELLA-M','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '170','name' => 'HBsAg','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '171','name' => 'HBsAb','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '172','name' => 'HBcAb','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '173','name' => 'HBeAb','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '174','name' => 'HBeAG','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '175','name' => 'HB RNA-PCR','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '176','name' => 'HCV','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '177','name' => 'HAVAb','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '178','name' => 'CA19-9','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '179','name' => 'CA15-3','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '180','name' => 'CA125','category' => '20','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '181','name' => 'Blood - B/slide','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:41','updated_at' => '2020-02-09 14:13:41','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '182','name' => 'Blood - W/Prep','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:42','updated_at' => '2020-02-09 14:13:42','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '183','name' => 'Blood - MP Kit','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:42','updated_at' => '2020-02-09 14:13:42','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '184','name' => 'Blood - C/S','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:42','updated_at' => '2020-02-09 14:13:42','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '185','name' => 'Urine - MICRO','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:42','updated_at' => '2020-02-09 14:13:42','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '186','name' => 'Urine - Dipstick','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:42','updated_at' => '2020-02-09 14:13:42','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '187','name' => 'Urine - HCG','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:42','updated_at' => '2020-02-09 14:13:42','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '188','name' => 'Urine - Chlamydia','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:42','updated_at' => '2020-02-09 14:13:42','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '189','name' => 'Urine - Gram','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:42','updated_at' => '2020-02-09 14:13:42','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '190','name' => 'Urine - ZN','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:42','updated_at' => '2020-02-09 14:13:42','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '191','name' => 'Urine - C/S','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:42','updated_at' => '2020-02-09 14:13:42','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '192','name' => 'Stool - MICRO','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:43','updated_at' => '2020-02-09 14:13:43','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '193','name' => 'Stool - CONC','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:43','updated_at' => '2020-02-09 14:13:43','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '194','name' => 'Stool - pH','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:43','updated_at' => '2020-02-09 14:13:43','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '195','name' => 'Stool - R.Subs','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:43','updated_at' => '2020-02-09 14:13:43','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '196','name' => 'Stool - O/B','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:43','updated_at' => '2020-02-09 14:13:43','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '197','name' => 'Stool - M/ZN','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:43','updated_at' => '2020-02-09 14:13:43','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '198','name' => 'Stool - C/S','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:43','updated_at' => '2020-02-09 14:13:43','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '199','name' => 'Stool - H Pylori','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:43','updated_at' => '2020-02-09 14:13:43','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '200','name' => 'Stool - HAVAg','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:43','updated_at' => '2020-02-09 14:13:43','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '201','name' => 'Stool - Rota virus','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:43','updated_at' => '2020-02-09 14:13:43','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '202','name' => 'Stool - Adeno virus','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:44','updated_at' => '2020-02-09 14:13:44','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '203','name' => 'Swab - KOH','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:44','updated_at' => '2020-02-09 14:15:34','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '204','name' => 'Swab - W/Prep','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:44','updated_at' => '2020-02-09 14:13:44','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '205','name' => 'Swab - pH','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:44','updated_at' => '2020-02-09 14:16:31','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '206','name' => 'Swab - Chlamydia','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:44','updated_at' => '2020-02-09 14:13:44','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '207','name' => 'Swab - Gram','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:44','updated_at' => '2020-02-09 14:13:44','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '208','name' => 'Swab - ZN','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:44','updated_at' => '2020-02-09 14:13:44','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '209','name' => 'Swab - C/S','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:44','updated_at' => '2020-02-09 14:13:44','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '210','name' => 'Sputum - KOH','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '211','name' => 'Sputum - W/Prep','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '212','name' => 'Sputum - pH','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '213','name' => 'Sputum - Gram','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '214','name' => 'Sputum - ZN','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '215','name' => 'Sputum - C/S','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '216','name' => 'CSF - Analysis','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '217','name' => 'CSF - CRAG','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '218','name' => 'CSF - Pandy','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '219','name' => 'CSF - Gram','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '220','name' => 'CSF - C/S','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '221','name' => 'Effusions - Analysis','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '222','name' => 'Effusions - CRAG','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '223','name' => 'Effusions - Pandy','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:45','updated_at' => '2020-02-09 14:13:45','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '224','name' => 'Effusions - C/S','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:46','updated_at' => '2020-02-09 14:13:46','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '225','name' => 'Semen - Analysis','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:46','updated_at' => '2020-02-09 14:13:46','deleted_at' => NULL,'type' => '1'),
|
||||
array('id' => '226','name' => 'Semen - C/S','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:46','updated_at' => '2020-02-09 14:13:46','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '227','name' => 'P.Smear','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:46','updated_at' => '2020-02-09 14:13:46','deleted_at' => NULL,'type' => '0'),
|
||||
array('id' => '228','name' => 'Biopsy','category' => '5','units' => NULL,'minimum' => NULL,'sample_container' => NULL,'insurance_coverage' => '0','comments' => NULL,'normal_ranges' => NULL,'reagent_cost' => NULL,'lab_time' => NULL,'non_insured_price' => '0','insured_price' => '0','price_list_category' => NULL,'price_list_price' => NULL,'stock_balance' => NULL,'supplier' => NULL,'amc' => NULL,'available' => '1','account_id' => '11','prompt' => NULL,'reference_text' => NULL,'reference_link' => NULL,'slug' => NULL,'urgent' => NULL,'created_by' => '1','updated_by' => NULL,'created_at' => '2020-02-09 14:13:46','updated_at' => '2020-02-09 14:13:46','deleted_at' => NULL,'type' => '0')
|
||||
];
|
||||
|
||||
foreach ($investigations as $investigation):
|
||||
|
||||
Investigation::firstOrCreate([
|
||||
"name" => $investigation['name'],
|
||||
"category" => $investigation['category'],
|
||||
"units" => $investigation['units'],
|
||||
"minimum" => $investigation['minimum'],
|
||||
"sample_container" => $investigation['sample_container'],
|
||||
"insurance_coverage" => $investigation['insurance_coverage'],
|
||||
"comments" => $investigation['comments'],
|
||||
"normal_ranges" => $investigation['normal_ranges'],
|
||||
"reagent_cost" => $investigation['reagent_cost'],
|
||||
"lab_time" => $investigation['lab_time'],
|
||||
"non_insured_price" => $investigation['non_insured_price'],
|
||||
"insured_price" => $investigation['insured_price'],
|
||||
"stock_balance" => $investigation['stock_balance'],
|
||||
"supplier" => $investigation['supplier'],
|
||||
"amc" => $investigation['amc'],
|
||||
"available" => $investigation['available'],
|
||||
"account_id" => $investigation['account_id'],
|
||||
"type" => $investigation['type'],
|
||||
"created_by" => 1
|
||||
]);
|
||||
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class InvestigationSuperCategoriesSeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$names = array(
|
||||
array('id'=>'1','name'=>'Labs'),
|
||||
array('id'=>'2','name'=>'X-ray'),
|
||||
array('id'=>'3','name'=>'Ultrasound'),
|
||||
array('id'=>'4','name'=>'Ultrasound(Obstetric)'),
|
||||
array('id'=>'5','name'=>'Cardiology'),
|
||||
);
|
||||
|
||||
foreach ($names as $name) {
|
||||
// Prevent re-seeding the same data
|
||||
\Streamline\Models\InvestigationSuperCategory::firstOrCreate([
|
||||
'id' => $name['id'],
|
||||
'name' => $name['name'],
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\IvFluid;
|
||||
|
||||
class IvFluidsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`iv_fluids` */
|
||||
$iv_fluids = array(
|
||||
array('Iv_Fluid_Id' => '1','Iv_Fluid_Name' => 'N Saline'),
|
||||
array('Iv_Fluid_Id' => '2','Iv_Fluid_Name' => '5% dextrose'),
|
||||
array('Iv_Fluid_Id' => '3','Iv_Fluid_Name' => '10% dextrose'),
|
||||
array('Iv_Fluid_Id' => '4','Iv_Fluid_Name' => 'Ringers Lactate'),
|
||||
array('Iv_Fluid_Id' => '5','Iv_Fluid_Name' => 'RL & 5% Dex'),
|
||||
array('Iv_Fluid_Id' => '6','Iv_Fluid_Name' => 'Other')
|
||||
);
|
||||
|
||||
foreach ($iv_fluids as $iv_fluid):
|
||||
IvFluid::firstOrCreate([
|
||||
"id" => $iv_fluid['Iv_Fluid_Id'],
|
||||
"name" => $iv_fluid['Iv_Fluid_Name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\LaboratorySpecimen;
|
||||
|
||||
class LaboratorySpecimenTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$specimens_array = ['Stool /stool bottle','Urine /urine bottle','Blood /black','Blood /yellow','Blood /purple','Blood /blue','Blood /red','Blood /green','Blood /grey','Blood /culture bottle adult','Blood /culture bottle paed','Sputum /red','Semen /red','Hair /red','Skin /red','biopsy /blue','swab /swab','slide','celebral spinal fluid','other /none'];
|
||||
|
||||
for ($i=0; $i < count($specimens_array) ; $i++) {
|
||||
LaboratorySpecimen::firstOrCreate([
|
||||
"name" => $specimens_array[$i]
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+217
@@ -0,0 +1,217 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Lab;
|
||||
|
||||
class LabsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$inventory_items = array(
|
||||
array('Item_Id' => '737','Item_Name' => 'Acetone Solution','Cost_Price' => '64581','Selling_Price' => '0','Quantity' => '1','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '738','Item_Name' => 'Antiserum A','Cost_Price' => '18854','Selling_Price' => '0','Quantity' => '5','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-05-09','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '739','Item_Name' => 'Antiserum AB','Cost_Price' => '21442','Selling_Price' => '0','Quantity' => '5','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-01-10','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '740','Item_Name' => 'Antiserum B','Cost_Price' => '18854','Selling_Price' => '0','Quantity' => '5','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-03-09','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '741','Item_Name' => 'Antiserum D','Cost_Price' => '18911','Selling_Price' => '0','Quantity' => '5','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-05-21','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '742','Item_Name' => 'Applicator sticks wooden (100s) Non sterile','Cost_Price' => '4014','Selling_Price' => '0','Quantity' => '500','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '743','Item_Name' => 'Auto Creatinine','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '744','Item_Name' => 'Biohazard bags 20cm ? 24 ? 120g','Cost_Price' => '673','Selling_Price' => '0','Quantity' => '500','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '745','Item_Name' => 'Blood collecting bags','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '60','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '746','Item_Name' => 'Blood Collecting Needles','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '60','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '747','Item_Name' => 'Blood giving sets','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '748','Item_Name' => 'Blood bleeding bags','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '749','Item_Name' => 'Blood transfusion bags','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '750','Item_Name' => 'Brucella Antigen','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '15','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-05-15','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '751','Item_Name' => 'Capillary tubes 75mm length 100s','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '200','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '752','Item_Name' => 'Cary blair transport medium','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '753','Item_Name' => 'CD$ Printing Papers','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '754','Item_Name' => 'Coreglen microscope 22x22mm','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '755','Item_Name' => 'Creatinine Jaffe','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '756','Item_Name' => 'Cryovial with screw cap 2ml','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '757','Item_Name' => 'Cryptococcal [CRAG] latex antiegen','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '758','Item_Name' => 'Crystal violet 2% solution','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '759','Item_Name' => 'crystal violet solution','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '760','Item_Name' => 'De-Ioned Water 20 Litres','Cost_Price' => '15102','Selling_Price' => '0','Quantity' => '1','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '761','Item_Name' => 'Drabkins capsules','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '762','Item_Name' => 'Facs clean ','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '763','Item_Name' => 'Facs count CD4/CD3/CD8, 50 tests','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '764','Item_Name' => 'Facs count control kit 25 tests','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '765','Item_Name' => 'Facs count thermal printer paper','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '766','Item_Name' => 'Facs flow solution ','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '767','Item_Name' => 'Facs Rinse','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '768','Item_Name' => 'field stain A powder 25g','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '2','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '769','Item_Name' => 'Field stain B powder 25g','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '2','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '770','Item_Name' => 'Finger Stick Sample collecting needles','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '771','Item_Name' => 'Formal saline 10% solution','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '772','Item_Name' => 'Glucometer','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '1','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '773','Item_Name' => 'Glucose test strips optimum plus, Abbott','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '774','Item_Name' => 'GOT/ASAT','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '775','Item_Name' => 'GPT/ALAT','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '776','Item_Name' => 'Gram iodine solution','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '777','Item_Name' => 'Gram`s iodine 1L','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '778','Item_Name' => 'HBAIC Reagent','Cost_Price' => '800000','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '779','Item_Name' => 'H- pylori strips','Cost_Price' => '2500','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '780','Item_Name' => 'Hc-cleaner 1000mls','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '781','Item_Name' => 'Hc-diluent 20ltrs','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '782','Item_Name' => 'HCG-Strips 25s','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '783','Item_Name' => 'HCL 0.1M Solution','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '784','Item_Name' => 'HC-lyse CF 1000mls','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '785','Item_Name' => 'Holders (orange)','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '50','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '786','Item_Name' => 'HEP B-Strips (HBS AG Dipstick=Hep B surface antigen)','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '1','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '787','Item_Name' => 'HEP C-strps 50s','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '788','Item_Name' => 'Hepatitis B Surface test strips 50s','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '789','Item_Name' => 'HIV determine kits','Cost_Price' => '2460','Selling_Price' => '0','Quantity' => '730','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '790','Item_Name' => 'HIV stat pack','Cost_Price' => '2443','Selling_Price' => '0','Quantity' => '8','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '791','Item_Name' => 'HIV test kits (UNIGOLD)','Cost_Price' => '4920','Selling_Price' => '0','Quantity' => '4','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '792','Item_Name' => 'Humacount cleaner','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '793','Item_Name' => 'Humacount control','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '794','Item_Name' => 'Humacount diluent','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '795','Item_Name' => 'Humacount lyse','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '796','Item_Name' => 'Humalyte Reagent pak','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '797','Item_Name' => 'Human albumin liquicolor','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '798','Item_Name' => 'Human alkaline phosphatase','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '799','Item_Name' => 'Human alpha amylase','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '800','Item_Name' => 'Human GGT','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '801','Item_Name' => 'Human Glucose liquicolor ','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '802','Item_Name' => 'Human GoT Liquiuv','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '803','Item_Name' => 'Human GPT Liquiuv','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '804','Item_Name' => 'Human HDL cholestrol','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '805','Item_Name' => 'Human K Filling 100mL','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '806','Item_Name' => 'Human triglycerides liquicolor','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '807','Item_Name' => 'Humastar auto bilirubin Direct','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '808','Item_Name' => 'Humastar auto bilirubin D & T','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '809','Item_Name' => 'Humastar auto bilirubin total','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '810','Item_Name' => 'Humastar autocal','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '811','Item_Name' => 'Humastar autocreatinine liquicolor','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '812','Item_Name' => 'Humastar Humastrol N','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '813','Item_Name' => 'Humastar Humastrol P','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '814','Item_Name' => 'Humastar LDL Cholesterol','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '815','Item_Name' => 'Humastar total protein Liquicolor','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '816','Item_Name' => 'Humastsr zerodos','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '817','Item_Name' => 'Immersion iol 100mls','Cost_Price' => '45763','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '818','Item_Name' => 'India ink','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '819','Item_Name' => 'Leishman stain 25g','Cost_Price' => '26158','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '820','Item_Name' => 'Malaria Rapid test kits','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '500','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '821','Item_Name' => 'Methylene Blue 0.5% solution','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '822','Item_Name' => 'Microscope cleaning paper','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '823','Item_Name' => 'Microscope slides Frosted (75/76x25/26mm)','Cost_Price' => '187','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '824','Item_Name' => 'Microscopic slide Cover slips','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '825','Item_Name' => 'Microsoft cover glass 22x22mm','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '826','Item_Name' => 'natural red solution 1L','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '827','Item_Name' => 'Oil immersion','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '1','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '828','Item_Name' => 'Orange holders ','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '829','Item_Name' => 'Paper towels','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '20','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '830','Item_Name' => 'Pasture pippette 3mls','Cost_Price' => '176','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '831','Item_Name' => 'Petridishes Glass 90mm-pair','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '832','Item_Name' => 'Petridishes plastic 90mm-pair','Cost_Price' => '551','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '833','Item_Name' => 'Pima Beads [normal & low]','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '834','Item_Name' => 'Pima CD4 cell count machine','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '835','Item_Name' => 'Pima controlls','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '836','Item_Name' => 'Pima thermal printer paper','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '837','Item_Name' => 'PIMACD4 Cartridges ','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '838','Item_Name' => 'Pipette tips Blue [1000s]','Cost_Price' => '34941','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '839','Item_Name' => 'Pipette tips yellow [1000s]','Cost_Price' => '27941','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '840','Item_Name' => 'Pipette Variable 25-250 micro-litre','Cost_Price' => '751581','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '841','Item_Name' => 'Potassium Liquirapid','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '842','Item_Name' => 'Pregnancy test kit/strips','Cost_Price' => '1024','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '843','Item_Name' => 'PSA ','Cost_Price' => '515000','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '844','Item_Name' => 'RDT malaria kits','Cost_Price' => '989','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '845','Item_Name' => 'Rhematoid Factor SOT','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '846','Item_Name' => 'Rheumatoid arthritis latex test kit','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '847','Item_Name' => 'RPR Carbon-Antigen','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '10','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-07-11','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '848','Item_Name' => 'RPR strips','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '849','Item_Name' => 'Sample Caps for Humastar 200','Cost_Price' => '40000','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '850','Item_Name' => 'Special Wash 12 ? 10mL','Cost_Price' => '95000','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '851','Item_Name' => 'S.TYPHI.H','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '852','Item_Name' => 'S.TYPHI.O','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '853','Item_Name' => 'Serum Crag Strips','Cost_Price' => '13456','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '854','Item_Name' => 'Sharps containers','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '855','Item_Name' => 'Sputum collection containers','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '856','Item_Name' => 'Stool containers','Cost_Price' => '601','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '857','Item_Name' => 'Strile swabs','Cost_Price' => '996','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '858','Item_Name' => 'Strong Carbolfuchsin solution','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '859','Item_Name' => 'Stuart transport medium','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '860','Item_Name' => 'Sulphosalicyclic acid 3% solution','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '861','Item_Name' => 'Sulphuric acid 20% solution 1 litre','Cost_Price' => '42000','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '862','Item_Name' => 'Syphilis Ab rapid tests','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '863','Item_Name' => 'Syphilis TPGA 50 tests','Cost_Price' => '1009','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '864','Item_Name' => 'System rinse 20litres','Cost_Price' => '45000','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '865','Item_Name' => '','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '866','Item_Name' => 'Test Tube racks ','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '867','Item_Name' => 'Total and Direct Bilurubin ','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '868','Item_Name' => 'Total Protein (Biuret concentrate)','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '869','Item_Name' => 'TSH Elisa','Cost_Price' => '425000','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '870','Item_Name' => 'FT3 Elisa','Cost_Price' => '540000','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '871','Item_Name' => 'FT4 Elisa','Cost_Price' => '540000','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '872','Item_Name' => 'Toxo combi strips','Cost_Price' => '5800','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '873','Item_Name' => 'Treponema test strips','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '874','Item_Name' => 'Turks 2% solution','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '875','Item_Name' => 'Urine containers','Cost_Price' => '600','Selling_Price' => '0','Quantity' => '5000','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '876','Item_Name' => 'Urine test strips 9 &10 parameters','Cost_Price' => '288','Selling_Price' => '0','Quantity' => '10','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '877','Item_Name' => 'Vacutainer needle holders','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '500','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '878','Item_Name' => 'Vacutainer needles','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '500','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '879','Item_Name' => 'Vacutainer tubes 4ml with EDTA[Purple tops]','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '11000','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '880','Item_Name' => 'Vacutainer tubes plain 4ml [red top]','Cost_Price' => '552','Selling_Price' => '0','Quantity' => '800','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '881','Item_Name' => 'Vacutainer tuebs 4ml Trisodium Citrate Blue top','Cost_Price' => '567','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '882','Item_Name' => 'Alkaline peptone water','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '883','Item_Name' => 'Blood agar base ','Cost_Price' => '166470','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '884','Item_Name' => 'Brain heart infusuon broth','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '885','Item_Name' => 'Mac conkey agar ','Cost_Price' => '185638','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '886','Item_Name' => 'Mueller Hinton agar 500g','Cost_Price' => '207096','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '887','Item_Name' => 'Nutrient Agar','Cost_Price' => '168715','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '888','Item_Name' => 'Peptone water 500g','Cost_Price' => '175413','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '889','Item_Name' => 'Subouracil Dextrose Agar','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '890','Item_Name' => 'Sim agar','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '891','Item_Name' => 'Tripple sugar iron agar 500g','Cost_Price' => '110742','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '892','Item_Name' => 'Urea Agar Base 500g','Cost_Price' => '156331','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '893','Item_Name' => 'XLD medium','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '894','Item_Name' => 'SSA [Salmonella Shigella Agar]','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '895','Item_Name' => 'Ampicillin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '100','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '896','Item_Name' => 'Beatracin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '897','Item_Name' => 'Ceftzidine','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '898','Item_Name' => 'Chloramphenical','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-02-14','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '899','Item_Name' => 'Ciprofloxacin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-04-05','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '900','Item_Name' => 'Clindamycin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '901','Item_Name' => 'Cotrimoxazole','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '300','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '902','Item_Name' => 'Erythromycin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '12700','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-07-20','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '903','Item_Name' => 'Gentamycin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '900','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-04-13','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '904','Item_Name' => 'Imipenem','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '905','Item_Name' => 'Methicillin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '906','Item_Name' => 'Nalidixic acid ','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '907','Item_Name' => 'Nitrofurantoin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '908','Item_Name' => 'Optochin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '909','Item_Name' => 'Oxacillin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '910','Item_Name' => 'Vancomycin','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '911','Item_Name' => 'Oxidase reagent','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '912','Item_Name' => 'Indole reagent','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '0','Reoder_Level' => '0','Description' => '','Drug_Form' => '21','Drug_Unit' => '0','Updated_At' => '0000-00-00 00:00:00','Created_At' => '0000-00-00 00:00:00','Item_Category_Id' => '0','Supplier_Id' => '0','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '','Account_Id' => '0','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '0000-00-00','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL),
|
||||
array('Item_Id' => '1030','Item_Name' => 'Determine HIV Screening test','Cost_Price' => '0','Selling_Price' => '0','Quantity' => '100','Reoder_Level' => '0','Description' => '','Drug_Form' => '30','Drug_Unit' => '14','Updated_At' => NULL,'Created_At' => '2017-05-31 13:06:21','Item_Category_Id' => '2','Supplier_Id' => '11','Prompt' => '','Patient_Info_Rukiga' => '','Patient_Info' => '','Reference_Areas' => NULL,'Reference_Name' => NULL,'Insurance_Coverage' => '0','Drug_Category' => '89','Account_Id' => '11','Item_Type' => 'Lab','Comment' => '','Restricted_Prescribing' => '','Long_Term' => '','Pharmacy_Stock' => '0','Expiry_Date' => '2018-01-01','Non_Insured_Amount' => '0','Pricing_Factor_Adult' => '0.00','Ip_Adult_Daily_Cost' => '0','Pricing_Factor_Children' => '0.00','IP_Paed_Daily_Cost' => '0','Pack' => '0.00','Strength' => '0.00','Active' => '1','Pricing_Factor_Infant' => '0.00','IP_Infant_Daily_Cost' => '0','Hssip' => '','Government_Essential' => NULL)
|
||||
);
|
||||
|
||||
foreach ($inventory_items as $lab):
|
||||
Lab::firstOrCreate([
|
||||
"id" => $lab['Item_Id'],
|
||||
"name" => $lab['Item_Name'],
|
||||
"insurance_coverage" => $lab['Insurance_Coverage'],
|
||||
"account_id" => $lab['Account_Id'],
|
||||
"cost_price" => $lab['Cost_Price'],
|
||||
"store_stock" => $lab['Quantity'],
|
||||
"pharmacy_stock" => $lab['Pharmacy_Stock'],
|
||||
"non_insured_price" => $lab['Selling_Price'],
|
||||
"form_id" => $lab['Drug_Form'],
|
||||
"unit_id" => $lab['Drug_Unit'],
|
||||
"supplier_id" => $lab['Supplier_Id'],
|
||||
"insured_price" => 0,
|
||||
"reorder_level" => $lab['Reoder_Level'],
|
||||
"description" => $lab['Description'],
|
||||
"expiry_date" => $lab['Expiry_Date']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\LicenceCouncil;
|
||||
|
||||
class LicenceCouncilsSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$councils = [
|
||||
'Uganda Nursing & Midwifery Council',
|
||||
'Uganda Medical & Dental Practitioner Council',
|
||||
'Uganda Allied Health Professionals Council'
|
||||
];
|
||||
|
||||
foreach ($councils as $value) {
|
||||
LicenceCouncil::firstOrCreate([
|
||||
'name' => $value
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\LocationOfDelivery;
|
||||
|
||||
class LocationOfDeliveryTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`location_of_delivery` */
|
||||
$location_of_delivery = array(
|
||||
array('id' => '1','name' => 'Kisiizi Hospital Maternity','Active' => '1'),
|
||||
array('id' => '2','name' => 'Kisiizi Hospital A&E','Active' => '1'),
|
||||
array('id' => '3','name' => 'Other','Active' => '1'),
|
||||
array('id' => '4','name' => 'Another location','Active' => '0'),
|
||||
array('id' => '5','name' => 'Yet another location','Active' => '0'),
|
||||
array('id' => '6','name' => 'And another one','Active' => '0'),
|
||||
array('id' => '7','name' => 'Another locations','Active' => '1'),
|
||||
array('id' => '8','name' => 'Yet another location','Active' => '0'),
|
||||
array('id' => '9','name' => 'Another location','Active' => '0'),
|
||||
array('id' => '10','name' => 'kk','Active' => '0'),
|
||||
array('id' => '11','name' => 'Test d.l','Active' => '1'),
|
||||
array('id' => '12','name' => 'kk','Active' => '1'),
|
||||
array('id' => '13','name' => 'new nice location','Active' => '1'),
|
||||
array('id' => '14','name' => 'delivery comfrimation','Active' => '1'),
|
||||
array('id' => '15','name' => 'thursday delivery location','Active' => '1')
|
||||
);
|
||||
|
||||
foreach ($location_of_delivery as $location):
|
||||
LocationOfDelivery::firstOrCreate([
|
||||
"id" => $location['id'],
|
||||
"name" => $location['name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\MaritalStatus;
|
||||
|
||||
class MaritalStatusSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$marital_status = ["Married", "Divorced", "Single", "Widowed"];
|
||||
|
||||
foreach ($marital_status as $status):
|
||||
MaritalStatus::firstOrCreate([
|
||||
"name" => $status
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\MaternityProgress;
|
||||
|
||||
class MaternityProgressTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$maternity_progress = array(
|
||||
array('Id' => '1', 'Progress' => 'MWH', 'Color' => 'blue'),
|
||||
array('Id' => '2', 'Progress' => 'Ante-natal (AN)', 'Color' => 'blue'),
|
||||
array('Id' => '3', 'Progress' => 'Latent Phase (LAT)', 'Color' => 'pink'),
|
||||
array('Id' => '4', 'Progress' => 'Active Labour (ACT)', 'Color' => 'red'),
|
||||
array('Id' => '5', 'Progress' => 'SVD', 'Color' => 'green'),
|
||||
array('Id' => '6', 'Progress' => 'Vacuum (VAC)', 'Color' => 'green'),
|
||||
array('Id' => '7', 'Progress' => 'Forceps (FOR)', 'Color' => 'green'),
|
||||
array('Id' => '8', 'Progress' => 'Breech (BR)', 'Color' => 'green'),
|
||||
array('Id' => '9', 'Progress' => 'Delivered CS (CS)', 'Color' => 'green')
|
||||
);
|
||||
|
||||
foreach ($maternity_progress as $progress):
|
||||
MaternityProgress::firstOrCreate([
|
||||
"id" => $progress['Id'],
|
||||
"name" => $progress['Progress'],
|
||||
"color" => $progress['Color']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\MessageBoard;
|
||||
|
||||
class MessageBoardTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$messages = ['<h1 style="text-align: left;"><span style="color: #008080;"><strong>Welcome to the Stre@mline system.</strong></span></h1>
|
||||
<p style="text-align: left;">Stre@mline is designed to follow the patient journey from initial registration to triage, consultation, investigation, diagnosis and treatment and can be used by multi-disciplinary staff.</p>
|
||||
<p style="text-align: left;">We have intergrated important patient safety prompts and resources.</p>
|
||||
<p style="text-align: left;">Stre@mline takes care of data so that medics can take care of patients</p>'
|
||||
];
|
||||
|
||||
foreach ($messages as $message):
|
||||
MessageBoard::firstOrCreate([
|
||||
"body" => $message
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,224 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class MissingMigrationsVineSeeder extends Seeder {
|
||||
/**
|
||||
* Insert duplicate migrations for the vine instance to avoid breaks.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$arr = [
|
||||
'2019_10_24_073230_create_store_stock_reconciliations_table',
|
||||
'2019_10_28_100042_add_mark_up_tag_column_to_drugs',
|
||||
'2019_10_28_101652_create_markup_tags_table',
|
||||
'2019_11_14_103627_create_ward_treatment_dispensations_table',
|
||||
'2019_11_18_084221_create_general_settings_table',
|
||||
'2019_11_22_125855_create_price_list_categories_table',
|
||||
'2019_11_22_130216_add_price_list_categories_to_items_tables',
|
||||
'2019_11_26_141010_add_columns_to_patient_table',
|
||||
'2019_11_28_100853_create_patient_appointments_table',
|
||||
'2019_11_29_100542_create_cost_of_goods_table',
|
||||
'2019_12_03_154628_create_eye_clinic_additional_tests_table',
|
||||
'2019_12_03_154832_create_eye_clinic_base_exam_refraction_table',
|
||||
'2019_12_03_154952_create_eye_clinic_main_exam_table',
|
||||
'2019_12_03_161921_create_strabismuses_table',
|
||||
'2019_12_11_094130_add_invoice_columns_to_quotations_table',
|
||||
'2019_12_13_092025_add_show_drug_brand_name_column_to_general_settings_table',
|
||||
'2019_12_16_114715_add_tracking_columns_to_deposit_tables',
|
||||
'2020_01_07_104353_create_eye_glasses_table',
|
||||
'2020_01_07_104840_create_ordered_eye_glasses_table',
|
||||
'2020_01_07_110308_create_eye_glasses_deposits_table',
|
||||
'2020_01_07_121151_add_referred_from_patient_table',
|
||||
'2020_01_23_153858_add_outcome_columns_to_surgeries_table',
|
||||
'2020_01_28_091637_create_stock_watcher_table',
|
||||
'2020_02_05_174701_add_paid_over_column_to_patient_episodes_table',
|
||||
'2020_02_28_153427_add_history_columns_to_debtor_payments_table',
|
||||
'2020_03_04_170000_add_received_column_to_payments_tables',
|
||||
'2020_03_05_093059_add_date_string_to_cashier_income_table',
|
||||
'2020_03_06_093736_create_family_accounts_table',
|
||||
'2020_03_06_093755_create_family_account_deposits_table',
|
||||
'2020_03_09_091555_create_family_account_consumptions_table',
|
||||
'2020_03_23_150234_add_core_column_to_chart_of_accounts_table',
|
||||
'2020_03_23_154724_add_family_accounts_feature_column_to_general_settings_table',
|
||||
'2020_03_25_103904_add_vendor_to_payments_table',
|
||||
'2020_03_26_154858_add_hmis_columns_to_procedures_table',
|
||||
'2020_03_27_081416_add_inpatient_bill_generated_to_ordered_investigations_table',
|
||||
'2020_03_30_130107_add_money_receiving_and_transfer_columns_to_family_account_deposits_table',
|
||||
'2020_04_01_120806_add_expense_date_to_payments_table',
|
||||
'2020_04_03_021439_add_slug_column_to_wards_table',
|
||||
'2020_04_06_131810_add_money_receiving_and_transfer_columns_to_family_account_consumptions_table',
|
||||
'2020_04_06_131810_add_money_receiving_and_transfer_columns_to_family_account_consumptions_table',
|
||||
'2020_04_07_112825_add_parent_episode_id_column_to_patient_episodes_table',
|
||||
'2020_04_10_152411_create_bills_tables',
|
||||
'2020_04_10_152411_create_bills_tables',
|
||||
'2020_04_10_200043_add_balance_to_hospital_bills_table',
|
||||
'2020_04_10_200043_add_balance_to_hospital_bills_table',
|
||||
'2020_04_14_005202_add_bill_id_to_payments_table',
|
||||
'2020_04_17_121717_add_bill_type_column_to_hospital_bills_table',
|
||||
'2020_04_23_165808_add_chart_of_account_to_deposit_tables',
|
||||
'2020_04_24_122049_rename_buying_price_column_in_sundres_table',
|
||||
'2020_04_28_235909_add_other_drugs_given_and_other_drugs_cost_to_anaesthesias',
|
||||
'2020_04_29_021814_add_mallampatti_score_and_asa_classification_to_anaesthesias',
|
||||
'2020_04_29_190100_add_cost_price_column_to_deposit_tables',
|
||||
'2020_04_29_203845_add_missing_accounts_on_existing_inventory_tables',
|
||||
'2020_04_30_134429_add_add_markup_tag_id_column_to_sundries',
|
||||
'2020_05_01_001512_add_expense_account_to_payments_tables',
|
||||
'2020_05_01_161925_create_sundry_store_stock_reconciliations_table',
|
||||
'2020_05_05_182145_add_accounts_receivable_columns_to_tables',
|
||||
'2020_05_14_104618_add_directly_received_or_not_column_to_quotations_table',
|
||||
'2020_05_14_115017_add_accounts_to_debts_tables',
|
||||
'2020_05_16_090024_add_clearance_columns_to_invoice_and_debt_tables',
|
||||
'2020_05_30_142449_add_currency_code_column_to_general_settings',
|
||||
'2020_06_07_234753_create_bankings_table',
|
||||
'2020_06_08_121226_create_equities_table',
|
||||
'2020_06_12_110550_add_batch_quantity_current_balance_column_to_quotations_table',
|
||||
'2020_06_18_090132_add_depreciation_column_to_fixed_assets_table',
|
||||
'2020_06_19_150149_add_received_history_columns_to_payments_tables',
|
||||
'2020_06_20_104734_add_detail_columns_to_stock_watcher_table',
|
||||
'2020_06_20_231358_add_deposited_to_column_in_equities_table',
|
||||
'2020_06_23_145342_add_password_days_column_to_general_settings_table',
|
||||
'2020_06_24_131240_add_package_unit_related_columns_to_quotations_table',
|
||||
'2020_06_25_094943_create_package_units_table',
|
||||
'2020_06_25_155014_create_inpatient_ward_discounts_table',
|
||||
'2020_06_26_090022_add_payment_complete_column_to_deposit_tables',
|
||||
'2020_07_01_225459_add_bill_per_package_unit_column_to_quotations_table',
|
||||
'2020_07_04_102819_add_item_batch_tracking_column_to_general_settings_table',
|
||||
'2020_07_13_100540_add_cost_value_column_to_requisitions_table',
|
||||
'2020_07_23_122037_add_co_payment_column_to_patient_discounts_table',
|
||||
'2020_07_24_043604_create_staff_payment_configurations_table',
|
||||
'2020_07_27_145936_create_staff_performed_services_table',
|
||||
'2020_07_27_151201_add_enable_sms_column_to_general_settings_table',
|
||||
'2020_07_28_085000_add_is_confirmed_column_to_patient_appointments_table',
|
||||
'2020_07_29_144842_add_is_staff_paid_column_to_staff_performed_services_table',
|
||||
'2020_08_10_145700_add_enable_prescription_confirmations_column_to_general_settings',
|
||||
'2020_08_11_224819_add_reconciled_column_to_banking_table',
|
||||
'2020_08_25_121452_add_episode_type_column_to_patient_episodes_table',
|
||||
'2020_08_26_110233_create_bank_reconciliation_reports_table',
|
||||
'2020_08_27_095923_create_ordered_services_table',
|
||||
'2020_09_02_153545_add_enable_dispensing_unpaid_prescriptions_column_to_general_settings_table',
|
||||
'2020_09_03_103231_add_memo_column_to_bank_reconciliation_report',
|
||||
'2020_09_03_112048_create_price_list_markup_tags_changes_table',
|
||||
'2020_09_07_171604_add_extras_used_column_to_surgeries_table',
|
||||
'2020_09_09_120717_add_sundries_and_extras_used_column_to_anaesthesia_table',
|
||||
'2020_09_10_094005_create_ward_stocks_table',
|
||||
'2020_09_24_120443_update_chart_of_accounts',
|
||||
'2020_09_28_152310_add_opening_stock_column_to_drugs_table',
|
||||
'2020_09_29_104014_add_affected_account_id_column_to_store_stock_reconciliations_table',
|
||||
'2020_09_29_121518_add_affected_account_id_column_to_sundry_store_stock_reconciliations_table',
|
||||
'2020_09_29_121742_add_opening_stock_to_sundries_table',
|
||||
'2020_09_30_054011_create_pharmacy_stock_reconciliations_table',
|
||||
'2020_10_01_101117_add_extra_columns_to_staff_performed_services_table',
|
||||
'2020_10_02_095937_add_reconciliation_date_column_to_store_stock_reconciliation_table',
|
||||
'2020_10_02_101913_add_reconciliation_date_column_to_sundry_store_stock_reconciliations_table',
|
||||
'2020_10_02_192356_add_banked_column_to_invoice_payments',
|
||||
'2020_10_06_093829_add_payable_account_column_to_payment_items_table',
|
||||
'2020_10_07_165049_add_price_list_category_column_to_staff_payment_configurations_table',
|
||||
'2020_10_10_112342_create_ward_consultations_and_services_table',
|
||||
'2020_10_10_140939_create_ward_sundry_dispensations_table',
|
||||
'2020_10_10_150221_create_ward_extras_table',
|
||||
'2020_10_10_171152_create_ward_procedures_table',
|
||||
'2020_10_12_103612_add_staff_fee_column_to_ward_procedures_table',
|
||||
'2020_10_13_104334_create_patient_payment_methods_table',
|
||||
'2020_10_13_104951_add_item_amount_paid_to_hospital_bills_table',
|
||||
'2020_10_14_082552_create_payment_methods_transactions_table',
|
||||
'2020_10_19_120846_add_item_amounts_column_to_deposit_tables',
|
||||
'2020_10_21_164344_create_journals_table',
|
||||
'2020_10_22_110749_add_account_type_column_to_hospital_bills_table',
|
||||
'2020_10_22_144647_add_destination_column_to_quotations_table',
|
||||
'2020_10_26_100617_create_ward_bed_stays_table',
|
||||
'2020_10_27_091046_create_ward_investigation_pricings_table',
|
||||
'2020_10_30_093958_add_current_chart_of_account_column_to_ward_procedures_table',
|
||||
'2020_10_30_094124_add_current_chart_of_account_column_to_ward_bed_stays_table',
|
||||
'2020_10_30_094232_add_current_chart_of_account_column_to_ward_consultations_and_services_table',
|
||||
'2020_10_30_094402_add_current_chart_of_account_column_to_ward_investigation_pricings_table',
|
||||
'2020_10_30_094932_add_current_chart_of_account_column_to_ward_sundry_dispensations_table',
|
||||
'2020_10_30_095020_add_current_chart_of_account_column_to_ward_treatment_dispensations_table',
|
||||
'2020_11_02_094457_add_diagnoses_columns_to_anaesthesias_table',
|
||||
'2020_11_02_094531_add_diagnoses_columns_to_surgeries_table',
|
||||
'2020_11_03_091038_add_dispensation_date_column_to_ward_consultations_and_services_table',
|
||||
'2020_11_03_091129_add_dispensation_date_column_to_ward_extras_table',
|
||||
'2020_11_03_091156_add_dispensation_date_column_to_ward_procedures_table',
|
||||
'2020_11_03_091239_add_dispensation_date_column_to_ward_sundry_dispensations_table',
|
||||
'2020_11_03_092110_add_current_chart_of_account_column_to_ward_extras_table',
|
||||
'2020_11_09_173154_add_accounting_columns_to_wards_tables',
|
||||
'2020_11_10_180237_add_pricing_column_to_ward_sundry_dispensations_table',
|
||||
'2020_11_10_181422_add_pricing_column_to_ward_treatment_dispensations_table',
|
||||
'2020_11_13_153722_add_drugs_to_surgery_table',
|
||||
'2020_12_04_183316_add_slug_to_payment_items_table',
|
||||
'2020_12_07_160841_add_opening_cost_price_to_drugs_and_sundries',
|
||||
'2020_12_11_113229_add_cost_of_goods_to_ward_inventory_sales_table',
|
||||
'2020_12_15_161957_add_expense_tracking_column_to_patient_discounts_table',
|
||||
'2020_12_17_182744_add_enable_patient_debt_reminder_column_to_general_settings_table',
|
||||
'2020_12_28_144238_create_collective_bills_deposits_table',
|
||||
'2021_01_12_145653_create_patient_one_off_discounts_table',
|
||||
'2021_01_13_150914_add_expense_chart_of_account_column_to_ward_procedures_table',
|
||||
'2021_01_20_115623_add_payment_type_column_to_fixed_assets_table',
|
||||
'2021_02_25_142439_add_performed_column_to_ordered_services_table',
|
||||
'2021_03_25_163512_add_setting_for_financial_year_start_date_to_hospital_information_table',
|
||||
'2021_04_13_114453_create_other_incomes_table',
|
||||
'2021_04_14_115454_add_affected_table_columns_to_journals_table',
|
||||
'2021_04_16_121635_add_payment_method_to_other_incomes_table',
|
||||
'2021_04_20_092808_add_enable_performing_unpaid_consultations_to_general_settings_table',
|
||||
'2021_04_20_145335_rename_columns_in_other_incomes_table',
|
||||
'2021_04_28_100125_add_drug_related_settings_to_general_settings_table',
|
||||
'2021_04_28_171808_add_received_column_to_other_incomes_table',
|
||||
'2021_04_29_180058_add_bill_id_to_quotations_table',
|
||||
'2021_05_03_190526_create_general_items_table',
|
||||
'2021_05_04_085411_add_opening_stocks_take_points_to_drugs_table',
|
||||
'2021_05_04_101517_add_chi_to_general_settings_table',
|
||||
'2021_05_04_152343_add_receivable_account_column_to_receivables_tables',
|
||||
'2021_05_05_135657_add_patient_category_coverage_to_drugs_table',
|
||||
'2021_05_06_195021_add_add_service_to_patient_total_bill_to_general_settings_table',
|
||||
'2021_05_07_204111_add_is_progressive_treatment_column_to_treatments_table',
|
||||
'2021_05_12_181235_add_enable_performing_unpaid_investigations_to_general_settings_table',
|
||||
'2021_05_13_180430_create_general_items_stock_reconciliations',
|
||||
'2021_05_19_095043_add_cashier_receipts_print_format_column_to_general_settings_table',
|
||||
'2021_05_31_103241_add_receipt_number_to_family_accounts_consumption_table',
|
||||
'2021_06_01_111329_add_extra_columns_to_family_accounts',
|
||||
'2021_06_02_084030_add_transaction_date_to_patient_category_invoices_table',
|
||||
'2021_06_25_135228_add_sale_date_and_sale_price_to_fixed_assets_table',
|
||||
'2021_07_12_122723_add_patient_category_amount_column_to_central_billing_deposits_table',
|
||||
'2021_07_13_165320_add_order_items_column_to_deposits_table',
|
||||
'2021_08_17_164314_add_opening_stock_to_general_items_table',
|
||||
'2021_08_31_170728_add_opening_cost_price_to_general_items_table',
|
||||
'2021_09_24_094137_add_patient_finance_accounts_columns_to_patients_table',
|
||||
'2022_03_23_165006_create_non_staff_guarantors_table',
|
||||
'2022_03_24_113116_add_installation_payment_dates_and_guarantor_type_column_to_debt_plan_table',
|
||||
'2022_04_25_173938_add_accounting_columns_to_dentals_table',
|
||||
'2022_04_28_104314_add_accounting_columns_to_radiologies_table',
|
||||
'2022_04_29_114617_rename_cancel_patient_transaction_table',
|
||||
'2022_05_03_110415_create_diagnosis_categories_table',
|
||||
'2022_05_03_121032_create_slit_lamp_test_areas_table',
|
||||
'2022_05_03_121212_create_slit_lamp_test_area_values_table',
|
||||
'2022_05_04_110448_add_columns_to_eye_glasses_table',
|
||||
'2022_05_04_121143_add_eye_column_to_order_tables',
|
||||
'2022_05_05_092128_add_previous_id_column_to_patients_table',
|
||||
'2022_05_05_103645_add_columns_to_eye_deposits_table'
|
||||
];
|
||||
|
||||
foreach ($arr as $record) {
|
||||
DB::table('migrations')->insert(['migration' => $record, 'batch' => 35]);
|
||||
}
|
||||
|
||||
// re-value 12 to 19 in the patient categories
|
||||
DB::table('patient_category_invoices')->where('tag_id', 12)->update(['tag_id' => 19]);
|
||||
DB::table('central_billing_deposits')->where('tag_id', 12)->update(['tag_id' => 19]);
|
||||
|
||||
DB::table('streamline_setup_steps')->where('tag_id', 12)->insert([
|
||||
['step' => 'hospital registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'clinics registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'wards registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'services registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'investigations registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'drugs registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'procedures registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'sundries registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'general settings configuration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
]);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\ModeOfDelivery;
|
||||
|
||||
class ModeOfDeliveryTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`mode_of_delivery` */
|
||||
$mode_of_delivery = array(
|
||||
array('id' => '1','name' => 'SVD','Active' => '1'),
|
||||
array('id' => '2','name' => 'Vacuum','Active' => '1'),
|
||||
array('id' => '3','name' => 'CS elective','Active' => '1'),
|
||||
array('id' => '4','name' => 'CS emergency','Active' => '1'),
|
||||
array('id' => '5','name' => 'Breech','Active' => '1'),
|
||||
array('id' => '6','name' => 'Forceps','Active' => '1'),
|
||||
array('id' => '7','name' => 'Face','Active' => '1')
|
||||
);
|
||||
|
||||
foreach ($mode_of_delivery as $mode):
|
||||
ModeOfDelivery::firstOrCreate([
|
||||
"id" => $mode['id'],
|
||||
"name" => $mode['name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class ModuleSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$modules = [
|
||||
'Community Health Insurance',
|
||||
'Laboratory', 'Imaging',
|
||||
'Pharmacy',
|
||||
'Drugs',
|
||||
'Sundries',
|
||||
'Procedures',
|
||||
'Investigations',
|
||||
'Patient Finance'
|
||||
];
|
||||
|
||||
foreach ($modules as $module):
|
||||
\Streamline\Models\Module::firstOrCreate([
|
||||
"name" => $module
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\MuscleRelaxant;
|
||||
|
||||
class MuscleRelaxantsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`muscle_relaxants` */
|
||||
$muscle_relaxants = array(
|
||||
array('Relaxant_Id' => '3','Relaxant_Name' => 'Atracurium'),
|
||||
array('Relaxant_Id' => '5','Relaxant_Name' => 'Nil'),
|
||||
array('Relaxant_Id' => '4','Relaxant_Name' => 'Other'),
|
||||
array('Relaxant_Id' => '2','Relaxant_Name' => 'Pancuronium'),
|
||||
array('Relaxant_Id' => '1','Relaxant_Name' => 'Suxamethonium')
|
||||
);
|
||||
|
||||
foreach ($muscle_relaxants as $relaxant):
|
||||
MuscleRelaxant::firstOrCreate([
|
||||
"id" => $relaxant['Relaxant_Id'],
|
||||
"name" => $relaxant['Relaxant_Name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\NeedleType;
|
||||
|
||||
class NeedleTypesTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* `streamline_db`.`needle_types` */
|
||||
$needle_types = array(
|
||||
array('Type_Id' => '1','Type_Name' => '27G'),
|
||||
array('Type_Id' => '2','Type_Name' => '25G'),
|
||||
array('Type_Id' => '3','Type_Name' => '23G'),
|
||||
array('Type_Id' => '4','Type_Name' => '21G'),
|
||||
array('Type_Id' => '5','Type_Name' => '22G'),
|
||||
array('Type_Id' => '6','Type_Name' => '24G'),
|
||||
array('Type_Id' => '7','Type_Name' => '26G')
|
||||
);
|
||||
|
||||
foreach ($needle_types as $needle):
|
||||
NeedleType::firstOrCreate([
|
||||
"id" => $needle['Type_Id'],
|
||||
"name" => $needle['Type_Name']
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Nutrition;
|
||||
|
||||
class NutritionTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$names = ['Nutrition ok, Green','Moderate acute malnutrition','Severe acute malnutrition','Severe acute malnutrition with oedema','Poor weight gain','Poor appetite'];
|
||||
foreach ($names as $name) {
|
||||
Nutrition::firstOrCreate(['name'=>$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Observation;
|
||||
|
||||
class ObservationsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$observations = [
|
||||
['system_name'=>'Temperature','name'=>'Temperature','measurement'=>' °C','lower_limit'=>36.0,'upper_limit'=>37.7,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'5'],
|
||||
['system_name'=>'Temperature','name'=>'Temperature','measurement'=>' °C','lower_limit'=>36.7,'upper_limit'=>37.2,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'1'],
|
||||
['system_name'=>'Temperature','name'=>'Temperature','measurement'=>' °C','lower_limit'=>36.5,'upper_limit'=>37.4,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'2,3,4'],
|
||||
['system_name' => 'Pulse','name' => 'Pulse','measurement'=>'','lower_limit'=>51,'upper_limit'=>100,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'5'],
|
||||
['system_name' => 'Pulse','name' => 'Pulse','measurement'=>'','lower_limit'=>110,'upper_limit'=>160,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'1'],
|
||||
['system_name' => 'Pulse','name' => 'Pulse','measurement'=>'','lower_limit'=>121,'upper_limit'=>160,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'2'],
|
||||
['system_name' => 'Pulse','name' => 'Pulse','measurement'=>'','lower_limit'=>76,'upper_limit'=>130,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'3'],
|
||||
['system_name' => 'Pulse','name' => 'Pulse','measurement'=>'','lower_limit'=>76,'upper_limit'=>130,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'4'],
|
||||
['system_name' => 'Respirations','name' => 'Respirations','measurement'=>'','lower_limit'=>9,'upper_limit'=>18,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'5'],
|
||||
['system_name' => 'Respirations','name' => 'Respirations','measurement'=>'','lower_limit'=>30,'upper_limit'=>60,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'1'],
|
||||
['system_name' => 'Respirations','name' => 'Respirations','measurement'=>'','lower_limit'=>31,'upper_limit'=>55,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'2'],
|
||||
['system_name' => 'Respirations','name' => 'Respirations','measurement'=>'','lower_limit'=>21,'upper_limit'=>40,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'3'],
|
||||
['system_name' => 'Respirations','name' => 'Respirations','measurement'=>'','lower_limit'=>18,'upper_limit'=>30,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'4'],
|
||||
['system_name' => 'SaO2','name' => 'SaO2','measurement'=>'%','lower_limit'=>null,'upper_limit'=>null,'options'=>'','option_for_normal'=>'>94','compulsory'=>'0','age_group'=>'5,4,3,2'],
|
||||
['system_name' => 'SaO2','name' => 'SaO2','measurement'=>'%','lower_limit'=>95,'upper_limit'=>1000,'options'=>'','option_for_normal'=>'','compulsory'=>'0','age_group'=>'1,'],
|
||||
['system_name' => 'Systolic bp','name' => 'Systolic bp','measurement'=>'','lower_limit'=>101,'upper_limit'=>159,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'5'],
|
||||
['system_name' => 'Diastolic bp','name' => 'Diastolic bp','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'','option_for_normal'=>'<95','compulsory'=>'1','age_group'=>'1,2,3,4,5'],
|
||||
['system_name' => 'Respiratory Distress','name' => 'Respiratory Distress','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'None,Mild,Severe','option_for_normal'=>'None','compulsory'=>'1','age_group'=>'2,3,4'],
|
||||
['system_name' => 'Conscious level','name' => 'Conscious level','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'alert,responds to voice/irritated,responds to pain,unresponsive','option_for_normal'=>'alert','compulsory'=>'1','age_group'=>'5'],
|
||||
['system_name' => 'Conscious level','name' => 'Conscious level','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'alert and feeding,irritable,floppy, difficult to rouse,convulsing','option_for_normal'=>'alert and feeding','compulsory'=>'1','age_group'=>'1'],
|
||||
['system_name' => 'Feeding','name' => 'Feeding','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'Normal,Drinks poorly,Unable to drink','option_for_normal'=>'Normal','compulsory'=>'1','age_group'=>'2,3,4'],
|
||||
['system_name' => 'Vomiting','name' => 'Vomiting','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'None,Ocassional,Vomits everything','option_for_normal'=>'None','compulsory'=>'1','age_group'=>'2','3','4'],
|
||||
['system_name' => 'Convulsions','name' => 'Convulsions','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'None,Occasional Reported,Frequent Reported,Convulsing','option_for_normal'=>'None','compulsory'=>'1','age_group'=>'1,2,3,4'],
|
||||
['system_name' => 'Urine Output','name' => 'Urine Output','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'normal,reduced,none for 24 hours','option_for_normal'=>'normal','compulsory'=>'1','age_group'=>'5'],
|
||||
['system_name' => 'MUAC','name' => 'MUAC','measurement'=>'cm','lower_limit'=>null,'upper_limit'=>null,'options'=>'','option_for_normal'=>'>12.5','compulsory'=>'1','age_group'=>'5'],
|
||||
['system_name' => 'MUAC','name' => 'MUAC','measurement'=>'cm','lower_limit'=>12.5,'upper_limit'=>50,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'1,2,3,4'],
|
||||
['system_name' => 'Supplementary Oxygen?','name' => 'Supplementary Oxygen?','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'yes,no','option_for_normal'=>'','compulsory'=>'1','age_group'=>'1,2,3,4,5'],
|
||||
['system_name' => 'Blood Pressure','name' => 'Blood Pressure','measurement'=>'bp','lower_limit'=>null,'upper_limit'=>null,'options'=>'','option_for_normal'=>'','compulsory'=>'0','age_group'=>'1,2'],
|
||||
['system_name' => 'Blood Glucose','name' => 'Blood Glucose','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'','option_for_normal'=>'','compulsory'=>'0','age_group'=>'1,2'],
|
||||
['system_name' => 'Height','name' => 'Height','measurement'=>'m','lower_limit'=>null,'upper_limit'=>null,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'4,5'],
|
||||
['system_name' => 'Weight','name' => 'Weight','measurement'=>'kg','lower_limit'=>null,'upper_limit'=>null,'options'=>'','option_for_normal'=>'','compulsory'=>'1','age_group'=>'1,2,3,4,5'],
|
||||
['system_name' => 'Alcohol use','name' => 'Alcohol use','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'High,Moderate,Low,Nil','option_for_normal'=>'','compulsory'=>'0','age_group'=>'5'],
|
||||
['system_name' => 'Tobacco use','name' => 'Tobacco use','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'High,Moderate,Low,Nil','option_for_normal'=>'','compulsory'=>'0','age_group'=>'5'],
|
||||
['system_name' => 'Parent Concern','name' => 'Parent Concern','measurement'=>'','lower_limit'=>null,'upper_limit'=>null,'options'=>'Child should be admitted,Child should not be admitted','option_for_normal'=>'','compulsory'=>'0','age_group'=>'1,2,3,4']
|
||||
];
|
||||
|
||||
foreach ($observations as $observation) {
|
||||
// Prevent re-seeding the same data
|
||||
Observation::firstOrCreate([
|
||||
'system_name' => $observation['system_name'],
|
||||
'name' => $observation['name'],
|
||||
'slug' => str_replace(' ', '_', $observation['name']),
|
||||
'measurement' => $observation['measurement'],
|
||||
'lower_limit' => $observation['lower_limit'],
|
||||
'upper_limit' => $observation['upper_limit'],
|
||||
'options' => $observation['options'],
|
||||
'option_for_normal' => $observation['option_for_normal'],
|
||||
'compulsory' => $observation['compulsory'],
|
||||
'age_group' => $observation['age_group'],
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Occupation;
|
||||
|
||||
class OccupationsTableSeeder extends Seeder
|
||||
{
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$occupations = [
|
||||
"Peasant | Farmer",
|
||||
"Child",
|
||||
"Unemployed",
|
||||
"Health Personnel",
|
||||
"Information Communication Technology (ICT)",
|
||||
"Business man | Business woman",
|
||||
"Driver | Motorcyclists | Transport",
|
||||
"Secretary",
|
||||
"Other",
|
||||
"Social Worker",
|
||||
"Student",
|
||||
"House Wife",
|
||||
"Porter",
|
||||
"Construction | Electrical | Engineering",
|
||||
"Education | Training | Teachers"
|
||||
];
|
||||
|
||||
foreach ($occupations as $occupation):
|
||||
Occupation::firstOrCreate([
|
||||
"name" => $occupation
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Outcome;
|
||||
|
||||
class OutcomesTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$outcomes = [
|
||||
'Admitted',
|
||||
'Discharged',
|
||||
'Home with Followup',
|
||||
'Referred',
|
||||
'Died',
|
||||
'Return to Ward',
|
||||
'Ongoing Consultation',
|
||||
'Ran Away Without Paying',
|
||||
'Sent to Theatre',
|
||||
'Internal Transfer'
|
||||
];
|
||||
|
||||
foreach ($outcomes as $value) {
|
||||
Outcome::firstOrCreate([
|
||||
'name' => $value,
|
||||
'slug' => str_replace(" ", "_", strtolower($value)),
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
+11509
File diff suppressed because it is too large
Load Diff
+35
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\User;
|
||||
use Streamline\Models\PasswordSecurity;
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class PasswordExpirationForExistingUsersSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$existing_user_ids_array = DB::table('users')->pluck('id')->toArray();
|
||||
|
||||
$user_ids_in_password_securities_table_array = DB::table('users')
|
||||
->join('password_securities','password_securities.user_id', '=', 'users.id')
|
||||
->pluck('users.id')->toArray();
|
||||
|
||||
for ($i=0; $i < count($existing_user_ids_array) ; $i++) {
|
||||
if (!in_array($existing_user_ids_array[$i], $user_ids_in_password_securities_table_array)) {
|
||||
PasswordSecurity::create([
|
||||
'user_id' => $existing_user_ids_array[$i],
|
||||
'password_expiry_days' => 30,
|
||||
'password_updated_at' => Carbon::now(),
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+63
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class PatientCategoryInvoiceAccountSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$invoices = \Streamline\Models\PatientCategoryInvoice::all();
|
||||
$drugs_cost_of_good_account_id = \Streamline\Models\ChartOfAccount::where('id', 17)->pluck('id')->first();
|
||||
$sundries_cost_of_good_account_id = \Streamline\Models\ChartOfAccount::where('id', 5)->pluck('id')->first();
|
||||
|
||||
foreach ($invoices as $invoice){
|
||||
//Consultations / Services
|
||||
if($invoice->tag_id == 6 || $invoice->tag_id == 8 || $invoice->tag_id == 7 || $invoice->tag_id == 10){
|
||||
\Streamline\Models\PatientCategoryInvoice::where('id', $invoice->id)->update(['income_account'=> 7]);
|
||||
}
|
||||
//Drugs / Treatments
|
||||
elseif ($invoice->tag_id == 3 || $invoice->tag_id == 1){
|
||||
$cost_price_array = [];
|
||||
$items_array = explode(',',$invoice->items_ids);
|
||||
for ($x = 0; $x < count($items_array); $x++){
|
||||
$current_cost_price = get_name($items_array[$x], 'id', 'cost_price', 'drugs');
|
||||
array_push($cost_price_array, $current_cost_price);
|
||||
}
|
||||
$cost_price_string = implode(',', $cost_price_array);
|
||||
\Streamline\Models\PatientCategoryInvoice::where('id', $invoice->id)->update([
|
||||
'income_account'=> 4,
|
||||
'cost_price'=> $cost_price_string,
|
||||
'cost_of_goods_account'=> $drugs_cost_of_good_account_id
|
||||
]);
|
||||
|
||||
}
|
||||
//Sundries
|
||||
elseif ($invoice->tag_id == 5 ){
|
||||
$items_array = explode(',',$invoice->items_ids);
|
||||
for ($x = 0; $x < count($items_array); $x++){
|
||||
$current_cost_price = get_name($items_array[$x], 'id', 'cost_price', 'drugs');
|
||||
array_push($cost_price_array, $current_cost_price);
|
||||
}
|
||||
$cost_price_string = implode(',', $cost_price_array);
|
||||
\Streamline\Models\PatientCategoryInvoice::where('id', $invoice->id)->update([
|
||||
'income_account'=> 4,
|
||||
'cost_price'=> $cost_price_string,
|
||||
'cost_of_goods_account'=> $sundries_cost_of_good_account_id
|
||||
]);
|
||||
}
|
||||
//Investigations
|
||||
elseif ($invoice->tag_id == 2 ){
|
||||
\Streamline\Models\PatientCategoryInvoice::where('id', $invoice->id)->update(['income_account'=> 11]);
|
||||
}
|
||||
//Procedures
|
||||
elseif ($invoice->tag_id == 4 ){
|
||||
\Streamline\Models\PatientCategoryInvoice::where('id', $invoice->id)->update(['income_account'=> 8]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\PatientCategory;
|
||||
|
||||
class PatientCategorySeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
|
||||
$patient_categories = ["Cash","School of Nursing","Staff","Staff spouse"];
|
||||
|
||||
foreach ($patient_categories as $patient_category):
|
||||
PatientCategory::firstOrCreate([
|
||||
"name" => $patient_category
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class PatientDiscountsTableSeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
\Streamline\Models\PatientDiscount::firstOrCreate(['id' => '1', 'patient_category' => '1', 'discount' => '0', 'pay_later' => '0', 'created_at' => '1']);
|
||||
\Streamline\Models\PatientDiscount::firstOrCreate(['id' => '2', 'patient_category' => '2', 'discount' => '0', 'pay_later' => '1', 'created_at' => '1']);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Patient;
|
||||
use Faker\Factory as Faker;
|
||||
|
||||
class PatientsTableSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
|
||||
Patient::firstOrCreate(['id' => '1','number' => 'ST-0001','first_name' => 'Test','last_name' => 'Cash Patient','date_of_birth' => '1998-05-15','gender' => '1','marital_status' => '3','occupation_id' => '2','phone' => '0701234567','national_id' => '234567','phone_owner' => 'other','insurance_status' => '0','category_id' => '1','religion_id' => '7','language' => 'eng','next_of_kin' => 'Dad Doe','next_of_kin_relationship' => '9','lc_one' => 'lc1','hospital_contact' => NULL,'district_id' => '4','county_id' => '65','subcounty_id' => '147','parish_id' => '451','village_id' => '2621','created_by' => '1','updated_by' => '1']);
|
||||
|
||||
Patient::firstOrCreate(['id' => '2','number' => 'ST-0002','first_name' => 'Test','last_name' => 'Pay Later','date_of_birth' => '2018-05-15','gender' => '2','marital_status' => '3','occupation_id' => '2','phone' => '0701234567','national_id' => '44563','phone_owner' => 'other','insurance_status' => '0','category_id' => '2','religion_id' => '7','language' => 'eng','next_of_kin' => 'Dad Doe','next_of_kin_relationship' => '9','lc_one' => 'lc1','hospital_contact' => NULL,'district_id' => '4','county_id' => '65','subcounty_id' => '147','parish_id' => '451','village_id' => '2621','created_by' => '1','updated_by' => '1']);
|
||||
|
||||
Patient::firstOrCreate(['id' => '3','number' => 'ST-0003','first_name' => 'Test','last_name' => 'Insurance Active','date_of_birth' => '2008-05-15','gender' => '1','marital_status' => '3','occupation_id' => '2','phone' => '0701234567','national_id' => '138843','phone_owner' => 'other','insurance_status' => '1','category_id' => '3','religion_id' => '7','language' => 'eng','next_of_kin' => 'Dad Doe','next_of_kin_relationship' => '9','lc_one' => 'lc1','hospital_contact' => NULL,'district_id' => '4','county_id' => '65','subcounty_id' => '147','parish_id' => '451','village_id' => '2621','created_by' => '1','updated_by' => '1']);
|
||||
|
||||
Patient::firstOrCreate(['id' => '4','number' => 'ST-0004','first_name' => 'Test','last_name' => 'Insurance Inactive','date_of_birth' => '2018-05-15','gender' => '2','marital_status' => '3','occupation_id' => '2','phone' => '0701234567','national_id' => '29847','phone_owner' => 'other','insurance_status' => '1','category_id' => '3','religion_id' => '7','language' => 'eng','next_of_kin' => 'Dad Doe','next_of_kin_relationship' => '9','lc_one' => 'lc1','hospital_contact' => NULL,'district_id' => '4','county_id' => '65','subcounty_id' => '147','parish_id' => '451','village_id' => '2621','created_by' => '1','updated_by' => '1']);
|
||||
|
||||
Patient::firstOrCreate(['id' => '5','number' => 'ST-0005','first_name' => 'Test','last_name' => 'Discount Categories','date_of_birth' => '2000-05-15','gender' => '2','marital_status' => '3','occupation_id' => '2','phone' => '0701234567','national_id' => '2645275','phone_owner' => 'other','insurance_status' => '0','category_id' => '3','religion_id' => '7','language' => 'eng','next_of_kin' => 'Dad Doe','next_of_kin_relationship' => '9','lc_one' => 'lc1','hospital_contact' => NULL,'district_id' => '4','county_id' => '65','subcounty_id' => '147','parish_id' => '451','village_id' => '2621','created_by' => '1','updated_by' => '1']);
|
||||
|
||||
// fake 20000 patient records
|
||||
/*$faker = Faker::create();
|
||||
for($i = 5; $i < 20000; $i++) {
|
||||
Patient::create([
|
||||
'number' => 'KIS'.$i,
|
||||
'first_name' => $faker->firstName,
|
||||
'last_name' => $faker->lastName,
|
||||
'date_of_birth' => $faker->date,
|
||||
'gender' => $faker->numberBetween($min = 1, $max = 3),
|
||||
'marital_status' => $faker->numberBetween($min = 1, $max = 3),
|
||||
'occupation_id' => $faker->numberBetween($min = 1, $max = 4),
|
||||
'phone' => '0700123123',
|
||||
'national_id' => $faker->unique()->numberBetween($min = 10000, $max = 3000000),
|
||||
'phone_owner' => 'self',
|
||||
'insurance_status' => $faker->numberBetween($min = 0, $max = 1),
|
||||
'category_id' => $faker->numberBetween($min = 1, $max = 3),
|
||||
'religion_id' => $faker->numberBetween($min = 1, $max = 6),
|
||||
'language' => 'eng',
|
||||
'next_of_kin' => $faker->name,
|
||||
'next_of_kin_relationship' => $faker->numberBetween($min = 1, $max = 5),
|
||||
'lc_one' => 'lc1',
|
||||
'district_id' => $faker->numberBetween($min = 1, $max = 4),
|
||||
'county_id' => $faker->numberBetween($min = 1, $max = 50),
|
||||
'subcounty_id' => $faker->numberBetween($min = 1, $max = 50),
|
||||
'parish_id' => $faker->numberBetween($min = 1, $max = 50),
|
||||
'village_id' => $faker->numberBetween($min = 1, $max = 50)
|
||||
]);
|
||||
}*/
|
||||
}
|
||||
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user