mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-18 04:29:28 +00:00
765b26a439
- added issue inserts (fehlerupdate.php), included them in checksystem - added getAufenthaltsdauer method to Bisio_model.php - Add column parameterFuerBehebung to system.tbl_issue
28 lines
715 B
PHP
Executable File
28 lines
715 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Job for resolving core issues
|
|
*/
|
|
class IssueResolver extends IssueResolver_Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// set fehler codes which can be resolved by the job
|
|
$this->_codeLibMappings = array(
|
|
'CORE_ZGV_0001' => 'CORE_ZGV_0001',
|
|
'CORE_ZGV_0002' => 'CORE_ZGV_0002',
|
|
'CORE_ZGV_0003' => 'CORE_ZGV_0003',
|
|
'CORE_ZGV_0004' => 'CORE_ZGV_0004',
|
|
'CORE_ZGV_0005' => 'CORE_ZGV_0005',
|
|
'CORE_INOUT_0001' => 'CORE_INOUT_0001',
|
|
'CORE_INOUT_0002' => 'CORE_INOUT_0002',
|
|
'CORE_INOUT_0003' => 'CORE_INOUT_0003',
|
|
'CORE_INOUT_0004' => 'CORE_INOUT_0004',
|
|
'CORE_INOUT_0005' => 'CORE_INOUT_0005',
|
|
'CORE_INOUT_0006' => 'CORE_INOUT_0006'
|
|
);
|
|
}
|
|
}
|