findAllは非推奨になったため、find allで。
category4 = '1万通貨' の抽出条件で取得したい場合は、
conditions に配列を入れる必要がある。
$conditions = array(
'conditions' => array(
'SpecValue.spec_category4' => '1万通貨',
),
'order' => 'SpecValue.id ASC',
'limit' => 8,
'fields' => array(
'SpecValue.id',
'SpecValue.company',
),
);
$this->set('spec_values_category', $this->SpecValue->find('all', $conditions));