You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

76 lines
2.7 KiB

<?php
class C_InsuranceCompany extends Controller
{
var $template_mod;
var $icompanies;
var $InsuranceCompany;
public function __construct($template_mod = "general")
{
parent::__construct();
$this->icompanies = array();
$this->template_mod = $template_mod;
$this->template_dir = __DIR__ . "/templates/insurance_companies/";
$this->assign("FORM_ACTION", $GLOBALS['webroot'] . "/controller.php?" . attr($_SERVER['QUERY_STRING']));
$this->assign("CURRENT_ACTION", $GLOBALS['webroot'] . "/controller.php?" . "practice_settings&insurance_company&");
$this->assign("STYLE", $GLOBALS['style']);
$this->assign("SUPPORT_ENCOUNTER_CLAIMS", $GLOBALS['support_encounter_claims']);
$this->assign("SUPPORT_ELIGIBILITY_REQUESTS", $GLOBALS['enable_oa']);
$this->InsuranceCompany = new InsuranceCompany();
}
public function default_action()
{
return $this->list_action();
}
public function edit_action($id = "", $patient_id = "", $p_obj = null)
{
if ($p_obj != null && get_class($p_obj) == "insurancecompany") {
$this->icompanies[0] = $p_obj;
} elseif (empty($this->icompanies[0]) || $this->icompanies[0] == null || get_class($this->icompanies[0]) != "insurancecompany") {
$this->icompanies[0] = new InsuranceCompany($id);
}
$x = new X12Partner();
$this->assign("x12_partners", $x->_utility_array($x->x12_partner_factory()));
$this->assign("insurancecompany", $this->icompanies[0]);
return $this->fetch($GLOBALS['template_dir'] . "insurance_companies/" . $this->template_mod . "_edit.html");
}
public function list_action($sort = "")
{
if (!empty($sort)) {
$this->assign("icompanies", $this->InsuranceCompany->insurance_companies_factory("", $sort));
} else {
$this->assign("icompanies", $this->InsuranceCompany->insurance_companies_factory());
}
return $this->fetch($GLOBALS['template_dir'] . "insurance_companies/" . $this->template_mod . "_list.html");
}
public function edit_action_process()
{
if ($_POST['process'] != "true") {
return;
}
if (is_numeric($_POST['id'])) {
$this->icompanies[0] = new InsuranceCompany($_POST['id']);
} else {
$this->icompanies[0] = new InsuranceCompany();
}
self::populate_object($this->icompanies[0]);
$this->icompanies[0]->persist();
$this->icompanies[0]->populate();
$_POST['process'] = "";
header('Location:' . $GLOBALS['webroot'] . "/controller.php?" . "practice_settings&insurance_company&action=list");//Z&H
}
}