223 lines
6.5 KiB
PHP
223 lines
6.5 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Database\Seeds;
|
||
|
|
|
||
|
|
use CodeIgniter\Database\Seeder;
|
||
|
|
|
||
|
|
class HostAppCodingSysSeeder extends Seeder
|
||
|
|
{
|
||
|
|
public function run()
|
||
|
|
{
|
||
|
|
$now = date('Y-m-d H:i:s');
|
||
|
|
|
||
|
|
// Clear existing data first (avoid foreign key constraint issues by ordering)
|
||
|
|
$this->db->table('hostcompara')->emptyTable();
|
||
|
|
$this->db->table('hostapp')->emptyTable();
|
||
|
|
$this->db->table('codingsys')->emptyTable();
|
||
|
|
|
||
|
|
// HostApp - Host Applications
|
||
|
|
$hostAppData = [
|
||
|
|
[
|
||
|
|
'HostAppID' => 'LIS01',
|
||
|
|
'HostAppName' => 'Laboratory Information System Main',
|
||
|
|
'SiteID' => 1,
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'LIS02',
|
||
|
|
'HostAppName' => 'Laboratory Information System Backup',
|
||
|
|
'SiteID' => 1,
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'EMR01',
|
||
|
|
'HostAppName' => 'Electronic Medical Record System',
|
||
|
|
'SiteID' => 1,
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'PACS01',
|
||
|
|
'HostAppName' => 'Picture Archiving System',
|
||
|
|
'SiteID' => 1,
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'BILL01',
|
||
|
|
'HostAppName' => 'Billing System',
|
||
|
|
'SiteID' => 1,
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'INS01',
|
||
|
|
'HostAppName' => 'Insurance System Integration',
|
||
|
|
'SiteID' => 1,
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'OLD01',
|
||
|
|
'HostAppName' => 'Legacy Laboratory System',
|
||
|
|
'SiteID' => 1,
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => date('Y-m-d H:i:s', strtotime('-1 year'))
|
||
|
|
],
|
||
|
|
];
|
||
|
|
$this->db->table('hostapp')->insertBatch($hostAppData);
|
||
|
|
|
||
|
|
// HostComPara - Host Communication Parameters
|
||
|
|
$hostComParaData = [
|
||
|
|
[
|
||
|
|
'HostAppID' => 'LIS01',
|
||
|
|
'HostIP' => '192.168.1.10',
|
||
|
|
'HostPort' => '8080',
|
||
|
|
'HostPwd' => 'lis_main_pass_2024',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'LIS02',
|
||
|
|
'HostIP' => '192.168.1.11',
|
||
|
|
'HostPort' => '8081',
|
||
|
|
'HostPwd' => 'lis_backup_pass_2024',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'EMR01',
|
||
|
|
'HostIP' => '192.168.1.20',
|
||
|
|
'HostPort' => '443',
|
||
|
|
'HostPwd' => 'emr_secure_2024',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'PACS01',
|
||
|
|
'HostIP' => '192.168.1.30',
|
||
|
|
'HostPort' => '8042',
|
||
|
|
'HostPwd' => 'pacs_dicom_2024',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'BILL01',
|
||
|
|
'HostIP' => '192.168.1.40',
|
||
|
|
'HostPort' => '8443',
|
||
|
|
'HostPwd' => 'bill_payment_2024',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'INS01',
|
||
|
|
'HostIP' => '192.168.1.50',
|
||
|
|
'HostPort' => '443',
|
||
|
|
'HostPwd' => 'ins_claim_2024',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'HostAppID' => 'OLD01',
|
||
|
|
'HostIP' => '192.168.1.99',
|
||
|
|
'HostPort' => '8080',
|
||
|
|
'HostPwd' => 'old_legacy_pass',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => date('Y-m-d H:i:s', strtotime('-1 year'))
|
||
|
|
],
|
||
|
|
];
|
||
|
|
$this->db->table('hostcompara')->insertBatch($hostComParaData);
|
||
|
|
|
||
|
|
// CodingSys - Coding Systems
|
||
|
|
$codingSysData = [
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'ICD10',
|
||
|
|
'FullText' => 'International Classification of Diseases 10th Revision',
|
||
|
|
'Description' => 'Medical diagnosis coding system for diseases and health conditions',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'ICD10PCS',
|
||
|
|
'FullText' => 'ICD-10 Procedure Coding System',
|
||
|
|
'Description' => 'Classification system for inpatient hospital procedures',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'LOINC',
|
||
|
|
'FullText' => 'Logical Observation Identifiers Names and Codes',
|
||
|
|
'Description' => 'Standard for identifying medical laboratory observations',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'SNOMED',
|
||
|
|
'FullText' => 'SNOMED CT',
|
||
|
|
'Description' => 'Systematized Nomenclature of Medicine - Clinical Terms',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'CPT',
|
||
|
|
'FullText' => 'Current Procedural Terminology',
|
||
|
|
'Description' => 'Medical code set for medical procedures and services',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'HCPCS',
|
||
|
|
'FullText' => 'Healthcare Common Procedure Coding System',
|
||
|
|
'Description' => 'Medical code set for equipment, supplies, and services',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'RXNORM',
|
||
|
|
'FullText' => 'RxNorm',
|
||
|
|
'Description' => 'Normalized naming system for medications',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'NDC',
|
||
|
|
'FullText' => 'National Drug Code',
|
||
|
|
'Description' => 'Unique identifier for human drugs in the United States',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'UCUM',
|
||
|
|
'FullText' => 'Unified Code for Units of Measure',
|
||
|
|
'Description' => 'Standard for units of measurement in clinical and scientific contexts',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'CVX',
|
||
|
|
'FullText' => 'Vaccines Administered',
|
||
|
|
'Description' => 'Vaccine codes for immunization records',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => null
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'ICD9',
|
||
|
|
'FullText' => 'International Classification of Diseases 9th Revision',
|
||
|
|
'Description' => 'Legacy medical diagnosis coding system',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => date('Y-m-d H:i:s', strtotime('-2 years'))
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'CodingSysAbb' => 'ICD9CM',
|
||
|
|
'FullText' => 'ICD-9-CM',
|
||
|
|
'Description' => 'Legacy procedure coding system',
|
||
|
|
'CreateDate' => $now,
|
||
|
|
'EndDate' => date('Y-m-d H:i:s', strtotime('-2 years'))
|
||
|
|
],
|
||
|
|
];
|
||
|
|
$this->db->table('codingsys')->insertBatch($codingSysData);
|
||
|
|
}
|
||
|
|
}
|