X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_company.php;h=a5b5169664e7016ac87f057e9467ab9879cb0486;hb=ef46d9bc89c79c44436dae90698ae73f1a2dac4b;hp=b9136290a9b06b10f53df3595d5d1a3d07e53c90;hpb=8357fdc6e352f0b55720f0204a5e22d2b1ccdb3c;p=Pman.Core diff --git a/DataObjects/Core_company.php b/DataObjects/Core_company.php index b9136290..a5b51696 100644 --- a/DataObjects/Core_company.php +++ b/DataObjects/Core_company.php @@ -40,7 +40,8 @@ class Pman_Core_DataObjects_Core_Company extends DB_DataObject function applyFilters($q, $au) { - $tn = $this->tableName(); + + $tn = $this->tableName(); $this->selectAdd("i18n_translate('c' , {$tn}.country, 'en') as country_display_name "); $tn = $this->tableName(); @@ -48,7 +49,7 @@ class Pman_Core_DataObjects_Core_Company extends DB_DataObject $x = DB_DataObject::factory('core_company'); $x->comptype= 'OWNER'; $x->find(true); - + if (!empty($q['query']['company_project_id'])) { $add = ''; if (!empty($q['query']['company_include_self'])) { @@ -57,6 +58,7 @@ class Pman_Core_DataObjects_Core_Company extends DB_DataObject if (!empty($q['query']['company_not_self'])) { $add = " AND {$tn}.id != {$x->id}"; } + $pids = array(); $pid = $q['query']['company_project_id']; if (strpos($pid, ',')) { @@ -102,8 +104,8 @@ class Pman_Core_DataObjects_Core_Company extends DB_DataObject ) as comptype_display_name "); - if(!empty($q['search']['name'])){ - $s = $this->escape($q['search']['name']); + if(!empty($q['query']['name'])){ + $s = $this->escape($q['query']['name']); $this->whereAdd(" {$tn}.name LIKE '%$s%' "); @@ -121,7 +123,9 @@ class Pman_Core_DataObjects_Core_Company extends DB_DataObject } // ---------- AUTHENTICATION - function isAuth() + // not sure where authetnication via company is used?? posibly media-outreach + + function isAuth() { $db = $this->getDatabaseConnection(); $sesPrefix = $db->dsn['database']; @@ -255,6 +259,16 @@ class Pman_Core_DataObjects_Core_Company extends DB_DataObject function beforeUpdate($old, $q,$roo) { + + if(!empty($q['_flag_delete']) && $q['_flag_delete'] * 1 == 1){ + $this->deleted_dt = $this->sqlValue("NOW()"); + $this->deleted_by = $roo->getAuthUser()->id; + } + + if(!empty($q['_flag_undelete']) && $q['_flag_undelete'] * 1 == 1){ + $this->deleted_dt = ""; + $this->deleted_by = 0; + } if(!empty($q['_check_name'])){ if($this->checkName()){ $roo->jok('OK'); @@ -276,12 +290,18 @@ class Pman_Core_DataObjects_Core_Company extends DB_DataObject function beforeDelete($req, $roo) { + // should check for members.... if(!empty($this->is_system) && ($old->code != $this->code || $old->name != $this->name) ){ $roo->jerr('This company is not allow to delete'); } + + + } + function onDelete($req, $roo) + { $img = DB_DataObject::factory('Images'); $img->ontable = $this->tableName(); $img->onid = $this->id; @@ -305,7 +325,7 @@ class Pman_Core_DataObjects_Core_Company extends DB_DataObject return true; } - + print_r($au->company()->comptype);exit; if ($au->company()->comptype != 'OWNER') { @@ -446,7 +466,7 @@ class Pman_Core_DataObjects_Core_Company extends DB_DataObject { $affects = array(); - $all_links = method_exists($this, 'databaseLinks') ? $x->databaseLinks() : $GLOBALS['_DB_DATAOBJECT']['LINKS'][$this->_database]; + $all_links = $this->databaseLinks(); foreach($all_links as $tbl => $links) { foreach($links as $col => $totbl_col) {