สอนทำระบบ POS (ระบบขายหน้าร้าน) Ep 28. ส่ง SESSION สินค้าไปเตรียมบันทึกลง Database (ขายสินค้า Part 5)
สอนทำระบบ POS (ระบบขายหน้าร้าน) Ep 28.
สินค้าไปเตรียมบันทึกลง Database
(ขายสินค้า Part 5)
ระบบ บริหารจัดการร้านกาแฟ PHP | FD22-Cafe (Coffee AND Bakery)
ระบบบริหารจัดการ รีสอร์ท | Booking Resort System PHP
CART&POS (ระบบจัดการงานขายหน้าร้านและ ออนไลน์ สำหรับร้านค้าขนาดกลาง,SME)
ระบบ POS (Point of Sale) ระบบขายหน้าร้าน ตัวเต็ม
(มีระบบ BarCode และ QR-Code รองรับเครื่องแสกน)
ตัวอย่างผลงาน FD22 Logistic 2020 ระบบบริหารจัดการขนส่ง
สอนทำระบบ POS (ระบบขายหน้าร้าน) Ep 28. สินค้าไปเตรียมบันทึกลง Database (ขายสินค้า Part 5)
Code ปุ่มส่งค่า
1 |
<input type="button" name="Submit2" value="ทำรายการต่อไป" onclick="window.location='confirm_a.php';" class="btn btn-primary" /> |
Code หน้า confirm_a.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
<?php $menu = "sale"; ?> <?php include("header.php"); ?> <?php echo'<pre>'; print_r($_SESSION); echo'</pre>'; //exit(); error_reporting( error_reporting() & ~E_NOTICE ); session_start(); $mem_id=$_SESSION['mem_id']; $mem_address=$_SESSION['mem_address']; ?> <!-- Content Header (Page header) --> <section class="content-header"> <div class="container-fluid"> <h1>รายการสินค้าที่สั่งซื้อทั้งหมด</h1> </div><!-- /.container-fluid --> </section> <!-- Main content --> <section class="content"> <div class="card card-gray"> <div class="card-header "> <h3 class="card-title">ยืนยันการสั่งซื้อ</h3> </div> <br> <div class="card-body"> <div class="col-md-12"> <div class="container"> <div class="row"> <div class="col-12 col-sm-12 col-md-12"> <form id="frmcart" name="frmcart" method="post" action="saveorder_a.php"> <?php if ($_id != ''){?> <h4>ยืนยันรายการสั่งซื้อ<br> ผู้ซื้อ : <?php echo $row_member['mem_name']; ?> <br/>Address : <?php echo $row_member['mem_address'];?> </h4> <?php }?> <table border="0" align="center" class="table table-hover table-bordered table-striped"> <tr> <td width="5%" align="center">ลำดัยสินค้า</td> <td width="10%" align="center">img</td> <td width="40%" align="center">สินค้า</td> <td width="10%" align="center">ราคา</td> <td width="10%" align="center">จำนวน</td> <td width="15%" align="center">รวม(บาท)</td> </tr> <?php $total=0; if(!empty($_SESSION['cart'])) { foreach($_SESSION['cart'] as $p_id=>$qty) { $sql = "SELECT * FROM tbl_product where p_id=$p_id"; $query = mysqli_query($condb, $sql); $row = mysqli_fetch_array($query); $sum = $row['p_price'] * $qty;//เอาราคาสินค้ามา * จำนวนในตระกร้า $total += $sum; //ราคารวม ทั้ง ตระกร้า echo "<tr>"; echo "<td>" . $i+=1 . "</td>"; echo "<td>"."<img src='../p_img/".$row['p_img']."' width='100%'>"."</td>"; echo "<td>" . $row["p_name"] ."<br>" ."สต๊อก " .$row['p_qty'] ." รายการ" . "</td>"; echo "<td align='right'>" .number_format($row["p_price"],2) . "</td>"; echo "<td align='right'>"; $pqty = $row['p_qty'];//ประกาศตัวแปรจำนวนสินค้าใน stock echo "<input type='number' name='amount[$p_id]' value='$qty' size='2'class='form-control' min='0'max='$pqty' readonly/></td>"; echo "<td align='right'>".number_format($sum,2)."</td>"; //remove product } echo "<tr>"; echo "<td></td>"; echo "<td></td>"; echo "<td></td>"; echo "<td align='center'><b>ราคารวม</b></td>"; echo "<td align='right'colspan='2'>"."<b>".number_format($total,2)."</b>"."</td>"; echo "</tr>"; } ?> </table> </form> </div> </div> </div> </div> </div> <div class="card-footer"> </div> </section> <!-- /.content --> <?php include('footer.php'); ?> <script> $(function () { $(".datatable").DataTable(); // $('#example2').DataTable({ // "paging": true, // "lengthChange": false, // "searching": false, // "ordering": true, // "info": true, // "autoWidth": false, // http://fordev22.com/ // }); }); </script> </body> </html> |