我有一些数据来自我的DB模型。我想做的是得到付款总额-总额,然后乘以增值税(0.20)
我猜我需要找个地方做个圈圈 但不太确定在哪里?
我对控制器的代码是:
function vat_list()
{
if(isset($_POST[ search_date ]))
{
$search_date = $this->input->post( search_date , TRUE);
}
else
{
$search_date = date( D j M Y , strtotime( today - 7 days )) . to . date( D j M Y );
}
$my_result_data = $this->Invoices_model->read_vat($this->viewinguser->BUSINESSES_id, $search_date);
$my_results = $my_result_data->result();
$vat_total = $my_results[0]->PAYMENTS_total;
$vat_total = number_format($my_results[0]->PAYMENTS_total, 2, . , ) * 0.20;
$this->template->set( title , View VAT Reports );
$this->template->set( subtitle , $search_date);
$this->template->set( vat_items , $my_results);
$this->template->set( vat_total , $vat_total);
$this->template->build( accounts/invoices/vat_list );
}
谢谢 谢谢