我有以下mysql结构:记录看起来像这样:
id invoice_id position_name qty price_without_tax tax currency
1 12 Processor I7 2 120.00 23% €
2 12 Processor I5 3 80.00 15% €
3 12 Processor AMD 2 60.00 15% €
4 12 Processor I3 1 60.00 0% €
而且我必须用键对税值求和才能得到类似的东西:
According to VAT rate | Net | Vat Amount | Gross
23% | 240.00 | 55.20 | 295.20
15% | 360.00 | 54.00 | 414.00
0% | 60.00 | 0.00 | 60.00
TOTAL | 660.00 | 109.20 | 769.20
我想通过以下方式下载记录:
$position=mysql_query("SELECT * FROM position where invoice_id = '$id'");
while($row=mysql_fetch_array($position))
{
Sum there
}
但真的不知道如何总结增值税的价值。你能帮我解决这个问题吗?