|
|
|
การคำนวณภาษี ไม่ตรงเพราะอะไรครับ ไม่เข้าใจเกี่ยวสูตรหรือเปล่า |
|
|
|
|
|
|
|
ผมทำสูตรคำนวณภาษี ได้แต่ไม่ได้ค่าแค่ 1 เพราะอะไร
Code (PHP)
// ผลรวม ทั้งมหด
$total6= number_format($total4,2,'.',',');
// นำผลรวมมาคิดภาษี
$vat4= number_format($total4*7/100,2,'.',',');
//จำนวนเงินสุทธิ Net Total
$totalreal=number_format($total4+$vat4,2,'.',',');
จริงๆ ต้องได้
21187.49
Tag : PHP
|
ประวัติการแก้ไข 2015-04-06 16:22:06
|
|
|
|
|
Date :
2015-04-06 16:20:38 |
By :
chayaphol |
View :
1648 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ผลรวม ทั้งมหด
$total6= number_format($total4,2,'.',',');
// นำผลรวมมาคิดภาษี
$vat4= number_format($tmp=($total4*7/100),2,'.',',');
//จำนวนเงินสุทธิ Net Total
$totalreal=number_format($total4+$tmp,2,'.',',');
$total4 + '1,386.10' = $total4 + 1
|
ประวัติการแก้ไข 2015-04-06 17:15:52
|
|
|
|
Date :
2015-04-06 16:35:56 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ผลรวม ทั้งมหด
$total6= number_format($total4,2,'.',',');
// นำผลรวมมาคิดภาษี
$vat4= number_format($total4*7/100,2,'.',',');
//จำนวนเงินสุทธิ Net Total
$totalreal=number_format($total4+$vat4,2,'.',',');
เขียนให้เข้าใจง่ายๆ
$total = $total4;
$vat = ($total*7/)100;
$net = $total+$vat;
number_format ไว้สำหรับแสดงรูปแบบครับ
|
|
|
|
|
Date :
2015-04-06 16:58:46 |
By :
mee079 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|