NonInventPurchasingSystem/CPRNIMS.WebApps/Views/Receiving/Index.cshtml
2026-01-20 07:44:30 +08:00

55 lines
2.4 KiB
Plaintext

<body>
<div class="container-fluid">
<div class="table-container shadow-lg p-3 mb-5 bg-white rounded">
<div class="header-container">
<h2>For Receiving Item</h2>
</div>
<br />
<br />
<table id="ReceivingTable" class="row-border" cellspacing="0" width="100%">
<thead>
<tr>
<th>PONo</th>
<th>POType</th>
<th>PRNo's</th>
<th>ItemNo's</th>
<th>ItemName's</th>
<th>ItemCategory</th>
<th>SupplierName</th>
<th>Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="modal fade custom-modal-backdrop" id="viewRRNo" tabindex="-1"
aria-labelledby="approveLabel" aria-hidden="true" data-bs-backdrop="static">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 id="approveLabel" class="modal-title">
Update RRNo Series
</h5>
</div>
<div class="modal-body" style="display: flex; flex-direction: column; align-items: center;">
<div style="display: flex; align-items: center; gap: 10px;">
<label id="rrNoSeriesLabel" >R.R. No#:</label>
<input type="number" id="rrNoSeries" class="form-control" style="width: 200px;" />
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Back</button>
<button type="button" id="updateRRNoBtn" onclick="putRRNoSeries()" class="btn btn-warning">Update</button>
</div>
</div>
</div>
</div>
<link href="~/css/pr/receiving.css" rel="stylesheet" />
@await Html.PartialAsync("PagesView/Receiving/_Receiving")
<script src="~/JsFunctions/Receiving/Receiving.js"></script>
@await Html.PartialAsync("PagesView/Receiving/_ReceivingScripts")
</div>
</body>