salix/modules/client/front/billing-data/index.html

138 lines
4.9 KiB
HTML
Raw Normal View History

<mg-ajax path="/client/api/Clients/{{patch.params.id}}" options="vnPatch"></mg-ajax>
<vn-watcher
vn-id="watcher"
data="$ctrl.client"
form="form"
save="patch">
2017-05-23 08:58:17 +00:00
</vn-watcher>
2018-12-14 11:56:21 +00:00
<form name="form" ng-submit="$ctrl.onSubmit()" compact>
<vn-card class="vn-pa-lg">
2018-03-01 22:38:14 +00:00
<vn-horizontal>
2018-05-31 11:34:48 +00:00
<vn-autocomplete
vn-one
label="Billing data"
2018-10-16 11:06:58 +00:00
vn-acl="salesAssistant"
2018-03-01 22:38:14 +00:00
field="$ctrl.client.payMethodFk"
url="/client/api/PayMethods"
2018-10-18 07:24:20 +00:00
fields="['ibanRequired']"
2018-05-31 11:34:48 +00:00
initial-data="$ctrl.client.payMethod">
2018-03-01 22:38:14 +00:00
</vn-autocomplete>
<vn-input-number vn-one min="0" step="1"
2018-05-31 11:45:51 +00:00
label="Due day"
field="$ctrl.client.dueDay"
2018-10-17 10:49:18 +00:00
vn-acl="salesAssistant">
</vn-input-number>
2018-05-31 11:45:51 +00:00
</vn-horizontal>
<vn-horizontal>
<vn-textfield
2018-05-31 11:34:48 +00:00
vn-one
2018-05-31 11:45:51 +00:00
label="IBAN"
field="$ctrl.client.iban"
on-change="$ctrl.autofillBic()"
2018-10-17 10:49:18 +00:00
vn-acl="salesAssistant">
</vn-textfield>
2018-10-17 10:49:18 +00:00
<vn-autocomplete vn-one
2018-10-16 11:06:58 +00:00
label="Swift / BIC"
url="/client/api/BankEntities"
field="$ctrl.client.bankEntityFk"
fields="['name']"
2018-10-16 11:06:58 +00:00
initial-data="$ctrl.client.bankEntityFk"
2018-11-22 14:17:35 +00:00
on-change="$ctrl.autofillBic()"
2019-01-28 09:04:08 +00:00
search-function="{or: [{bic: {like: $search +'%'}}, {name: {like: '%'+ $search +'%'}}]}"
2018-10-16 11:06:58 +00:00
value-field="id"
show-field="bic"
2018-11-23 07:44:19 +00:00
vn-acl="salesAssistant"
disabled="$ctrl.ibanCountry == 'ES'">
2018-10-16 11:06:58 +00:00
<tpl-item>
<vn-horizontal>
<vn-one>{{bic}}</vn-one>
<vn-one>
<div class="ellipsize" style="max-width: 10em">{{name}}</div>
</vn-one>
</vn-horizontal>
</tpl-item>
</vn-autocomplete>
<vn-icon-button
vn-auto
class="vn-my-md"
2018-10-17 10:49:18 +00:00
icon="add_circle"
vn-tooltip="New bank entity"
vn-dialog="bankEntityDialog"
2018-10-16 11:06:58 +00:00
vn-acl="salesAssistant">
2018-10-17 10:49:18 +00:00
</vn-icon-button>
2018-03-01 22:38:14 +00:00
</vn-horizontal>
<vn-horizontal class="vn-py-sm">
2018-03-01 22:38:14 +00:00
<vn-one>
<vn-check
2018-07-10 12:47:52 +00:00
label="Received LCR"
field="$ctrl.client.hasLcr"
2018-10-16 11:06:58 +00:00
vn-acl="salesAssistant">
</vn-check>
2018-03-01 22:38:14 +00:00
</vn-one>
<vn-one>
<vn-check
label="Received core VNL"
field="$ctrl.client.hasCoreVnl"
2018-10-16 11:06:58 +00:00
vn-acl="salesAssistant">
</vn-check>
2018-03-01 22:38:14 +00:00
</vn-one>
<vn-one>
<vn-check
label="Received B2B VNL"
field="$ctrl.client.hasSepaVnl"
2018-10-16 11:06:58 +00:00
vn-acl="salesAssistant">
</vn-check>
2018-03-01 22:38:14 +00:00
</vn-one>
</vn-horizontal>
2017-05-23 08:58:17 +00:00
</vn-card>
<vn-button-bar>
2018-10-16 11:06:58 +00:00
<vn-submit label="Save" vn-acl="salesAssistant"></vn-submit>
2019-09-18 07:41:25 +00:00
<vn-button label="Undo changes" ng-if="watcher.dataChanged()" ng-click="watcher.loadOriginalData()"></vn-button>
2017-05-23 08:58:17 +00:00
</vn-button-bar>
2018-10-17 10:49:18 +00:00
</form>
<!-- Create bank entity dialog -->
<vn-dialog class="edit"
vn-id="bankEntityDialog"
on-open="$ctrl.onBankEntityOpen()"
on-response="$ctrl.onBankEntityResponse(response)">
<tpl-body>
<h5 class="vn-py-sm" translate>New bank entity</h5>
2018-10-17 10:49:18 +00:00
<vn-horizontal>
<vn-textfield vn-one
label="Name"
2019-06-17 06:14:48 +00:00
model="$ctrl.newBankEntity.name"
required="true">
2018-10-17 10:49:18 +00:00
</vn-textfield>
</vn-horizontal>
<vn-horizontal>
2019-06-17 06:14:48 +00:00
<vn-autocomplete vn-id="country" vn-one
2018-10-17 10:49:18 +00:00
label="Country"
field="$ctrl.newBankEntity.countryFk"
2019-06-17 06:14:48 +00:00
fields="['id', 'country', 'code']"
2018-10-17 10:49:18 +00:00
url="/client/api/Countries"
value-field="id"
2019-06-17 06:14:48 +00:00
show-field="country"
required="true">
2018-10-17 10:49:18 +00:00
</vn-autocomplete>
</vn-horizontal>
2019-03-07 08:55:22 +00:00
<vn-horizontal>
<vn-textfield vn-one
2019-06-17 06:14:48 +00:00
label="Entity Code"
model="$ctrl.newBankEntity.id"
ng-show="country.selection.code === 'ES'">
2019-03-07 08:55:22 +00:00
</vn-textfield>
</vn-horizontal>
2018-10-17 10:49:18 +00:00
<vn-horizontal>
<vn-textfield vn-one
label="Swift / BIC"
2019-06-17 06:14:48 +00:00
model="$ctrl.newBankEntity.bic"
required="true">
2018-10-17 10:49:18 +00:00
</vn-textfield>
</vn-horizontal>
</tpl-body>
<tpl-buttons>
<input type="button" response="CANCEL" translate-attr="{value: 'Cancel'}"/>
<button response="ACCEPT" translate>Create</button>
</tpl-buttons>
</vn-dialog>