อยากสอบถามเรื่อง เมื่อทำการ GROUP ข้อมูลแล้วลบข้อมูลที่เรียงจาก ID ที่น้อยกว่า ให้ = 0 แล้วค่อยลบค่าที่่มี ID มากกว่า
Please show us sample table, data (Database design) and your effort(PHP) first. Otherwise, just hire someone for job.
Date :
2021-06-06 12:02:31
By :
TheGreatGod_of_Death
โค้ดตอนนี้ผมยังไม่ทราบหลักการจริงๆผมไม่สามารถ Group ใบเสร็จได้ เพราะเนื่องจากผมยัง งง ว่าต้องใช้วิธีการไหน ในวิธีการออกแบบ Database
ตอนนี้ผมสามารถจ่ายแยกบิลได้ แต่ผมยังไม่สามารถเอาบิลเก่าและใหม่มารวมกัน แล้วเวลาจ่ายไม่สามารถ นำค่าที่จ่ายมาหักลบกับค่าที่ติด
Date :
2021-06-06 14:34:10
By :
love0882317703
No not front-end, I did mean backend (just sample data would be enough, no need to provide a real one).
According to Front-end , I just need to know the last results from subtraction process (please provide one by one step).
Date :
2021-06-06 15:28:43
By :
TheGreatGod_of_Death
if (isset($_REQUEST['testclick'])) {
$test1 = $_REQUEST['txt_id']; /** เลข id ของใบแจ้งหนี้
$test2 = $_REQUEST['txt_name']; /** ชื่อ
$test6 = $_REQUEST['txt_meter']; /** หมายเลขมิเตอร์
$test3 = $_REQUEST['txt_befor']; /**จำนวนที่ต้องชำระ
$test4 = $_REQUEST['txt_after']; /**คือจำนวนที่จ่าย
$test5 = $_REQUEST['dateaa']; /** วันที่
$test7 = $_REQUEST['txt_unit']; /** จำนวนที่ใช้น้ำ
$test8 = $_REQUEST['txt_1']; /**จำนวนใช้น้ำครั้งก่อน
$test9 = $_REQUEST['txt_2']; /** จำนวนใช้น้ำครั้งหลัง
$prosess = $test3- $test4; /** process= ผลลัพธ์ $test3คือจำนวนที่ต้องชำระ $test4 คือจำนวนที่จ่าย
if ($prosess != 0) { /**เมื่อ process ไม่เท่ากับ 0
$update_stmt1 = $db->prepare("UPDATE invoice SET totalcost = :totalcost where invoice_id = :invoice_id");
$update_stmt1->bindParam(':invoice_id', $test1);
$update_stmt1->bindParam(':totalcost', $prosess);
$update_stmt1->execute(); /** อัพเดทค่าที่ต้องชำระที่เหลือในใบเสร็จ = process
$select_aaa = $db->prepare("SELECT * FROM receipt where invoice_id = :invoice_id");
$insert_receip = $db->prepare("INSERT INTO receipt (invoice_id, indate, unit, id_meter, totalcost, nameadmin,unit_bef,unit_process,pay,arrears) VALUES (:invoice_id, :indate, :unit, :id_meter, :totalcost, :nameadmin, :unit_bef, :unit_process, :pay , :arrears)");
$insert_receip->bindParam(':invoice_id', $test1);
$insert_receip->bindParam(':indate', $strDate);
$insert_receip->bindParam(':unit', $test9);
$insert_receip->bindParam(':unit_bef', $test8);
$insert_receip->bindParam(':unit_process', $test7);
$insert_receip->bindParam(':id_meter', $test6);
$insert_receip->bindParam(':totalcost', $test3);
$insert_receip->bindParam(':pay', $test4);
$insert_receip->bindParam(':arrears', $prosess); /** Insert ค่าลงไปในใบเสร็จรับชำระเงิน
code นี้คือโค้ดที่ใช้ในการเพิ่ม และลบจำนวนที่ต้องชำระเงิน แต่ถ้าเกิดเหตุการณ์ เมื่อค้างชำระ ผมต้องการให้ใบแจ้งหนี้ที่ยังค้างชำระ และเมื่อ ได้รับในเสร็จใบใหม่ อยากจะให้รวมค่าลงไป และเมื่อรับชำระเงิน ผมต้องการให้ มันหักจำนวนที่ต้องชำระจากใบแจ้งหนี้ใบเก่าก่อน แล้วถึงค่อยมาหักใบแจ้งหนี้ใบใหม่
Date :
2021-06-06 18:44:46
By :
love0882317703
Load balance : Server 05