41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<vn-dialog class="edit"
|
|
vn-id="bankEntityDialog"
|
|
on-open="$ctrl.resetLocation()"
|
|
on-accept="$ctrl.onAccept()"
|
|
message="New bank entity">
|
|
<tpl-body>
|
|
<p translate>Please, ensure you put the correct data!</p>
|
|
<vn-horizontal>
|
|
<vn-textfield
|
|
vn-one
|
|
vn-focus
|
|
vn-id="entityName"
|
|
label="Name"
|
|
ng-model="$ctrl.location.name"
|
|
required="true">
|
|
</vn-textfield>
|
|
</vn-horizontal>
|
|
<vn-horizontal>
|
|
<vn-textfield
|
|
vn-one
|
|
vn-focus
|
|
vn-id="bic"
|
|
label="Swift"
|
|
ng-model="$ctrl.location.bic"
|
|
required="true">
|
|
</vn-textfield>
|
|
<vn-autocomplete vn-one
|
|
ng-model="$ctrl.location.countryFk"
|
|
url="Countries"
|
|
show-field="country"
|
|
value-field="id"
|
|
label="Country">
|
|
</vn-autocomplete>
|
|
</vn-horizontal>
|
|
</tpl-body>
|
|
<tpl-buttons>
|
|
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
|
|
<button id= "saveBankEntity" response="accept" translate>Save</button>
|
|
</tpl-buttons>
|
|
</vn-dialog>
|