本文整理汇总了PHP中Statistics::getTotalValuesByMethodOfPayment方法的典型用法代码示例。如果您正苦于以下问题:PHP Statistics::getTotalValuesByMethodOfPayment方法的具体用法?PHP Statistics::getTotalValuesByMethodOfPayment怎么用?PHP Statistics::getTotalValuesByMethodOfPayment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Statistics
的用法示例。
在下文中一共展示了Statistics::getTotalValuesByMethodOfPayment方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _exportBalancePerMop
/**
*
* @param unknown_type $from
* @param unknown_type $to
*/
private function _exportBalancePerMop($from, $to)
{
$begin_row = $this->_row;
$active_sheet = $this->getDocument()->getActiveSheet();
/* --------------- EXPORTATION OF THE BALANCE PER METHOD OF PAYMENT -----------------*/
$methods_of_payments_values = Statistics::getTotalValuesByMethodOfPayment($from, $to);
/*------------------------------ TITLE -----------------------------*/
$active_sheet->setCellValueByColumnAndRow(0, $this->_row, $this->_translate('Balance per method of payment'));
$active_sheet->mergeCells('A' . $this->_row . ':C' . $this->_row);
$active_sheet->getStyle('A' . $this->_row)->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
$active_sheet->getStyle('A' . $this->_row)->getFont()->setBold(true);
$active_sheet->getStyle('A' . $this->_row)->getFill()->applyFromArray(array('type' => PHPExcel_Style_Fill::FILL_SOLID, 'startcolor' => array('rgb' => '808080'), 'endcolor' => array('rgb' => '808080')));
/*----------------------------- END TITLE ---------------------------*/
$this->nextLine();
/*------------------------------ HEADER -----------------------------*/
$active_sheet->setCellValueByColumnAndRow(0, $this->_row, $this->_translate('Methods of payment'));
$active_sheet->setCellValueByColumnAndRow(1, $this->_row, $this->_translate('Value'));
$active_sheet->setCellValueByColumnAndRow(2, $this->_row, $this->_translate('Percentage'));
$active_sheet->getStyle('A' . $this->_row . ':C' . $this->_row)->getFont()->setBold(true);
$active_sheet->getStyle('B' . $this->_row . ':C' . $this->_row)->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
/*----------------------------- END HEADER ---------------------------*/
$this->nextLine();
/*------------------------------ BODY -----------------------------*/
foreach ($methods_of_payments_values['mop'] as $mop_designation => $mop_value_percentage) {
$active_sheet->setCellValueByColumnAndRow(0, $this->_row, $this->_translate($mop_designation));
$active_sheet->setCellValueByColumnAndRow(1, $this->_row, $mop_value_percentage['value']);
$active_sheet->setCellValueByColumnAndRow(2, $this->_row, $mop_value_percentage['percentage'] . '%');
$active_sheet->getStyle('B' . $this->_row . ':C' . $this->_row)->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
$this->nextLine();
}
/*----------------------------- END BODY ---------------------------*/
/*------------------------------ FOOTER -----------------------------*/
$active_sheet->setCellValueByColumnAndRow(0, $this->_row, $this->_translate('Total'));
$active_sheet->setCellValueByColumnAndRow(1, $this->_row, $methods_of_payments_values['total_value']);
$active_sheet->setCellValueByColumnAndRow(2, $this->_row, '100%');
$active_sheet->getStyle('A' . $this->_row . ':C' . $this->_row)->getFont()->setBold(true);
$active_sheet->getStyle('B' . $this->_row . ':C' . $this->_row)->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
$active_sheet->getStyle('A' . $this->_row . ':C' . $this->_row)->getFill()->applyFromArray(array('type' => PHPExcel_Style_Fill::FILL_SOLID, 'startcolor' => array('rgb' => 'C0C0C0'), 'endcolor' => array('rgb' => 'C0C0C0')));
/*----------------------------- END FOOTER ---------------------------*/
$active_sheet->getStyle('A' . ($begin_row + 1) . ':C' . $this->_row)->applyFromArray(array('borders' => array('allborders' => array('style' => PHPExcel_Style_Border::BORDER_THIN, 'color' => array('argb' => PHPExcel_Style_Color::COLOR_BLACK)))));
}
示例2: executeBalance
/**
*
* @param sfWebRequest $request
*/
public function executeBalance(sfWebRequest $request, $xhr = true)
{
$this->userCulture = $this->getUser()->getCulture();
$from = $request->getParameter('from');
$to = $request->getParameter('to');
$this->from = $from;
$this->to = $to;
$this->xhr = $xhr;
$this->currency_symbol = ImputationDefaultValues::getDefaultCurrencySymbol();
$this->positive_accounts = Statistics::getPositiveAccounts();
$this->negative_accounts = Statistics::getNegativeAccounts();
$total_accounts['value'] = $this->positive_accounts['value'] + $this->negative_accounts['value'];
$total_accounts['number'] = $this->positive_accounts['number'] + $this->negative_accounts['number'];
$this->total_accounts = $total_accounts;
$this->methods_of_payments_values = Statistics::getTotalValuesByMethodOfPayment($from, $to);
$this->acts_values = Statistics::getValuesByAct($from, $to);
}