diff --git a/Apollo/api/application/controllers/Batch_Controller.php b/Apollo/api/application/controllers/Batch_Controller.php
index 09156b66..e05fc83f 100644
--- a/Apollo/api/application/controllers/Batch_Controller.php
+++ b/Apollo/api/application/controllers/Batch_Controller.php
@@ -31,12 +31,15 @@ class Batch_Controller extends REST_Controller {
public function addBatchDetails_post()
{
-
+ $now = new DateTime();
+ $now->setTimezone(new DateTimezone('Asia/Kolkata'));
$details['BatchCode'] = $this->post('batchcode');
$details['BatchName'] = $this->post('batcheName');
$details['UniversityID'] = $this->post('universityName');
$details['CreatedBy'] = $this->post('createdBy');
$details['IsActive'] = $this->post('status');
+ $details['CreatedOn'] = $now->format('Y-m-d H:i:s');
+
$batchDetails = $this->batch_model->addBatch($details);// Check if the users data store contains users (in case the database result returns NULL)
if ($batchDetails)
{
@@ -86,11 +89,16 @@ class Batch_Controller extends REST_Controller {
* */
public function updateBatchDetails_post()
{
+ $now = new DateTime();
+ $now->setTimezone(new DateTimezone('Asia/Kolkata'));
$details['BatchCode'] = $this->post('batchCode');
$details['BatchName'] = $this->post('batchName');
$details['IsActive'] = $this->post('status');
$details['UpdatedBy'] = $this->post('updatedBy');
- $details['UpdatedOn'] = date("Y-m-d", time());
+ $details['UpdatedOn'] = $now->format("Y-m-d H:i:s");
+
+ // print_r( $details['UpdatedOn'])
+ //exit();
$updateDetails = $this->batch_model->updateBatch($details);// Check if the users data store contains users (in case the database result returns NULL)
if ($updateDetails)
@@ -112,4 +120,4 @@ class Batch_Controller extends REST_Controller {
}
-}
\ No newline at end of file
+}
diff --git a/Apollo/api/application/models/Announcement_model.php b/Apollo/api/application/models/Announcement_model.php
index e32c7915..3bd7d72b 100644
--- a/Apollo/api/application/models/Announcement_model.php
+++ b/Apollo/api/application/models/Announcement_model.php
@@ -75,8 +75,6 @@ class Announcement_model extends CI_Model {
$result['message'] = "Something went wrong.please try again";
}
-
-
return $result;
}
diff --git a/Apollo/assets/js/controllers/dashboardCtrl.js b/Apollo/assets/js/controllers/dashboardCtrl.js
index c905b8a2..745209ff 100644
--- a/Apollo/assets/js/controllers/dashboardCtrl.js
+++ b/Apollo/assets/js/controllers/dashboardCtrl.js
@@ -63,4 +63,3 @@ app.controller('dashboardCtrl', ["$scope","toaster", "$filter", "ngTableParams",
};
}]);
-
diff --git a/Apollo/assets/js/main.js b/Apollo/assets/js/main.js
index 57c5c298..0a1bad8f 100644
--- a/Apollo/assets/js/main.js
+++ b/Apollo/assets/js/main.js
@@ -29,7 +29,7 @@ function ($rootScope, $state, $stateParams) {
isNavbarFixed: true, //true if you want to initialize the template with fixed header
isSidebarFixed: true, // true if you want to initialize the template with fixed sidebar
isSidebarClosed: true, // true if you want to initialize the template with closed sidebar
- isFooterFixed: true, // true if you want to initialize the template with fixed footer
+ isFooterFixed: false, // true if you want to initialize the template with fixed footer
theme: 'theme-5', // indicate the theme chosen for your project
logo: 'assets/images/logo.png', // relative path of the project logo
}
diff --git a/Apollo/assets/views/dashboard.html b/Apollo/assets/views/dashboard.html
index e809332f..22cc4afe 100644
--- a/Apollo/assets/views/dashboard.html
+++ b/Apollo/assets/views/dashboard.html
@@ -1,6 +1,6 @@
@@ -17,131 +17,141 @@
-
-
-
-
Today Follow Up Details
-
-
-
-
-
No Followup!
+
+
+
+
Today Follow Up Details
+
-
-
-
-
-
-
Pending Follow Up Details
-
-
-
-
-
No Pending Followup!
+
+
+
+
Pending Follow Up Details
+
-
-
-
-
-
-
Today Created Lead Details
-
-
-
-
-
No Lead Created By Today!
+
+
+
+
Today Created Lead Details
+
-
-
+
-
+
+
+
\ No newline at end of file