Как я могу получить данные из поля SUM(total)
?Следующий код не выдает значение в sum_tot
:
$bill_receipts = $this->BanquetBillMaster->find('all',
array('conditions' => array('status' => 2),
'fields' => array('id', 'total',
'(SUM(total)) AS sum_tot','booking_master_id'),
'group' => 'booking_master_id',
'contain' => false));
foreach($bill_receipts as $aa)
{
echo $aa['BanquetBillMaster']['sum_tot'];
}