如何从两个模型显示数据并在视图中减去数据

时间:2019-07-02 16:07:37

标签: php mysql codeigniter

我有2种型号:[销售]和[税收]。

现在,我希望视图显示[sales]和[tax]中的数据,然后将其减去以使其变为:grandtotal = [sales] - [tax]

销售表:

date   : 2019-04-03 
sales  : 200<br/>

税表:

date  : 2019-04-03
tax   : 50<br/>

这是我查看的代码:

<?php if($sales->num_rows() > 0 and $tax->num_rows() > 0  ) { ?>

<?php $no = 1; $total_sales = 0; $total_tax = 0;
    foreach($sales->result() as $p ) {
        foreach($tax->result() as $b )
        { 
            echo date('d F Y', strtotime($p->date and $b ->date))
            Rp. .str_replace(",", ".", number_format($p->total_sales))
            Rp. .str_replace(",", ".", number_format($b->total_tax))

            $total_sales = $total_sales + $p->total_sales;
            $no++;

            $total_tax = $total_tax + $b->total_tax;
            $no++;


            Rp. ".str_replace(",", ".", number_format($total_sales - $total_tax))."
       }
    }
 ?>

错误信息:

  

找不到1970年1月1日至1970年1月1日的数据

0 个答案:

没有答案