|
Our History
|
|
2005 |
|
✔ Alliance Group Holding was established
✔ National Credit Information Bureau (NCIB) joined the Group as one of its first subsidiaries
✔ Alliance Group Microfinance Organization was established
|
|
2006 |
|
✔ Two more subsidiaries added to the group - Alliance Group Capital and Alliance Group Leasing
|
|
2009 |
|
✔ Kutaisi service center opened offering micro loans to local inhabitants
|
|
2010
|
|
✔ Zugdidi service center opened for micro loans
✔ Alliance Group Leasing signed Development Credit Authority (DCA) Guarantee Commitment Agreement with USAID
|
|
2011
|
|
✔ Two additional subsidiaries established – Alliance Group Property and Alliance Energy
✔ Two service centers opened in the regions – in Batumi and Tsalka
✔ Alliance Group Microfinance Organization and Alliance Group Leasing received an International Certificate for Quality Management Standard – ISO 9001
|
|
2012 |
|
✔ Alliance Group Microfinance Organization and Alliance Group Leasing successfully passed the re-certification process for Quality Management Standard – ISO 9001
✔ All services of the Group are offered in all five regional service-centers throughout Georgia
|
|
2013 |
|
✔ Alliance Energy founded a new subsidiary “Alliance Energy Trading”;
✔ NCIB has established a subsidiary company, JSC Business Information Agency (BIA), which manages the largest and continuously updated business information database;
✔ Business Information Agency (BIA) became a full member of the Business Information Industry Association (BIIA);
✔ ISO-9001 second control audit successfully completed at Alliance Group Holding subsidiaries;
✔ Fund Ardza gets a status of charitable organization;
|
|
2014 |
|
✔ Alliance Group Leasing new service centre opened in Rustavi;
✔ United Nations Development Programme (UNDP) in Georgia organized Gender Equality Awards and awarded Alliance Group with the Grand Award for Gender Equality due to its best gender sensitive policies;
✔ list of innovative and unique projects has been expanded by a brand new project BRating (www.brating.ge).
|
|
|
Contacts
Alliance Group Holding JSC.
Address: 8a P.Melikishvili str.,
Tbilisi, 0179 Georgia
Tel: (+995 32) 242 41 81
Fax: (+995 32) 299 81 12
Email: info@agh.ge
if (!isset($gCms)) exit;
global $hl;
$getNews = "SELECT n.*, nc.`name`
FROM `news` n
INNER JOIN `news_cat` nc ON (n.`cat` = nc.`id` AND nc.`status` = 1 AND nc.`name` = 'news')
WHERE n.`status` = 1
ORDER BY n.`date` DESC, n.`id` DESC LIMIT 3";
$getNewsResults = $db->Execute($getNews) or die();
$news_entry = array();
if($getNewsResults->NumRows() > 0){
while($getNewsResults && $row = $getNewsResults->FetchRow()){
$news_data = new stdClass();
$news_data->title = $row['title_'.$hl];
$text = strip_tags($row['text_'.$hl]);
$string_limit = 100;
if(mb_strlen($text, 'utf-8') > $string_limit)
{
$pos = mb_strpos($text, ' ', $string_limit, 'utf-8');
$text = mb_substr($text, 0, ($pos ? $pos : $string_limit), 'utf-8').'...';
}
$news_data->text = $text;
$time = strtotime($row['date']);
$news_data->date = date('d/m/Y', $time);
$news_data->url = gen_url($hl.'/news/'.$row['id'].'/'.pretty_url($news_data->title));
$news_entry[] = $news_data;
}
}
$this->smarty->assign_by_ref('news_data', $news_entry);
$this->smarty->assign('title',$this->Lang('friendlyname'));
$this->smarty->assign('view_all',' '.$this->Lang('view_all').'');
echo $this->ProcessTemplate('view_random.tpl');
|