cmc-sales/app/models/principle.php
2013-03-23 16:25:52 +11:00

84 lines
2.1 KiB
PHP
Executable file

<?php
class Principle extends AppModel {
var $name = 'Principle';
var $recursive = 0;
var $order = 'Principle.name ASC';
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'Country' => array('className' => 'Country',
'foreignKey' => 'country_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
'Currency' => array('className' => 'Currency',
'foreignKey' => 'currency_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
var $hasMany = array(
'Enquiry' => array('className' => 'Enquiry',
'foreignKey' => 'principle_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
),
'Product' => array('className' => 'Product',
'foreignKey' => 'principle_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
),
'PrincipleAddress' => array('className' => 'PrincipleAddress',
'foreignKey' => 'principle_id'
),
'PrincipleContact' => array('className' => 'Users',
'foreignKey' => 'principle_id'
),
);
function getCityCountryList() {
$principles = $this->find('all', array('recursive'=>1));
$search = array('{company}','{city}','{country}');
$phrase = "Ex Works Incoterms 2010 ({company}, {city}, {country})";
$list = array();
foreach($principles as $principle) {
$replace = array($principle['Principle']['name'], $principle['Principle']['city'], $principle['Country']['name']);
$newPhrase = str_replace($search, $replace, $phrase);
$list[$newPhrase] = $newPhrase;
}
return $list;
}
}
?>