mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-13 03:31:31 +00:00
Import latest app updates from streamline
An updated set of source files and initialization was provided by streamline to address issues observed during initial testing. These files have been updated in order to generate a new set of app images.
This commit is contained in:
@@ -45,10 +45,10 @@ class BankingSeeder extends Seeder
|
||||
$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->created_by = $deposit->created_by;
|
||||
$bank_record->updated_by = $deposit->updated_by;
|
||||
$bank_record->created_at = $deposit->created_at;
|
||||
$bank_record->deleted_at = $deposit->deleted_at;
|
||||
$bank_record->save();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\CaesarianSection;
|
||||
|
||||
class CaesarianSectionTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$options = [
|
||||
'Forceps','Vacuum Extraction'
|
||||
];
|
||||
foreach ($options as $option) {
|
||||
CaesarianSection::firstOrCreate([
|
||||
'name'=>$option,
|
||||
'created_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -55,6 +55,8 @@ class ChartOfAccountsTableSeeder extends Seeder
|
||||
array('name' => 'Dentals Expense Account', 'type' => '2'),
|
||||
array('name' => 'Patient Dependants Expense Account', 'type' => '2'),
|
||||
array('name' => 'Ward Extras Income Account', 'type' => '1'),
|
||||
array('name' => 'General Items Expense Account', 'type' => '2'),
|
||||
array('name' => 'Eye Glasses Cost of Goods', 'type' => '7'),
|
||||
);
|
||||
|
||||
foreach ($accounts as $account) {
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Modules\ClinicalData\Http\Controllers\ClinicController;
|
||||
use Modules\ClinicalData\Services\Clinics\ClinicsServiceInterface;
|
||||
use Streamline\Models\Clinic;
|
||||
|
||||
class ClinicsSeeder extends Seeder {
|
||||
@@ -12,7 +14,18 @@ class ClinicsSeeder extends Seeder {
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$clinics = \Streamline\Http\Controllers\ClinicController::$clinics_seeder;
|
||||
$clinics = array(
|
||||
array('name' => 'ANTE-NATAL Clinic', 'slug' => 'ante_natal'),
|
||||
array('name' => 'A.R.T Clinic', 'slug' => 'art'),
|
||||
array('name' => 'Dental Clinic', 'slug' => 'general'),
|
||||
array('name' => 'Diabetes Clinic', 'slug' => 'diabetes'),
|
||||
array('name' => 'Paediatric Clinic', 'slug' => 'general'),
|
||||
array('name' => 'Psychiatry Clinic', 'slug' => 'mental_health'),
|
||||
array('name' => 'TB Clinic', 'slug' => 'general'),
|
||||
array('name' => 'Accident & Emergency Clinic', 'slug' => 'general'),
|
||||
array('name' => 'General Adult Clinic', 'slug' => 'general'),
|
||||
array('name' => 'Maternity Clinic', 'slug' => 'maternity'),
|
||||
);
|
||||
|
||||
foreach ($clinics as $clinic):
|
||||
Clinic::firstOrCreate([
|
||||
|
||||
@@ -95,7 +95,7 @@ use Database\Seeders\TheatreLocationsTableSeeder;
|
||||
use Database\Seeders\TuberclosisStatusTableSeeder;
|
||||
use Database\Seeders\UnitOfMeasureTableSeeder;
|
||||
use Database\Seeders\UsersTableSeeder;
|
||||
use Database\Seeders\VillagesSeeder;
|
||||
use Database\Seeders\VillagesTableSeeder;
|
||||
use Database\Seeders\HmisWardSeeder;
|
||||
use Database\Seeders\VolatileLiquidAnaestheticsTableSeeder;
|
||||
use Database\Seeders\AnaesthesiaTypesSeeder;
|
||||
@@ -140,6 +140,7 @@ class DatabaseSeeder extends Seeder {
|
||||
$this->call(FamilyRelationshipsTableSeeder::class);
|
||||
$this->call(HeartRegularitiesTableSeeder::class);
|
||||
$this->call(HmisCategoriesTableSeeder::class);
|
||||
$this->call(HmisCategoryOptionsSeeder::class);
|
||||
//$this->call(HospitalInformationTableSeeder::class);
|
||||
$this->call(InvestigationCategoriesTableSeeder::class);
|
||||
//$this->call(InvestigationSeeder::class);
|
||||
@@ -178,22 +179,12 @@ class DatabaseSeeder extends Seeder {
|
||||
$this->call(SymptomsSeeder::class);
|
||||
$this->call(UnitOfMeasureTableSeeder::class);
|
||||
$this->call(UsersTableSeeder::class);
|
||||
$this->call(VillagesSeeder::class);
|
||||
$this->call(VillagesTableSeeder::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);
|
||||
@@ -220,6 +211,9 @@ class DatabaseSeeder extends Seeder {
|
||||
$this->call(ChartOfAccountSlugTableSeeder::class);
|
||||
$this->call(PersonTitlesTableSeeder::class);
|
||||
$this->call(HmisWardSeeder::class);
|
||||
$this->call(SlitLampTestAreaValueSeeder::class);
|
||||
$this->call(SlitLampTestAreaSeeder::class);
|
||||
$this->call(DiagnosisCategorySeeder::class);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\DiagnosisCategory;
|
||||
|
||||
class DiagnosisCategorySeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$categories = [
|
||||
['name'=>'Eye Lids'],
|
||||
['name'=>'Normal Eyes'],
|
||||
['name'=>'Sclera'],
|
||||
['name'=>'Choroid'],
|
||||
['name'=>'Retina'],
|
||||
['name'=>'Vitreous'],
|
||||
['name'=>'Eye Ball Deforminty'],
|
||||
['name'=>'Optic Nerve'],
|
||||
['name'=>'Glaucoma'],
|
||||
['name'=>'Strabismus or ocular motility'],
|
||||
['name'=>'Nystagmus'],
|
||||
['name'=>'Visual field Defect'],
|
||||
['name'=>'Colour vision deficiency'],
|
||||
['name'=>'Refraction'],
|
||||
['name'=>'Lens'],
|
||||
['name'=>'Pupils'],
|
||||
['name'=>'Anterior Uveitis'],
|
||||
['name'=>'Iris'],
|
||||
['name'=>'Conjunctiva'],
|
||||
['name'=>'Cornea'],
|
||||
['name'=>'Lacriamal system'],
|
||||
['name'=>'Orbit']
|
||||
];
|
||||
|
||||
foreach ($categories as $category) {
|
||||
DiagnosisCategory::firstOrCreate([
|
||||
"name" => $category['name'],
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1,
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Streamline\Models\Drug;
|
||||
use Streamline\Models\TreatmentDeposits;
|
||||
|
||||
|
||||
@@ -0,0 +1,476 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\Diagnosis;
|
||||
|
||||
class EyeClinicDiagnosisSeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$diagnoses = [
|
||||
['Abscess of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Atopic eczema of eyelids', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Benign essential blepharospasm', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharitis [allergic]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharitis [infectious]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharitis [Posterior]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharochalasis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharoconjunctivitis [Allergic]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharoconjunctivitis [contact]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharoconjunctivitis [Infectious]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Blepharoptosis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Capillary Haemangioma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Cyst [dermoid]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Dermatitis or eczema of eyelids', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Dermatochalasis of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Distichiasis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Dystopia canthorum', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Ectropion [Congenital]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Ectropion of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Entropion [congenital]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Entropion of eyelid [acquired]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Epiblepharon', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Eyelid retraction', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Facial tic', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Floppy eyelid syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Growth [benign]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Herpes simplex infection of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Hypertelorism', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Hypotelorism', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Lagophthalmos', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Madarosis of eyelid or periocular area', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Marcus-Gunn syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Meibomian Gland Dysfunction', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Molluscum contagiosum of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Movement disorders of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Ocular cicatricial pemphigoid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Preseptal cellulitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Ptosis [congenital]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Ptosis of eyelid [acquired]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Seborrhoeic dermatitis of eyelids', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Sunken Sulcus Deformity', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Symblepharon, acquired', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Telecanthus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Tic disorders', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Traumatic scar of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Trichiasis without entropion', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Verruca vulgaris of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Zoster infection of eyelid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '1', NULL],
|
||||
['Amaurosis fugax ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '2', NULL],
|
||||
['Entoptic phenomena', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '2', NULL],
|
||||
['Normal eyes ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '2', NULL],
|
||||
['Visual floaters ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '2', NULL],
|
||||
['Blue sclera ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '3', NULL],
|
||||
['Degenerative myopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '3', NULL],
|
||||
['Episcleritis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '3', NULL],
|
||||
['Scleral staphyloma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '3', NULL],
|
||||
['Scleritis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '3', NULL],
|
||||
['Angioid streaks ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Atrophy of choroid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Chorioretinal inflammation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Chorioretinal scars', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroidal detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroidal dystrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroidal haemorrhage or rupture', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroidal rupture ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroidal tumour', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroiditis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Choroiditis, unspecified', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Infectious posterior choroiditis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Intermediate choroiditis infectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Intermediate choroiditis noninfectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Late syphilitic posterior uveitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Noninfectious posterior choroiditis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Ocular Behçet disease ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Panuveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Posterior uveitis Infectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Posterior uveitis noninfectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Sclerosis of choroid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Tuberculous posterior uveitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '4', NULL],
|
||||
['Age related macular degeneration', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Asphyxiating thoracic dystrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Autoimmune retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Central serous chorioretinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Chorioretinal scars after surgery for detachment ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Coats disease ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Combined arterial and vein occlusion', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Cytomegaloviral retinitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Degenerative high myopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Diabetic macular oedema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Diabetic retinopathy, unspecified', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Drusen macular degeneration', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Eales disease', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['HIV retinitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Hollenhorst plaque', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Hypertensive retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Inherited retinal dystrophies', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Macular cyst', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Macular hole', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Macular telangiectasia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Melanoma associated retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Microcystoid degeneration of retina ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Nonproliferative diabetic retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Other specified retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Paraneoplastic retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Paraneoplastic retinopathy, unspecified', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Presence of retina Implant ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Proliferative diabetic retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Radiation retinopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Renal retinitis in chronic kidney disease, stage 5', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Reticular pseudodrusen', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal artery occlusions', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal atrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal break', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal breaks without detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal cysts', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal detachments or breaks', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal haemorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal ischaemia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal oedema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal tumour', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal vasculitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinal venous occlusions', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinopathy of prematurity', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinopathy, unspecified', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retinoschisis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Retrolental fibroplasia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Rhegmatogenous retinal detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Serous retinal detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Sjögren-Larsson syndrome ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Traumatic injuries of the retina ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Traumatic retinal haemorrhage ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Usher syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Viral retinitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '5', NULL],
|
||||
['Endophthalmitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Panuveitis infectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Panuveitis noninfectious', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Posterior vitreous detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Sympathetic uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Vitreous haemorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Vitreous membranes and strands', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Vitreous prolapse', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '6', NULL],
|
||||
['Microphthalmos ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Atrophic Bulbi', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Clinical anophthalmos ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Congenital malformation of optic disc ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Nanophthalmos', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Phthisis Bulbi', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '7', NULL],
|
||||
['Compressive optic neuropathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Disorder of higher visual centres', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Disorder of optic chiasm', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Disorder of post chiasmal visual pathways', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Disorder of visual cortex', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Glaucomatous optic neuropathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Infectious optic neuropathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Injury of optic nerve, unilateral ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Ischaemic optic neuropathy [anterior]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Ischaemic optic neuropathy [posterior]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Late syphilitic retrobulbar neuritis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Malignant neoplasm of the optic nerve ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Neuromyelitis optica ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Neuroretinitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic atrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic disc swelling', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic neuritis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic neuropathy [infiltrative]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic neuropathy [leber]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Optic neuropathy [traumatic]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Papilloedema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Perineuritis of optic nerve', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Retrobulbar neuritis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '8', NULL],
|
||||
['Acute angle closure with pupillary block', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Aniridia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Chronic angle-closure', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Developmental glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Ghost cell glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma associated with intraocular haemorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma associated with retinal detachment', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma caused by increased episcleral venous pressure', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma due to drugs', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma due to eye inflammation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma due to eye trauma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma due to intraocular tumours', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma due to ocular surgery or laser ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma of newborn', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucoma suspect', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Glaucomato-cyclitic crisis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Intermittent angle-closure', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Lens-induced secondary open-angle glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Marfan syndrome ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Neovascular secondary angle closure glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Neurofibromatoses', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Normal tension glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Ocular hypertension', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Oculocerebrorenal syndrome ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Pierre Robin syndrome ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Pigmentary open-angle glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Primary angle closure without pupillary block', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Primary congenital glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Primary infantile glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Primary open-angle glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Pseudoexfoliative open-angle glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary angle closure glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary angle closure glaucoma due to endothelial overgrowth', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary angle closure glaucoma due to epithelial ingrowth', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary angle closure glaucoma with pupillary block', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary angle closure glaucoma without pupillary block', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary childhood glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary glaucoma due to extra-ocular mass', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary open angle glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Secondary open angle glaucoma due to parasitic eye disease', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '9', NULL],
|
||||
['Esotropia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Exotropia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['External ophthalmoplegia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Fourth nerve palsy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Intermittent strabismus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Sixth nerve palsy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Third nerve palsy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '10', NULL],
|
||||
['Down beat nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Gaze-evoked nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Perverted nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Physiological nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Seesaw nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Torsional nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Upbeat nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Vestibular nystagmus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Visual deprivation nystagmus [Amblyopia]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '11', NULL],
|
||||
['Bi-nasal defects heteronymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Bi-temporal defects heteronymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Enlarged blind spot', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Heteronymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Homonymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Left hemi-field homonymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['Right hemi-field homonymous hemianopia or quadrant anopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '12', NULL],
|
||||
['achromatopsia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['acquired colour vision deficiency', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['colour blindness', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['Impairment of colour vision', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['Impairment of contrast vision', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['Impairment of light sensitivity', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['Vitamin A deficiency with night blindness ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '13', NULL],
|
||||
['Aniseikonia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '14', NULL],
|
||||
['Astigmatism', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '14', NULL],
|
||||
['Presbyopia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '14', NULL],
|
||||
['Spasm of accommodation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '14', NULL],
|
||||
['Transient refractive change', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '14', NULL],
|
||||
['Age-related cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Aphakia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Congenital cataract ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Cortical Cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Diabetic cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Dislocation of lens', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Infantile or juvenile cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Intumescent Cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['PCO', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Pex Cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Post operative complications', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['PSC', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Sublaxation of lens', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Traumatic cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '15', NULL],
|
||||
['Argyll Robertson pupil', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Episodic unilateral mydriasis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Horner syndrome ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Iris sphincter disorders', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Light-near dissociations', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Parasympathoparetic pupils', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Pharmacologic inhibition of the parasympathetic pathway', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Physiologic anisocoria', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '16', NULL],
|
||||
['Anterior uveitis associated with systemic conditions', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Anterior uveitis not associated with systemic conditions', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Anterior uveitis with sarcoidosis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Axial spondyloarthritis-associated anterior uveitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Gonococcal anterior uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Herpes simplex anterior uveitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Pseudophakic Uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Secondary syphilitic anterior uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Traumatic Uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Tuberculous anterior uveitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '17', NULL],
|
||||
['Corectopia ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Floppy iris syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Iris atrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Iris bombé', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Iris cyst', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Iris defects', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Plateau iris syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Polycoria ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Pupillary membranes', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Rubeosis of iris', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '18', NULL],
|
||||
['Blebitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Complications with glaucoma drainage devices', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctival haemangioma or haemolymphangioma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctival Harmorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctival scars', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctivitis Allergic', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctivitis Bacterial', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctivitis Cicatricial', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Conjunctivitis Viral', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Foreign body in conjunctival sac', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['keratoconjunctivitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Pingueculae', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Pseudopterygium of conjunctiva ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Trauma of conjunctival', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Vitamin A deficiency with conjunctival xerosis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '19', NULL],
|
||||
['Adherent leukoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Autoimmune keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Bullous keratopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Chemical burn of cornea or conjunctival sac ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Contact lens-associated corneal infiltrates', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Cornea plana ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal abscess', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal degeneration', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal dystrophy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal laceration', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal neovascularization', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal oedema [primary]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal oedema [secondary]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal perforation self sealed', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal perforation with iris prolapse', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal pigmentations [anterior]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal pigmentations [posterior]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal pigmentations [stromal]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal scars or opacities', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal staphyloma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Corneal ulcer', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Cyst in the anterior chamber of the eye', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Exposure keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Foreign body in cornea ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Herpes simplex keratitis ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Hyphaema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Infectious keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Keratoconus', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Megalocornea ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Microcornea ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Mooren ulcer', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Neurotrophic keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Parasites in the anterior chamber of the eye', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Recurrent erosion of cornea', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Retained foreign body in anterior chamber of eye ', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Ruptured globe', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Sclerosing keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Secondary corneal oedema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Traumatic keratitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '20', NULL],
|
||||
['Canaliculitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Dacryocele', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Dacryocystitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Dacryolith', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Dry Eye [ Meibomian gland malfunction]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Dry Eye [ Tear production deficiency]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Hyperlacrimation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal duct agenesis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal duct obstruction acquired', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal duct obstruction congenital', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal gland Infection', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal gland tumour', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal punctum Eversion', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Lacrimal punctum obstruction/stenosis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Orbital inflammatory syndrome', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '21', NULL],
|
||||
['Anophthalmic socket', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Atrophy of soft tissue of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Bony deformity of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Contracted socket', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Contraction of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Cyst [epidermoid]', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Diffuse orbital inflammation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Distortion of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Dysthyroid orbitopathy', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Enlargement of bony orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Enophthalmos', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Exophthalmos', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Exostosis of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Expansion of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Granulomatous orbital inflammation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Haemorrhage of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Hydatic cyst', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Microphthalmic socket', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Oedema of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital cyst', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital infection', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital inflammation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital subperiosteal abscess', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital trauma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Orbital tumour', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Osteomyelitis of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Periostitis of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Proptosis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Teratoma of orbit', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, 1, '2020-07-12 04:29:19', '2020-07-12 04:29:19', NULL, '22', NULL],
|
||||
['Post Phaco Trab', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-08 08:09:17', '2021-04-08 08:09:17', NULL, '9', NULL],
|
||||
['Post PPV + Silicone Oil', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-08 10:48:09', '2021-04-08 10:48:09', NULL, '5', NULL],
|
||||
['Post corneal repair', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-08 11:42:53', '2021-04-08 11:42:53', NULL, '20', NULL],
|
||||
['Viral keratoconjunctivitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-12 08:20:25', '2021-04-12 08:20:25', NULL, '20', NULL],
|
||||
['post SLT', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-15 15:33:57', '2021-04-15 15:33:57', NULL, '9', NULL],
|
||||
['Bupthalmos', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-20 12:34:37', '2021-04-20 12:34:37', NULL, '7', NULL],
|
||||
['Post-Excision', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-04-21 07:23:47', '2021-04-21 07:23:47', NULL, '19', NULL],
|
||||
['end-stage Glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-04-22 12:06:59', '2021-04-22 12:06:59', NULL, '9', NULL],
|
||||
['Post Cryo', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-22 12:21:14', '2021-04-22 12:21:14', NULL, '9', NULL],
|
||||
['Post Phaco', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-04-27 07:59:57', '2021-04-27 07:59:57', NULL, '15', NULL],
|
||||
['Post Trab', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-04-29 08:53:13', '2021-04-29 08:53:13', NULL, '9', NULL],
|
||||
['Acute Anterior Uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-04 10:29:13', '2021-05-04 10:29:13', NULL, '17', NULL],
|
||||
['Chronic Uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-04 10:29:27', '2021-05-04 10:29:27', NULL, '17', NULL],
|
||||
['Recurrent Uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-04 10:29:40', '2021-05-04 10:29:40', NULL, '17', NULL],
|
||||
['Post SICS TRAB', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-04 13:05:35', '2021-05-04 13:05:35', NULL, '9', NULL],
|
||||
['Secondary cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-06 07:29:22', '2021-05-06 07:29:22', NULL, '15', NULL],
|
||||
['Painful Blind Eye', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-06 08:10:03', '2021-05-06 08:10:03', NULL, '9', NULL],
|
||||
['Advanced POAG', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-06 10:23:06', '2021-05-06 10:23:06', NULL, '9', NULL],
|
||||
['Post I&C', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-12 08:06:22', '2021-05-12 08:06:22', NULL, '1', NULL],
|
||||
['SOCKET INFECTION', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-05-14 09:50:50', '2021-05-14 09:50:50', NULL, '22', NULL],
|
||||
['OSSN', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-14 12:38:23', '2021-05-14 12:38:23', NULL, '19', NULL],
|
||||
['Photophobia', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-15 07:05:03', '2021-05-15 07:05:03', NULL, '14', NULL],
|
||||
['Traumatic retinal hemorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-15 09:46:51', '2021-05-15 09:46:51', NULL, '5', NULL],
|
||||
['inflamed Pinguecula', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-17 07:22:16', '2021-05-17 07:22:16', NULL, '19', NULL],
|
||||
['Complicated cataract', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-17 07:43:59', '2021-05-17 07:43:59', NULL, '15', NULL],
|
||||
['Post-operative Endophthalmitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-17 08:04:58', '2021-05-17 08:04:58', NULL, '17', NULL],
|
||||
['Cystic bleb', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-17 11:55:47', '2021-05-17 11:55:47', NULL, '19', NULL],
|
||||
['Conjunctival cyst', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-17 11:58:48', '2021-05-17 11:58:48', NULL, '19', NULL],
|
||||
['Sclero-cornea', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-05-18 13:04:07', '2021-05-18 13:04:07', NULL, '7', NULL],
|
||||
['Cystoid Macular Edema', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-20 12:17:14', '2021-05-20 12:17:14', NULL, '5', NULL],
|
||||
['Limbal dermoid', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-31 07:08:16', '2021-05-31 07:08:16', NULL, '20', NULL],
|
||||
['Absolute glaucoma', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-05-31 10:45:13', '2021-05-31 10:45:13', NULL, '9', NULL],
|
||||
['Post excision', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-06-01 07:22:26', '2021-06-01 07:22:26', NULL, '19', NULL],
|
||||
['Simple ocular irritation', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-06-02 08:12:28', '2021-06-02 08:12:28', NULL, '19', NULL],
|
||||
['Aphakic', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-06-07 09:27:45', '2021-06-07 09:27:45', NULL, '9', NULL],
|
||||
['Macula scar', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-06-08 08:57:19', '2021-06-08 08:57:19', NULL, '5', NULL],
|
||||
['Cystic bleb repair', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-06-14 06:30:46', '2021-06-14 06:30:46', NULL, '9', NULL],
|
||||
['post cryo', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-06-14 09:44:19', '2021-06-14 09:44:19', NULL, '9', NULL],
|
||||
['Dislocated IOL', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-06-17 08:21:21', '2021-06-17 08:21:21', NULL, '15', NULL],
|
||||
['chorio-retinal degeneration', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-06-17 08:22:52', '2021-06-17 08:22:52', NULL, '5', NULL],
|
||||
['low grade anterior uveitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-06-22 09:44:22', '2021-06-22 09:44:22', NULL, '17', NULL],
|
||||
['Caterpillar hair', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 12, NULL, '2021-06-23 09:29:10', '2021-06-23 09:29:10', NULL, '1', NULL],
|
||||
['Graft', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-07-05 07:06:04', '2021-07-05 07:06:04', NULL, '20', NULL],
|
||||
['Dacroadenitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 6, NULL, '2021-07-12 10:07:00', '2021-07-12 10:07:00', NULL, '21', NULL],
|
||||
['Post LASIK', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, NULL, '2021-07-19 14:31:20', '2021-07-19 14:31:20', NULL, '20', NULL],
|
||||
['NO PERCEPTION OF LIGHT', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-20 08:31:19', '2021-07-20 08:31:19', NULL, '9', NULL],
|
||||
['POST PPV', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-20 10:42:57', '2021-07-20 10:42:57', NULL, '5', NULL],
|
||||
['RESOLVING ANTERIOR UVEITS', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-21 09:49:52', '2021-07-21 09:49:52', NULL, '17', NULL],
|
||||
['resolved bacterial conjunctivitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-24 06:54:03', '2021-07-24 06:54:03', NULL, '19', NULL],
|
||||
['SUBTARSAL CONCRETIONS', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 14, NULL, '2021-07-24 10:13:40', '2021-07-24 10:13:40', NULL, '19', NULL],
|
||||
['CYSTS', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-26 08:15:34', '2021-07-26 08:15:34', NULL, '19', NULL],
|
||||
['allergic conjunctuvitis', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 4, NULL, '2021-07-28 09:02:56', '2021-07-28 09:02:56', NULL, '19', NULL],
|
||||
['Subconjuctival haemorrhage', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 16, NULL, '2021-07-28 13:58:51', '2021-07-28 13:58:51', NULL, '19', NULL],
|
||||
['DEGENERATIVE RETINA,DR SCREENING', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 11, NULL, '2021-08-02 11:24:07', '2021-08-02 11:24:07', NULL, '5', NULL],
|
||||
['POSTERIOR SUBCAPSULAR CATARACT', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 11, NULL, '2021-08-02 13:20:21', '2021-08-02 13:20:21', NULL, '15', NULL],
|
||||
['SUSPECT GLAUCOMA ,TO R/O', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 11, NULL, '2021-08-03 09:55:42', '2021-08-03 09:55:42', NULL, '9', NULL],
|
||||
['CORNEAL FB REMOVED', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 11, NULL, '2021-08-04 07:50:14', '2021-08-04 07:50:14', NULL, '20', NULL],
|
||||
['MULTIPLE FORNICELAL PARTICLES', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 15, NULL, '2021-08-07 10:55:36', '2021-08-07 10:55:36', NULL, '19', NULL]
|
||||
];
|
||||
|
||||
foreach ($diagnoses as $row) {
|
||||
Diagnosis::firstOrCreate([
|
||||
'name' => $row[0],
|
||||
'icd10_code' => $row[1],
|
||||
'hmis_no_outpatient' => $row[2],
|
||||
'hmis_no_inpatient' => $row[3],
|
||||
'prompts' => $row[4],
|
||||
'reference_areas' => $row[5],
|
||||
'reference_names' => $row[6],
|
||||
'chronic_status' => $row[7],
|
||||
'hmis_category' => $row[8],
|
||||
'diagnosis_category' => $row[14]
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\GenderBasedViolence;
|
||||
|
||||
class GenderBasedViolenceTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$options = [
|
||||
'Sexual', 'Physical', 'Psycho social'
|
||||
];
|
||||
foreach ($options as $option) {
|
||||
GenderBasedViolence::firstOrCreate([
|
||||
'name'=>$option,
|
||||
'created_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -84,6 +84,30 @@ class HmisCategoriesTableSeeder extends Seeder {
|
||||
['id' => '10093','name' => 'Gynaecological conditions', 'number' => '6.2.17', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10094','name' => 'Other non-communicable diseases', 'number' => '6.2.18', 'type' => '1', 'section_number' => '6'],
|
||||
['id' => '10095','name' => 'Mental Health', 'number' => '7', 'type' => '1', 'section_number' => '7'],
|
||||
['id' => '10096','name' => 'Epidemic-Prone Diseases', 'number' => '1.3.1', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10097','name' => 'Other Infectious / Communicable Diseases', 'number' => '1.3.2', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10098','name' => 'Neonatal Diseases', 'number' => '1.3.3', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10099','name' => 'Non Communicable Diseases/Conditions', 'number' => '1.3.4', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10100','name' => 'Oral diseases', 'number' => '1.3.5', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10101','name' => 'ENT conditions', 'number' => '1.3.6', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10102','name' => 'Eye conditions', 'number' => '1.3.7', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10103','name' => 'Mental Health', 'number' => '1.3.8', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10104','name' => 'Neurological Disorders', 'number' => '1.3.9', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10105','name' => 'Chronic respiratory diseases', 'number' => '1.3.10', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10106','name' => 'Cancers', 'number' => '1.3.11', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10107','name' => 'Physiotherapy', 'number' => '1.3.12', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10108','name' => 'Occupational therapy conditions', 'number' => '1.3.13', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10109','name' => 'Speech and Language Therapy', 'number' => '1.3.14', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10110','name' => 'Disabilities', 'number' => '1.3.15', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10111','name' => 'Cardiovascular diseases', 'number' => '1.3.16', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10112','name' => 'Endocrine and Metabolic Disorders', 'number' => '1.3.17', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10113','name' => 'Injuries', 'number' => '1.3.18', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10114','name' => 'Minor Operations in OPD', 'number' => '1.3.19', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10115','name' => 'Neglected Tropical Diseases (NTDs)', 'number' => '1.3.20', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10116','name' => 'Maternal conditions', 'number' => '1.3.21', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10117','name' => 'Other OPD conditions', 'number' => '1.3.22', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10118','name' => 'Risky Behaviours', 'number' => '1.3.23', 'type' => '0', 'section_number' => '1.3'],
|
||||
['id' => '10119','name' => 'Emergency Medical Services', 'number' => '1.3.24', 'type' => '0', 'section_number' => '1.3'],
|
||||
);
|
||||
|
||||
foreach ($titles as $title) {
|
||||
|
||||
@@ -409,6 +409,289 @@ class HmisCategoryOptionsSeeder extends Seeder
|
||||
['id' => '395','name' => 'Other Childhood Mental Disorders', 'number' => 'MH28','hmis_category_id' => '10095'],
|
||||
['id' => '396','name' => 'Mental Illness due other Medical/surgical conditions', 'number' => 'MH29','hmis_category_id' => '10095'],
|
||||
['id' => '397','name' => 'Attempted Suicide/Self-harm', 'number' => 'MH30','hmis_category_id' => '10095'],
|
||||
['id' => '398','name' => 'Malaria', 'number' => 'EP01','hmis_category_id' => '10096'],
|
||||
['id' => '399','name' => 'Suspected fever', 'number' => 'EP01a','hmis_category_id' => '0','parent_option'=>'398'],
|
||||
['id' => '400','name' => 'Malaria Total', 'number' => 'EP01b','hmis_category_id' => '0','parent_option'=>'398'],
|
||||
['id' => '401','name' => 'Malaria confirmed (B/s and RDT Positive)', 'number' => 'EP01c','hmis_category_id' => '0','parent_option'=>'398'],
|
||||
['id' => '402','name' => 'Malaria cases treated', 'number' => 'EP01d','hmis_category_id' => '0','parent_option'=>'398'],
|
||||
['id' => '403','name' => 'Acute Flaccid Paralysis', 'number' => 'EP02','hmis_category_id' => '10096'],
|
||||
['id' => '404','name' => 'Animal Bites (suspected rabies)', 'number' => 'EP03','hmis_category_id' => '10096'],
|
||||
['id' => '405','name' => 'Cholera', 'number' => 'EP04','hmis_category_id' => '10096'],
|
||||
['id' => '406','name' => 'Dysentery', 'number' => 'EP05','hmis_category_id' => '10096'],
|
||||
['id' => '407','name' => 'Guinea Worm', 'number' => 'EP06','hmis_category_id' => '10096'],
|
||||
['id' => '408','name' => 'Measles', 'number' => 'EP07','hmis_category_id' => '10096'],
|
||||
['id' => '409','name' => 'Bacterial Meningitis', 'number' => 'EP08','hmis_category_id' => '10096'],
|
||||
['id' => '410','name' => 'Neonatal tetanus', 'number' => 'EP09','hmis_category_id' => '10096'],
|
||||
['id' => '411','name' => 'Plague', 'number' => 'EP10','hmis_category_id' => '10096'],
|
||||
['id' => '412','name' => 'Yellow Fever', 'number' => 'EP11','hmis_category_id' => '10096'],
|
||||
['id' => '412','name' => 'Other Viral Haemorrhagic Fevers', 'number' => 'EP12','hmis_category_id' => '10096'],
|
||||
['id' => '413','name' => 'Severe Acute Respiratory Infection (SARI)', 'number' => 'EP13','hmis_category_id' => '10096'],
|
||||
['id' => '414','name' => 'Adverse Events Following Immunization (AEFI)', 'number' => 'EP14','hmis_category_id' => '10096'],
|
||||
['id' => '415','name' => 'Serious', 'number' => 'EP14a','hmis_category_id' => '0','parent_option'=>'414'],
|
||||
['id' => '416','name' => 'Non-Serious', 'number' => 'EP14b','hmis_category_id' => '0','parent_option'=>'414'],
|
||||
['id' => '417','name' => 'Typhoid Fever', 'number' => 'EP15','hmis_category_id' => '10096'],
|
||||
['id' => '418','name' => 'Presumptive MDR TB cases', 'number' => 'EP16','hmis_category_id' => '10096'],
|
||||
['id' => '419','name' => 'Other Emerging infectious Diseases e.g. Influenza like illness (ILI), SARS', 'number' => 'EP17','hmis_category_id' => '10096'],
|
||||
['id' => '420','name' => 'Diarrhoea - Acute', 'number' => 'CD01','hmis_category_id' => '10097'],
|
||||
['id' => '421','name' => 'Diarrhoea - Persistent', 'number' => 'CD02','hmis_category_id' => '10097'],
|
||||
['id' => '422','name' => 'Urethral discharges', 'number' => 'CD03','hmis_category_id' => '10097'],
|
||||
['id' => '423','name' => 'Genital ulcers', 'number' => 'CD04','hmis_category_id' => '10097'],
|
||||
['id' => '424','name' => 'Sexually Transmitted Infection due to Sexual Gender Based Violence', 'number' => 'CD05','hmis_category_id' => '10097'],
|
||||
['id' => '425','name' => 'Other Sexually Transmitted Infections', 'number' => 'CD06','hmis_category_id' => '10097'],
|
||||
['id' => '426','name' => 'Urinary Tract Infections (UTI)', 'number' => 'CD07','hmis_category_id' => '10097'],
|
||||
['id' => '427','name' => 'Intestinal Worms', 'number' => 'CD08','hmis_category_id' => '10097'],
|
||||
['id' => '428','name' => 'Haematological Meningitis', 'number' => 'CD09','hmis_category_id' => '10097'],
|
||||
['id' => '429','name' => 'Other types of meningitis', 'number' => 'CD10','hmis_category_id' => '10097'],
|
||||
['id' => '430','name' => 'Cough or cold - No pneumonia', 'number' => 'CD11','hmis_category_id' => '10097'],
|
||||
['id' => '431','name' => 'Pneumonia', 'number' => 'CD12','hmis_category_id' => '10097'],
|
||||
['id' => '432','name' => 'Severe Pneumonia', 'number' => 'CD13','hmis_category_id' => '10097'],
|
||||
['id' => '433','name' => 'Skin Diseases', 'number' => 'CD14','hmis_category_id' => '10097'],
|
||||
['id' => '434','name' => 'Tetanus (over 28 days)', 'number' => 'CD15','hmis_category_id' => '10097'],
|
||||
['id' => '434','name' => 'Sleeping sickness', 'number' => 'CD16','hmis_category_id' => '10097'],
|
||||
['id' => '435','name' => 'Pelvic Inflammatory Disease (PID)', 'number' => 'CD17','hmis_category_id' => '10097'],
|
||||
['id' => '436','name' => 'Brucellosis', 'number' => 'CD18','hmis_category_id' => '10097'],
|
||||
['id' => '437','name' => 'Neonatal Sepsis (0-7days)', 'number' => 'ND01','hmis_category_id' => '10098'],
|
||||
['id' => '438','name' => 'Neonatal Sepsis (8-28days)', 'number' => 'ND02','hmis_category_id' => '10098'],
|
||||
['id' => '439','name' => 'Neonatal Pneumonia (0-7days)', 'number' => 'ND03','hmis_category_id' => '10098'],
|
||||
['id' => '440','name' => 'Neonatal Pneumonia(8-28days)', 'number' => 'ND04','hmis_category_id' => '10098'],
|
||||
['id' => '441','name' => 'Neonatal Meningitis', 'number' => 'ND05','hmis_category_id' => '10098'],
|
||||
['id' => '442','name' => 'Neonatal Jaundice', 'number' => 'ND06','hmis_category_id' => '10098'],
|
||||
['id' => '443','name' => 'Premature baby (as a Condition for management)', 'number' => 'ND07','hmis_category_id' => '10098'],
|
||||
['id' => '445','name' => 'Other Neonatal Conditions', 'number' => 'ND08','hmis_category_id' => '10098'],
|
||||
['id' => '446','name' => 'Sickle Cell Anaemia', 'number' => 'NC01','hmis_category_id' => '10099'],
|
||||
['id' => '447','name' => 'Other types of Anaemia', 'number' => 'NC02','hmis_category_id' => '10099'],
|
||||
['id' => '448','name' => 'Gastro-Intestinal Disorders (non-Infective)', 'number' => 'NC03','hmis_category_id' => '10099'],
|
||||
['id' => '449','name' => 'Pain Requiring Palliative Care', 'number' => 'NC04','hmis_category_id' => '10099'],
|
||||
['id' => '450','name' => 'Dental Caries', 'number' => 'OD01','hmis_category_id' => '10100'],
|
||||
['id' => '451','name' => 'Gingivitis', 'number' => 'OD02','hmis_category_id' => '10100'],
|
||||
['id' => '452','name' => 'HIV-Oral lesions', 'number' => 'OD03','hmis_category_id' => '10100'],
|
||||
['id' => '453','name' => 'Oral Cancers', 'number' => 'OD04','hmis_category_id' => '10100'],
|
||||
['id' => '454','name' => 'Other Oral Conditions', 'number' => 'OD05','hmis_category_id' => '10100'],
|
||||
['id' => '455','name' => 'Otitis media acute and chronic', 'number' => 'EN01','hmis_category_id' => '10101'],
|
||||
['id' => '456','name' => 'Mastoiditis', 'number' => 'EN02','hmis_category_id' => '10101'],
|
||||
['id' => '457','name' => 'Hearing loss', 'number' => 'EN03','hmis_category_id' => '10101'],
|
||||
['id' => '458','name' => 'Rhinitis', 'number' => 'EN04','hmis_category_id' => '10101'],
|
||||
['id' => '459','name' => 'Sinusitis', 'number' => 'EN05','hmis_category_id' => '10101'],
|
||||
['id' => '460','name' => 'Epixtasis', 'number' => 'EN06','hmis_category_id' => '10101'],
|
||||
['id' => '461','name' => 'Adenoid Hypertrophy', 'number' => 'EN07','hmis_category_id' => '10101'],
|
||||
['id' => '462','name' => 'Foreign Body in nose ear and aero- digestive system', 'number' => 'EN08','hmis_category_id' => '10101'],
|
||||
['id' => '463','name' => 'Infected pre -auricular sinuses and abscess', 'number' => 'EN09','hmis_category_id' => '10101'],
|
||||
['id' => '464','name' => 'Otitis external', 'number' => 'EN10','hmis_category_id' => '10101'],
|
||||
['id' => '465','name' => 'Mastoid abscess', 'number' => 'EN11','hmis_category_id' => '10101'],
|
||||
['id' => '466','name' => 'Vertigo', 'number' => 'EN12','hmis_category_id' => '10101'],
|
||||
['id' => '467','name' => 'Tonsillitis', 'number' => 'EN13','hmis_category_id' => '10101'],
|
||||
['id' => '468','name' => 'Tonsillar hypertrophy', 'number' => 'EN14','hmis_category_id' => '10101'],
|
||||
['id' => '469','name' => 'Tinnitus', 'number' => 'EN15','hmis_category_id' => '10101'],
|
||||
['id' => '470','name' => 'Head and neck cancers', 'number' => 'EN16','hmis_category_id' => '10101'],
|
||||
['id' => '471','name' => 'Other ENT conditions', 'number' => 'EN17','hmis_category_id' => '10101'],
|
||||
['id' => '472','name' => 'Allergic conjunctivitis', 'number' => 'EC01','hmis_category_id' => '10102'],
|
||||
['id' => '473','name' => 'Bacterial Conjunctivitis', 'number' => 'EC02','hmis_category_id' => '10102'],
|
||||
['id' => '474','name' => 'Ophthalmia neonatorum', 'number' => 'EC03','hmis_category_id' => '10102'],
|
||||
['id' => '475','name' => 'Other Forms of Conjunctivitis', 'number' => 'EC04','hmis_category_id' => '10102'],
|
||||
['id' => '476','name' => 'Corneal Ulcers/ Keratitis', 'number' => 'EC05','hmis_category_id' => '10102'],
|
||||
['id' => '477','name' => 'Un Operable Cataract (>6/60)', 'number' => 'EC06','hmis_category_id' => '10102'],
|
||||
['id' => '478','name' => 'Operable Cataract (< 6/60)', 'number' => 'EC07','hmis_category_id' => '10102'],
|
||||
['id' => '479','name' => 'Refractive errors', 'number' => 'EC08','hmis_category_id' => '10102'],
|
||||
['id' => '480','name' => 'Glaucoma', 'number' => 'EC09','hmis_category_id' => '10102'],
|
||||
['id' => '481','name' => 'Trachoma', 'number' => 'EC10','hmis_category_id' => '10102'],
|
||||
['id' => '482','name' => 'Vitamin A Deficiency', 'number' => 'EC11','hmis_category_id' => '10102'],
|
||||
['id' => '483','name' => 'Ocular trauma and Burns', 'number' => 'EC12','hmis_category_id' => '10102'],
|
||||
['id' => '484','name' => 'Diabetic Retinopathy (All stages)', 'number' => 'EC13','hmis_category_id' => '10102'],
|
||||
['id' => '485','name' => 'Chorioretinal, Macular & Vitreous Disorders', 'number' => 'EC14','hmis_category_id' => '10102'],
|
||||
['id' => '486','name' => 'Uveitis', 'number' => 'EC15','hmis_category_id' => '10102'],
|
||||
['id' => '487','name' => 'Endophthalmitis', 'number' => 'EC16','hmis_category_id' => '10102'],
|
||||
['id' => '488','name' => 'Corneal scars (Non trachomatous)', 'number' => 'EC17','hmis_category_id' => '10102'],
|
||||
['id' => '489','name' => 'Tumours', 'number' => 'EC18','hmis_category_id' => '10102'],
|
||||
['id' => '490','name' => 'Strabismus ( All types)', 'number' => 'EC19','hmis_category_id' => '10102'],
|
||||
['id' => '491','name' => 'Ptosis and other lid Disorders', 'number' => 'EC20','hmis_category_id' => '10102'],
|
||||
['id' => '492','name' => 'Squamous Cell Carcinoma of Conjunctiva', 'number' => 'EC21','hmis_category_id' => '10102'],
|
||||
['id' => '494','name' => 'Retinoblastoma', 'number' => 'EC22','hmis_category_id' => '10102'],
|
||||
['id' => '495','name' => 'Other Malignant Tumours', 'number' => 'EC23','hmis_category_id' => '10102'],
|
||||
['id' => '496','name' => 'Other Benign Tumours/Growths', 'number' => 'EC24','hmis_category_id' => '10102'],
|
||||
['id' => '497','name' => 'Other Eye Disorders', 'number' => 'EC25','hmis_category_id' => '10102'],
|
||||
['id' => '498','name' => 'Blindness', 'number' => 'EC26','hmis_category_id' => '10102'],
|
||||
['id' => '499','name' => 'Other eye conditions', 'number' => 'EC27','hmis_category_id' => '10102'],
|
||||
['id' => '500','name' => 'Spectacles Dispensed', 'number' => 'EC28','hmis_category_id' => '10102'],
|
||||
['id' => '501','name' => 'Anxiety Disorders', 'number' => 'MH01','hmis_category_id' => '10103'],
|
||||
['id' => '502','name' => 'Anxiety Disorders due to gender based violence', 'number' => 'MH02','hmis_category_id' => '10103'],
|
||||
['id' => '503','name' => 'Unipolar Depressive Disorder', 'number' => 'MH03','hmis_category_id' => '10103'],
|
||||
['id' => '504','name' => 'Bipolar disorder', 'number' => 'MH04','hmis_category_id' => '10103'],
|
||||
['id' => '505','name' => 'Schizophrenia', 'number' => 'MH05','hmis_category_id' => '10103'],
|
||||
['id' => '506','name' => 'Post -Traumatic Stress Disorder', 'number' => 'MH06','hmis_category_id' => '10103'],
|
||||
['id' => '507','name' => 'Epilepsy', 'number' => 'MH07','hmis_category_id' => '10103'],
|
||||
['id' => '508','name' => 'HIV related psychosis', 'number' => 'MH08','hmis_category_id' => '10103'],
|
||||
['id' => '509','name' => "Alzheimer's disease", 'number' => 'MH09','hmis_category_id' => '10103'],
|
||||
['id' => '510','name' => 'HIV related dementia', 'number' => 'MH10','hmis_category_id' => '10103'],
|
||||
['id' => '511','name' => 'Alcohol related Dementia', 'number' => 'MH11','hmis_category_id' => '10103'],
|
||||
['id' => '512','name' => 'Dementia due to stroke (Diabetes, Hypertension)', 'number' => 'MH12','hmis_category_id' => '10103'],
|
||||
['id' => '513','name' => 'Other form of Dementia', 'number' => 'MH13','hmis_category_id' => '10103'],
|
||||
['id' => '514','name' => 'Other Adult Mental Health Conditions', 'number' => 'MH14','hmis_category_id' => '10103'],
|
||||
['id' => '515','name' => 'Internet addiction', 'number' => 'MH15','hmis_category_id' => '10103'],
|
||||
['id' => '516','name' => 'Alcohol Use Disorder', 'number' => 'MH16','hmis_category_id' => '10103'],
|
||||
['id' => '517','name' => 'Substance (Drug) use Disorder', 'number' => 'MH17','hmis_category_id' => '10103'],
|
||||
['id' => '518','name' => 'Delirium', 'number' => 'MH18','hmis_category_id' => '10103'],
|
||||
['id' => '519','name' => 'Intellectual disability', 'number' => 'MH19','hmis_category_id' => '10103'],
|
||||
['id' => '520','name' => 'Autism spectrum disorders', 'number' => 'MH20','hmis_category_id' => '10103'],
|
||||
['id' => '521','name' => 'Aphasia or Loss of Language due to Stroke', 'number' => 'NE01','hmis_category_id' => '10104'],
|
||||
['id' => '522','name' => 'Dysarthria or Speech Disorder due to Stroke', 'number' => 'NE02','hmis_category_id' => '10104'],
|
||||
['id' => '523','name' => "Parkinson's disease", 'number' => 'NE03','hmis_category_id' => '10104'],
|
||||
['id' => '524','name' => 'Dementia or excessive forgetfulness due to advanced age', 'number' => 'NE04','hmis_category_id' => '10104'],
|
||||
['id' => '525','name' => 'Amyotrophic Lateral Sclerosis(ALS)', 'number' => 'NE05','hmis_category_id' => '10104'],
|
||||
['id' => '526','name' => 'Speech disorders due to Head Injuries(penetrating or closed)', 'number' => 'NE06','hmis_category_id' => '10104'],
|
||||
['id' => '527','name' => 'Persons in Coma / Emergency Care', 'number' => 'NE07','hmis_category_id' => '10104'],
|
||||
['id' => '528','name' => 'Alzheimer Disease', 'number' => 'NE08','hmis_category_id' => '10104'],
|
||||
['id' => '529','name' => 'Down Syndrome (DS)', 'number' => 'NE09','hmis_category_id' => '10104'],
|
||||
['id' => '530','name' => 'CP / PMLD', 'number' => 'NE10','hmis_category_id' => '10104'],
|
||||
['id' => '531','name' => 'Child abuse and Neglect', 'number' => 'NE11','hmis_category_id' => '10104'],
|
||||
['id' => '532','name' => 'Attention Deficit Hyperactivity disorder (ADHD)', 'number' => 'NE12','hmis_category_id' => '10104'],
|
||||
['id' => '533','name' => 'Learning Disability', 'number' => 'NE13','hmis_category_id' => '10104'],
|
||||
['id' => '534','name' => 'Conduct disorders', 'number' => 'NE14','hmis_category_id' => '10104'],
|
||||
['id' => '535','name' => 'Eating disorders (anorexia, Bulimia, other feeding)', 'number' => 'NE15','hmis_category_id' => '10104'],
|
||||
['id' => '536','name' => 'Somatoform disorders', 'number' => 'NE16','hmis_category_id' => '10104'],
|
||||
['id' => '537','name' => 'Sleeping Disorders', 'number' => 'NE17','hmis_category_id' => '10104'],
|
||||
['id' => '538','name' => 'Enuresis / Encopresis', 'number' => 'NE18','hmis_category_id' => '10104'],
|
||||
['id' => '539','name' => 'Other Childhood Mental Disorders', 'number' => 'NE19','hmis_category_id' => '10104'],
|
||||
['id' => '540','name' => 'Mental illness due other Medical/surgical conditions', 'number' => 'NE20','hmis_category_id' => '10104'],
|
||||
['id' => '541','name' => 'Attempted Suicide/Self-harm', 'number' => 'NE21','hmis_category_id' => '10104'],
|
||||
['id' => '542','name' => 'Asthma', 'number' => 'CR01','hmis_category_id' => '10105'],
|
||||
['id' => '543','name' => 'Chronic Obstructive Pulmonary Disease (COPD)', 'number' => 'CR02','hmis_category_id' => '10105'],
|
||||
['id' => '544','name' => 'Cervical Cancer', 'number' => 'CA01','hmis_category_id' => '10106'],
|
||||
['id' => '545','name' => 'Prostate Cancer', 'number' => 'CA02','hmis_category_id' => '10106'],
|
||||
['id' => '546','name' => 'Breast Cancer', 'number' => 'CA03','hmis_category_id' => '10106'],
|
||||
['id' => '547','name' => 'Lung Cancer', 'number' => 'CA04','hmis_category_id' => '10106'],
|
||||
['id' => '548','name' => 'Liver Cancer', 'number' => 'CA05','hmis_category_id' => '10106'],
|
||||
['id' => '549','name' => 'Colon Cancer', 'number' => 'CA06','hmis_category_id' => '10106'],
|
||||
['id' => '550','name' => 'Kaposis Sarcoma', 'number' => 'CA07','hmis_category_id' => '10106'],
|
||||
['id' => '551','name' => 'Other Cancers', 'number' => 'CA08','hmis_category_id' => '10106'],
|
||||
['id' => '552','name' => 'Muscular disorders', 'number' => 'PT01','hmis_category_id' => '10107'],
|
||||
['id' => '553','name' => 'Joint dysfunction', 'number' => 'PT02','hmis_category_id' => '10107'],
|
||||
['id' => '554','name' => 'Soft tissue injuries', 'number' => 'PT03','hmis_category_id' => '10107'],
|
||||
['id' => '555','name' => 'Chronic respiratory diseases', 'number' => 'PT04','hmis_category_id' => '10107'],
|
||||
['id' => '556','name' => 'Chest trauma / Injury', 'number' => 'PT05','hmis_category_id' => '10107'],
|
||||
['id' => '557','name' => 'Paralysis due to spinal cord injury and other diseases', 'number' => 'PT06','hmis_category_id' => '10107'],
|
||||
['id' => '558','name' => 'Cerebral Palsy/Delayed motor or sensory developmental milestones(CP)', 'number' => 'PT07','hmis_category_id' => '10107'],
|
||||
['id' => '559','name' => 'Upper Motor Neuron lesions (UMN)', 'number' => 'PT08','hmis_category_id' => '10107'],
|
||||
['id' => '560','name' => 'Facial palsy', 'number' => 'PT09','hmis_category_id' => '10107'],
|
||||
['id' => '561','name' => 'Lower motor neuron lesions (LMN)', 'number' => 'PT10','hmis_category_id' => '10107'],
|
||||
['id' => '562','name' => 'Gynaecological, obstetric and urogenital conditions', 'number' => 'PT11','hmis_category_id' => '10107'],
|
||||
['id' => '563','name' => 'Amputee', 'number' => 'PT12','hmis_category_id' => '10107'],
|
||||
['id' => '564','name' => 'Altered Posture and gait', 'number' => 'PT13','hmis_category_id' => '10107'],
|
||||
['id' => '565','name' => 'Injection neuritis/Acute flaccid paralysis', 'number' => 'PT14','hmis_category_id' => '10107'],
|
||||
['id' => '566','name' => 'Congenital abnormalities', 'number' => 'PT15','hmis_category_id' => '10107'],
|
||||
['id' => '567','name' => 'Spine disorders e.g neck, thoracic, lumber, coccygeal pains', 'number' => 'PT16','hmis_category_id' => '10107'],
|
||||
['id' => '568','name' => 'Lymph oedema', 'number' => 'PT17','hmis_category_id' => '10107'],
|
||||
['id' => '569','name' => 'Patients prescribed with assistive devices', 'number' => 'PT18','hmis_category_id' => '10107'],
|
||||
['id' => '570','name' => 'Others', 'number' => 'PT19','hmis_category_id' => '10107'],
|
||||
['id' => '571','name' => 'Neuro-developmental Disorders', 'number' => 'OT01','hmis_category_id' => '10108'],
|
||||
['id' => '572','name' => 'Sensory Integration disorders', 'number' => 'OT02','hmis_category_id' => '10108'],
|
||||
['id' => '573','name' => 'Adult Neurological Disorders', 'number' => 'OT03','hmis_category_id' => '10108'],
|
||||
['id' => '574','name' => 'Burn injuries', 'number' => 'OT04','hmis_category_id' => '10108'],
|
||||
['id' => '575','name' => 'Post-burns contractures', 'number' => 'OT05','hmis_category_id' => '10108'],
|
||||
['id' => '576','name' => 'Orthopaedic Conditions', 'number' => 'OT06','hmis_category_id' => '10108'],
|
||||
['id' => '577','name' => 'Mental Health Conditions', 'number' => 'OT07','hmis_category_id' => '10108'],
|
||||
['id' => '578','name' => 'Birth Defects and Trauma', 'number' => 'OT08','hmis_category_id' => '10108'],
|
||||
['id' => '579','name' => 'Arthrogryposis', 'number' => 'OT09','hmis_category_id' => '10108'],
|
||||
['id' => '580','name' => 'HIV / AIDS', 'number' => 'OT10','hmis_category_id' => '10108'],
|
||||
['id' => '581','name' => 'Diabetes', 'number' => 'OT11','hmis_category_id' => '10108'],
|
||||
['id' => '582','name' => 'Cancer', 'number' => 'OT12','hmis_category_id' => '10108'],
|
||||
['id' => '583','name' => 'Other chronic conditions', 'number' => 'OT13','hmis_category_id' => '10108'],
|
||||
['id' => '584','name' => 'Cardiac Conditions', 'number' => 'OT14','hmis_category_id' => '10108'],
|
||||
['id' => '585','name' => 'Patients prescribed with assistive devices', 'number' => 'OT15','hmis_category_id' => '10108'],
|
||||
['id' => '586','name' => 'Speech and language delay/disorder', 'number' => 'SL01','hmis_category_id' => '10109'],
|
||||
['id' => '587','name' => 'Motor speech disorders', 'number' => 'SL02','hmis_category_id' => '10109'],
|
||||
['id' => '588','name' => 'Hearing impairments', 'number' => 'SL03','hmis_category_id' => '10109'],
|
||||
['id' => '589','name' => 'Voice disorders', 'number' => 'SL04','hmis_category_id' => '10109'],
|
||||
['id' => '590','name' => 'Dysfluency / stammering', 'number' => 'SL05','hmis_category_id' => '10109'],
|
||||
['id' => '591','name' => 'Acquired neurological disorders', 'number' => 'SL06','hmis_category_id' => '10109'],
|
||||
['id' => '592','name' => 'Cleft lip and palate', 'number' => 'SL07','hmis_category_id' => '10109'],
|
||||
['id' => '593','name' => 'Others', 'number' => 'SL08','hmis_category_id' => '10109'],
|
||||
['id' => '594','name' => 'Individuals with Difficulty in seeing', 'number' => 'DS01','hmis_category_id' => '10110'],
|
||||
['id' => '595','name' => 'Individuals with Albinism', 'number' => 'DS02','hmis_category_id' => '10110'],
|
||||
['id' => '596','name' => 'Individuals with Difficulty in hearing', 'number' => 'DS03','hmis_category_id' => '10110'],
|
||||
['id' => '597','name' => 'Individuals with Speech Difficulties', 'number' => 'DS04','hmis_category_id' => '10110'],
|
||||
['id' => '598','name' => 'Individuals with delayed age specific motor development', 'number' => 'DS05','hmis_category_id' => '10110'],
|
||||
['id' => '599','name' => 'Individuals with Dwarfism', 'number' => 'DS06','hmis_category_id' => '10110'],
|
||||
['id' => '600','name' => 'Individuals with Difficulty understanding', 'number' => 'DS07','hmis_category_id' => '10110'],
|
||||
['id' => '601','name' => 'Individuals with Difficulty in remembering', 'number' => 'DS08','hmis_category_id' => '10110'],
|
||||
['id' => '602','name' => 'Individuals with Difficulty in reading', 'number' => 'DS09','hmis_category_id' => '10110'],
|
||||
['id' => '603','name' => 'Individuals with Difficulty in writing', 'number' => 'DS10','hmis_category_id' => '10110'],
|
||||
['id' => '604','name' => 'Individuals with Difficulty in self-care', 'number' => 'DS11','hmis_category_id' => '10110'],
|
||||
['id' => '605','name' => 'Individuals with Mentally impairment', 'number' => 'DS12','hmis_category_id' => '10110'],
|
||||
['id' => '606','name' => 'Individuals with Emotionally impairment', 'number' => 'DS13','hmis_category_id' => '10110'],
|
||||
['id' => '607','name' => 'Stroke/ Cardiovascular Accident(CVA)', 'number' => 'CV01','hmis_category_id' => '10111'],
|
||||
['id' => '608','name' => 'Hypertension', 'number' => 'CV02','hmis_category_id' => '10111'],
|
||||
['id' => '609','name' => 'Heart failure', 'number' => 'CV03','hmis_category_id' => '10111'],
|
||||
['id' => '610','name' => 'Ischemic Heart Diseases', 'number' => 'CV04','hmis_category_id' => '10111'],
|
||||
['id' => '611','name' => 'Rheumatic Heart Diseases', 'number' => 'CV05','hmis_category_id' => '10111'],
|
||||
['id' => '612','name' => 'Chronic Heart Diseases', 'number' => 'CV06','hmis_category_id' => '10111'],
|
||||
['id' => '613','name' => 'Other Cardiovascular Diseases', 'number' => 'CV07','hmis_category_id' => '10111'],
|
||||
['id' => '614','name' => 'Diabetes mellitus', 'number' => 'EM01','hmis_category_id' => '10112'],
|
||||
['id' => '615','name' => 'Thyroid Disease', 'number' => 'EM02','hmis_category_id' => '10112'],
|
||||
['id' => '616','name' => 'Other Endocrine and Metabolic Diseases', 'number' => 'EM03','hmis_category_id' => '10112'],
|
||||
['id' => '617','name' => 'Jaw injuries', 'number' => 'IN01','hmis_category_id' => '10113'],
|
||||
['id' => '618','name' => 'Road Traffic Injuries', 'number' => 'IN02','hmis_category_id' => '10113'],
|
||||
['id' => '619','name' => 'Motor Vehicle', 'number' => 'IN02a','hmis_category_id' => '0','parent_option'=>'618'],
|
||||
['id' => '620','name' => 'Motor Cycle', 'number' => 'IN02b','hmis_category_id' => '0','parent_option'=>'618'],
|
||||
['id' => '621','name' => 'Bicycles', 'number' => 'IN02c','hmis_category_id' => '0','parent_option'=>'618'],
|
||||
['id' => '622','name' => 'Others', 'number' => 'IN02d','hmis_category_id' => '0','parent_option'=>'618'],
|
||||
['id' => '623','name' => 'Injuries due to Gender based violence', 'number' => 'IN03','hmis_category_id' => '10113'],
|
||||
['id' => '624','name' => 'Injuries (Trauma due to other causes)', 'number' => 'IN04','hmis_category_id' => '10113'],
|
||||
['id' => '625','name' => 'Animal bites', 'number' => 'IN05','hmis_category_id' => '10113'],
|
||||
['id' => '626','name' => 'Domestic', 'number' => 'IN05a','hmis_category_id' => '0','parent_option'=>'625'],
|
||||
['id' => '627','name' => 'Wild', 'number' => 'IN05b','hmis_category_id' => '0','parent_option'=>'625'],
|
||||
['id' => '628','name' => 'Snake bites', 'number' => 'IN06','hmis_category_id' => '10113'],
|
||||
['id' => '629','name' => 'Insect bites', 'number' => 'IN07','hmis_category_id' => '10113'],
|
||||
['id' => '630','name' => 'Tooth extractions', 'number' => 'MN01','hmis_category_id' => '10114'],
|
||||
['id' => '631','name' => 'Dental Fillings', 'number' => 'MN02','hmis_category_id' => '10114'],
|
||||
['id' => '632','name' => 'Other Minor Operations', 'number' => 'MN03','hmis_category_id' => '10114'],
|
||||
['id' => '633','name' => 'Leishmaniasis', 'number' => 'NT01','hmis_category_id' => '10115'],
|
||||
['id' => '634','name' => 'Lymphatic Filariasis (hydrocele)', 'number' => 'NT02','hmis_category_id' => '10115'],
|
||||
['id' => '635','name' => 'Lymphatic Filariasis(Lympoedema)', 'number' => 'NT03','hmis_category_id' => '10115'],
|
||||
['id' => '636','name' => 'Urinary Schistosomiasis', 'number' => 'NT04','hmis_category_id' => '10115'],
|
||||
['id' => '637','name' => 'Intestinal Schistosomiasis', 'number' => 'NT05','hmis_category_id' => '10115'],
|
||||
['id' => '638','name' => 'Onchocerciasis', 'number' => 'NT06','hmis_category_id' => '10115'],
|
||||
['id' => '639','name' => 'Abortions due to Gender-Based Violence (GBV)', 'number' => 'MC01','hmis_category_id' => '10116'],
|
||||
['id' => '640','name' => 'Abortions due to other causes', 'number' => 'MC02','hmis_category_id' => '10116'],
|
||||
['id' => '641','name' => 'Number of Post Abortion women who received FP', 'number' => 'MC03','hmis_category_id' => '10116'],
|
||||
['id' => '642','name' => 'Malaria in pregnancy', 'number' => 'MC04','hmis_category_id' => '10116'],
|
||||
['id' => '643','name' => 'High blood pressure in pregnancy', 'number' => 'MC05','hmis_category_id' => '10116'],
|
||||
['id' => '644','name' => 'Obstructed labour', 'number' => 'MC06','hmis_category_id' => '10116'],
|
||||
['id' => '645','name' => 'Puerperal sepsis', 'number' => 'MC07','hmis_category_id' => '10116'],
|
||||
['id' => '646','name' => 'Haemorrhage related to pregnancy (APH)', 'number' => 'MC08','hmis_category_id' => '10116'],
|
||||
['id' => '647','name' => 'Haemorrhage related to pregnancy (PPH)', 'number' => 'MC09','hmis_category_id' => '10116'],
|
||||
['id' => '648','name' => 'Breast cancer', 'number' => 'MC10','hmis_category_id' => '10116'],
|
||||
['id' => '649','name' => 'Total Screened', 'number' => 'MC10a','hmis_category_id' => '0','parent_option'=>'648'],
|
||||
['id' => '650','name' => 'Number with breast cancer', 'number' => 'MC10b','hmis_category_id' => '0','parent_option'=>'648'],
|
||||
['id' => '651','name' => 'Cervical cancer', 'number' => 'MC11','hmis_category_id' => '10116'],
|
||||
['id' => '652','name' => 'Total Screened', 'number' => 'MC11a','hmis_category_id' => '0','parent_option'=>'651'],
|
||||
['id' => '653','name' => 'Number with cervical cancer', 'number' => 'MC11b','hmis_category_id' => '0','parent_option'=>'651'],
|
||||
['id' => '654','name' => 'All others', 'number' => 'OP01','hmis_category_id' => '10117'],
|
||||
['id' => '655','name' => 'Other diagnoses (specify priority diseases for District)', 'number' => 'OP02','hmis_category_id' => '10117'],
|
||||
['id' => '656','name' => 'Deaths in OPD', 'number' => 'OP03','hmis_category_id' => '10117'],
|
||||
['id' => '657','name' => 'Number of emergency cases at the facility', 'number' => 'ES01','hmis_category_id' => '10119'],
|
||||
['id' => '658','name' => 'Patients that receive care at the scene of emergency', 'number' => 'ES02','hmis_category_id' => '10119'],
|
||||
['id' => '659','name' => 'Emergency cases that arrive at the facility using an Ambulance', 'number' => 'ES03','hmis_category_id' => '10119'],
|
||||
['id' => '660','name' => 'Number of patients assessed for level of consciousness using GCS/ other comma score', 'number' => 'ES04','hmis_category_id' => '10119'],
|
||||
['id' => '661','name' => 'Number of patients accessing care within 1hr in an emergency unit', 'number' => 'ES05','hmis_category_id' => '10119'],
|
||||
['id' => '662','name' => 'Number of patients who develop complications within 24 hours after management/care', 'number' => 'ES06','hmis_category_id' => '10119'],
|
||||
['id' => '663','name' => 'Number of patients with hypoxemia administered with oxygen', 'number' => 'ES07','hmis_category_id' => '10119'],
|
||||
['id' => '664','name' => 'Number of patients with external haemorrhages controlled', 'number' => 'ES08','hmis_category_id' => '10119'],
|
||||
['id' => '665','name' => 'Number of death at emergency unit', 'number' => 'ES09','hmis_category_id' => '10119'],
|
||||
['id' => '666','name' => 'Medical emergencies', 'number' => 'ES09a','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '667','name' => 'Obstetrics gynaecology emergencies', 'number' => 'ES09b','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '668','name' => 'Paediatric emergencies', 'number' => 'ES09c','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '669','name' => 'Surgical emergencies', 'number' => 'ES09d','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '670','name' => 'Road traffic Injuries', 'number' => 'ES09e','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '671','name' => 'Burns', 'number' => 'ES09f','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '672','name' => 'Poisoning', 'number' => 'ES09g','hmis_category_id' => '0','parent_option'=>'665'],
|
||||
['id' => '673','name' => 'Total number of Death in Emergency Unit', 'number' => 'ES10','hmis_category_id' => '10119'],
|
||||
['id' => '674','name' => 'Tetanus', 'number' => 'ES11a','hmis_category_id' => '0','parent_option'=>'677'],
|
||||
['id' => '675','name' => 'Rabies', 'number' => 'ES11b','hmis_category_id' => '0','parent_option'=>'677'],
|
||||
['id' => '676','name' => 'Others', 'number' => 'ES11c','hmis_category_id' => '0','parent_option'=>'677'],
|
||||
['id' => '677','name' => 'Number of Patients receiving vaccination for', 'number' => 'ES11','hmis_category_id' => '10119'],
|
||||
['id' => '678','name' => 'Alcohol use ', 'number' => 'RB01','hmis_category_id' => '10118'],
|
||||
['id' => '679','name' => 'Tobacco use', 'number' => 'RB02','hmis_category_id' => '10118'],
|
||||
['id' => '680','name' => 'Tobacco exposure', 'number' => 'RB03','hmis_category_id' => '10118'],
|
||||
);
|
||||
|
||||
foreach ($hmis_category_options as $hmis_category_option) {
|
||||
|
||||
@@ -0,0 +1,224 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class MissingMigrationsVineSeeder extends Seeder {
|
||||
/**
|
||||
* Insert duplicate migrations for the vine instance to avoid breaks.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$arr = [
|
||||
'2019_10_24_073230_create_store_stock_reconciliations_table',
|
||||
'2019_10_28_100042_add_mark_up_tag_column_to_drugs',
|
||||
'2019_10_28_101652_create_markup_tags_table',
|
||||
'2019_11_14_103627_create_ward_treatment_dispensations_table',
|
||||
'2019_11_18_084221_create_general_settings_table',
|
||||
'2019_11_22_125855_create_price_list_categories_table',
|
||||
'2019_11_22_130216_add_price_list_categories_to_items_tables',
|
||||
'2019_11_26_141010_add_columns_to_patient_table',
|
||||
'2019_11_28_100853_create_patient_appointments_table',
|
||||
'2019_11_29_100542_create_cost_of_goods_table',
|
||||
'2019_12_03_154628_create_eye_clinic_additional_tests_table',
|
||||
'2019_12_03_154832_create_eye_clinic_base_exam_refraction_table',
|
||||
'2019_12_03_154952_create_eye_clinic_main_exam_table',
|
||||
'2019_12_03_161921_create_strabismuses_table',
|
||||
'2019_12_11_094130_add_invoice_columns_to_quotations_table',
|
||||
'2019_12_13_092025_add_show_drug_brand_name_column_to_general_settings_table',
|
||||
'2019_12_16_114715_add_tracking_columns_to_deposit_tables',
|
||||
'2020_01_07_104353_create_eye_glasses_table',
|
||||
'2020_01_07_104840_create_ordered_eye_glasses_table',
|
||||
'2020_01_07_110308_create_eye_glasses_deposits_table',
|
||||
'2020_01_07_121151_add_referred_from_patient_table',
|
||||
'2020_01_23_153858_add_outcome_columns_to_surgeries_table',
|
||||
'2020_01_28_091637_create_stock_watcher_table',
|
||||
'2020_02_05_174701_add_paid_over_column_to_patient_episodes_table',
|
||||
'2020_02_28_153427_add_history_columns_to_debtor_payments_table',
|
||||
'2020_03_04_170000_add_received_column_to_payments_tables',
|
||||
'2020_03_05_093059_add_date_string_to_cashier_income_table',
|
||||
'2020_03_06_093736_create_family_accounts_table',
|
||||
'2020_03_06_093755_create_family_account_deposits_table',
|
||||
'2020_03_09_091555_create_family_account_consumptions_table',
|
||||
'2020_03_23_150234_add_core_column_to_chart_of_accounts_table',
|
||||
'2020_03_23_154724_add_family_accounts_feature_column_to_general_settings_table',
|
||||
'2020_03_25_103904_add_vendor_to_payments_table',
|
||||
'2020_03_26_154858_add_hmis_columns_to_procedures_table',
|
||||
'2020_03_27_081416_add_inpatient_bill_generated_to_ordered_investigations_table',
|
||||
'2020_03_30_130107_add_money_receiving_and_transfer_columns_to_family_account_deposits_table',
|
||||
'2020_04_01_120806_add_expense_date_to_payments_table',
|
||||
'2020_04_03_021439_add_slug_column_to_wards_table',
|
||||
'2020_04_06_131810_add_money_receiving_and_transfer_columns_to_family_account_consumptions_table',
|
||||
'2020_04_06_131810_add_money_receiving_and_transfer_columns_to_family_account_consumptions_table',
|
||||
'2020_04_07_112825_add_parent_episode_id_column_to_patient_episodes_table',
|
||||
'2020_04_10_152411_create_bills_tables',
|
||||
'2020_04_10_152411_create_bills_tables',
|
||||
'2020_04_10_200043_add_balance_to_hospital_bills_table',
|
||||
'2020_04_10_200043_add_balance_to_hospital_bills_table',
|
||||
'2020_04_14_005202_add_bill_id_to_payments_table',
|
||||
'2020_04_17_121717_add_bill_type_column_to_hospital_bills_table',
|
||||
'2020_04_23_165808_add_chart_of_account_to_deposit_tables',
|
||||
'2020_04_24_122049_rename_buying_price_column_in_sundres_table',
|
||||
'2020_04_28_235909_add_other_drugs_given_and_other_drugs_cost_to_anaesthesias',
|
||||
'2020_04_29_021814_add_mallampatti_score_and_asa_classification_to_anaesthesias',
|
||||
'2020_04_29_190100_add_cost_price_column_to_deposit_tables',
|
||||
'2020_04_29_203845_add_missing_accounts_on_existing_inventory_tables',
|
||||
'2020_04_30_134429_add_add_markup_tag_id_column_to_sundries',
|
||||
'2020_05_01_001512_add_expense_account_to_payments_tables',
|
||||
'2020_05_01_161925_create_sundry_store_stock_reconciliations_table',
|
||||
'2020_05_05_182145_add_accounts_receivable_columns_to_tables',
|
||||
'2020_05_14_104618_add_directly_received_or_not_column_to_quotations_table',
|
||||
'2020_05_14_115017_add_accounts_to_debts_tables',
|
||||
'2020_05_16_090024_add_clearance_columns_to_invoice_and_debt_tables',
|
||||
'2020_05_30_142449_add_currency_code_column_to_general_settings',
|
||||
'2020_06_07_234753_create_bankings_table',
|
||||
'2020_06_08_121226_create_equities_table',
|
||||
'2020_06_12_110550_add_batch_quantity_current_balance_column_to_quotations_table',
|
||||
'2020_06_18_090132_add_depreciation_column_to_fixed_assets_table',
|
||||
'2020_06_19_150149_add_received_history_columns_to_payments_tables',
|
||||
'2020_06_20_104734_add_detail_columns_to_stock_watcher_table',
|
||||
'2020_06_20_231358_add_deposited_to_column_in_equities_table',
|
||||
'2020_06_23_145342_add_password_days_column_to_general_settings_table',
|
||||
'2020_06_24_131240_add_package_unit_related_columns_to_quotations_table',
|
||||
'2020_06_25_094943_create_package_units_table',
|
||||
'2020_06_25_155014_create_inpatient_ward_discounts_table',
|
||||
'2020_06_26_090022_add_payment_complete_column_to_deposit_tables',
|
||||
'2020_07_01_225459_add_bill_per_package_unit_column_to_quotations_table',
|
||||
'2020_07_04_102819_add_item_batch_tracking_column_to_general_settings_table',
|
||||
'2020_07_13_100540_add_cost_value_column_to_requisitions_table',
|
||||
'2020_07_23_122037_add_co_payment_column_to_patient_discounts_table',
|
||||
'2020_07_24_043604_create_staff_payment_configurations_table',
|
||||
'2020_07_27_145936_create_staff_performed_services_table',
|
||||
'2020_07_27_151201_add_enable_sms_column_to_general_settings_table',
|
||||
'2020_07_28_085000_add_is_confirmed_column_to_patient_appointments_table',
|
||||
'2020_07_29_144842_add_is_staff_paid_column_to_staff_performed_services_table',
|
||||
'2020_08_10_145700_add_enable_prescription_confirmations_column_to_general_settings',
|
||||
'2020_08_11_224819_add_reconciled_column_to_banking_table',
|
||||
'2020_08_25_121452_add_episode_type_column_to_patient_episodes_table',
|
||||
'2020_08_26_110233_create_bank_reconciliation_reports_table',
|
||||
'2020_08_27_095923_create_ordered_services_table',
|
||||
'2020_09_02_153545_add_enable_dispensing_unpaid_prescriptions_column_to_general_settings_table',
|
||||
'2020_09_03_103231_add_memo_column_to_bank_reconciliation_report',
|
||||
'2020_09_03_112048_create_price_list_markup_tags_changes_table',
|
||||
'2020_09_07_171604_add_extras_used_column_to_surgeries_table',
|
||||
'2020_09_09_120717_add_sundries_and_extras_used_column_to_anaesthesia_table',
|
||||
'2020_09_10_094005_create_ward_stocks_table',
|
||||
'2020_09_24_120443_update_chart_of_accounts',
|
||||
'2020_09_28_152310_add_opening_stock_column_to_drugs_table',
|
||||
'2020_09_29_104014_add_affected_account_id_column_to_store_stock_reconciliations_table',
|
||||
'2020_09_29_121518_add_affected_account_id_column_to_sundry_store_stock_reconciliations_table',
|
||||
'2020_09_29_121742_add_opening_stock_to_sundries_table',
|
||||
'2020_09_30_054011_create_pharmacy_stock_reconciliations_table',
|
||||
'2020_10_01_101117_add_extra_columns_to_staff_performed_services_table',
|
||||
'2020_10_02_095937_add_reconciliation_date_column_to_store_stock_reconciliation_table',
|
||||
'2020_10_02_101913_add_reconciliation_date_column_to_sundry_store_stock_reconciliations_table',
|
||||
'2020_10_02_192356_add_banked_column_to_invoice_payments',
|
||||
'2020_10_06_093829_add_payable_account_column_to_payment_items_table',
|
||||
'2020_10_07_165049_add_price_list_category_column_to_staff_payment_configurations_table',
|
||||
'2020_10_10_112342_create_ward_consultations_and_services_table',
|
||||
'2020_10_10_140939_create_ward_sundry_dispensations_table',
|
||||
'2020_10_10_150221_create_ward_extras_table',
|
||||
'2020_10_10_171152_create_ward_procedures_table',
|
||||
'2020_10_12_103612_add_staff_fee_column_to_ward_procedures_table',
|
||||
'2020_10_13_104334_create_patient_payment_methods_table',
|
||||
'2020_10_13_104951_add_item_amount_paid_to_hospital_bills_table',
|
||||
'2020_10_14_082552_create_payment_methods_transactions_table',
|
||||
'2020_10_19_120846_add_item_amounts_column_to_deposit_tables',
|
||||
'2020_10_21_164344_create_journals_table',
|
||||
'2020_10_22_110749_add_account_type_column_to_hospital_bills_table',
|
||||
'2020_10_22_144647_add_destination_column_to_quotations_table',
|
||||
'2020_10_26_100617_create_ward_bed_stays_table',
|
||||
'2020_10_27_091046_create_ward_investigation_pricings_table',
|
||||
'2020_10_30_093958_add_current_chart_of_account_column_to_ward_procedures_table',
|
||||
'2020_10_30_094124_add_current_chart_of_account_column_to_ward_bed_stays_table',
|
||||
'2020_10_30_094232_add_current_chart_of_account_column_to_ward_consultations_and_services_table',
|
||||
'2020_10_30_094402_add_current_chart_of_account_column_to_ward_investigation_pricings_table',
|
||||
'2020_10_30_094932_add_current_chart_of_account_column_to_ward_sundry_dispensations_table',
|
||||
'2020_10_30_095020_add_current_chart_of_account_column_to_ward_treatment_dispensations_table',
|
||||
'2020_11_02_094457_add_diagnoses_columns_to_anaesthesias_table',
|
||||
'2020_11_02_094531_add_diagnoses_columns_to_surgeries_table',
|
||||
'2020_11_03_091038_add_dispensation_date_column_to_ward_consultations_and_services_table',
|
||||
'2020_11_03_091129_add_dispensation_date_column_to_ward_extras_table',
|
||||
'2020_11_03_091156_add_dispensation_date_column_to_ward_procedures_table',
|
||||
'2020_11_03_091239_add_dispensation_date_column_to_ward_sundry_dispensations_table',
|
||||
'2020_11_03_092110_add_current_chart_of_account_column_to_ward_extras_table',
|
||||
'2020_11_09_173154_add_accounting_columns_to_wards_tables',
|
||||
'2020_11_10_180237_add_pricing_column_to_ward_sundry_dispensations_table',
|
||||
'2020_11_10_181422_add_pricing_column_to_ward_treatment_dispensations_table',
|
||||
'2020_11_13_153722_add_drugs_to_surgery_table',
|
||||
'2020_12_04_183316_add_slug_to_payment_items_table',
|
||||
'2020_12_07_160841_add_opening_cost_price_to_drugs_and_sundries',
|
||||
'2020_12_11_113229_add_cost_of_goods_to_ward_inventory_sales_table',
|
||||
'2020_12_15_161957_add_expense_tracking_column_to_patient_discounts_table',
|
||||
'2020_12_17_182744_add_enable_patient_debt_reminder_column_to_general_settings_table',
|
||||
'2020_12_28_144238_create_collective_bills_deposits_table',
|
||||
'2021_01_12_145653_create_patient_one_off_discounts_table',
|
||||
'2021_01_13_150914_add_expense_chart_of_account_column_to_ward_procedures_table',
|
||||
'2021_01_20_115623_add_payment_type_column_to_fixed_assets_table',
|
||||
'2021_02_25_142439_add_performed_column_to_ordered_services_table',
|
||||
'2021_03_25_163512_add_setting_for_financial_year_start_date_to_hospital_information_table',
|
||||
'2021_04_13_114453_create_other_incomes_table',
|
||||
'2021_04_14_115454_add_affected_table_columns_to_journals_table',
|
||||
'2021_04_16_121635_add_payment_method_to_other_incomes_table',
|
||||
'2021_04_20_092808_add_enable_performing_unpaid_consultations_to_general_settings_table',
|
||||
'2021_04_20_145335_rename_columns_in_other_incomes_table',
|
||||
'2021_04_28_100125_add_drug_related_settings_to_general_settings_table',
|
||||
'2021_04_28_171808_add_received_column_to_other_incomes_table',
|
||||
'2021_04_29_180058_add_bill_id_to_quotations_table',
|
||||
'2021_05_03_190526_create_general_items_table',
|
||||
'2021_05_04_085411_add_opening_stocks_take_points_to_drugs_table',
|
||||
'2021_05_04_101517_add_chi_to_general_settings_table',
|
||||
'2021_05_04_152343_add_receivable_account_column_to_receivables_tables',
|
||||
'2021_05_05_135657_add_patient_category_coverage_to_drugs_table',
|
||||
'2021_05_06_195021_add_add_service_to_patient_total_bill_to_general_settings_table',
|
||||
'2021_05_07_204111_add_is_progressive_treatment_column_to_treatments_table',
|
||||
'2021_05_12_181235_add_enable_performing_unpaid_investigations_to_general_settings_table',
|
||||
'2021_05_13_180430_create_general_items_stock_reconciliations',
|
||||
'2021_05_19_095043_add_cashier_receipts_print_format_column_to_general_settings_table',
|
||||
'2021_05_31_103241_add_receipt_number_to_family_accounts_consumption_table',
|
||||
'2021_06_01_111329_add_extra_columns_to_family_accounts',
|
||||
'2021_06_02_084030_add_transaction_date_to_patient_category_invoices_table',
|
||||
'2021_06_25_135228_add_sale_date_and_sale_price_to_fixed_assets_table',
|
||||
'2021_07_12_122723_add_patient_category_amount_column_to_central_billing_deposits_table',
|
||||
'2021_07_13_165320_add_order_items_column_to_deposits_table',
|
||||
'2021_08_17_164314_add_opening_stock_to_general_items_table',
|
||||
'2021_08_31_170728_add_opening_cost_price_to_general_items_table',
|
||||
'2021_09_24_094137_add_patient_finance_accounts_columns_to_patients_table',
|
||||
'2022_03_23_165006_create_non_staff_guarantors_table',
|
||||
'2022_03_24_113116_add_installation_payment_dates_and_guarantor_type_column_to_debt_plan_table',
|
||||
'2022_04_25_173938_add_accounting_columns_to_dentals_table',
|
||||
'2022_04_28_104314_add_accounting_columns_to_radiologies_table',
|
||||
'2022_04_29_114617_rename_cancel_patient_transaction_table',
|
||||
'2022_05_03_110415_create_diagnosis_categories_table',
|
||||
'2022_05_03_121032_create_slit_lamp_test_areas_table',
|
||||
'2022_05_03_121212_create_slit_lamp_test_area_values_table',
|
||||
'2022_05_04_110448_add_columns_to_eye_glasses_table',
|
||||
'2022_05_04_121143_add_eye_column_to_order_tables',
|
||||
'2022_05_05_092128_add_previous_id_column_to_patients_table',
|
||||
'2022_05_05_103645_add_columns_to_eye_deposits_table'
|
||||
];
|
||||
|
||||
foreach ($arr as $record) {
|
||||
DB::table('migrations')->insert(['migration' => $record, 'batch' => 35]);
|
||||
}
|
||||
|
||||
// re-value 12 to 19 in the patient categories
|
||||
DB::table('patient_category_invoices')->where('tag_id', 12)->update(['tag_id' => 19]);
|
||||
DB::table('central_billing_deposits')->where('tag_id', 12)->update(['tag_id' => 19]);
|
||||
|
||||
DB::table('streamline_setup_steps')->where('tag_id', 12)->insert([
|
||||
['step' => 'hospital registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'clinics registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'wards registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'services registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'investigations registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'drugs registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'procedures registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'sundries registration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
['step' => 'general settings configuration', 'completion_status' => 1, 'created_at' => now(), 'updated_at' => now()],
|
||||
]);
|
||||
}
|
||||
}
|
||||
@@ -55,6 +55,11 @@ class PermissionTableSeeder extends Seeder
|
||||
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' => 'list-patient-registration-fields', 'permission_category_id' => '4', 'description' => 'View Patient Registration Fields', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'create-patient-registration-field', 'permission_category_id' => '4', 'description' => 'Create Patient Registration Fields', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'edit-patient-registration-field', 'permission_category_id' => '4', 'description' => 'Edit Patient Registration Fields', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'detail-patient-registration-field', 'permission_category_id' => '4', 'description' => 'Show Patient Registration Field', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'delete-patient-registration-field', 'permission_category_id' => '4', 'description' => 'Delete Patient Registration Fields', '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' => ''),
|
||||
@@ -264,7 +269,7 @@ class PermissionTableSeeder extends Seeder
|
||||
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' => ''),
|
||||
@@ -620,6 +625,7 @@ class PermissionTableSeeder extends Seeder
|
||||
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-closed-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'View closed inpatient sheet', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => "The permission for users to view details of closed inpatient sheets to protect patients' privacy"),
|
||||
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'),
|
||||
@@ -659,6 +665,20 @@ class PermissionTableSeeder extends Seeder
|
||||
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' => 'order-for-eye-glasses', 'permission_category_id' => '4', 'description' => 'Order For Eye Glasses', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'eye_glasses-list', 'description' => 'View eye glasses', 'permission_category_id' => '25', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'eye_glasses-create', 'description' => 'Create eye glasses', 'permission_category_id' => '25', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'eye_glasses-edit', 'description' => 'Edit eye glasses', 'permission_category_id' => '25', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'eye_glasses-delete', 'description' => 'Delete eye glasses', 'permission_category_id' => '25', 'guard_name' => 'web', 'crud' => 'delete', 'long_description' => ''),
|
||||
array('name' => 'test_areas-list', 'description' => 'View Test Areas', 'permission_category_id' => '12', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'test_areas-create', 'description' => 'Create Test Areas', 'permission_category_id' => '12', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'test_areas-edit', 'description' => 'Edit Test Areas', 'permission_category_id' => '12', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'test_areas-delete', 'description' => 'Delete Test Areas', 'permission_category_id' => '12', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'test_area_values-list', 'description' => 'View Test Area Values', 'permission_category_id' => '12', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'test_area_values-create', 'description' => 'Create Test Area Values', 'permission_category_id' => '12', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'test_area_values-edit', 'description' => 'Edit Test Area Values', 'permission_category_id' => '12', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'test_area_values-delete', 'description' => 'Delete Test Area Values', 'permission_category_id' => '12', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'cancel-ordered-eye-glasses', 'permission_category_id' => '4', 'description' => 'Cancel ordered eye glasses', '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' => ''),
|
||||
@@ -738,6 +758,36 @@ class PermissionTableSeeder extends Seeder
|
||||
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'),
|
||||
array('name' => 'cancer-protocol-list', 'permission_category_id' => '9', 'description' => 'List cancer protocols', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
array('name' => 'cancer-protocol-create', 'permission_category_id' => '9', 'description' => 'Create cancer protocols', 'guard_name' => 'web', 'crud' => 'create', 'long_description' => ''),
|
||||
array('name' => 'cancer-protocol-edit', 'permission_category_id' => '9', 'description' => 'Edit cancer protocols', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'cancer-protocol-delete', 'permission_category_id' => '9', 'description' => 'Delete cancer protocols', 'guard_name' => 'web', 'crud' => 'delete', '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' => 'add-vitals-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'Add vitals on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'view-vitals-on-inpatient-sheet', 'permission_category_id' => '4', 'description' => 'View vitals on inpatient sheet', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'alter-cancer-protocol-chart-dispensing', 'permission_category_id' => '13', 'description' => 'Alter cancer protocol drugs before dispensing on the ward charts', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => ''),
|
||||
array('name' => 'save-inpatient-bill', 'permission_category_id' => '4', 'description' => 'Save Inpatient Bills', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Save Inpatient Bills For a Patient'),
|
||||
array('name' => 'save-and-close-inpatient-bill', 'permission_category_id' => '4', 'description' => 'Save and Close Inpatient Bills', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Save and Close Inpatient Bills For a Patient so that they cannot be edited'),
|
||||
array('name' => 'open-inpatient-bill', 'permission_category_id' => '4', 'description' => 'Open an inpatient bill for editing', 'guard_name' => 'web', 'crud' => 'other', 'long_description' => 'Open an inpatient bill for editing'),
|
||||
array('name' => 'edit-name-of-lab-doctor', 'permission_category_id' => '10', 'description' => 'Allow editing the name of the doctor who performed a lab investigation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => 'Allow editing the name of the doctor who performed a lab investigation'),
|
||||
array('name' => 'view-expiring-sundries', 'permission_category_id' => '15', 'description' => 'View Expiring Sundries', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'average-monthly-consumption', 'permission_category_id' => '15', 'description' => 'View Average Monthly Consumption', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'drugs-issued-to-pharmacy-report', 'permission_category_id' => '15', 'description' => 'View Drugs Issued to pharmacy report', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'view-ward-consumption', 'permission_category_id' => '15', 'description' => 'View ward consumption report', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'view-general-items-stock-reconciliation-report', 'permission_category_id' => '15', 'description' => 'View General items stock reconciliation report', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'view-sundries-stock-reconciliation-report', 'permission_category_id' => '15', 'description' => 'View sundries stock reconciliation report', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'view-drugs-stock-reconciliation-report', 'permission_category_id' => '15', 'description' => 'View Drug stock reconciliation report', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'resume-drug-physical-stock-count', 'permission_category_id' => '15', 'description' => 'Resume drug stock reconciliation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'resume-sundries-physical-stock-count', 'permission_category_id' => '15', 'description' => 'Resume sundries stock reconciliation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'general-items-stock-reconciliation', 'permission_category_id' => '15', 'description' => 'General Items stock reconciliation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'optical-stock-reconciliation', 'permission_category_id' => '15', 'description' => 'Optical Items stock reconciliation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'sundries-stock-reconciliation', 'permission_category_id' => '15', 'description' => 'Sundries stock reconciliation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'drugs-stock-reconciliation', 'permission_category_id' => '15', 'description' => 'Drugs stock reconciliation', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'view-package-units', 'permission_category_id' => '15', 'description' => 'Manage Package Units', 'guard_name' => 'web', 'crud' => 'edit', 'long_description' => ''),
|
||||
array('name' => 'view-eye-clinic-report', 'permission_category_id' => '5', 'description' => 'View eye clinic reports', 'guard_name' => 'web', 'crud' => 'view', 'long_description' => ''),
|
||||
);
|
||||
|
||||
foreach ($permissions as $permission) {
|
||||
@@ -749,7 +799,7 @@ class PermissionTableSeeder extends Seeder
|
||||
Permission::firstOrCreate([
|
||||
'name' => $permission['name'],
|
||||
'description' => $permission['description'],
|
||||
'long_description' => $permission['long_description'],
|
||||
'long_description' => ($permission['long_description'] == '') ? $permission['description'] : $permission['long_description'],
|
||||
'permission_category_id' => $permission['permission_category_id'],
|
||||
'guard_name' => $permission['guard_name'],
|
||||
'crud' => $permission['crud']
|
||||
@@ -762,7 +812,7 @@ class PermissionTableSeeder extends Seeder
|
||||
Permission::firstOrCreate([
|
||||
'name' => $permission['name'],
|
||||
'description' => $permission['description'],
|
||||
'long_description' => $permission['long_description'],
|
||||
'long_description' => ($permission['long_description'] == '') ? $permission['description'] : $permission['long_description'],
|
||||
'permission_category_id' => $permission['permission_category_id'],
|
||||
'guard_name' => $permission['guard_name'],
|
||||
'crud' => $permission['crud']
|
||||
|
||||
@@ -36,6 +36,7 @@ class PermissionsCategoryTableSeeder extends Seeder {
|
||||
array('id' => '22','name' => 'Journals'),
|
||||
array('id' => '23','name' => 'Wards and other units'),
|
||||
array('id' => '24','name' => 'Budgets'),
|
||||
array('id' => '25','name' => 'Eye Glasses'),
|
||||
);
|
||||
|
||||
foreach ($categories as $category):
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class ReverseTagSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
DB::table('patient_category_invoices')->where('tag_id', 16)->update(['tag_id' => 19]);
|
||||
DB::table('central_billing_deposits')->where('tag_id', 16)->update(['tag_id' => 19]);
|
||||
|
||||
DB::table('payment_methods_transactions')->where('tag_id', 12)->update(['tag_id' => 19]);
|
||||
DB::table('debtors')->where('tag_id', 12)->update(['tag_id' => 19]);
|
||||
DB::table('patient_one_off_discounts')->where('tag_id', 12)->update(['tag_id' => 19]);
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,7 @@ namespace Database\Seeders;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Spatie\Permission\Models\Role;
|
||||
use Spatie\Permission\Models\Permission;
|
||||
use Streamline\Enums\Roles;
|
||||
|
||||
class RolesTableSeeder extends Seeder {
|
||||
|
||||
@@ -15,10 +16,10 @@ class RolesTableSeeder extends Seeder {
|
||||
public function run() {
|
||||
|
||||
$roles = [
|
||||
'Admin', 'Cashier', 'Data Entrants', 'Doctors', 'Finance Manager', 'Hospital Administrator', 'Human Resource Manager', 'IT Coordinator',
|
||||
Roles::ADMIN->value, 'Cashier', 'Data Entrants', Roles::DOCTOR->value, 'Finance Manager', 'Hospital Administrator', 'Human Resource Manager', 'IT Coordinator',
|
||||
'Lab Assistant', 'Lab Clerk', 'Lab Technician', 'Medical Director', 'Midwives', 'Non-clinical users', 'Nursing', 'Nursing - Senior Ward Staff',
|
||||
'Records Assistant', 'Insurance Manager', 'Patient Receiption Clerks', 'Pharmacy Nurses - Junior', 'Pharmacy Technicians - Senior',
|
||||
'Enrolled Nurse', 'Specialist Nurses', 'Stores', 'Triage Nurses', 'Super Admin'
|
||||
'Enrolled Nurse', 'Specialist Nurses', 'Stores', 'Triage Nurses', Roles::SUPER_ADMIN->value
|
||||
];
|
||||
|
||||
|
||||
@@ -30,17 +31,17 @@ class RolesTableSeeder extends Seeder {
|
||||
* Assign ADMIN role all permissions
|
||||
*/
|
||||
|
||||
$adminRole = Role::firstOrCreate(['name' => 'Admin']);
|
||||
$adminRole = Role::firstOrCreate(['name' => Roles::ADMIN->value]);
|
||||
$adminRole->givePermissionTo(Permission::all());
|
||||
|
||||
$superAdminRole = Role::firstOrCreate(['name' => 'Super Admin']);
|
||||
$superAdminRole = Role::firstOrCreate(['name' => Roles::SUPER_ADMIN->value]);
|
||||
$superAdminRole->givePermissionTo(Permission::all());
|
||||
|
||||
$dataEntrant = Role::firstOrCreate(['name' => 'Data Entrants']);
|
||||
$dataEntrant->givePermissionTo(Permission::where(['permission_category_id' => 1])->where(['permission_category_id' => 4])->get());
|
||||
$dataEntrant->givePermissionTo(Permission::where(['permission_category_id' => 4])->get());
|
||||
|
||||
$doctors = Role::firstOrCreate(['name' => 'Doctors']);
|
||||
$doctors = Role::firstOrCreate(['name' => Roles::DOCTOR->value]);
|
||||
$doctors->givePermissionTo(Permission::where(['permission_category_id' => 1])->get());
|
||||
$doctors->givePermissionTo(Permission::where(['permission_category_id' => 4])->get());
|
||||
$doctors->givePermissionTo(Permission::where(['permission_category_id' => 2])->get());
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\SlitLampTestArea;
|
||||
|
||||
class SlitLampTestAreaSeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$areas = array(
|
||||
array('id' => '1', 'name' => 'Lid', 'slug' => 'slit_ll'),
|
||||
array('id' => '2', 'name' => 'Conjunctiva', 'slug' => 'slit_cs'),
|
||||
array('id' => '3', 'name' => 'Cornea', 'slug' => 'slit_cornea'),
|
||||
array('id' => '4', 'name' => 'AC', 'slug' => 'slit_ac'),
|
||||
array('id' => '5', 'name' => 'Iris', 'slug' => 'slit_iris'),
|
||||
array('id' => '6', 'name' => 'Lens', 'slug' => 'slit_lens'),
|
||||
array('id' => '7', 'name' => 'Vit', 'slug' => 'slit_vit'),
|
||||
array('id' => '8', 'name' => 'Retina', 'slug' => 'slit_retina'),
|
||||
array('id' => '9', 'name' => 'Optic Disc', 'slug' => 'slit_optic_disc')
|
||||
);
|
||||
|
||||
foreach ($areas as $area) {
|
||||
|
||||
// Prevent re-seeding the same data
|
||||
SlitLampTestArea::firstOrCreate([
|
||||
'id' => $area['id'],
|
||||
'name' => $area['name'],
|
||||
'slug' => $area['slug'],
|
||||
'created_by' => 1,
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\SlitLampTestAreaValue;
|
||||
|
||||
class SlitLampTestAreaValueSeeder extends Seeder {
|
||||
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run() {
|
||||
$values = array(
|
||||
//lid
|
||||
array ( 'name' => 'Normal', 'slit_lamp_test_area_id' => '1'),
|
||||
array ( 'name' => 'Swelling', 'slit_lamp_test_area_id' => '1'),
|
||||
array ( 'name' => 'Ectropion', 'slit_lamp_test_area_id' => '1'),
|
||||
array ( 'name' => 'Hodeolum', 'slit_lamp_test_area_id' => '1'),
|
||||
array ( 'name' => 'Haemorrhage', 'slit_lamp_test_area_id' => '1'),
|
||||
array ( 'name' => 'Growth', 'slit_lamp_test_area_id' => '1'),
|
||||
array ( 'name' => 'Tear', 'slit_lamp_test_area_id' => '1'),
|
||||
array ( 'name' => 'Lagophthalmos', 'slit_lamp_test_area_id' => '1'),
|
||||
array ( 'name' => 'Nevus', 'slit_lamp_test_area_id' => '1'),
|
||||
array ( 'name' => 'Chalazion', 'slit_lamp_test_area_id' => '1'),
|
||||
|
||||
//conjunctiva
|
||||
array ( 'name' => 'Normal', 'slit_lamp_test_area_id' => '2'),
|
||||
array ( 'name' => 'Red', 'slit_lamp_test_area_id' => '2'),
|
||||
array ( 'name' => 'Fornix-Discharge', 'slit_lamp_test_area_id' => '2'),
|
||||
array ( 'name' => 'Follicles', 'slit_lamp_test_area_id' => '2'),
|
||||
array ( 'name' => 'Papillae', 'slit_lamp_test_area_id' => '2'),
|
||||
array ( 'name' => 'Growth', 'slit_lamp_test_area_id' => '2'),
|
||||
|
||||
//cornea
|
||||
array ( 'name' => 'Normal', 'slit_lamp_test_area_id' => '3'),
|
||||
array ( 'name' => 'Keratoconus', 'slit_lamp_test_area_id' => '3'),
|
||||
array ( 'name' => 'Staining', 'slit_lamp_test_area_id' => '3'),
|
||||
array ( 'name' => 'Scar', 'slit_lamp_test_area_id' => '3'),
|
||||
array ( 'name' => 'Pannus', 'slit_lamp_test_area_id' => '3'),
|
||||
array ( 'name' => 'FB', 'slit_lamp_test_area_id' => '3'),
|
||||
array ( 'name' => 'Perforation', 'slit_lamp_test_area_id' => '3'),
|
||||
array ( 'name' => 'Infiltrate', 'slit_lamp_test_area_id' => '3'),
|
||||
array ( 'name' => 'Limbal-Failure', 'slit_lamp_test_area_id' => '3'),
|
||||
array ( 'name' => 'Hazy', 'slit_lamp_test_area_id' => '3'),
|
||||
array ( 'name' => 'Ulcer', 'slit_lamp_test_area_id' => '3'),
|
||||
|
||||
//ac
|
||||
array ( 'name' => 'Normal', 'slit_lamp_test_area_id' => '4'),
|
||||
array ( 'name' => 'Flare', 'slit_lamp_test_area_id' => '4'),
|
||||
array ( 'name' => 'Kps', 'slit_lamp_test_area_id' => '4'),
|
||||
array ( 'name' => 'Shallow', 'slit_lamp_test_area_id' => '4'),
|
||||
array ( 'name' => 'Cells', 'slit_lamp_test_area_id' => '4'),
|
||||
array ( 'name' => 'Hyphema', 'slit_lamp_test_area_id' => '4'),
|
||||
array ( 'name' => 'AC IOL', 'slit_lamp_test_area_id' => '4'),
|
||||
|
||||
//iris
|
||||
array ( 'name' => 'Normal', 'slit_lamp_test_area_id' => '5'),
|
||||
array ( 'name' => 'Atrophic', 'slit_lamp_test_area_id' => '5'),
|
||||
array ( 'name' => 'Aniridia', 'slit_lamp_test_area_id' => '5'),
|
||||
array ( 'name' => 'RAPD', 'slit_lamp_test_area_id' => '5'),
|
||||
array ( 'name' => 'PI', 'slit_lamp_test_area_id' => '5'),
|
||||
array ( 'name' => 'Peaked', 'slit_lamp_test_area_id' => '5'),
|
||||
array ( 'name' => 'Defect', 'slit_lamp_test_area_id' => '5'),
|
||||
array ( 'name' => 'Iridodonesis', 'slit_lamp_test_area_id' => '5'),
|
||||
array ( 'name' => 'Rubeosis', 'slit_lamp_test_area_id' => '5'),
|
||||
|
||||
|
||||
//lens
|
||||
array ( 'name' => 'Normal', 'slit_lamp_test_area_id' => '6'),
|
||||
array ( 'name' => 'Aphakic', 'slit_lamp_test_area_id' => '6'),
|
||||
array ( 'name' => 'Cataract', 'slit_lamp_test_area_id' => '6'),
|
||||
array ( 'name' => 'Sublaxated', 'slit_lamp_test_area_id' => '6'),
|
||||
array ( 'name' => 'Dislocated', 'slit_lamp_test_area_id' => '6'),
|
||||
array ( 'name' => 'PCO', 'slit_lamp_test_area_id' => '6'),
|
||||
array ( 'name' => 'Psedophakic', 'slit_lamp_test_area_id' => '6'),
|
||||
|
||||
|
||||
//vit
|
||||
array ( 'name' => 'Normal', 'slit_lamp_test_area_id' => '7'),
|
||||
array ( 'name' => 'Flare', 'slit_lamp_test_area_id' => '7'),
|
||||
array ( 'name' => 'Degeneration', 'slit_lamp_test_area_id' => '7'),
|
||||
array ( 'name' => 'Cells', 'slit_lamp_test_area_id' => '7'),
|
||||
array ( 'name' => 'Haemorrhage', 'slit_lamp_test_area_id' => '7'),
|
||||
array ( 'name' => 'Asteroid', 'slit_lamp_test_area_id' => '7'),
|
||||
array ( 'name' => 'PVD', 'slit_lamp_test_area_id' => '7'),
|
||||
array ( 'name' => 'Weiss-Ring', 'slit_lamp_test_area_id' => '7'),
|
||||
|
||||
//retina
|
||||
array ( 'name' => 'Normal', 'slit_lamp_test_area_id' => '8'),
|
||||
array ( 'name' => 'Cotton-Wool', 'slit_lamp_test_area_id' => '8'),
|
||||
array ( 'name' => 'RD', 'slit_lamp_test_area_id' => '8'),
|
||||
array ( 'name' => 'Exudates', 'slit_lamp_test_area_id' => '8'),
|
||||
array ( 'name' => 'Membrane', 'slit_lamp_test_area_id' => '8'),
|
||||
array ( 'name' => 'Haemorrhage', 'slit_lamp_test_area_id' => '8'),
|
||||
array ( 'name' => 'Macular-Edema', 'slit_lamp_test_area_id' => '8'),
|
||||
array ( 'name' => 'CRVO / ARVO', 'slit_lamp_test_area_id' => '8'),
|
||||
|
||||
//optic disc
|
||||
array ( 'name' => 'Normal', 'slit_lamp_test_area_id' => '9'),
|
||||
array ( 'name' => 'Disc-Haemorrhage', 'slit_lamp_test_area_id' => '9'),
|
||||
array ( 'name' => 'Atropy', 'slit_lamp_test_area_id' => '9'),
|
||||
array ( 'name' => 'Copped', 'slit_lamp_test_area_id' => '9'),
|
||||
array ( 'name' => 'Bayonetting', 'slit_lamp_test_area_id' => '9'),
|
||||
array ( 'name' => 'Nasalisation', 'slit_lamp_test_area_id' => '9'),
|
||||
);
|
||||
|
||||
foreach ($values as $value) {
|
||||
|
||||
// Prevent re-seeding the same data
|
||||
SlitLampTestAreaValue::firstOrCreate([
|
||||
'name' => $value['name'],
|
||||
'slit_lamp_test_area_id' => $value['slit_lamp_test_area_id']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -2,6 +2,7 @@
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Enums\Roles;
|
||||
use Streamline\Models\User;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
|
||||
@@ -33,7 +34,7 @@ class UsersTableSeeder extends Seeder {
|
||||
/*
|
||||
* Assigning this user the admin role
|
||||
*/
|
||||
$user->assignRole('Admin');
|
||||
$user->assignRole('Super Admin');
|
||||
$user->assignRole(Roles::ADMIN->value);
|
||||
$user->assignRole(Roles::SUPER_ADMIN->value);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Streamline\Models\UterusOperation;
|
||||
|
||||
class UterusOperationTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$options = [
|
||||
'Cervical circlage', 'Myomectomy'
|
||||
];
|
||||
foreach ($options as $option) {
|
||||
UterusOperation::firstOrCreate([
|
||||
'name'=>$option,
|
||||
'created_by' => 1
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
+74488
File diff suppressed because it is too large
Load Diff
@@ -54,6 +54,7 @@ class WardsTableSeeder extends Seeder {
|
||||
"name" => $value['name'],
|
||||
"beds" => $value['beds'],
|
||||
"slug" => $value['slug'],
|
||||
"type" => $value['slug'],
|
||||
"hmis_ward_id"=> $value['hmis_ward_id']
|
||||
]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user