Roll back the Shipping instruction

This commit is contained in:
rowell_m_soriano 2026-05-12 15:48:42 +08:00
parent 67a501f4fc
commit 5c6fc08bf3
3 changed files with 11 additions and 3 deletions

View File

@ -233,7 +233,7 @@
</div> </div>
</div> </div>
</div> </div>
@* <div class="second-page"> <div class="second-page">
<div class="container-Form"> <div class="container-Form">
<div class="header"> <div class="header">
<p>ANNEX A</p> <p>ANNEX A</p>
@ -249,7 +249,7 @@
<div id="shippingInstructionsContainer"> <div id="shippingInstructionsContainer">
</div> </div>
</div> </div>
</div> *@ </div>
</div> <!-- End of printableContent --> </div> <!-- End of printableContent -->
</div> </div>
<div class="modal-footer"> <div class="modal-footer">

View File

@ -21,7 +21,7 @@
<script src="~/jsfunctions/po/ApiV5.js"></script> <script src="~/jsfunctions/po/ApiV5.js"></script>
<script src="~/jsfunctions/po/populatetable.js"></script> <script src="~/jsfunctions/po/populatetable.js"></script>
<script src="~/jsfunctions/po/POVarV6.js"></script> <script src="~/jsfunctions/po/POVarV6.js"></script>
<script src="~/jsfunctions/po/POViewV4.js"></script> <script src="~/jsfunctions/po/POViewV5.js"></script>
<script src="~/jsfunctions/po/PopulateDopdownV4.js"></script> <script src="~/jsfunctions/po/PopulateDopdownV4.js"></script>
<script src="~/jsfunctions/po/POPutPostV4.js"></script> <script src="~/jsfunctions/po/POPutPostV4.js"></script>
<script src="~/jsfunctions/po/rowCallBackV5.js"></script> <script src="~/jsfunctions/po/rowCallBackV5.js"></script>

View File

@ -133,6 +133,10 @@ function viewPOFormImport(data, isModal) {
$('#viewPOTypeOption').modal('hide'); $('#viewPOTypeOption').modal('hide');
$('#viewPrintImportPO').modal('show'); $('#viewPrintImportPO').modal('show');
$('#viewPrintImportPO').css('z-index', 1060); $('#viewPrintImportPO').css('z-index', 1060);
document.getElementById('poNo-C-2ndPage').innerHTML = data.poNo;
document.getElementById('supplier-C-2ndPage').innerHTML = data.supplierName;
tableElement = $('#ImportPODataTable'); tableElement = $('#ImportPODataTable');
if (isModal == 1) { if (isModal == 1) {
EmailAddress = poData.emailAddress; EmailAddress = poData.emailAddress;
@ -436,6 +440,10 @@ function viewManualImport(data) {
$('#viewPOTypeOption').modal('hide'); $('#viewPOTypeOption').modal('hide');
$('#viewPrintImportPO').modal('show'); $('#viewPrintImportPO').modal('show');
$('#viewPrintImportPO').css('z-index', 1050); $('#viewPrintImportPO').css('z-index', 1050);
document.getElementById('poNo-C-2ndPage').innerHTML = data.poNo;
document.getElementById('supplier-C-2ndPage').innerHTML = data.supplierName;
tableElement = $('#ImportPODataTable'); tableElement = $('#ImportPODataTable');
if (!tableElement.length) { if (!tableElement.length) {
console.error("Table element not found"); console.error("Table element not found");