branch status issue fixed
This commit is contained in:
parent
d67ff2173e
commit
61cf23e152
@ -49,7 +49,8 @@ class Branch_Controller extends REST_Controller {
|
|||||||
|
|
||||||
public function addBranchDetails_post()
|
public function addBranchDetails_post()
|
||||||
{
|
{
|
||||||
|
$now = new DateTime();
|
||||||
|
$now->setTimezone(new DateTimezone('Asia/Kolkata'));
|
||||||
$details['BranchCode'] = $this->post('branchCode');
|
$details['BranchCode'] = $this->post('branchCode');
|
||||||
$details['BranchName'] = $this->post('branchName');
|
$details['BranchName'] = $this->post('branchName');
|
||||||
// $details['LogoPath'] = $this->post('logo');
|
// $details['LogoPath'] = $this->post('logo');
|
||||||
@ -59,7 +60,8 @@ class Branch_Controller extends REST_Controller {
|
|||||||
$details['Address'] = $this->post('address');
|
$details['Address'] = $this->post('address');
|
||||||
$details['EmailID'] = $this->post('email');
|
$details['EmailID'] = $this->post('email');
|
||||||
$details['CreatedBy'] = $this->post('createdBy');
|
$details['CreatedBy'] = $this->post('createdBy');
|
||||||
$details['IsActive'] = $this->post('status');
|
$details['IsActive'] = $this->post('status') == "true" ? 1 : 0;
|
||||||
|
$details['CreatedOn'] = $now->format('Y-m-d H:i:s');
|
||||||
|
|
||||||
$imageStat = $this->post('imageStatus');
|
$imageStat = $this->post('imageStatus');
|
||||||
|
|
||||||
@ -117,6 +119,8 @@ class Branch_Controller extends REST_Controller {
|
|||||||
* */
|
* */
|
||||||
public function updateBranchDetails_post()
|
public function updateBranchDetails_post()
|
||||||
{
|
{
|
||||||
|
$now = new DateTime();
|
||||||
|
$now->setTimezone(new DateTimezone('Asia/Kolkata'));
|
||||||
$branchCode = $this->post('branchCode');
|
$branchCode = $this->post('branchCode');
|
||||||
$details['BranchName'] = $this->post('branchName');
|
$details['BranchName'] = $this->post('branchName');
|
||||||
$details['LogoPath'] = $this->post('logo');
|
$details['LogoPath'] = $this->post('logo');
|
||||||
@ -125,10 +129,9 @@ class Branch_Controller extends REST_Controller {
|
|||||||
$details['LandlineNumber'] = $this->post('landLine');
|
$details['LandlineNumber'] = $this->post('landLine');
|
||||||
$details['Address'] = $this->post('address');
|
$details['Address'] = $this->post('address');
|
||||||
$details['EmailID'] = $this->post('email');
|
$details['EmailID'] = $this->post('email');
|
||||||
$details['IsActive'] = $this->post('status');
|
$details['IsActive'] = $this->post('status') == "true" ? 1 : 0;
|
||||||
$details['UpdatedBy'] = $this->post('createdBy');
|
$details['UpdatedBy'] = $this->post('createdBy');
|
||||||
$date = date('Y-m-d H:i:s');
|
$details['UpdatedOn'] = $now->format("Y-m-d H:i:s");
|
||||||
$details['UpdatedOn'] = $date;
|
|
||||||
|
|
||||||
$imageStat = $this->post('imageStatus');
|
$imageStat = $this->post('imageStatus');
|
||||||
|
|
||||||
|
|||||||
0
Apollo/api/application/controllers/Certificate_Controller.php
Normal file → Executable file
0
Apollo/api/application/controllers/Certificate_Controller.php
Normal file → Executable file
0
Apollo/api/application/controllers/DayBookMaster_Controller.php
Normal file → Executable file
0
Apollo/api/application/controllers/DayBookMaster_Controller.php
Normal file → Executable file
0
Apollo/api/application/controllers/DayBook_Controller.php
Normal file → Executable file
0
Apollo/api/application/controllers/DayBook_Controller.php
Normal file → Executable file
0
Apollo/api/application/controllers/StatusUpdation_Controller.php
Normal file → Executable file
0
Apollo/api/application/controllers/StatusUpdation_Controller.php
Normal file → Executable file
0
Apollo/api/application/controllers/StudentView_Controller.php
Normal file → Executable file
0
Apollo/api/application/controllers/StudentView_Controller.php
Normal file → Executable file
0
Apollo/api/application/models/Certificate_model.php
Normal file → Executable file
0
Apollo/api/application/models/Certificate_model.php
Normal file → Executable file
0
Apollo/api/application/models/DayBook_model.php
Normal file → Executable file
0
Apollo/api/application/models/DayBook_model.php
Normal file → Executable file
0
Apollo/api/application/models/DaybookMaster_model.php
Normal file → Executable file
0
Apollo/api/application/models/DaybookMaster_model.php
Normal file → Executable file
0
Apollo/api/application/models/StatusUpdation_model.php
Normal file → Executable file
0
Apollo/api/application/models/StatusUpdation_model.php
Normal file → Executable file
0
Apollo/assets/js/controllers/answerBookletStatusCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/answerBookletStatusCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/applicationStatusCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/applicationStatusCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/certificateCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/certificateCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/certificationStatusCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/certificationStatusCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/dayBookMasterCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/dayBookMasterCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/daybookCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/daybookCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/daybookadminCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/daybookadminCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/daybooksuperadminCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/daybooksuperadminCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/studentStatusUpdateCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/studentStatusUpdateCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/studentViewCtrl.js
Normal file → Executable file
0
Apollo/assets/js/controllers/studentViewCtrl.js
Normal file → Executable file
0
Apollo/assets/js/directives/convert-words.js
Normal file → Executable file
0
Apollo/assets/js/directives/convert-words.js
Normal file → Executable file
0
Apollo/assets/views/callTrackingCloseDetails.html
Normal file → Executable file
0
Apollo/assets/views/callTrackingCloseDetails.html
Normal file → Executable file
0
Apollo/assets/views/callTrackingLeadDetails.html
Normal file → Executable file
0
Apollo/assets/views/callTrackingLeadDetails.html
Normal file → Executable file
0
Apollo/assets/views/callTrackingPendingDetails.html
Normal file → Executable file
0
Apollo/assets/views/callTrackingPendingDetails.html
Normal file → Executable file
0
Apollo/assets/views/certificate/editCertificationDetails.html
Normal file → Executable file
0
Apollo/assets/views/certificate/editCertificationDetails.html
Normal file → Executable file
0
Apollo/assets/views/daybook/dayBookMaster.html
Normal file → Executable file
0
Apollo/assets/views/daybook/dayBookMaster.html
Normal file → Executable file
0
Apollo/assets/views/daybook/daybook.html
Normal file → Executable file
0
Apollo/assets/views/daybook/daybook.html
Normal file → Executable file
0
Apollo/assets/views/daybook/daybookadmin.html
Normal file → Executable file
0
Apollo/assets/views/daybook/daybookadmin.html
Normal file → Executable file
0
Apollo/assets/views/daybook/daybooksuperadmin.html
Normal file → Executable file
0
Apollo/assets/views/daybook/daybooksuperadmin.html
Normal file → Executable file
0
Apollo/assets/views/daybook/editDayBookMaster.html
Normal file → Executable file
0
Apollo/assets/views/daybook/editDayBookMaster.html
Normal file → Executable file
0
Apollo/assets/views/editDefaultActivityStatus.html
Normal file → Executable file
0
Apollo/assets/views/editDefaultActivityStatus.html
Normal file → Executable file
0
Apollo/assets/views/status-update/answer_booklet_status.html
Normal file → Executable file
0
Apollo/assets/views/status-update/answer_booklet_status.html
Normal file → Executable file
0
Apollo/assets/views/status-update/application_status.html
Normal file → Executable file
0
Apollo/assets/views/status-update/application_status.html
Normal file → Executable file
0
Apollo/assets/views/status-update/certification_status.html
Normal file → Executable file
0
Apollo/assets/views/status-update/certification_status.html
Normal file → Executable file
@ -358,7 +358,7 @@
|
|||||||
ng-if="Form.trackStatus.$dirty && Form.trackStatus.$invalid">Status is required</span>
|
ng-if="Form.trackStatus.$dirty && Form.trackStatus.$invalid">Status is required</span>
|
||||||
</div>-->
|
</div>-->
|
||||||
|
|
||||||
<div class="col-md-4 form-group"
|
<div class="col-md-6 form-group"
|
||||||
ng-class="{'has-error':Form.studcomments.$dirty && Form.studcomments.$invalid,'has-success':Form.studcomments.$valid}">
|
ng-class="{'has-error':Form.studcomments.$dirty && Form.studcomments.$invalid,'has-success':Form.studcomments.$valid}">
|
||||||
<label>
|
<label>
|
||||||
Comments For Student <span class="symbol required"></span>
|
Comments For Student <span class="symbol required"></span>
|
||||||
@ -371,7 +371,7 @@
|
|||||||
<!--<span class="success text-small"-->
|
<!--<span class="success text-small"-->
|
||||||
<!--ng-if="Form.address.$valid">Thank You!</span>-->
|
<!--ng-if="Form.address.$valid">Thank You!</span>-->
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 form-group"
|
<div class="col-md-6 form-group"
|
||||||
ng-class="{'has-error':Form.internalcomments.$dirty && Form.internalcomments.$invalid,'has-success':Form.internalcomments.$valid}">
|
ng-class="{'has-error':Form.internalcomments.$dirty && Form.internalcomments.$invalid,'has-success':Form.internalcomments.$valid}">
|
||||||
<label>
|
<label>
|
||||||
Comments For Internal <span class="symbol required"></span>
|
Comments For Internal <span class="symbol required"></span>
|
||||||
@ -476,10 +476,10 @@
|
|||||||
<td style="width: 136px; height: 23px; text-align: center; border-bottom-style: hidden; color: white; background-color: black; font-size: 16px;" colspan="3">(A Group of SVE Trust)</td>
|
<td style="width: 136px; height: 23px; text-align: center; border-bottom-style: hidden; color: white; background-color: black; font-size: 16px;" colspan="3">(A Group of SVE Trust)</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr style="height: 36px;">
|
<tr style="height: 36px;">
|
||||||
<td style="width: 136px; height: 36px; text-align: center; color: white; background-color: black; font-size: 15px;" colspan="3">10/1, First Floor, Old Airport Road, Domlur, Bangalore - 560071. karnataka Land Mark - Opp to Domlur Bus Stop Ph: 9620214554</td>
|
<td style="width: 136px; height: 36px; text-align: center; color: white; background-color: black; font-size: 15px;" colspan="3">10/1, First Floor, Old Airport Road, Domlur, Bangalore - 560071. karnataka<br> Land Mark - Opp to Domlur Bus Stop Ph: 9620214554</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr style="height: 50px;">
|
<tr style="height: 50px;">
|
||||||
<td style="width: 136px; height: 50px; text-align: center; border-bottom-style: hidden;" colspan="3">
|
<td style="width: 136px; height: 50px; text-align: center; border-bottom-style: hidden;padding-left:25%;" colspan="3">
|
||||||
<span style="border: 2px solid black; padding: 10px; border-radius: 15px; font-size: 14px; color: #fff; background-color: black;">FEES RECEIPT</span>
|
<span style="border: 2px solid black; padding: 10px; border-radius: 15px; font-size: 14px; color: #fff; background-color: black;">FEES RECEIPT</span>
|
||||||
</td>
|
</td>
|
||||||
<td style="width: 137px; height: 50px; border-left-style: hidden; border-bottom-style: hidden;"><strong>DOM:</strong> {{billNo}}</td>
|
<td style="width: 137px; height: 50px; border-left-style: hidden; border-bottom-style: hidden;"><strong>DOM:</strong> {{billNo}}</td>
|
||||||
@ -498,7 +498,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tr style="height: 24px;">
|
<tr style="height: 24px;">
|
||||||
<td style="width: 136px; height: 24px;"><strong>Course:</strong> {{items.CourseName}}</td>
|
<td style="width: 136px; height: 24px;"><strong>Course:</strong> {{items.CourseName}}</td>
|
||||||
<td style="width: 136px; height: 24px;"><strong>Sem:</strong> {{items.FeesName}}</td>
|
<td style="width: 136px; height: 24px;"><strong>Fees Type:</strong> {{items.FeesName}}</td>
|
||||||
<td style="width: 137px; height: 24px;"><strong>Exam Cycle:</strong> {{items.SessionName}}</td>
|
<td style="width: 137px; height: 24px;"><strong>Exam Cycle:</strong> {{items.SessionName}}</td>
|
||||||
<td style="width: 137px; height: 24px;"><strong>Univ:</strong> {{items.UniversityName}}</td>
|
<td style="width: 137px; height: 24px;"><strong>Univ:</strong> {{items.UniversityName}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -563,6 +563,3 @@
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<!-- class="editRowTd" -->
|
<!-- class="editRowTd" -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
0
Apollo/assets/views/studentStatusUpdate.html
Normal file → Executable file
0
Apollo/assets/views/studentStatusUpdate.html
Normal file → Executable file
0
Apollo/images/student/Dri_HtrjvpNQzx0O.jpeg
Normal file → Executable file
0
Apollo/images/student/Dri_HtrjvpNQzx0O.jpeg
Normal file → Executable file
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
0
Apollo/images/student/Dri_VWfLTEUvoAna.jpeg
Normal file → Executable file
0
Apollo/images/student/Dri_VWfLTEUvoAna.jpeg
Normal file → Executable file
|
Before Width: | Height: | Size: 194 KiB After Width: | Height: | Size: 194 KiB |
Loading…
Reference in New Issue
Block a user