0

我有一个小问题要获得正确的发票总额。

我有 sql 表

unit_price decimal(25,2)
vat varchar(55)
total_novat decimal(25,2)
total_vat decimal(25,2)
grand_total decimal(25,2)

获取值的 php 脚本是:

$discount = 2
$total_novat += qty * unit_price / discount
$total_vat = qty * vat / 100
$grand_total = total_novat + total_vat

很好,现在如果我制作这个简单的脚本,值的结果是:

unit_price: 1 * 241.14 / 2 = 120.57
total_novat: 120.57 * 24 / 100 = 28.94
grand_total: 120.57 + 28.94 = 149.51

问题是,当我将此代码放入 php 时,结果是 149.50 而不是 149.51

任何帮助表示赞赏。

执行计算的完整脚本:

<?php
$inv_total_no_tax = 0;

                for($i=1; $i<=TOTAL_ROWS; $i++){
                    if( $this->input->post($quantity.$i) && $this->input->post($product.$i) && $this->input->post($unit_price.$i) && $this->input->post($discount.$i) ) {

                        $tax_id = $this->input->post($tax_rate.$i);
                        $tax_details = $this->sales_model->getTaxRateByID($tax_id);
                        $taxRate = $tax_details->rate;
                        $taxType = $tax_details->type;  
                        $tax_rate_id[] = $tax_id;               

                        $inv_quantity[] = $this->input->post($quantity.$i);
                        $inv_product_code[] = $this->input->post($product.$i);
                        $inv_unit_price[] = $this->input->post($unit_price.$i) / $this->input->post($discount.$i);
                        $inv_unit_discount[] = $this->input->post($discount.$i);
                        $inv_gross_total[] = (($this->input->post($quantity.$i)) * ($this->input->post($unit_price.$i)) / ($this->input->post($discount.$i)));

                        if($taxType = 1) {
                        $val_tax[] = (($this->input->post($quantity.$i)) * ($this->input->post($unit_price.$i)) / ($this->input->post($discount.$i)) * $taxRate / 100);
                        } else {
                        $val_tax[] = $taxRate;
                        }

                        if($taxType = 1) { $tax[] = $taxRate."%"; } else { $tax[] = $taxRate;  }

                        $inv_total_no_tax += (($this->input->post($quantity.$i)) * ($this->input->post($unit_price.$i)) / ($this->input->post($discount.$i)));

                    }
                }

                 $total_tax = array_sum($val_tax);
                 $total = $inv_total_no_tax + $total_tax;

php脚本中的圆形选项我将十进制mysql更改为varchar。

if i use $total = round($inv_total_no_tax + $total_tax, 2); the result is: 149.5
if i use $total = round($inv_total_no_tax + $total_tax, 3); the result is: 149.501

解决方案:

在将它介绍给 mysql 之前,我已经应用了这个字符串。

number_format($value, 2, null, '');
4

2 回答 2

2

问题在于您在示例计算中所做的假设

unit_price: 1 * 241.14 / 2 = 120.57
total_novat: 120.57 * 24 / 100 = 28.94
grand_total: 120.57 + 28.94 = 149.51

如果在不四舍五入的情况下对其进行处理,它将如下所示(这是您的 php 代码中发生的情况):

unit_price: 1 * 241.14 / 2 = 120.57
total_novat: 120.57 * 24 / 100 = 28.9368
grand_total: 120.57 + 28.9368 = 149.5068

如果将此值149.5068插入到 mysql 中,它将被存储为149.50(如果存储在十进制列中,mysql 将截断而不是舍入附加数字)。相反,您需要对最终计算进行四舍五入,以便最终值为149.51

于 2013-01-14T20:50:32.977 回答
0

而不是小数(25,2)尝试小数(25,3),然后在完成所有计算后将您的数字四舍五入。这将使您的小数更准确。通常最好存储尽可能准确的数字,然后在完成所有计算后对其进行格式化。

于 2013-01-14T20:39:26.850 回答