Merge branch 'master' of https://bitbucket.org/venbainformationtechnology/apollodec
This commit is contained in:
commit
713cef0857
@ -560,6 +560,9 @@ class Fees_status_model extends CI_Model
|
||||
$insertfollowup_Details['FollowupComments']=$arrayDetails['FollowupComments'];
|
||||
$insertfollowup_Details['CreatedBy'] = $arrayDetails['CreatedBy'];
|
||||
$insertfollowup_Details['CreatedOn'] = $arrayDetails['CreatedOn'];
|
||||
$insertfollowup_Details['StatusName'] = $arrayDetails['StatusCode'];
|
||||
$insertfollowup_Details['AssignedStaff'] = $arrayDetails['CreatedBy'];
|
||||
|
||||
$this->db->insert(LEAD_TRACKING_FOLLOWUP, $insertfollowup_Details);
|
||||
// this if for insert follow up details
|
||||
|
||||
|
||||
@ -1090,6 +1090,9 @@ class Student_model extends CI_Model {
|
||||
$insertfollowup_Details['FollowupComments'] = $arrayDetails['FollowupComments'];
|
||||
$insertfollowup_Details['CreatedBy'] = $fromDetails['CreatedBy'];
|
||||
$insertfollowup_Details['CreatedOn'] = $arrayDetails['CreatedOn'];
|
||||
$insertfollowup_Details['StatusName'] = $arrayDetails['StatusCode'];
|
||||
$insertfollowup_Details['AssignedStaff'] = $arrayDetails['CreatedBy'];
|
||||
|
||||
$this->db->insert(LEAD_TRACKING_FOLLOWUP, $insertfollowup_Details);
|
||||
// this if for insert follow up details
|
||||
|
||||
|
||||
@ -53,10 +53,12 @@
|
||||
close-text="Close" ng-change="checkDate(myModel)" ng-readonly="true"/>
|
||||
<input class="form-control" type="text" ng-model="myModel.search" id="search" autofocus placeholder="Search Date" ng-hide="hideDateSearch==true" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>
|
||||
Search
|
||||
</label>
|
||||
<input class="form-control" type="text" ng-model="search2" id="search2" autofocus tabindex="1" placeholder="Search anything" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
@ -92,7 +94,7 @@
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|filter:search2:strict| filter:search3:strict| filter:search4:strict| filter:search5:strict|itemsPerPage:10">
|
||||
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|filter:search2:strict|itemsPerPage:10">
|
||||
<tr>
|
||||
|
||||
<td ng-if="p.Flag==false">
|
||||
|
||||
@ -54,10 +54,12 @@
|
||||
close-text="Close" ng-change="checkDate(myModel)" ng-readonly="true"/>
|
||||
<input class="form-control" type="text" ng-model="myModel.search" id="search" autofocus placeholder="Search Date" ng-hide="hideDateSearch==true" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>
|
||||
Search
|
||||
</label>
|
||||
<input class="form-control" type="text" ng-model="search2" id="search2" autofocus tabindex="1" placeholder="Search anything" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
@ -93,7 +95,7 @@
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|filter:search2:strict| filter:search3:strict| filter:search4:strict| filter:search5:strict|itemsPerPage:10">
|
||||
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|filter:search2:strict|itemsPerPage:10">
|
||||
<tr>
|
||||
<td ng-if="p.Flag==false">
|
||||
<a class="glyphicon ng-scope fa margin-right-5 fa-flag text-grey text-extra-large" tooltip="Potential" ng-click="markAsImportant(p.TrackingID,true);"></a>
|
||||
|
||||
@ -54,10 +54,12 @@
|
||||
close-text="Close" ng-change="checkDate(myModel)" ng-readonly="true"/>
|
||||
<input class="form-control" type="text" ng-model="myModel.search" id="search" autofocus placeholder="Search Date" ng-hide="hideDateSearch==true" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>
|
||||
Search
|
||||
</label>
|
||||
<input class="form-control" type="text" ng-model="search2" id="search2" autofocus tabindex="1" placeholder="Search anything" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
@ -93,7 +95,7 @@
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|filter:search2:strict| filter:search3:strict| filter:search4:strict| filter:search5:strict|itemsPerPage:10">
|
||||
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|filter:search2:strict|itemsPerPage:10">
|
||||
<tr>
|
||||
<td ng-if="p.Flag==false">
|
||||
<a class="glyphicon ng-scope fa margin-right-5 fa-flag text-grey text-extra-large" tooltip="Potential" ng-click="markAsImportant(p.TrackingID,true);"></a>
|
||||
|
||||
@ -633,7 +633,7 @@
|
||||
</thead>
|
||||
<tbody ng-repeat="penddoc in studentPendingDocumentsDetails">
|
||||
<tr>
|
||||
<td>{{penddoc.Details}}</td>
|
||||
<td><span style="white-space:pre-wrap;">{{penddoc.Details}}</span></td>
|
||||
<td>{{penddoc.DocumentDate}}</td>
|
||||
<!--<td>
|
||||
<span ng-if="penddoc.Status == 1">Open</span>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user