Created
November 9, 2016 09:03
-
-
Save hendrasyp/d4e2b16df6eda6dae3a6336cb973ed58 to your computer and use it in GitHub Desktop.
Short Code PHP - jQuery untuk operasi master detail (Kasus POS / Transaksi)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
<?php | |
if (isset($_POST["tombol"])) { | |
$head = $_POST["head"]; | |
$detail = $_POST["item"]; | |
echo "Head Looping Foreach <br/>"; | |
foreach ($head as $k => $v) { | |
echo $k . " = " . $v . "<br/>"; | |
} | |
echo "<hr/>Head Tanpa Looping <br/>"; | |
echo "Nomor Faktur : " . $head["nofaktur"] . "<br/>"; | |
echo "Nama Kasir : " . $head["namakasir"] . "<br/><br/>"; | |
$items = array(); | |
for ($i = 0; $i < sizeof($detail['code']); $i++) { | |
array_push($items, array( | |
"No Faktur" => $head['nofaktur'], | |
"Kode Item" => $detail['code'][$i], | |
"Quantity" => $detail['qty'][$i] | |
)); | |
} | |
echo "<pre>"; | |
print_r($items); | |
echo "</pre>"; | |
} | |
?> | |
<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post"> | |
<table> | |
<tr> | |
<td>No </td> | |
<td>: <input type="text" name="head[nofaktur]" value="xxx-103-001" readonly></td> | |
</tr> | |
<tr> | |
<td>Nama Kasir </td> | |
<td>: <input type="text" name="head[namakasir]" value="Suhendra" readonly></td> | |
</tr> | |
<tr> | |
<td>Tanggal </td> | |
<td>: <?php echo date("d, M Y"); ?></td> | |
</tr> | |
</table> | |
<hr/> | |
<table width ="50%"> | |
<tr> | |
<th><input placeholder="Code" type="text" class="span1" name="itemcode" id="itemcode"/></th> | |
<th><input placeholder="Item Name" type="text" class="span3" name="itemname" id="itemname"/></th> | |
<th><input placeholder="Price" type="text" class="span2" name="itemprice" id="itemprice"/></th> | |
<th><input placeholder="Qty" type="text" class="span2" name="itemqty" id="itemqty"/></th> | |
<th>Action</th> | |
</tr> | |
<tbody id="itemlist"> | |
<tr> | |
<td><input rel="itemid" type="hidden" name="item[code][]" value="ITEM001">ITEM001</td> | |
<td>Item 1</td> | |
<td><input type="text" class="span2" name="item[price][]" value="5000"></td> | |
<td><input type="text" class="span2" name="item[qty][]" value="10"></td> | |
<td><a href="javascript:void(0);" id="hapus">Remove</a></td> | |
</tr> | |
<tr> | |
<td><input type="hidden" name="item[code][]" value="ITEM002">ITEM002</td> | |
<td>Item 1</td> | |
<td><input type="text" class="span2" name="item[price][]" value="10000"></td> | |
<td><input type="text" class="span2" name="item[qty][]" value="10"></td> | |
<td><a href="javascript:void(0);" id="hapus">Remove</a></td> | |
</tr> | |
</tbody> | |
</table> | |
<input type="submit" name="tombol" value="Save"/> | |
</form> | |
<script type="text/javascript" src="jquery.1.8.js"></script> | |
<script type="text/javascript"> | |
$('#itemqty').on('keypress', function (e) { | |
if (e.keyCode == 13) { | |
$('#itemcode').focus(); | |
} | |
}); | |
$('#itemname').on('keypress', function (e) { | |
if (e.keyCode == 13) { | |
$('#itemprice').focus(); | |
} | |
}); | |
$('#itemprice').on('keypress', function (e) { | |
if (e.keyCode == 13) { | |
$('#itemqty').focus(); | |
} | |
}); | |
function clear() { | |
$("#itemcode").val(""); | |
$("#itemname").val(""); | |
$("#itemprice").val(""); | |
$("#itemqty").val(""); | |
} | |
$("tbody#itemlist").on("click", "#hapus", function () { | |
$(this).parent().parent().remove(); | |
}); | |
$('#itemqty').on('keypress', function (e) { | |
if (e.keyCode == 13) { | |
e.preventDefault(); | |
var itemcode = $("#itemcode").val(); | |
var itemname = $("#itemname").val(); | |
var itemprice = $("#itemprice").val(); | |
var itemqty = $("#itemqty").val(); | |
var items = ""; | |
items += "<tr>"; | |
items += "<td><input type='hidden' name='item[code][]' value='" + itemcode + "'>" + itemcode + "</td>"; | |
items += "<td>" + itemname + "</td>"; | |
items += "<td><input type='text' class='span2' name='item[price][]' value='" + itemprice + "'></td>"; | |
items += "<td><input type='text' class='span2' name='item[qty][]' value='" + itemqty + "'></td>"; | |
items += "<td><a href='javascript:void(0);' id='hapus'>Remove</a></td>"; | |
items += "</tr>"; | |
if ($("tbody#itemlist tr").length == 0) | |
{ | |
$("#itemlist").append(items); | |
clear(); | |
} else { | |
var callback = checkList(itemcode); | |
if (callback === true) { | |
$("#itemlist").append(items); | |
clear(); | |
return false; | |
} | |
} | |
} | |
}); | |
function checkList(val) { | |
var cb = true; | |
console.log($(itemcode).val()); | |
$("#itemlist tr").each(function (index) { | |
var input = $(this).find("input[type='hidden']:first"); | |
if (input.val() == $(itemcode).val()) { | |
cb = false; | |
} | |
}); | |
return cb; | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment