mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 18:16:45 +00:00
FINERACT-228 - Is Staff to Client
This commit is contained in:
parent
18a7ddcdd3
commit
24cd3d2885
@ -240,6 +240,7 @@
|
||||
"label.input.transfertype":"Transfer Type",
|
||||
"label.input.true": "True",
|
||||
"label.input.false": "False",
|
||||
"label.input.isstaff":"Is Staff?",
|
||||
"label.input.repaymentdate" : "Repayment date",
|
||||
"label.input.resetconfirmationtext" : "Do you want to remove all your changes done upto now and reset to original Schedule?",
|
||||
"label.input.incorporationdate":"Incorporation Date",
|
||||
|
||||
@ -29,6 +29,7 @@
|
||||
accountNo: data.accountNo,
|
||||
staffId: data.staffId,
|
||||
externalId: data.externalId,
|
||||
isStaff: data.isStaff,
|
||||
mobileNo: data.mobileNo,
|
||||
savingsProductId: data.savingsProductId,
|
||||
genderId: data.gender.id,
|
||||
|
||||
@ -84,6 +84,13 @@
|
||||
<div class="col-sm-3">
|
||||
<input type="text" id="middlename" ng-model="formData.middlename" class="form-control"/>
|
||||
</div>
|
||||
<label data-ng-switch on="showNonPersonOptions" class="control-label col-sm-2" for="isStaff">{{ 'label.input.isStaff' | translate }}</label>
|
||||
|
||||
<div data-ng-switch on="showNonPersonOptions" class="col-sm-3">
|
||||
<label class="checkbox">
|
||||
<input type="checkbox" id="isStaff" ng-model="formData.isStaff">
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -70,6 +70,12 @@
|
||||
<div class="col-sm-3">
|
||||
<input id="middlename" type="text" ng-model="formData.middlename" class="form-control">
|
||||
</div>
|
||||
<label class="control-label col-sm-2" for="isStaff">{{ 'label.input.isStaff' | translate }}</label>
|
||||
<div class="col-sm-3">
|
||||
<label class="checkbox">
|
||||
<input type="checkbox" id="isStaff" ng-model="formData.isStaff">
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -550,6 +550,11 @@
|
||||
ng-show="!$last">|</span>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="table-bold">{{ 'label.input.isstaff' | translate }}</th>
|
||||
<td><span class="padded-td">{{client.isstaff}}</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr data-ng-show="client.mobileNo">
|
||||
<th class="table-bold">{{ 'label.input.mobilenumber' | translate }}</th>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user