Skip to content

Commit

Permalink
Merge pull request #255 from fiterlatam/fix/FBR-515
Browse files Browse the repository at this point in the history
fix/FBR-515
BrianMuhimbura authored Jan 5, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents bb9a2f3 + 209e41e commit 39a3a8c
Showing 4 changed files with 3 additions and 17 deletions.
1 change: 1 addition & 0 deletions app/scripts/controllers/groups/CreateGroupController.js
Original file line number Diff line number Diff line change
@@ -135,6 +135,7 @@

resourceFactory.prequalificationResource.getAllGroups({
type: 'checked',
portfolioCenterId: scope.formData.centerId,
searchText:value
}, function (data) {
console.log("prequal data: "+ JSON.stringify(data));
1 change: 1 addition & 0 deletions app/scripts/controllers/groups/EditGroupController.js
Original file line number Diff line number Diff line change
@@ -217,6 +217,7 @@

resourceFactory.prequalificationResource.getAllGroups({
type: 'checked',
portfolioCenterId:scope.formData.portfolioCenterId,
searchText:value
}, function (data) {
console.log("prequal data: "+ JSON.stringify(data));
2 changes: 1 addition & 1 deletion app/views/groups/creategroup.html
Original file line number Diff line number Diff line change
@@ -238,7 +238,7 @@



<fieldset>
<fieldset ng-if="formData.centerId">
<legend>{{'label.input.linkprequalification' | translate}}</legend>
<div class="form-group">
<div class="form-group">
16 changes: 0 additions & 16 deletions app/views/groups/viewgroup.html
Original file line number Diff line number Diff line change
@@ -648,22 +648,6 @@ <h4><strong>{{ 'label.heading.summary' | translate }}</strong></h4>
</div>
</uib-tab>
</uib-tabset>

<div class="alert alert-default">
<button ng-if="group.prequalificationStatus && group.prequalificationStatus.value==='HARD_POLICY_CHECKED'"
ng-click="requestForUpdates()" type="button"
class="btn btn-warning"
has-permission='REQUESTUPDATE_PREQUALIFICATIONS'>
{{'label.button.prequalification.requestUpdates' | translate}}
</button>

<button ng-if="group.prequalificationStatus && group.prequalificationStatus.value==='HARD_POLICY_CHECKED'"
ng-click="sendToAgencyUnit()" type="button"
class="btn btn-primary"
has-permission='REQUESTUPDATE_PREQUALIFICATIONS'>
{{'label.button.sendtoagency' | translate}}
</button>
</div>
</div>
</div>
<script type="text/ng-template" id="requestForUpdatesView.html">

0 comments on commit 39a3a8c

Please sign in to comment.