diff --git a/app/Config/Routes.php b/app/Config/Routes.php
index 752cfac5..56ca9f5a 100755
--- a/app/Config/Routes.php
+++ b/app/Config/Routes.php
@@ -544,3 +544,6 @@ $routes->post('updateTrpProductionDetails', 'StockController::updateTrpProductio
$routes->post('updateAbstractDetails','StockController::updateAbstractDetails');
+//Reports Module
+
+$routes->get('allReports','Report::allReports');
\ No newline at end of file
diff --git a/app/Models/Dashboard_model.php b/app/Models/Dashboard_model.php
index 82e2cd67..3bfa49d0 100755
--- a/app/Models/Dashboard_model.php
+++ b/app/Models/Dashboard_model.php
@@ -1065,11 +1065,11 @@ pm.Status != 'ST030' and pm.Status != 'ST056' and pm.Status != 'ST027' ";
$sql = "SELECT
- CASE WHEN MONTH(PODate)>=4 THEN
- concat(YEAR(PODate), '-',YEAR(PODate)+1)
- ELSE concat(YEAR(PODate)-1,'-', YEAR(PODate)) END AS financial_year
- FROM t_purchaseorder_master
-GROUP BY financial_year";
+ CASE WHEN MONTH(PODate)>=4 THEN
+ concat(YEAR(PODate), '-',YEAR(PODate)+1)
+ ELSE concat(YEAR(PODate)-1,'-', YEAR(PODate)) END AS financial_year
+ FROM t_purchaseorder_master
+ GROUP BY financial_year";
$query = $this->db->query($sql);
return $query->getResult();
}
diff --git a/app/Views/Report_pending_purchase.php b/app/Views/Report_pending_purchase.php
index a4c5eafd..b46cc7f0 100755
--- a/app/Views/Report_pending_purchase.php
+++ b/app/Views/Report_pending_purchase.php
@@ -125,6 +125,7 @@
+