mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-13 19:51:30 +00:00
Build modified streamline images
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
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;
|
||||
$record->created_by = $deposit->created_by;
|
||||
$record->updated_by = $deposit->updated_by;
|
||||
$record->created_at = $deposit->created_at;
|
||||
$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,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,81 @@
|
||||
<?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'),
|
||||
);
|
||||
|
||||
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,25 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Clinic;
|
||||
|
||||
class ClinicsSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$clinics = \Streamline\Http\Controllers\ClinicController::$clinics_seeder;
|
||||
|
||||
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
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+225
@@ -0,0 +1,225 @@
|
||||
<?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\VillagesSeeder;
|
||||
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(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(VillagesSeeder::class);
|
||||
//$this->call(WardsTableSeeder::class);
|
||||
$this->call(PermissionsCategoryTableSeeder::class);
|
||||
$this->call(FinancePointTagTableSeeder::class);
|
||||
$this->call(PaymentItemsTableSeeder::class);
|
||||
|
||||
// the seeders below are created for testing purposes only and should not be on the production server
|
||||
$this->call(DiscountCategoriesTableSeeder::class);
|
||||
$this->call(DonorsTableSeeder::class);
|
||||
$this->call(PatientDiscountsTableSeeder::class);
|
||||
$this->call(PremiumsTableSeeder::class);
|
||||
$this->call(InsuranceGroupsTableSeeder::class);
|
||||
$this->call(InsuranceMembersTableSeeder::class);
|
||||
$this->call(HeadsofFamilyTableSeeder::class);
|
||||
// end of those testing purposes
|
||||
|
||||
$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);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
+1559
File diff suppressed because it is too large
Load Diff
@@ -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,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
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]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+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,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,103 @@
|
||||
<?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'],
|
||||
);
|
||||
|
||||
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,427 @@
|
||||
<?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'],
|
||||
);
|
||||
|
||||
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,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;
|
||||
}
|
||||
}
|
||||
+31
@@ -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)
|
||||
]);
|
||||
}*/
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\PaymentItem;
|
||||
|
||||
class PaymentItemsTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$payment_items = array(
|
||||
array('name' => 'streamline bill', 'unit_cost' => 0 , 'account_id' => '14'),
|
||||
);
|
||||
|
||||
foreach ($payment_items as $item) {
|
||||
|
||||
// Prevent re-seeding the same data
|
||||
PaymentItem::firstOrCreate([
|
||||
'name' => $item['name'],
|
||||
'unit_cost' => $item['unit_cost'],
|
||||
'account_id' => $item['account_id'],
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class PayrollDefaultsSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run(){
|
||||
DB::table('payroll_defaults')->insert([
|
||||
'nssf_rate' => 0.1,
|
||||
'tax_from' => json_encode([0, 235001, 335001, 410001, 10000000]),
|
||||
'tax_to' => json_encode([235000, 335000, 410000, 10000000, '']),
|
||||
'tax_rate' => json_encode([0, 10, 20, 30, 40]),
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1,
|
||||
]);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,775 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Spatie\Permission\Models\Permission;
|
||||
|
||||
class PermissionTableSeeder extends Seeder
|
||||
{
|
||||
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/*
|
||||
* Reset cached roles and permissions
|
||||
*/
|
||||
app()[\Spatie\Permission\PermissionRegistrar::class]->forgetCachedPermissions();
|
||||
// PermissionRegistrar::forgetCachedPermissions();
|
||||
|
||||
$permissions = array(
|
||||
array('name' => 'clinics-list', 'permission_category_id' => '12', 'description' => 'View clinics', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'clinics-create', 'permission_category_id' => '12', 'description' => 'Create Clinics', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'clinics-edit', 'permission_category_id' => '12', 'description' => 'Edit Clinics', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'clinics-delete', 'permission_category_id' => '12', 'description' => 'Deactivate Clinics', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'investigations-historical-list', 'permission_category_id' => '10', 'description' => 'View historical investigations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'investigation-results-list', 'permission_category_id' => '10', 'description' => 'View investigation results', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'investigation-results-alter', 'permission_category_id' => '10', 'description' => 'Alter investigation results', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'investigations-authenticate', 'permission_category_id' => '10', 'description' => 'Authenticate investigation results', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'investigations-incoming', 'permission_category_id' => '10', 'description' => 'View incoming investigation results', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'messageboard-list', 'permission_category_id' => '11', 'description' => 'View messages', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'messageboard-create', 'permission_category_id' => '11', 'description' => 'Create message', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'messageboard-edit', 'permission_category_id' => '11', 'description' => 'Edit message', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'messageboard-delete', 'permission_category_id' => '11', 'description' => 'Delete message', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'messageboard-inactive-list', 'permission_category_id' => '11', 'description' => 'View inactive messages', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'messageboard-activate', 'permission_category_id' => '11', 'description' => 'Activate message', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'users-list', 'permission_category_id' => '1', 'description' => 'View users', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'users-create', 'permission_category_id' => '1', 'description' => 'Create user', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'users-edit', 'permission_category_id' => '1', 'description' => 'Edit user', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'users-delete', 'permission_category_id' => '1', 'description' => 'Delete user', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'role-list', 'permission_category_id' => '16', 'description' => 'View roles', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'role-create', 'permission_category_id' => '16', 'description' => 'Create role', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'role-edit', 'permission_category_id' => '16', 'description' => 'Edit role', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'role-delete', 'permission_category_id' => '16', 'description' => 'Delete role', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'procedures-delete', 'permission_category_id' => '12', 'description' => 'Delete procedure', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'procedures-edit', 'permission_category_id' => '12', 'description' => 'Edit procedure', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'procedures-create', 'permission_category_id' => '12', 'description' => 'Create procedure', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'procedures-list', 'permission_category_id' => '12', 'description' => 'View procedures', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'patient-list', 'permission_category_id' => '4', 'description' => 'View patients', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'patient-create', 'permission_category_id' => '4', 'description' => 'Create patient', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'patient-edit', 'permission_category_id' => '4', 'description' => 'Edit patient', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'patient-detail', 'permission_category_id' => '4', 'description' => 'Show patient', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'patient-delete', 'permission_category_id' => '4', 'description' => 'Delete patient', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-incoming-prescriptions', 'permission_category_id' => '13', 'description' => 'View pharmacy incoming prescriptions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-ward-dispensing', 'permission_category_id' => '13', 'description' => 'View pharmacy ward dispensing', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-stock-sheet', 'permission_category_id' => '13', 'description' => 'View pharmacy stock sheet', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-drug-requisition', 'permission_category_id' => '13', 'description' => 'View pharmacy drug requisition', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-saved-requisitions', 'permission_category_id' => '13', 'description' => 'View pharmacy saved requisitions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-previous-requisitions', 'permission_category_id' => '13', 'description' => 'View requisitions made previously', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'family-head-list', 'permission_category_id' => '2', 'description' => 'View insurance family heads', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'family-head-create', 'permission_category_id' => '2', 'description' => 'Create insurance family head', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'family-head-edit', 'permission_category_id' => '2', 'description' => 'Edit insurance family head', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'family-head-delete', 'permission_category_id' => '2', 'description' => 'Delete insurance family head', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'insurance-home', 'permission_category_id' => '2', 'description' => 'Insurance Home Page', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-risk-list', 'permission_category_id' => '2', 'description' => 'Insurance Risk List', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-risk-create', 'permission_category_id' => '2', 'description' => 'Insurance Risk Creation', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-risk-edit', 'permission_category_id' => '2', 'description' => 'Insurance Risk Editing', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-risk-delete', 'permission_category_id' => '2', 'description' => 'Insurance Risk Deletion', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-scheme-administration', 'permission_category_id' => '2', 'description' => 'Insurance Scheme Home Page', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View the dashboard required to manage Insurance Schemes'),
|
||||
array('name' => 'insurance-product-setup', 'permission_category_id' => '2', 'description' => 'Insurance Product Setup', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View the dashboard required to setup insurance plans, benefits and items'),
|
||||
array('name' => 'insurance-group-list', 'permission_category_id' => '2', 'description' => 'View insurance groups', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-group-create', 'permission_category_id' => '2', 'description' => 'Create insurance group', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'insurance-group-edit', 'permission_category_id' => '2', 'description' => 'Edit insurance group', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'insurance-group-delete', 'permission_category_id' => '2', 'description' => 'Delete insurance group', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'insurance-member-list', 'permission_category_id' => '2', 'description' => 'View insurance members', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-member-create', 'permission_category_id' => '2', 'description' => 'Create insurance member', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'insurance-member-edit', 'permission_category_id' => '2', 'description' => 'Edit insurance member', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'insurance-member-delete', 'permission_category_id' => '2', 'description' => 'Delete insurance members', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'insurance-almost-expiring', 'permission_category_id' => '3', 'description' => 'View insurance almost expiring', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'expired-insurance', 'permission_category_id' => '3', 'description' => 'View expired insurance report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-premiums-report', 'permission_category_id' => '3', 'description' => 'View insurance premiums report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-cumulative-premiums-report', 'permission_category_id' => '3', 'description' => 'View cumulative insurance premiums report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-income-received', 'permission_category_id' => '3', 'description' => 'View insurance income received report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-income-vs-expenditure', 'permission_category_id' => '3', 'description' => 'View insurance income vs expenditure report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-expenditure', 'permission_category_id' => '3', 'description' => 'view insurance expenditure report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-group-income-vs-expenditure', 'permission_category_id' => '3', 'description' => 'View group income vs expenditure report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-reports', 'permission_category_id' => '3', 'description' => 'View insurance reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'premium-renew', 'permission_category_id' => '2', 'description' => 'Renew premiums', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'premium-receipt-list', 'permission_category_id' => '2', 'description' => 'View paid premiums', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'premium-create', 'permission_category_id' => '2', 'description' => 'Create new premium', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'finance-patient-search', 'permission_category_id' => '7', 'description' => 'Patient finance home', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'make-sundries-deposits', 'permission_category_id' => '7', 'description' => 'Make sundries deposit', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'make-procedures-deposits', 'permission_category_id' => '7', 'description' => 'Make procedures deposit', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'make-investigations-deposits', 'permission_category_id' => '7', 'description' => 'Make investigation deposit', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'make-treatment-deposits', 'permission_category_id' => '7', 'description' => 'Make treatment deposit', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'make-co-payments-deposits', 'permission_category_id' => '7', 'description' => 'Make co-payment deposit', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'make-other-services-deposits', 'permission_category_id' => '7', 'description' => 'Make other service deposit', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'make-consultation-deposits', 'permission_category_id' => '7', 'description' => 'Make consultations deposit', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'make-central-billing', 'permission_category_id' => '7', 'description' => 'Make central billing deposit', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'make-patient-refund', 'permission_category_id' => '7', 'description' => 'Make refund for a patient bill', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'chart-of-accounts-list', 'permission_category_id' => '7', 'description' => 'View chart of accounts', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'create-chart-of-accounts', 'permission_category_id' => '7', 'description' => 'Create a chart of account', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'view-chart-of-account-details', 'permission_category_id' => '7', 'description' => 'View details of a chart of account', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'activate-chart-of-accounts', 'permission_category_id' => '7', 'description' => 'Activate a chart of account', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'de-activate-chart-of-accounts', 'permission_category_id' => '7', 'description' => 'De-activate a chart of account', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'account-types-list', 'permission_category_id' => '7', 'description' => 'View account type', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'create-account-types', 'permission_category_id' => '7', 'description' => 'Create account type', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'view-account-type-details', 'permission_category_id' => '7', 'description' => 'View details of an account type', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'activate-account-types', 'permission_category_id' => '7', 'description' => 'Activate an account type', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'de-activate-account-types', 'permission_category_id' => '7', 'description' => 'De-activate an account type', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'fixed-assets-list', 'permission_category_id' => '7', 'description' => 'View a list of fixed assets', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'create-fixed-assets', 'permission_category_id' => '7', 'description' => 'Create a new fixed asset', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'edit-fixed-assets', 'permission_category_id' => '7', 'description' => 'Edit fixed assets', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'find-a-donor', 'permission_category_id' => '9', 'description' => 'Find a donor', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'resources-list', 'permission_category_id' => '9', 'description' => 'List Resources', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'resources-create', 'permission_category_id' => '9', 'description' => 'Create Resources', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'resources-edit', 'permission_category_id' => '9', 'description' => 'Edit Resources', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'resources-detail', 'permission_category_id' => '9', 'description' => 'Get Details about Resources', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'resources-delete', 'permission_category_id' => '9', 'description' => 'Delete resources', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'resources-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate Resources', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'audit_trail-list', 'permission_category_id' => '9', 'description' => 'List and Search Resources', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'suppliers-list', 'permission_category_id' => '9', 'description' => 'List Suppliers', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'suppliers-create', 'permission_category_id' => '9', 'description' => 'Create Suppliers', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'suppliers-edit', 'permission_category_id' => '9', 'description' => 'Edit Suppliers', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'suppliers-detail', 'permission_category_id' => '9', 'description' => 'Get Details about Suppliers', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'suppliers-delete', 'permission_category_id' => '9', 'description' => 'Delete Suppliers', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'suppliers-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate Suppliers', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'bank-list', 'permission_category_id' => '9', 'description' => 'List Banks', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'bank-create', 'permission_category_id' => '9', 'description' => 'Create Banks', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'bank-edit', 'permission_category_id' => '9', 'description' => 'Edit Banks', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'bank-detail', 'permission_category_id' => '9', 'description' => 'Get Details about Banks', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'bank-delete', 'permission_category_id' => '9', 'description' => 'Delete Banks', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'bank-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate Banks', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'donors-list', 'permission_category_id' => '9', 'description' => 'List Donors', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'donors-create', 'permission_category_id' => '9', 'description' => 'Create Donors', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'donors-edit', 'permission_category_id' => '9', 'description' => 'Edit Donors', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'donors-detail', 'permission_category_id' => '9', 'description' => 'Get Details about Donors', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'donors-delete', 'permission_category_id' => '9', 'description' => 'Delete Donors', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'donors-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate Donors', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'staff_positions-list', 'permission_category_id' => '9', 'description' => 'List Staff Positions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'staff_positions-create', 'permission_category_id' => '9', 'description' => 'Create Staff Positions', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'staff_positions-edit', 'permission_category_id' => '9', 'description' => 'Edit Staff Positions', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'staff_positions-detail', 'permission_category_id' => '9', 'description' => 'Get Details about Staff Positions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'staff_positions-delete', 'permission_category_id' => '9', 'description' => 'Delete Staff Positions', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'staff_positions-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate Staff Positions', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'occupation-list', 'permission_category_id' => '9', 'description' => 'List Occupations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'occupation-create', 'permission_category_id' => '9', 'description' => 'Create Occupations', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'occupation-edit', 'permission_category_id' => '9', 'description' => 'Edit Occupations', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'occupation-detail', 'permission_category_id' => '9', 'description' => 'Get Details about Occupations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'occupation-delete', 'permission_category_id' => '9', 'description' => 'Delete Occupations', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'occupation-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate Occupations', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
|
||||
array('name' => 'countries-list', 'permission_category_id' => '9', 'description' => 'List countries', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'countries-create', 'permission_category_id' => '9', 'description' => 'Create countries', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'countries-edit', 'permission_category_id' => '9', 'description' => 'Edit countries', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'countries-detail', 'permission_category_id' => '9', 'description' => 'Get Details about countries', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'countries-delete', 'permission_category_id' => '9', 'description' => 'Delete countries', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'countries-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate countries', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
|
||||
array('name' => 'resource_category-list', 'permission_category_id' => '9', 'description' => 'List Resource Categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'resource_category-create', 'permission_category_id' => '9', 'description' => 'Create Resource Categories', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'resource_category-edit', 'permission_category_id' => '9', 'description' => 'Edit Resource Categories', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'resource_category-detail', 'permission_category_id' => '9', 'description' => 'Get Details about Resource Categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'resource_category-delete', 'permission_category_id' => '9', 'description' => 'Delete Resource Categories', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'resource_category-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate Resource Categories', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'hospital_information-edit', 'permission_category_id' => '9', 'description' => 'Edit And Update Hospital Information', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'patient_category-list', 'permission_category_id' => '9', 'description' => 'List Patient Categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'patient_category-create', 'permission_category_id' => '9', 'description' => 'Create Patient Categories', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'patient_category-edit', 'permission_category_id' => '9', 'description' => 'Edit Patient Categories', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'patient_category-detail', 'permission_category_id' => '9', 'description' => 'Get Details about Patient Categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'patient_category-delete', 'permission_category_id' => '9', 'description' => 'Delete Staff Patient Categories', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'patient_category-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate Patient Categories', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'departments-list', 'permission_category_id' => '9', 'description' => 'List Departments', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'departments-create', 'permission_category_id' => '9', 'description' => 'Create Departments', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'departments-edit', 'permission_category_id' => '9', 'description' => 'Edit Departments', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'departments-detail', 'permission_category_id' => '9', 'description' => 'Get Details about Departments', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'departments-delete', 'permission_category_id' => '9', 'description' => 'Delete Departments', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'departments-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate Departments', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'bed_categories-list', 'permission_category_id' => '9', 'description' => 'List Bed Categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'bed_categories-create', 'permission_category_id' => '9', 'description' => 'Create Bed Categories', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'bed_categories-edit', 'permission_category_id' => '9', 'description' => 'Edit Bed Categories', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'bed_categories-detail', 'permission_category_id' => '9', 'description' => 'Get Details about Bed Categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'bed_categories-delete', 'permission_category_id' => '9', 'description' => 'Delete Bed Categories', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'bed_categories-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate Bed Categories', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'imaging-incoming-radiology', 'permission_category_id' => '10', 'description' => 'Incoming radiology requests', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'imaging-incoming-ultrasound', 'permission_category_id' => '10', 'description' => 'Incoming ultrasound requests', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'imaging-incoming-ultrasound-obstetric', 'permission_category_id' => '10', 'description' => 'Incoming ultrasound obstetric requests', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'imaging-radiology-results', 'permission_category_id' => '10', 'description' => 'View radiology results', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'imaging-ultrasound-results', 'permission_category_id' => '10', 'description' => 'View ultrasound results', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'imaging-ultrasound-obstetric-results', 'permission_category_id' => '10', 'description' => 'View obstetric ultrasound results', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'imaging-alter-investigation-results', 'permission_category_id' => '10', 'description' => 'Alter investigation results (imaging)', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'imaging-view-historical-results', 'permission_category_id' => '10', 'description' => 'View Historical investigation results (imaging)', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'district-create', 'permission_category_id' => '14', 'description' => 'Add a district', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'district-list', 'permission_category_id' => '14', 'description' => 'View districts', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'district-edit', 'permission_category_id' => '14', 'description' => 'Edit a district', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'district-delete', 'permission_category_id' => '14', 'description' => 'Deactivate a district', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'district-inactive-list', 'permission_category_id' => '14', 'description' => 'View inactive districts', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'county-create', 'permission_category_id' => '14', 'description' => 'Add a county', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'county-list', 'permission_category_id' => '14', 'description' => 'View counties', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'county-edit', 'permission_category_id' => '14', 'description' => 'Edit a county', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'county-delete', 'permission_category_id' => '14', 'description' => 'Deactivate a county', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'county-inactive-list', 'permission_category_id' => '14', 'description' => 'View inactive counties', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'subcounty-create', 'permission_category_id' => '14', 'description' => 'Add a subcounty', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'subcounty-list', 'permission_category_id' => '14', 'description' => 'View subcounties', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'subcounty-edit', 'permission_category_id' => '14', 'description' => 'Edit a subcounty', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'subcounty-delete', 'permission_category_id' => '14', 'description' => 'Deactivate a subcounty', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'subcounty-inactive-list', 'permission_category_id' => '14', 'description' => 'View inactive subcounties', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'parish-create', 'permission_category_id' => '14', 'description' => 'Add a parish', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'parish-list', 'permission_category_id' => '14', 'description' => 'View parishes', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'parish-edit', 'permission_category_id' => '14', 'description' => 'Edit a parish', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'parish-delete', 'permission_category_id' => '14', 'description' => 'Deactivate a parish', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'parish-inactive-list', 'permission_category_id' => '14', 'description' => 'View inactive parishes', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'village-create', 'permission_category_id' => '14', 'description' => 'Add a village', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'village-list', 'permission_category_id' => '14', 'description' => 'View villages', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'village-edit', 'permission_category_id' => '14', 'description' => 'Edit a village', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'village-delete', 'permission_category_id' => '14', 'description' => 'Deactivate a village', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'village-inactive-list', 'permission_category_id' => '14', 'description' => 'View inactive villages', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'stores-home', 'permission_category_id' => '15', 'description' => 'Home page for stores module', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'stores-request-quotation', 'permission_category_id' => '15', 'description' => 'Request for a quotation', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'stores-bill-items', 'permission_category_id' => '15', 'description' => 'Update billing for quotation items', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'stores-approve-purchase', 'permission_category_id' => '15', 'description' => 'Approve purchase of items', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'stores-receive-items', 'permission_category_id' => '15', 'description' => 'Received purchased items', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'stores-issue-drugs', 'permission_category_id' => '15', 'description' => 'Issue out drugs to pharmacy', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'stores-stock-sheet', 'permission_category_id' => '15', 'description' => 'View the store stock sheet', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'stores-saved-quotations', 'permission_category_id' => '15', 'description' => 'View saved quotations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'stores-previous-received-items', 'permission_category_id' => '15', 'description' => 'View previously received items', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'stores-previous-issued-drugs', 'permission_category_id' => '15', 'description' => 'View previously issued drugs', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'stores-previous-quotations', 'permission_category_id' => '15', 'description' => 'View previous quotations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'stores-previous-purchase-orders', 'permission_category_id' => '15', 'description' => 'View previous purchase orders', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'drug-form-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate drug forms', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'drug-form-edit', 'permission_category_id' => '12', 'description' => 'Edit drug form', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'drug-form-create', 'permission_category_id' => '12', 'description' => 'Create drug form', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'drug-form-list', 'permission_category_id' => '12', 'description' => 'View drug forms', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'drug-unit-list', 'permission_category_id' => '12', 'description' => 'View drug units', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'drug-unit-create', 'permission_category_id' => '12', 'description' => 'Create drug unit', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'drug-unit-edit', 'permission_category_id' => '12', 'description' => 'Edit drug unit', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'drug-unit-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate drug units', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'drug-category-list', 'permission_category_id' => '12', 'description' => 'View drug categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'drug-category-create', 'permission_category_id' => '12', 'description' => 'Create drug category', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'drug-category-edit', 'permission_category_id' => '12', 'description' => 'Edit drug category', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'drug-category-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate drug categories', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'symptom-list', 'permission_category_id' => '12', 'description' => 'View symptoms', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'symptom-create', 'permission_category_id' => '12', 'description' => 'Create symptom', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'symptom-edit', 'permission_category_id' => '12', 'description' => 'Edit symptom', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'symptom-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate symptom', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'diagnosis-list', 'permission_category_id' => '12', 'description' => 'View diagnoses', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'diagnosis-create', 'permission_category_id' => '12', 'description' => 'Create diagnosis', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'diagnosis-edit', 'permission_category_id' => '12', 'description' => 'Edit diagnosis', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'diagnosis-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate diagnoses', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'investigations-list', 'permission_category_id' => '12', 'description' => 'View investigations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'investigations-create', 'permission_category_id' => '12', 'description' => 'Create investigation', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'investigations-edit', 'permission_category_id' => '12', 'description' => 'Edit investigation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'investigations-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate investigations', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'ward-list', 'permission_category_id' => '23', 'description' => 'View wards', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'ward-create', 'permission_category_id' => '23', 'description' => 'Create ward', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'ward-edit', 'permission_category_id' => '23', 'description' => 'Edit ward', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'ward-delete', 'permission_category_id' => '23', 'description' => 'Deactivate and reactivate wards', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'clinic-list', 'permission_category_id' => '12', 'description' => 'View clinics', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'hmis-ward-list', 'permission_category_id' => '23', 'description' => 'View Hmis wards', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'hmis-ward-create', 'permission_category_id' => '23', 'description' => 'Create Hmis ward', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'hmis-ward-edit', 'permission_category_id' => '23', 'description' => 'Edit Hmis ward', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'hmis-ward-delete', 'permission_category_id' => '23', 'description' => 'Deactivate and reactivate Hmis wards', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
|
||||
array('name' => 'clinic-create', 'permission_category_id' => '12', 'description' => 'Create clinic', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'clinic-edit', 'permission_category_id' => '12', 'description' => 'Edit clinic', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'clinic-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate clinics', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'procedure-list', 'permission_category_id' => '12', 'description' => 'View procedures', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'procedure-create', 'permission_category_id' => '12', 'description' => 'Create procedure', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'procedure-edit', 'permission_category_id' => '12', 'description' => 'Edit procedure', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'procedure-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate procedures', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'procedure-category-list', 'permission_category_id' => '12', 'description' => 'View procedure categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'procedure-category-create', 'permission_category_id' => '12', 'description' => 'Create procedure category', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'procedure-category-edit', 'permission_category_id' => '12', 'description' => 'Edit procedure category', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'procedure-category-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate procedure categories', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'sundry-list', 'permission_category_id' => '12', 'description' => 'View sundries', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'sundry-create', 'permission_category_id' => '12', 'description' => 'Create sundry', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'sundry-edit', 'permission_category_id' => '12', 'description' => 'Edit sundry', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'sundry-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate sundries', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'investigations-category-list', 'permission_category_id' => '12', 'description' => 'View investigations categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'investigations-category-create', 'permission_category_id' => '12', 'description' => 'Create investigation category', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'investigations-category-edit', 'permission_category_id' => '12', 'description' => 'Edit investigation category', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'investigations-category-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate investigations categories', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'observation-list', 'permission_category_id' => '12', 'description' => 'View observations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'observation-create', 'permission_category_id' => '12', 'description' => 'Create observation', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'observation-edit', 'permission_category_id' => '12', 'description' => 'Edit observation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'observation-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate observations', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'dosage-frequency-list', 'permission_category_id' => '12', 'description' => 'View dosage frequencies', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'dosage-frequency-create', 'permission_category_id' => '12', 'description' => 'Create dosage frequency', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'dosage-frequency-edit', 'permission_category_id' => '12', 'description' => 'Edit dosage frequency', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'dosage-frequency-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate dosage frequencies', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'referral-hospital-list', 'permission_category_id' => '12', 'description' => 'View referral hospitals', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'referral-hospital-create', 'permission_category_id' => '12', 'description' => 'Create referral hospital', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'referral-hospital-edit', 'permission_category_id' => '12', 'description' => 'Edit referral hospital', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'referral-hospital-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate referral hospitals', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'age-group-list', 'permission_category_id' => '12', 'description' => 'View age groups', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'age-group-create', 'permission_category_id' => '12', 'description' => 'Create age group', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'age-group-edit', 'permission_category_id' => '12', 'description' => 'Edit age group', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'age-group-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate age groups', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'hmis-category-list', 'permission_category_id' => '12', 'description' => 'View hmis categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'hmis-category-create', 'permission_category_id' => '12', 'description' => 'Create hmis category', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'hmis-category-edit', 'permission_category_id' => '12', 'description' => 'Edit hmis category', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'hmis-category-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate hmis categories', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'hmis-category-option-list', 'permission_category_id' => '12', 'description' => 'View hmis category options', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'hmis-category-option-create', 'permission_category_id' => '12', 'description' => 'Create hmis category options', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'hmis-category-option-edit', 'permission_category_id' => '12', 'description' => 'Edit hmis category option', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'hmis-category-option-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate hmis category options', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'unit-of-measure-list', 'permission_category_id' => '12', 'description' => 'View units of measure', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'unit-of-measure-create', 'permission_category_id' => '12', 'description' => 'Create unit of measure', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'unit-of-measure-edit', 'permission_category_id' => '12', 'description' => 'Edit unit of measure', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'unit-of-measure-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate unit of measure', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'specialty-list', 'permission_category_id' => '12', 'description' => 'View specialties', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'specialty-create', 'permission_category_id' => '12', 'description' => 'Create specialties', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'specialty-edit', 'permission_category_id' => '12', 'description' => 'Edit specialties', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'specialty-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate specialties', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'nssf-rate-edit', 'permission_category_id' => '7', 'description' => 'Edit payroll nssf rate', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'payroll-list', 'permission_category_id' => '7', 'description' => 'View payrolls', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'payroll-create', 'permission_category_id' => '7', 'description' => 'Create payrolls', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'payroll-edit', 'permission_category_id' => '7', 'description' => 'Edit payroll', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'payroll-delete', 'permission_category_id' => '7', 'description' => 'Deactivate and reactivate payroll', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'discount-list', 'permission_category_id' => '7', 'description' => 'View patient category discounts', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'discount-create', 'permission_category_id' => '7', 'description' => 'Create patient category discount', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'discount-edit', 'permission_category_id' => '7', 'description' => 'Edit patient category discounts', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'discount-category-list', 'permission_category_id' => '7', 'description' => 'View patient category discount categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'discount-category-create', 'permission_category_id' => '7', 'description' => 'Create patient category discount category', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'discount-category-edit', 'permission_category_id' => '7', 'description' => 'Edit patient category discount category', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'discount-category-delete', 'permission_category_id' => '7', 'description' => 'Deactivate and reactivate patient category discount categories', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'streamline-reports-list', 'permission_category_id' => '5', 'description' => 'View streamline reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'expired-drugs-report', 'permission_category_id' => '5', 'description' => 'View expired drugs report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'drug-stock-level', 'permission_category_id' => '5', 'description' => 'View drug stock levels', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'incoming-inpatient-bills', 'permission_category_id' => '7', 'description' => 'View incoming inpatient bills', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-reports-activate', 'permission_category_id' => '8', 'description' => 'Activate Finance Reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-reports-income-cash', 'permission_category_id' => '8', 'description' => 'View The Income Cash Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-reports-income-accrual', 'permission_category_id' => '8', 'description' => 'View The Income Accrual Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-reports-received-cash', 'permission_category_id' => '8', 'description' => 'View The Received Cash Reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-debtors-report', 'permission_category_id' => '8', 'description' => 'View The Debtors Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-discrepancy-report', 'permission_category_id' => '8', 'description' => 'View The Discrepancy Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-donor-discount-report', 'permission_category_id' => '8', 'description' => 'View The Discounts From Donors', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-discount-report', 'permission_category_id' => '8', 'description' => 'View Discount Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-hospital-discount-report', 'permission_category_id' => '8', 'description' => 'View Hospital Discounts', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-patient-debtors', 'permission_category_id' => '8', 'description' => 'View Patient Debtors', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-staff-guarantors', 'permission_category_id' => '8', 'description' => 'View Staff Guarantors Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-debt-plan-payments', 'permission_category_id' => '8', 'description' => 'View Debt Plan Payments', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-balance-sheet', 'permission_category_id' => '8', 'description' => 'Generate Balance Sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'finance-profit-or-loss-state', 'permission_category_id' => '8', 'description' => 'View Staff Guarantors Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-patient-refunds-report', 'permission_category_id' => '8', 'description' => 'View Patient Refund Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'Payments-create-payment-item', 'permission_category_id' => '17', 'description' => 'Add Payment Item', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'Payments-edit-payment-item', 'permission_category_id' => '17', 'description' => 'Edit Payment Item', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'Payments-list-payment-items', 'permission_category_id' => '17', 'description' => 'View Payment Items', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'Payments-delete-payment-item', 'permission_category_id' => '17', 'description' => 'Delete Payment Item', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'Payments-activate-payment-item', 'permission_category_id' => '17', 'description' => 'Activate Payment Item', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'Payments-make-payment', 'permission_category_id' => '17', 'description' => 'Make Payment', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'Payments-view-payments-history', 'permission_category_id' => '17', 'description' => 'View Payments History', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'Payments-make-bulk-bill-payments', 'permission_category_id' => '17', 'description' => 'Make Bulk Bill Payments', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'banking-make-deposit', 'permission_category_id' => '18', 'description' => 'Make Bank Deposits', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'banking-make-transfers', 'permission_category_id' => '18', 'description' => 'Make Bank Transfers', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'banking-view-history', 'permission_category_id' => '18', 'description' => 'View Banking History Reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'banking-reverse', 'permission_category_id' => '18', 'description' => 'Reverse Banking Transactions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'banking-reconciliation', 'permission_category_id' => '18', 'description' => 'Reconcile Bank Transactions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'banking-register', 'permission_category_id' => '18', 'description' => 'View Banking Register', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'Invoices-generate', 'permission_category_id' => '19', 'description' => 'Generate Invoices', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'Invoices-receive-payments', 'permission_category_id' => '19', 'description' => 'Receive Invoice Payments', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'Invoices-view-payments-history', 'permission_category_id' => '19', 'description' => 'View Invoice Payments', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'patient-flow-monitoring', 'permission_category_id' => '4', 'description' => 'View patient flow in hospital system', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'drug-list', 'permission_category_id' => '13', 'description' => 'View drugs', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'drug-create', 'permission_category_id' => '13', 'description' => 'Create drug', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'drug-edit', 'permission_category_id' => '13', 'description' => 'Edit drug', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'drug-delete', 'permission_category_id' => '13', 'description' => 'Delete drug', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'services-list', 'permission_category_id' => '12', 'description' => 'View Services', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'services-create', 'permission_category_id' => '12', 'description' => 'Create Services', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'services-edit', 'permission_category_id' => '12', 'description' => 'Edit Services', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'services-delete', 'permission_category_id' => '12', 'description' => 'Deactivate Services', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'edit-patient-consultation', 'permission_category_id' => '4', 'description' => 'Edit patient consultation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'edit-patient-inpatient', 'permission_category_id' => '4', 'description' => 'Edit patient in-patient information', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'view-prescription-errors', 'permission_category_id' => '9', 'description' => 'View prescription errors', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'change-general-settings', 'permission_category_id' => '9', 'description' => 'Change general settings for the Stre@mline system', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'price-list-category-create', 'description' => 'Create new price list category', 'permission_category_id' => '7', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'price-list-category-view', 'description' => 'View price list categories', 'permission_category_id' => '7', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'price-list-category-delete', 'description' => 'Delete price list category', 'permission_category_id' => '7', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'price-list-category-edit-pricing', 'description' => 'Edit price list category prices', 'permission_category_id' => '7', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'price-list-category-change-billing', 'description' => 'Change price list category during billing', 'permission_category_id' => '7', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'streamline-bills-create', 'description' => 'Generate Streamline Bills', 'permission_category_id' => '20', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'streamline-bills-index', 'description' => 'View Streamline Bills', 'permission_category_id' => '20', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'nira-birth-report', 'permission_category_id' => '21', 'description' => 'NIRA Birth Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-tb-screening-report', 'permission_category_id' => '21', 'description' => 'View TB Screening Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-disease-prevalence-over-a-period-of-time-report', 'permission_category_id' => '21', 'description' => 'View Disease Prevalence Over a Period of Time Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-family-planning-report', 'permission_category_id' => '21', 'description' => 'View Family Planning Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-streamline-outpatient-report', 'permission_category_id' => '21', 'description' => 'View Streamline Out-Patient Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-procedures-report', 'permission_category_id' => '21', 'description' => 'View Procedures Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-charge-book', 'permission_category_id' => '21', 'description' => 'View Charge Book', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-rdt-report', 'permission_category_id' => '21', 'description' => 'View RDT Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-drug-stock-levels-report', 'permission_category_id' => '21', 'description' => 'View Drug Stock Levels Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-drug-consumption-report', 'permission_category_id' => '21', 'description' => 'View Drug Consumption Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-expired-drugs-report', 'permission_category_id' => '21', 'description' => 'View Expired Drugs Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-drug-consumption-analysis-report', 'permission_category_id' => '21', 'description' => 'View Drug Consumption Analysis Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-anaesthesia-report', 'permission_category_id' => '21', 'description' => 'View Anaesthesia Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-surgeries-report', 'permission_category_id' => '21', 'description' => 'View Surgeries Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-ward-deposits-report', 'permission_category_id' => '21', 'description' => 'View Ward Deposits Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-ward-re-admittance-report', 'permission_category_id' => '21', 'description' => 'View Ward Re-Admittance Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-patients-lost-to-follow-up-report', 'permission_category_id' => '21', 'description' => 'View Patients Lost To Follow Up Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-days-when-drugs-were-out-of-stock-report', 'permission_category_id' => '21', 'description' => 'View Days When Drugs Were Out of Stock Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-patients-diagnosed-with-severe-mental-disorders', 'permission_category_id' => '21', 'description' => 'View Patients diagnosed with severe mental disorders', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-persons-taking-psychotropic-drugs', 'permission_category_id' => '21', 'description' => 'View Persons Taking Psychotropic Drugs', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-diagnosed-patients-who-received-treatment', 'permission_category_id' => '21', 'description' => 'View Diagnosed Patients Who Received Treatment', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-patients-receiving-mental-health-care-lost-to-follow-up', 'permission_category_id' => '21', 'description' => 'View Patients Receiving Mental Health Care Lost To Follow Up', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-number-of-days-psychotropic-drugs-were-out-of-stock', 'permission_category_id' => '21', 'description' => 'View Number of Days Psychotropic Drugs Were Out of Stock', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'stores-daily-stock-value-report', 'permission_category_id' => '15', 'description' => 'View the stores daily stock value report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'dispensing-prescriptions', 'permission_category_id' => '13', 'description' => 'Dispense Prescriptions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'confirm-prescriptions', 'permission_category_id' => '13', 'description' => 'Confirm Prescriptions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'lab_specimen-list', 'permission_category_id' => '10', 'description' => 'List Lab Specimen', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'lab_specimen-create', 'permission_category_id' => '10', 'description' => 'Create Lab Specimen', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'lab_specimen-edit', 'permission_category_id' => '10', 'description' => 'Edit Lab Specimen', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'lab_specimen-detail', 'permission_category_id' => '10', 'description' => 'Get Details about Lab Specimen', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'lab_specimen-delete', 'permission_category_id' => '10', 'description' => 'Delete Lab Specimen', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'lab_specimen-status', 'permission_category_id' => '10', 'description' => 'Activate or Deactivate Lab Specimen', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-clinical-data', 'permission_category_id' => '12', 'description' => 'Interact With Clinical Data', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'investigations-statistics', 'permission_category_id' => '10', 'description' => 'View Investigation Statistics', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'drug-route-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate drug routes', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'drug-route-edit', 'permission_category_id' => '12', 'description' => 'Edit drug route', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'drug-route-create', 'permission_category_id' => '12', 'description' => 'Create drug route', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'drug-route-list', 'permission_category_id' => '12', 'description' => 'View drug routes', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'streamline-home-patient-search', 'permission_category_id' => '4', 'description' => 'Streamline Home Patient Search', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-bed-categories', 'permission_category_id' => '9', 'description' => 'View Bed Categories', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-departments', 'permission_category_id' => '9', 'description' => 'View Departments', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-hospital-information', 'permission_category_id' => '9', 'description' => 'View Hospital Information', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-patient-categories', 'permission_category_id' => '9', 'description' => 'View Patient Categories', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-occupations', 'permission_category_id' => '9', 'description' => 'View Occupations', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-resource-categories', 'permission_category_id' => '9', 'description' => 'View Resource Categories', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-staff-positions', 'permission_category_id' => '9', 'description' => 'View Staff Positions', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-audit-trail', 'permission_category_id' => '9', 'description' => 'View Audit Trail', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-donors', 'permission_category_id' => '9', 'description' => 'View Donors (Hospital Scheme)', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-suppliers', 'permission_category_id' => '9', 'description' => 'View Suppliers', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-resources', 'permission_category_id' => '9', 'description' => 'View Resources', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'imaging-incoming-cardiology', 'permission_category_id' => '10', 'description' => 'View Incoming Cardiology Requests', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'imaging-cardiology-results', 'permission_category_id' => '10', 'description' => 'View Cardiology Results', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-family-account', 'permission_category_id' => '7', 'description' => 'View Family Account', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'create-family-account', 'permission_category_id' => '7', 'description' => 'Create Family Account', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'create-core-chart-of-account', 'permission_category_id' => '7', 'description' => 'Create Or Edit Core Chart Of Accounts', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'cancel-investigation-order', 'permission_category_id' => '10', 'description' => 'Cancel Ordered Investigations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'restore-cancelled-investigation-order', 'permission_category_id' => '10', 'description' => 'View Cancelled Ordered Investigations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'receive-items-directly-pharmacy', 'permission_category_id' => '15', 'description' => 'Receive items directly into pharmacy', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'receive-items-directly-store', 'permission_category_id' => '15', 'description' => 'Receive items directly into store', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-ward-dispensing-per-chart', 'permission_category_id' => '13', 'description' => 'Ward Dispensing Per Chart', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'investigations-codes-create', 'permission_category_id' => '10', 'description' => 'Create Investigation Test Codes For Lab Machines', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'investigations-codes-list', 'permission_category_id' => '10', 'description' => 'View Investigation Test Codes For Lab Machines', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'investigations-codes-delete', 'permission_category_id' => '10', 'description' => 'Delete Investigation Test Codes For Lab Machines', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'manage-frequently-asked-questions', 'permission_category_id' => '16', 'description' => 'Manage frequently asked questions.', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'edit-patient-triage', 'permission_category_id' => '4', 'description' => 'Edit patient triage', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'lab-instruments-create', 'permission_category_id' => '10', 'description' => 'Create Lab Instruments', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'lab-instruments-list', 'permission_category_id' => '10', 'description' => 'View Lab Instruments', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'lab-instruments-delete', 'permission_category_id' => '10', 'description' => 'Delete Lab Instruments', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'create-patient-episode', 'permission_category_id' => '4', 'description' => 'Create new patient episode', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'create-patient-episode-with-clinic', 'permission_category_id' => '4', 'description' => 'Create patient episode with clinic', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'create-patient-episode-with-admission', 'permission_category_id' => '4', 'description' => 'Create patient episode with Admission', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'create-maternity-admission', 'permission_category_id' => '4', 'description' => 'Maternity admission from patient Home', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'create-ward-admission', 'permission_category_id' => '4', 'description' => 'Ward admission from patient home', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'ward-discounts-report', 'permission_category_id' => '8', 'description' => 'View ward discounts report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'drug-refill', 'permission_category_id' => '4', 'description' => 'Drug refill of given treatments', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'patient-follow-up', 'permission_category_id' => '4', 'description' => 'Patient Follow-ups', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'view-sms-reports', 'permission_category_id' => '9', 'description' => 'Send SMS to Staff and Patients', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'send-sms', 'permission_category_id' => '9', 'description' => 'View Reports about sent SMS', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'staff-payments-configuration', 'permission_category_id' => '4', 'description' => 'Staff Payment Configurations', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'create-patient-episode-with-doctor', 'permission_category_id' => '4', 'description' => 'Create patient episode with doctor', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'create-patient-episode-with-doctor-and-clinic', 'permission_category_id' => '4', 'description' => 'Create patient episode with doctor and clinic', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'view-patient-episode-primary-diagnoses', 'permission_category_id' => '4', 'description' => 'View episode primary diagnoses', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-patient-episode-other-diagnoses', 'permission_category_id' => '4', 'description' => 'View episode other diagnoses', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-patient-episode-clinic-from-patient-home', 'permission_category_id' => '4', 'description' => 'View episode clinic from patient home', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'confirm-prescriptions', 'permission_category_id' => '13', 'description' => 'Confirm prescriptions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-theatre-management', 'permission_category_id' => '12', 'description' => 'View theatre management', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-theatre-drugs-stock-sheet', 'permission_category_id' => '12', 'description' => 'View theatre drugs stock sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-theatre-sundries-stock-sheet', 'permission_category_id' => '12', 'description' => 'View theatre sundries stock sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-theatre-requisitions', 'permission_category_id' => '12', 'description' => 'View theatre requisitions', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-incoming-ward-dispensing-per-chart', 'permission_category_id' => '13', 'description' => 'View Incoming Ward Dispensing Per Chart Requests', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'approve-ward-dispensings-per-chart', 'permission_category_id' => '13', 'description' => 'Approve Ward Dispensing Per Chart Request', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-ward-dispensings-per-chart-report', 'permission_category_id' => '13', 'description' => 'View Ward Dispensing Per Chart Report', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'create-patient-episode-with-self-lab-request', 'permission_category_id' => '4', 'description' => 'Create patient episode with lab self request', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'create-ward-item-request', 'permission_category_id' => '13', 'description' => 'Create ward item request', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-incoming-ward-item-requests', 'permission_category_id' => '13', 'description' => 'View incoming ward item request', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'approve-ward-request', 'permission_category_id' => '13', 'description' => 'Approve incoming ward item request', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'dispense-ward-request', 'permission_category_id' => '13', 'description' => 'Dispense incoming ward item request', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-companies', 'permission_category_id' => '9', 'description' => 'View Companies', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'order-for-services-from-patient-home', 'permission_category_id' => '4', 'description' => 'Order for services from patient home', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'remove-items-from-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Remove saved items from inpatient sheet', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'perform-triage', 'permission_category_id' => '4', 'description' => 'Perform Triage', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'create-consultation', 'permission_category_id' => '4', 'description' => 'Create Consultation', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'create-theatre-surgery', 'permission_category_id' => '4', 'description' => 'Create theatre surgery', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'create-theatre-anaesthesia', 'permission_category_id' => '4', 'description' => 'Create theatre anaesthesia', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'create-prescription', 'permission_category_id' => '4', 'description' => 'Create prescription', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'order-for-investigations', 'permission_category_id' => '4', 'description' => 'Order for investigations', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-episode-summary', 'permission_category_id' => '4', 'description' => 'View episode summary', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'order-for-procedures', 'permission_category_id' => '4', 'description' => 'Order for procedures', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'order-for-sundries', 'permission_category_id' => '4', 'description' => 'Order for Sundries', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'edit-users-role', 'permission_category_id' => '1', 'description' => 'Edit user role', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-stock-reconciliation', 'permission_category_id' => '13', 'description' => 'Pharmacy stock reconciliation', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-stock-reconciliation-report', 'permission_category_id' => '13', 'description' => 'View pharmacy stock reconciliation report', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'imaging-echo-cardio-template', 'permission_category_id' => '10', 'description' => 'Edit template for echo cardiology', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-patient-payment-methods', 'permission_category_id' => '7', 'description' => 'View Patients Payments Methods', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'journals-view', 'permission_category_id' => '22', 'description' => 'View Journals', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-patient-payment-methods-reports', 'permission_category_id' => '7', 'description' => 'View Patients Payments Methods Reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'admit-patient-from-patient-home', 'permission_category_id' => '4', 'description' => 'Admit patient from the patient home', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'add-ward-treatments-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add and view ward treatment on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'add-to-take-home-drugs-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add and view take home drugs on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'add-sundries-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add sundries on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'add-extras-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add extras on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'add-consultation-and-services-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add consultation and services on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'add-comments-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add comments on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'add-procedures-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add procedures on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'add-ward-procedures-fees', 'permission_category_id' => '4', 'description' => 'Add ward procedure fees', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'add-inpatient-sheet-outcome', 'permission_category_id' => '4', 'description' => 'Add inpatient sheet outcome', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'save-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Save inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'requisition-for-lab-sundries', 'permission_category_id' => '10', 'description' => 'Requisition For Lab Sundries', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-lab-sundries-stock-sheet', 'permission_category_id' => '10', 'description' => 'View Lab Sundries Stock Sheet', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-pharmacy-dispensation-report', 'permission_category_id' => '13', 'description' => 'View Pharmacy Dispensation Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'delete-received-store-items', 'permission_category_id' => '15', 'description' => 'Remove received items from stores', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'cancel-patient-transaction', 'permission_category_id' => '7', 'description' => 'Cancel a patient finance transaction', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-customer-statement', 'permission_category_id' => '7', 'description' => 'View customer statement', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'delete-hospital-bills', 'permission_category_id' => '7', 'description' => 'Delete Generated Hospital Bills', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'edit-hospital-bills', 'permission_category_id' => '7', 'description' => 'Edit Generated Hospital Bills', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'remove-investigation-with-no-result', 'permission_category_id' => '10', 'description' => 'Remove investigation with no result', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'delete-empty-episode', 'permission_category_id' => '4', 'description' => 'Delete empty episode from patient home', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'edit-payment-record', 'permission_category_id' => '17', 'description' => 'Edit Payments', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'delete-payment-record', 'permission_category_id' => '17', 'description' => 'Delete Payments', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'pay-hospital-bills', 'permission_category_id' => '7', 'description' => 'Pay Generated Hospital Bills', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'give-one-off-discounts', 'permission_category_id' => '7', 'description' => 'Give special discounts per patient and view report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-dashboard-reports', 'permission_category_id' => '4', 'description' => 'View dashboard reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'undo-banking', 'permission_category_id' => '18', 'description' => 'Undo Banking', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'cancel-prescription', 'permission_category_id' => '13', 'description' => 'Cancel Ordered Prescriptions', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'restore-cancelled-prescription', 'permission_category_id' => '13', 'description' => 'Restore Cancelled Ordered Prescriptions', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'merge-patient-episodes', 'permission_category_id' => '4', 'description' => 'Merge patient episodes', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'edit-performed-by', 'permission_category_id' => '4', 'description' => 'Edit and delete performed by services', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'pay-all-patient-bills', 'permission_category_id' => '7', 'description' => 'Pay all patient bills across episodes', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'record-staff-service-performance', 'permission_category_id' => '7', 'description' => 'Record staff that has performed service e.g performed procedures, investigations etc', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'cancel-ordered-procedures', 'permission_category_id' => '4', 'description' => 'Cancel ordered procedures', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'cancel-ordered-sundries', 'permission_category_id' => '4', 'description' => 'Cancel ordered sundries', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'cancel-ordered-services', 'permission_category_id' => '4', 'description' => 'Cancel ordered services', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'import-data-csv', 'permission_category_id' => '12', 'description' => 'Import clinical data via CSV', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'journals-delete', 'permission_category_id' => '22', 'description' => 'Delete Journals', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'delete-fixed-assets', 'permission_category_id' => '7', 'description' => 'Delete fixed assets', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'add-nurse-comments-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add nurse comments on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'lab-management', 'permission_category_id' => '10', 'description' => 'Management of lab items including requisitioning', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-progressive-prescriptions', 'permission_category_id' => '13', 'description' => 'View progressive prescription orders and dispense them', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'change-drugs-covered-by-category', 'permission_category_id' => '7', 'description' => 'Select which drugs are covered by which patient category / corporate insurance', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'patient-category-sales', 'permission_category_id' => '7', 'description' => 'View report showing how much money each patient category brought in', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-accounts-payable-aging-summary', 'permission_category_id' => '8', 'description' => 'View Accounts Payable Aging Summary', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-accounts-payable-aging-detail', 'permission_category_id' => '8', 'description' => 'View Accounts Payable Aging Detail', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-accounts-receivable-aging-summary', 'permission_category_id' => '8', 'description' => 'View Accounts Receivable Aging Summary', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-accounts-receivable-aging-detail', 'permission_category_id' => '8', 'description' => 'View Accounts Receivable Aging Detail', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-cashflow-statement', 'permission_category_id' => '8', 'description' => 'View Cashflow Statement', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'general_items-delete', 'permission_category_id' => '12', 'description' => 'Delete general item routes', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'general_items-edit', 'permission_category_id' => '12', 'description' => 'Edit general item route', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'general_items-create', 'permission_category_id' => '12', 'description' => 'Create general item route', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'general_items-list', 'permission_category_id' => '12', 'description' => 'View general routes', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'cancel-family-account-deposit', 'permission_category_id' => '7', 'description' => 'Cancel family account deposit', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'add-transaction-date-patient-invoices', 'permission_category_id' => '7', 'description' => 'Add transaction date to the patient category invoices', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'finance-trial-balance', 'permission_category_id' => '8', 'description' => 'Generate Trial Balance Report', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'finance-staff-payments', 'permission_category_id' => '8', 'description' => 'Generate Staff Payments Report', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'finance-cost-centre-performance', 'permission_category_id' => '8', 'description' => 'Generate Cost Center Performance Report', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'finance-lab-performance', 'permission_category_id' => '8', 'description' => 'Generate Lab Performance Report', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'finance-top-performing-investigations', 'permission_category_id' => '8', 'description' => 'Generate Top Performing Report', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'finance-reverse-debtor-payment', 'permission_category_id' => '8', 'description' => 'Reverse payments made by a patient towards clearing their hospital debt', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'View patient\'s inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-inpatient-billing', 'permission_category_id' => '4', 'description' => 'View patient\'s inpatient billing', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-maternity-admission', 'permission_category_id' => '4', 'description' => 'View patient\'s maternity admission', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-delivery-record', 'permission_category_id' => '4', 'description' => 'View patient\'s delivery record', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'add-family-account-credit-limit', 'permission_category_id' => '7', 'description' => 'Add family account credit limit', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-pharmacy-overview', 'permission_category_id' => '4', 'description' => 'View Pharmacy Overview Graph', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-top-performing-stuff', 'permission_category_id' => '4', 'description' => 'View Top Performing Staff Graph', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-wait-patient-time', 'permission_category_id' => '4', 'description' => 'View Patient Wait Time Graph', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-top-diagnoses-overview', 'permission_category_id' => '4', 'description' => 'View Top Diagnoses Graph', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-inpatient-statistics-overview', 'permission_category_id' => '4', 'description' => 'View Inpatient Statistics Graph', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-top-investigations-overview', 'permission_category_id' => '4', 'description' => 'View Top Investigations Graph', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-top-supplier-overview', 'permission_category_id' => '4', 'description' => 'View Top Suppliers Graph', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-attendance-overview', 'permission_category_id' => '4', 'description' => 'View Attendance Overview Graph', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'add-chart-of-account-slug', 'permission_category_id' => '7', 'description' => 'Add Slug To Chart Of Account', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-patient-dependants-consumption-report', 'permission_category_id' => '7', 'description' => 'View patient dependants consumption report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'add-dependants-to-patient', 'permission_category_id' => '7', 'description' => 'Add dependants to a patient', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-dependants-to-patient', 'permission_category_id' => '7', 'description' => 'View dependants to a patient', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-hmis-reports', 'permission_category_id' => '5', 'description' => 'View HMIS Reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-hmis-form-105-health-unit-outpatient-monthly-report', 'permission_category_id' => '5', 'description' => 'View HMIS Form 105: Health Unit Outpatient Monthly Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-risky-behaviors', 'permission_category_id' => '5', 'description' => 'View Risky Behaviors', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-body-mass-index', 'permission_category_id' => '5', 'description' => 'View Body Mass index', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-form-108-inpatient-monthly-report', 'permission_category_id' => '5', 'description' => 'View HMIS Form 108-Inpatient Monthly Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-hmis-form-031-outpatient-register', 'permission_category_id' => '5', 'description' => 'View HMIS Form 031-Outpatient Register ', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-hmis-form-002-opd-outpatient-register', 'permission_category_id' => '5', 'description' => 'View HMIS Form 002-OPD Outpatient Register', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-hmis-form-106a-health-unit-quarterly-report', 'permission_category_id' => '5', 'description' => 'View HMIS Form 106a-Health Unit Quarterly Report ', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-hmis-form-weekly-epidimeological-surveillance', 'permission_category_id' => '5', 'description' => 'View HMIS Form - Weekly Epidimeological Surveillance ', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-hmis-form-essential-medicines-and-health-supplies', 'permission_category_id' => '5', 'description' => 'View HMIS Form - Essential Medicines and Health Supplies ', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-hmis-form-033b', 'permission_category_id' => '5', 'description' => 'View HMIS 033b: Health Unit Weekly Epidemiological Surveillance Report ', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-memorised-reports', 'permission_category_id' => '5', 'description' => 'View memorised reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'remove-batch-during-stock-reconciliation', 'permission_category_id' => '15', 'description' => 'Remove item batch during stock reconciliation', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'approve-opd-requisitions', 'permission_category_id' => '15', 'description' => 'Approve OPD items requisitions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'approve-and-issue-out-opd-requisitions', 'permission_category_id' => '15', 'description' => 'Approve and issue out OPD items requisitions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'issue-out-opd-requisitions', 'permission_category_id' => '15', 'description' => 'Issue out OPD items requisitions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'edit-ward-item-request', 'permission_category_id' => '13', 'description' => 'Edit ward item request', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'delete-ward-item-request', 'permission_category_id' => '13', 'description' => 'Delete ward item request', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'edit-batch-during-stock-reconciliation', 'permission_category_id' => '15', 'description' => 'Edit item batch during stock reconciliation', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-lab-machine-results', 'permission_category_id' => '10', 'description' => 'View investigation results from lab instrument', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-ward-drug-stock-sheet', 'permission_category_id' => '23', 'description' => 'View drugs ward stock sheet', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'edit-ward-drug-stock-sheet', 'permission_category_id' => '23', 'description' => 'Edit drug ward stock sheet', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'view-ward-sundry-stock-sheet', 'permission_category_id' => '23', 'description' => 'View sundries ward stock sheet', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'edit-ward-sundry-stock-sheet', 'permission_category_id' => '23', 'description' => 'Edit sundry ward stock sheet', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'patient-appointments-report', 'permission_category_id' => '4', 'description' => 'View patient appointments report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'patient-flow-monitoring-inpatient-admission', 'permission_category_id' => '4', 'description' => 'Admit patient from platient flow monitoring', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'edit-services-prices-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Edit services price on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'edit-investigation-prices-on-inpatient-bill', 'permission_category_id' => '4', 'description' => 'Edit investigation price on inpatient bill', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'cancel-ward-prescription', 'permission_category_id' => '4', 'description' => 'Cancel ward prescription', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'result-templates-list', 'permission_category_id' => '12', 'description' => 'View investigations Result Templates', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'result-templates-create', 'permission_category_id' => '12', 'description' => 'Create investigation Result Templates', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'result-templates-edit', 'permission_category_id' => '12', 'description' => 'Edit investigation Result Templates', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'result-templates-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate investigations Result Templates', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'cancel-family-account-deposit', 'permission_category_id' => '7', 'description' => 'Cancel family account deposit', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-patient-accounts-deposits', 'permission_category_id' => '7', 'description' => 'Make and view patient account deposits', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-patient-accounts-refunds', 'permission_category_id' => '7', 'description' => 'Make and view patient account refunds', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-patient-accounts-consumptions', 'permission_category_id' => '7', 'description' => 'View patient account consumptions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'cancel-patient-accounts-deposits', 'permission_category_id' => '7', 'description' => 'Cancel patient account deposits and refunds', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'issue-inpatient-attendant-pass', 'permission_category_id' => '4', 'description' => 'Issue inpatient attendant pass', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'pay-inpatient-bill-from-inpatient-billing-page', 'permission_category_id' => '7', 'description' => 'Pay inpatient bill from inpatient billing page', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'delete-store-requisition', 'permission_category_id' => '13', 'description' => 'Delete store requisition', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'You can delete a requisition which has not yet been issued out'),
|
||||
array('name' => 'view-patient-diagnosis-at-pharmacy', 'permission_category_id' => '4', 'description' => 'View patient diagnosis at pharmacy', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => 'Allow person dispensing drugs to view the patient diagnosis'),
|
||||
array('name' => 'view-patient-diagnosis-at-lab', 'permission_category_id' => '4', 'description' => 'View patient diagnosis at Lab', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => 'Allow person in the lab to view the patient diagnosis'),
|
||||
array('name' => 'create-consultation-with-notes', 'permission_category_id' => '4', 'description' => 'Create Consultation with notes', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Create Consultation with notes'),
|
||||
array('name' => 'perform-triage-without-etat', 'permission_category_id' => '4', 'description' => 'Perform Triage Without ETAT', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Perform Triage Without ETAT'),
|
||||
array('name' => 'delete-doctor-ward-notes-from-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Delete doctor ward notes from inpatient', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Delete ward progress notes that were added by the doctor'),
|
||||
array('name' => 'delete-nurse-ward-notes-from-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Delete nurse ward notes from inpatient', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Delete ward progress notes that were added by the nurse'),
|
||||
array('name' => 'view-theatre-notes-from-the-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'View theatre notes from the inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'View theatre notes from the inpatient sheet'),
|
||||
array('name' => 'view-investigation-staff-overview', 'permission_category_id' => '4', 'description' => 'View Staff Performance By Investigations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View how many staff performed investigations and which investigations they performed'),
|
||||
array('name' => 'view-performed-services-report', 'permission_category_id' => '21', 'description' => 'View Performed Services Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'outcome-list', 'permission_category_id' => '12', 'description' => 'View outcomes', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'outcome-create', 'permission_category_id' => '12', 'description' => 'Create outcome', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'outcome-edit', 'permission_category_id' => '12', 'description' => 'Edit outcome', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'outcome-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and reactivate outcome', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'view-point-of-sale', 'permission_category_id' => '4', 'description' => 'View Point of Sale', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Point of Sale'),
|
||||
array('name' => 'view-finance-home', 'permission_category_id' => '7', 'description' => 'View Finance Home', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Finance Home'),
|
||||
array('name' => 'view-eye-clinic', 'permission_category_id' => '4', 'description' => 'View Eye Clinic', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Eye Clinic'),
|
||||
array('name' => 'transfer-patient-internally', 'permission_category_id' => '4', 'description' => 'Transfer patient internally', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Transfer patient internally'),
|
||||
array('name' => 'view-death-report', 'permission_category_id' => '4', 'description' => 'View patient death report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View patient death report'),
|
||||
array('name' => 'view-birth-report', 'permission_category_id' => '4', 'description' => 'View patient birth report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View patient birth report'),
|
||||
array('name' => 'view-surgery', 'permission_category_id' => '4', 'description' => 'View patient surgery', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View patient surgery'),
|
||||
array('name' => 'create-surgery', 'permission_category_id' => '4', 'description' => 'Create patient surgery record', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => 'Create patient surgery record'),
|
||||
array('name' => 'view-anaesthetics-history', 'permission_category_id' => '4', 'description' => 'View anaesthetics history', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View anaesthetics history'),
|
||||
array('name' => 'create-anaesthetics', 'permission_category_id' => '4', 'description' => 'Create patient anaesthetics', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => 'Create patient anaesthetics'),
|
||||
array('name' => 'view-patient-file', 'permission_category_id' => '4', 'description' => 'View patient file', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View patient file'),
|
||||
array('name' => 'view-maternity-report', 'permission_category_id' => '21', 'description' => 'View Maternity Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Report on Maternity'),
|
||||
array('name' => 'budget-create', 'permission_category_id' => '24', 'description' => 'Create budget', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'budget-list', 'permission_category_id' => '24', 'description' => 'View a list of budgets', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'budget-view', 'permission_category_id' => '24', 'description' => 'View details of a budget', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'budget-edit', 'permission_category_id' => '24', 'description' => 'Edit budget', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'budget-delete', 'permission_category_id' => '24', 'description' => 'Deactivate and reactivate budget', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'budget-performance-report', 'permission_category_id' => '24', 'description' => 'View budget summary Performance', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Budget Vs Actual Summary -this looks at the total for the budget period only'),
|
||||
array('name' => 'budget-detail-performance-report', 'permission_category_id' => '24', 'description' => 'View budget detail Performance', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Budget Vs Actual detail: compares each period and then the total for whole the period'),
|
||||
array('name' => 'dental-list', 'permission_category_id' => '12', 'description' => 'View dentals', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'dental-create', 'permission_category_id' => '12', 'description' => 'Create dental', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'dental-edit', 'permission_category_id' => '12', 'description' => 'Edit dental', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'dental-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and Activate dental', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'radiology-list', 'permission_category_id' => '12', 'description' => 'View radiologies', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'radiology-create', 'permission_category_id' => '12', 'description' => 'Create radiology', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'radiology-edit', 'permission_category_id' => '12', 'description' => 'Edit radiologies', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'radiology-delete', 'permission_category_id' => '12', 'description' => 'Deactivate and Activate radiology', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'radiologies-management', 'permission_category_id' => '12', 'description' => 'Radiologies management', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => 'Link to radiologies management under imaging'),
|
||||
array('name' => 'dentals-management', 'permission_category_id' => '12', 'description' => 'Dentals management', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => 'Link to dentals management under imaging'),
|
||||
array('name' => 'dental-requisitions', 'permission_category_id' => '12', 'description' => 'View Dental Requisitions', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'dental-usage-report', 'permission_category_id' => '12', 'description' => 'View Dental Usage Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'dental-usage-listing', 'permission_category_id' => '12', 'description' => 'View Dental Usage listing', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-sundries-stock-reconciliation', 'permission_category_id' => '13', 'description' => 'Perform pharmacy sundry reconciliations', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'pharmacy-sundries-stock-reconciliation-report', 'permission_category_id' => '13', 'description' => 'View pharmacy sundry reconciliations', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'change-personal-settings', 'permission_category_id' => '9', 'description' => 'Edit personal settings', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => 'Edit personal settings e.g which language a user wants the system in'),
|
||||
array('name' => 'view-smart-triage', 'permission_category_id' => '4', 'description' => 'View smart triage reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-investigation-specimen-reports', 'permission_category_id' => '10', 'description' => 'View investigation specimen reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View investigation specimen reports'),
|
||||
array('name' => 'view-recalculate-inpatient-bill', 'permission_category_id' => '4', 'description' => 'View re-calculate inpatient bill button', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'View the Recalculate inpatient bill button'),
|
||||
array('name' => 'streamline-reports-diagnosis', 'permission_category_id' => '5', 'description' => 'View Diagnosis Streamline Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Diagnosis Streamline Report'),
|
||||
array('name' => 'streamline-reports-treatment', 'permission_category_id' => '5', 'description' => 'View Treatments Streamline Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Treatments Streamline Report'),
|
||||
array('name' => 'streamline-reports-investigations', 'permission_category_id' => '5', 'description' => 'View Investigations Streamline Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Investigations Streamline Report'),
|
||||
array('name' => 'streamline-reports-patient-visits', 'permission_category_id' => '5', 'description' => 'View Patient Visits Streamline Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Patient Visits Streamline Report'),
|
||||
array('name' => 'streamline-reports-symptoms', 'permission_category_id' => '5', 'description' => 'View Symptoms Streamline Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Symptoms Streamline Report'),
|
||||
array('name' => 'streamline-reports-doctors', 'permission_category_id' => '5', 'description' => 'View Doctors Streamline Report', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Doctors Streamline Report'),
|
||||
array('name' => 'view-patients-home', 'permission_category_id' => '4', 'description' => 'View Patient Home', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View Patient Home'),
|
||||
array('name' => 'add-ward-discount', 'permission_category_id' => '7', 'description' => 'Add ward discounts', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Add a discount amount on making inpatient payment'),
|
||||
array('name' => 'view-smart-discharge', 'permission_category_id' => '4', 'description' => 'View smart discharge reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View smart discharge reports'),
|
||||
array('name' => 'view-inactive-patients', 'permission_category_id' => '4', 'description' => 'View inactive patients', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View inactive patients'),
|
||||
array('name' => 'delete-items-quotation', 'permission_category_id' => '15', 'description' => 'Delete Items Quotation', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => 'Delete Items Quotation'),
|
||||
array('name' => 'payroll-category-create', 'description' => 'Create new payroll category', 'permission_category_id' => '7', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'payroll-category-view', 'description' => 'View payroll categories', 'permission_category_id' => '7', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'payroll-category-delete', 'description' => 'Delete payroll category', 'permission_category_id' => '7', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'tax-rate-edit', 'permission_category_id' => '7', 'description' => 'Edit payroll tax rate', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'add-new-diagnosis-from-consultation', 'permission_category_id' => '4', 'description' => 'Add new diagnosis from consultation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => 'Add new system diagnosis from the consultation page'),
|
||||
array('name' => 'view-inpatient-bill-saving-history', 'permission_category_id' => '7', 'description' => 'View history of users that have saved an inpatient bill', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View a history or audit trail of users that have saved an inpatient bill'),
|
||||
array('name' => 'delete-direct-bank-deposit', 'permission_category_id' => '7', 'description' => 'Delete a direct bank deposit', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Delete a direct bank deposit'),
|
||||
array('name' => 'unreceive-direct-bank-deposit', 'permission_category_id' => '7', 'description' => 'Unreceive a direct bank deposit', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Unreceive a direct bank deposit so that it can be received again from the income cash report'),
|
||||
array('name' => 'chi_plan-list-delete', 'permission_category_id' => '2', 'description' => 'Deactivate and reactivate C.H.I Plan', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'chi-to-pay-edit', 'permission_category_id' => '2', 'description' => 'Edit the C.H.I to pay amounts on inpatient sheet', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => 'Enable the user to edit the amounts to be paid by C.H.I plan patient is on.'),
|
||||
array('name' => 'chi_plan-list-edit', 'permission_category_id' => '2', 'description' => 'Edit C.H.I Plan', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'chi_plan-list-create', 'permission_category_id' => '2', 'description' => 'Create C.H.I Plan', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'chi_plan-list-list', 'permission_category_id' => '2', 'description' => 'View C.H.I Plan', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'insurance-benefits-view', 'permission_category_id' => '2', 'description' => 'View insurance benefits', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View insurance benefits'),
|
||||
array('name' => 'insurance-benefits-create', 'permission_category_id' => '2', 'description' => 'Create insurance benefits', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Create insurance benefits'),
|
||||
array('name' => 'insurance-benefits-inactive', 'permission_category_id' => '2', 'description' => 'View inactive insurance benefits', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View inactive insurance benefits'),
|
||||
array('name' => 'insurance-items-view', 'permission_category_id' => '2', 'description' => 'View insurance items', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View insurance items'),
|
||||
array('name' => 'insurance-items-create', 'permission_category_id' => '2', 'description' => 'Create insurance items', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Create insurance items'),
|
||||
array('name' => 'insurance-benefits-view-details', 'permission_category_id' => '2', 'description' => 'View insurance benefit details', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View insurance benefit details'),
|
||||
array('name' => 'insurance-benefits-edit', 'permission_category_id' => '2', 'description' => 'Edit insurance benefits', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Edit insurance benefits'),
|
||||
array('name' => 'insurance-items-edit', 'permission_category_id' => '2', 'description' => 'Edit insurance items', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Edit insurance items'),
|
||||
array('name' => 'insurance-items-remove', 'permission_category_id' => '2', 'description' => 'Remove insurance items from benefit', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Remove insurance items from benefit'),
|
||||
array('name' => 'insurance-tariffs-create', 'permission_category_id' => '2', 'description' => 'Create insurance tariffs for items', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Create insurance tariffs for items'),
|
||||
array('name' => 'insurance-tariffs-edit', 'permission_category_id' => '2', 'description' => 'Edit insurance tariffs for items', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Edit insurance tariffs for items'),
|
||||
array('name' => 'insurance-tariffs-delete', 'permission_category_id' => '2', 'description' => 'Delete insurance tariffs for items', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Delete insurance tariffs for items'),
|
||||
array('name' => 'view-item-prices', 'permission_category_id' => '7', 'description' => 'View individual item prices on patient payments', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View individual item prices on patient payments'),
|
||||
array('name' => 'make-bulk-invoice-payments', 'permission_category_id' => '7', 'description' => 'Perform bulk invoice payments for patient categories', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Perform bulk invoice payments for a paylater patient category'),
|
||||
array('name' => 'insurance-disease-groups-view', 'permission_category_id' => '2', 'description' => 'View insurance disease groups', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View insurance disease groups'),
|
||||
array('name' => 'insurance-disease-groups-edit', 'permission_category_id' => '2', 'description' => 'Edit insurance disease groups', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Edit insurance disease groups'),
|
||||
array('name' => 'insurance-disease-groups-delete', 'permission_category_id' => '2', 'description' => 'Delete insurance disease groups', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Delete insurance disease groups'),
|
||||
array('name' => 'insurance-disease-groups-create', 'permission_category_id' => '2', 'description' => 'Create insurance disease groups', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Create insurance disease groups'),
|
||||
array('name' => 'add-medical-detailed-notes-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add medical detailed notes on inpatient sheet e.g vitals, plan etc', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Add medical detailed notes on inpatient sheet e.g vitals, plan, impressions, history etc'),
|
||||
array('name' => 'authorize-inpatient-bill', 'permission_category_id' => '7', 'description' => 'Authorize inpatient bill', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'add-row-on-prescription', 'permission_category_id' => '13', 'description' => 'View the add row button on the prescription page', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'view-medical-detailed-notes-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'View medical detailed notes on inpatient sheet e.g vitals, plan etc', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'View medical detailed notes on inpatient sheet e.g vitals, plan, impressions, history etc'),
|
||||
array('name' => 'add-medical-history-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add history notes on inpatient sheet e.g vitals, plan etc', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Add history notes on inpatient sheet'),
|
||||
array('name' => 'add-medical-results-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add results notes on inpatient sheet e.g vitals, plan etc', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Add results notes on inpatient sheet'),
|
||||
array('name' => 'add-vitals-and-examination-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add vitals and examination notes on inpatient sheet e.g vitals, plan etc', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Add vitals and examination notes on inpatient sheet'),
|
||||
array('name' => 'add-impression-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add impression notes on inpatient sheet e.g vitals, plan etc', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Add vitals and examination notes on inpatient sheet'),
|
||||
array('name' => 'add-plan-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add plan notes on inpatient sheet e.g vitals, plan etc', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Add plan notes on inpatient sheet'),
|
||||
array('name' => 'insurance-tariffs-view', 'permission_category_id' => '2', 'description' => 'View insurance tariffs for items', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'View insurance tariffs for items'),
|
||||
array('name' => 'authorise-insurance-claims', 'permission_category_id' => '2', 'description' => 'Manage authorisations for insurance claims', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Manage authorisations for insurance claims'),
|
||||
array('name' => 'make-chi-deposits', 'permission_category_id' => '7', 'description' => 'Handle CHI co-payments and co-insurance by patients', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Handle CHI co-payments and co-insurance by patients'),
|
||||
array('name' => 'override-claim-adjudication-errors', 'permission_category_id' => '2', 'description' => 'Override Claim Adjudication Errors', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Override Claim Adjudication Errors'),
|
||||
array('name' => 'register-chi-members-with-pre-existing-premiums', 'permission_category_id' => '2', 'description' => 'Register CHI members with pre-existing premiums', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Add new CHI members whose premiums have already been received i.e activate CHI members whose premiums were not previously received through Stre@mline'),
|
||||
array('name' => 'members-with-pre-existing-premiums-report', 'permission_category_id' => '2', 'description' => 'View added CHI members with pre-existing premiums report', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'View new CHI members whose premiums have already been received report i.e activate CHI members whose premiums were not previously received through Stre@mline'),
|
||||
array('name' => 'cancel-insurance-member-premiums', 'permission_category_id' => '2', 'description' => 'Cancel insurance member premiums', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Cancel premiums paid by members if the premium has no consumptions on it'),
|
||||
array('name' => 'change-expense-account-on-make-payment', 'permission_category_id' => '7', 'description' => 'Change expense account on make new payment', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Allow user to change expense accounts on making new payment'),
|
||||
array('name' => 'view-previous-patient-prescriptions', 'permission_category_id' => '4', 'description' => 'View previous patient prescriptions', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'View previous patient prescriptions from other episodes'),
|
||||
array('name' => 'person-title-list', 'permission_category_id' => '9', 'description' => 'List person titles', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'person-title-create', 'permission_category_id' => '9', 'description' => 'Create person titles', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'person-title-edit', 'permission_category_id' => '9', 'description' => 'Edit person titles', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'person-title-detail', 'permission_category_id' => '9', 'description' => 'Get Details about person titles', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'person-title-delete', 'permission_category_id' => '9', 'description' => 'Delete person titles', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'person-title-status', 'permission_category_id' => '9', 'description' => 'Activate or Deactivate person titles', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'return-drugs-per-chart', 'permission_category_id' => '13', 'description' => 'Return drugs to pharmacy given through ward dispensing per chart', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Return drugs to pharmacy given through ward dispensing per chart'),
|
||||
array('name' => 'hide-performed-by-on-lab-results-print-out', 'permission_category_id' => '10', 'description' => 'Hide performed by on investigation results print out', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => 'Hide person on performed by on investigation results print out'),
|
||||
);
|
||||
|
||||
foreach ($permissions as $permission) {
|
||||
$record = DB::table('permissions')
|
||||
->where('name', '=', $permission['name'])
|
||||
->first();
|
||||
|
||||
if (!$record) {
|
||||
Permission::firstOrCreate([
|
||||
'name' => $permission['name'],
|
||||
'description' => $permission['description'],
|
||||
'long_description' => $permission['long_description'],
|
||||
'permission_category_id' => $permission['permission_category_id'],
|
||||
'guard_name' => $permission['guard_name'],
|
||||
'crud' => $permission['crud']
|
||||
]);
|
||||
} else {
|
||||
if (str_contains($permission['name'], 'budget')) {
|
||||
if ($record->permission_category_id != 24) {
|
||||
Permission::where('name', $permission['name'])->delete();
|
||||
|
||||
Permission::firstOrCreate([
|
||||
'name' => $permission['name'],
|
||||
'description' => $permission['description'],
|
||||
'long_description' => $permission['long_description'],
|
||||
'permission_category_id' => $permission['permission_category_id'],
|
||||
'guard_name' => $permission['guard_name'],
|
||||
'crud' => $permission['crud']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\PermissionCategory;
|
||||
|
||||
class PermissionsCategoryTableSeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run(){
|
||||
$categories = array(
|
||||
array('id' => '1','name' => 'User'),
|
||||
array('id' => '2','name' => 'Insurance'),
|
||||
array('id' => '3','name' => 'Insurance Reports'),
|
||||
array('id' => '4','name' => 'Patients'),
|
||||
array('id' => '5','name' => 'Streamline Reports'),
|
||||
array('id' => '6','name' => 'Inventory'),
|
||||
array('id' => '7','name' => 'Finance'),
|
||||
array('id' => '8','name' => 'Finance Reports'),
|
||||
array('id' => '9','name' => 'Administration Customisation'),
|
||||
array('id' => '10','name' => 'Labs and Investigations'),
|
||||
array('id' => '11','name' => 'Message Board'),
|
||||
array('id' => '12','name' => 'Clinical Data'),
|
||||
array('id' => '13','name' => 'Pharmacy'),
|
||||
array('id' => '14','name' => 'Residences'),
|
||||
array('id' => '15','name' => 'Stores'),
|
||||
array('id' => '16','name' => 'Roles'),
|
||||
array('id' => '17','name' => 'Payments'),
|
||||
array('id' => '18','name' => 'Banking'),
|
||||
array('id' => '19','name' => 'Invoices'),
|
||||
array('id' => '20','name' => 'Streamline Bills'),
|
||||
array('id' => '21','name' => 'Memorised Reports'),
|
||||
array('id' => '22','name' => 'Journals'),
|
||||
array('id' => '23','name' => 'Wards and other units'),
|
||||
array('id' => '24','name' => 'Budgets'),
|
||||
);
|
||||
|
||||
foreach ($categories as $category):
|
||||
PermissionCategory::firstOrCreate([
|
||||
//"id" => $category['id'],
|
||||
"name" => $category['name'],
|
||||
"created_by" => 1,
|
||||
"updated_by" => 1
|
||||
]);
|
||||
endforeach;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\PersonTitle;
|
||||
|
||||
class PersonTitlesTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$titles = [
|
||||
'Mr',
|
||||
'Mrs',
|
||||
'Reverand',
|
||||
'Dr',
|
||||
'Bishop'
|
||||
];
|
||||
|
||||
foreach ($titles as $value) {
|
||||
PersonTitle::firstOrCreate([
|
||||
'name' => $value
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user