79 lines
3.8 KiB
Plaintext
79 lines
3.8 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 style="display: flex; flex-direction: column; align-items: center;" id="poPrepAprovdeTitle"></h2>
|
|
</div>
|
|
<br />
|
|
<form method="get" asp-action="CustomPO" asp-controller="POMgmt">
|
|
<button type="submit" class="btn btn-success btn-md"
|
|
id="customPO">
|
|
Custom P.O.
|
|
</button>
|
|
</form>
|
|
<br />
|
|
<div id="POTableContainer">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Modal viewPOTypeOption of Request -->
|
|
<div class="modal fade custom-modal-backdrop" id="viewPOTypeOption" tabindex="-1" aria-labelledby="ModalLabel">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header" style="background-color:teal;">
|
|
<h4 class="modal-title w-100 text-center" style="color:white;" id="ModalLabel">Please choose type of Form</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
@* <div class="staircase-container"> *@
|
|
<button id="SIPOBtn" type="button"
|
|
onclick="viewPOFormSIPO(0,1,1);"
|
|
class="btn btn-primary modal-btn"
|
|
style="margin-left:20px">SI PO Form</button>
|
|
<button id="DRBtn" type="button" onclick="viewPOFormSIPO(0,1,2);" class="btn btn-success modal-btn">D.R. Form</button>
|
|
@* <button id="ImportPOBtn" type="button" onclick="createImportForm(3);" class="btn btn-warning modal-btn">Import PO Form</button> *@
|
|
@* </div> *@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Modal addRemarks -->
|
|
<div class="modal fade custom-modal-backdrop" id="addRemarks" tabindex="-1" aria-labelledby="addRemarksLabel">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
|
|
<h5 id="addRemarksLabel" class="modal-title">
|
|
Add remarks, before to proceed
|
|
</h5>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label for="poRemarks">Remarks:</label>
|
|
<textarea id="poRemarksSIDRPO" class="form-control" style="width: 100%; height: 100px;margin-bottom:10px;"></textarea>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="deliverTo">Deliver To:</label>
|
|
<textarea id="deliverTo" class="form-control" style="width: 100%; height: 100px; margin-bottom:10px;">
|
|
Deliver To: 10 LLOYD AV. FBIC TIKAY, MALOLOS, BULACAN
|
|
</textarea>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-warning" data-bs-dismiss="modal">Cancel</button>
|
|
<button type="button" id="btnSubmitSIDR" onclick="postPutPO();" class="btn btn-success">Submit</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<link href="~/css/common/rowhighlighter.css" rel="stylesheet" />
|
|
<script src="~/JsFunctions/PO/POPrepApprovalV4.js"></script>
|
|
@await Html.PartialAsync("PagesView/PO/_PO")
|
|
<link href="~/css/po/poprep.css" rel="stylesheet" />
|
|
@await Html.PartialAsync("PagesView/PO/_DocRequired")
|
|
</div>
|
|
</body>
|
|
|