From b1e270656fa3871ef0f92ca2435dab73e5c8441f Mon Sep 17 00:00:00 2001 From: VE10-Sanjeev Date: Thu, 24 Apr 2025 05:00:18 +0000 Subject: [PATCH 1/2] Rotues Missing --- .../Report_Material_Master_ReceiptValue.php | 4 +-- app/Views/Report_consolidate_inward.php | 26 +++++++++++++++++-- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/app/Views/Report_Material_Master_ReceiptValue.php b/app/Views/Report_Material_Master_ReceiptValue.php index af89330c..013cadba 100755 --- a/app/Views/Report_Material_Master_ReceiptValue.php +++ b/app/Views/Report_Material_Master_ReceiptValue.php @@ -43,7 +43,7 @@
-
"> + ">
@@ -118,7 +118,7 @@
- +
diff --git a/app/Views/Report_consolidate_inward.php b/app/Views/Report_consolidate_inward.php index c25c141d..61bb1751 100755 --- a/app/Views/Report_consolidate_inward.php +++ b/app/Views/Report_consolidate_inward.php @@ -140,7 +140,7 @@ $qtot = 0; ?>
- +
@@ -384,7 +384,7 @@ $qtot = 0; ?>
Supplier Name
+
@@ -668,6 +668,28 @@ $qtot = 0; ?> } } }); + var table = $('#cd').DataTable({ + dom: 'Blfrtip', + buttons: [ + { + extend: 'excel', + text: 'Excel', + } + ], + paging: true, // Enable pagination + searching: true, // Disable search + ordering: false, // Disable column sorting + info: false, // Disable table information + lengthChange: false, // Disable page length options + pageLength: 10, // Default rows per page + responsive: true, // Keep responsive design + language: { + paginate: { + next: '', // Next button icon + previous: '' // Previous button icon + } + } + }); }); From c5daf0b6d84a00c26604bf7d16acf418d45c9147 Mon Sep 17 00:00:00 2001 From: VE10-Sanjeev Date: Thu, 24 Apr 2025 05:26:25 +0000 Subject: [PATCH 2/2] 0001541 solved --- app/Controllers/Purchaseorder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controllers/Purchaseorder.php b/app/Controllers/Purchaseorder.php index b81c8109..c1d1223f 100755 --- a/app/Controllers/Purchaseorder.php +++ b/app/Controllers/Purchaseorder.php @@ -2662,7 +2662,7 @@ class Purchaseorder extends BaseController $store = array('Status' => $StatusCode, 'ReleasedOn' => $ReleasedDate, 'ReleasedBy' => $ReleasedBy, 'Remarks' => $Remarks); $this->purchaseorder_model->UpdatePO($store, $PONO); // echo "Successfully Released the Purchase Order No: " . $PONO; - echo "Successfully Approved the Purchase Order No: " . $PONO; + echo "The Purchase Order No: " . $PONO . "is Approved"; } else { $store = array('Status' => $StatusCode, 'OnHoldOn' => $ReleasedDate, 'OnHoldBy' => $ReleasedBy, 'Remarks' => $Remarks); $this->purchaseorder_model->UpdatePO($store, $PONO);
Supplier Name