387 lines
10 KiB
PHP
387 lines
10 KiB
PHP
<?php session_start(); ?>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
|
|
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
|
|
<head>
|
|
|
|
<?php
|
|
include("../link.php");
|
|
|
|
if(isset($_SESSION["inventorytotal"]))
|
|
{
|
|
unset($_SESSION["inventorytotal"]);
|
|
}
|
|
|
|
?>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="dashboard-main-wrapper">
|
|
|
|
|
|
<?php
|
|
|
|
include("../header.php");
|
|
|
|
?>
|
|
|
|
<?php
|
|
|
|
include("../nav.php");
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="dashboard-wrapper">
|
|
<div class="dashboard-ecommerce">
|
|
<div class="container-fluid dashboard-content ">
|
|
|
|
<div class="row">
|
|
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
|
|
<div class="page-header">
|
|
<h2 class="pageheader-title">Update Inventory</h2>
|
|
<div class="page-breadcrumb">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="index.php" class="breadcrumb-link">Dashboard</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">Update Inventory</li>
|
|
</ol>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ecommerce-widget">
|
|
<div class="row">
|
|
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
|
|
<div class="card">
|
|
|
|
<h3 class="card-header text-center">Update Inventory</h3>
|
|
<div class="card-body" id="new_inventory">
|
|
|
|
|
|
<?php
|
|
$cusupid=$_GET['cusupid'];
|
|
$selectcuscc="SELECT * FROM `inventory` WHERE inventoryid='$cusupid'";
|
|
$run_cc=mysqli_query($conn,$selectcuscc);
|
|
$row_inventory=mysqli_fetch_array($run_cc);
|
|
?>
|
|
|
|
|
|
<form id="updateinventoryform" method="post">
|
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-md-6 col-lg-6 text-left">
|
|
<div class="row">
|
|
<label class="col-12 col-lg-3 col-form-label">Invoice No</label>
|
|
<div class="col-12 col-sm-9 col-lg-9">
|
|
<input type="text" placeholder="Invoice No" class="form-control" id="inventory_invoice_no" value="<?php echo $row_inventory['inventoryinvoiceno']; ?>">
|
|
|
|
<input type="hidden" class="form-control" id="inventoryupdateid" value="<?php echo $cusupid; ?>">
|
|
|
|
<p id="displayinvoice_no" class="errormessage"></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-6 col-lg-6 text-left">
|
|
<div class="row">
|
|
<label class="col-12 col-lg-3 col-form-label">Supplier No</label>
|
|
<div class="col-12 col-sm-9 col-lg-9">
|
|
<input list="supplier_num" type="text" placeholder="Supplier No" class="form-control changelocalsupliernum" id="inventorysupliercode" value="<?php echo $row_inventory['inventorysupliernum']; ?>">
|
|
<datalist id="supplier_num">
|
|
<?php
|
|
$selectsubli="SELECT * FROM `suplier` WHERE date BETWEEN '$startdate' AND '$enddate'";
|
|
$run_subli=mysqli_query($conn,$selectsubli);
|
|
$row_count=mysqli_num_rows($run_subli);
|
|
while($row_subli=mysqli_fetch_array($run_subli))
|
|
{
|
|
$supplier_num=$row_subli['code'];
|
|
?>
|
|
<option value="<?php echo $supplier_num; ?>"></option>
|
|
<?php
|
|
}
|
|
?>
|
|
</datalist>
|
|
|
|
<p id="displayinvoice_no" class="errormessage"></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-md-6 col-lg-6 text-left">
|
|
<div class="row">
|
|
<label class="col-12 col-lg-3 col-form-label">Inventory Date</label>
|
|
<div class="col-12 col-sm-9 col-lg-9">
|
|
<?php
|
|
$date=$row_inventory['inventorydate'];
|
|
?>
|
|
<input type="date" placeholder="Inventory Date" class="form-control changelogalinv" id="inven_date" value="<?php echo $date; ?>">
|
|
<p id="displayinvoice_no" class="errormessage"></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-6 col-lg-6 text-left">
|
|
<div class="row">
|
|
<label class="col-12 col-lg-3 col-form-label">Supplier Name</label>
|
|
<div class="col-12 col-sm-9 col-lg-9">
|
|
<input type="text" placeholder="Supplier Name" class="form-control" id="inventorysupliername" >
|
|
<p id="displayinvoice_no" class="errormessage"></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Part No</th>
|
|
<th>Part Description</th>
|
|
<th>Unit</th>
|
|
<th>Unittype</th>
|
|
<th>Category</th>
|
|
<th>Price</th>
|
|
<th>Selling Price</th>
|
|
<th>Gst</th>
|
|
<th>Qty</th>
|
|
<th>HSN</th>
|
|
<th>Total</th>
|
|
<th>Cancel</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody id="dynamic_field">
|
|
|
|
|
|
|
|
<datalist id="part_code">
|
|
<?php
|
|
$selectpart_name="SELECT * FROM `productdetails` WHERE date BETWEEN '$startdate' AND '$enddate'";
|
|
$run_query=mysqli_query($conn,$selectpart_name);
|
|
$row_count=mysqli_num_rows($run_query);
|
|
while($row_part_name=mysqli_fetch_array($run_query))
|
|
{
|
|
$pro_codee=$row_part_name['code'];
|
|
$pro_id=$row_part_name['id'];
|
|
?>
|
|
<option value="<?php echo $pro_codee; ?>" data-proid="<?php echo $pro_id; ?>">
|
|
</option>
|
|
<?php
|
|
}
|
|
?>
|
|
</datalist>
|
|
|
|
<?php
|
|
|
|
$rowid=1;
|
|
|
|
$selectinv="SELECT * FROM `inventory` WHERE inventoryid='$cusupid'";
|
|
$run_inv=mysqli_query($conn,$selectinv);
|
|
while($row_inv=mysqli_fetch_array($run_inv))
|
|
{
|
|
|
|
$u_pro_id=$row_inv['id'];
|
|
|
|
$code=$row_inv['code'];
|
|
$name=$row_inv['name'];
|
|
$unit=$row_inv['unit'];
|
|
$unittype=$row_inv['unittype'];
|
|
$category=$row_inv['category'];
|
|
$price=$row_inv['price'];
|
|
$sellingprice=$row_inv['sellingprice'];
|
|
$gst=$row_inv['gst'];
|
|
$inventory_qty=$row_inv['inventory_qty'];
|
|
$hsn=$row_inv['hsn'];
|
|
$total=$row_inv['total'];
|
|
|
|
$item = array(
|
|
'rowid' => $rowid,
|
|
'price' => $price,
|
|
'gst' => $gst,
|
|
'qty' => $inventory_qty
|
|
);
|
|
|
|
$_SESSION["inventorytotal"][$rowid] = $item;
|
|
|
|
?>
|
|
|
|
<tr count="<?php echo $rowid; ?>" id="display_inventory<?php echo $rowid; ?>">
|
|
|
|
<td>
|
|
<input type="text" placeholder="Part No" class="form-control1" name="product_code[]" value="<?php echo $code; ?>" readonly>
|
|
</td>
|
|
<td>
|
|
<input type="text" placeholder="Part Description" class="form-control1" id="product_name" name="product_name[]" value="<?php echo $name; ?>">
|
|
</td>
|
|
<td>
|
|
<input type="text" placeholder="Unit" class="form-control1" name="product_unit[]" value="<?php echo $unit; ?>">
|
|
</td>
|
|
<td>
|
|
<input type="text" placeholder="Unit Type" class="form-control1" name="product_unittype[]" value="<?php echo $unittype; ?>">
|
|
</td>
|
|
<td>
|
|
<input type="text" placeholder="Category" class="form-control1" name="product_category[]" value="<?php echo $category; ?>">
|
|
</td>
|
|
<td>
|
|
<input type="number" placeholder="Price" class="form-control1 changeinventorycalculation" name="product_price[]" id="price<?php echo $rowid; ?>" value="<?php echo $price; ?>" inventoryid="<?php echo $rowid; ?>">
|
|
</td>
|
|
<td>
|
|
<input type="number" placeholder="Selling Price" class="form-control1" name="product_selling_price[]" inventoryid="<?php echo $rowid; ?>" value="<?php echo $sellingprice; ?>" id="sellingprice<?php echo $rowid; ?>">
|
|
</td>
|
|
<td>
|
|
<input type="number" placeholder="Gst" class="form-control1 changeinventorycalculation" name="product_gst[]" inventoryid="<?php echo $rowid; ?>" value="<?php echo $gst; ?>" id="gst<?php echo $rowid; ?>">
|
|
</td>
|
|
<td>
|
|
<input type="number" placeholder="Qty" class="form-control1 changeinventorycalculation" name="inven_qty[]" inventoryid="<?php echo $rowid; ?>" id="qty<?php echo $rowid; ?>" value="<?php echo $inventory_qty; ?>">
|
|
</td>
|
|
<td>
|
|
<input type="text" placeholder="HSN" class="form-control1" name="inven_hsn[]" value="<?php echo $hsn; ?>" readonly>
|
|
</td>
|
|
<td>
|
|
<input type="number" placeholder="Total" class="form-control1" name="inven_total[]" readonly id="totalinventory<?php echo $rowid; ?>">
|
|
</td>
|
|
<td>
|
|
<button type="button" name="remove" id="<?php echo $rowid; ?>" class="btn btn-danger removeinventoryrowid remove">X</button>
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
$rowid=$rowid+1;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
<div class="col-12 col-sm-8 col-lg-6">
|
|
<button type="button" class="btn btn-space btn-primary" id="add_local_inventory">Add</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
<div class="col-md-6 col-lg-6 text-left">
|
|
<div class="row">
|
|
<label class="col-12 col-lg-3 col-form-label">₹ Sub Total</label>
|
|
<div class="col-12 col-sm-9 col-lg-9">
|
|
<input type="text" placeholder="Sub Total" class="form-control" id="ineventory_sub_total" readonly="">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-6 col-lg-6 text-right">
|
|
<div class="row">
|
|
<label class="col-12 col-lg-3 col-form-label text-left">₹ Gst Amount</label>
|
|
<div class="col-12 col-sm-9 col-lg-9">
|
|
<input type="text" placeholder="Gst Amount" class="form-control" id="ineventory_gst_amount" readonly="">
|
|
<p id="displaygst_amount" class="errormessage"></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
|
|
|
|
|
|
<div class="col-md-6 col-lg-6 text-left">
|
|
<div class="row">
|
|
<label class="col-12 col-lg-3 col-form-label">₹ Grand Total</label>
|
|
<div class="col-12 col-sm-9 col-lg-9">
|
|
<input type="text" placeholder="Grand Total" class="form-control" id="ineventory_grand_total" readonly="">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-6 col-lg-6 text-left">
|
|
<div class="row">
|
|
<label class="col-12 col-lg-3 col-form-label">₹ Paid Amount</label>
|
|
<div class="col-12 col-sm-9 col-lg-9">
|
|
<input type="text" placeholder="Paid Amount" class="form-control" id="local_ineventory_paid_amt">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group row text-center">
|
|
<div class="col col-sm-12 col-lg-12 offset-sm-1 offset-lg-0">
|
|
<button type="submit" class="btn btn-space btn-primary inventorysubmit pageloadcheck">Submit</button>
|
|
<button class="btn btn-space btn-secondary" type="reset">Cancel</button>
|
|
<div id="display_inventory_all"></div>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="displayinventory"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<?php
|
|
|
|
include("../script.php");
|
|
|
|
?>
|
|
|
|
<script src="main.js"></script>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|
|
|
|
|
|
<script>
|
|
$(document).ready(function()
|
|
{
|
|
$(".changelocalsupliernum").change();
|
|
loadinvetntorytotal();
|
|
|
|
|
|
});
|
|
|
|
</script>
|