2018-05-23 12:26:51 +00:00
|
|
|
import ngModule from '../../module';
|
2020-01-24 08:47:24 +00:00
|
|
|
import Component from 'core/lib/component';
|
2017-02-07 11:58:25 +00:00
|
|
|
|
2020-01-24 08:47:24 +00:00
|
|
|
export default class Controller extends Component {
|
2018-02-01 12:28:45 +00:00
|
|
|
removeObservation(index) {
|
2018-05-31 09:52:39 +00:00
|
|
|
this.$.watcher.setDirty();
|
|
|
|
this.$.model.remove(index);
|
2018-02-07 12:10:22 +00:00
|
|
|
}
|
|
|
|
|
2018-10-17 07:28:38 +00:00
|
|
|
cancel() {
|
2018-07-25 11:37:27 +00:00
|
|
|
this.goToIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
goToIndex() {
|
|
|
|
this.$state.go('client.card.address.index');
|
|
|
|
}
|
|
|
|
|
2019-07-08 12:07:09 +00:00
|
|
|
onResponse(response) {
|
|
|
|
this.address.postalCode = response.code;
|
|
|
|
}
|
|
|
|
|
2019-06-13 11:08:11 +00:00
|
|
|
onSubmit() {
|
2018-05-31 09:52:39 +00:00
|
|
|
this.$.watcher.check();
|
|
|
|
this.$.watcher.realSubmit()
|
|
|
|
.then(() => this.$.model.save(true))
|
|
|
|
.then(() => {
|
|
|
|
this.$.watcher.notifySaved();
|
2018-05-02 09:54:13 +00:00
|
|
|
this.card.reload();
|
2018-07-25 11:37:27 +00:00
|
|
|
this.goToIndex();
|
2018-02-01 12:28:45 +00:00
|
|
|
});
|
2018-03-16 14:08:36 +00:00
|
|
|
}
|
2020-01-24 08:47:24 +00:00
|
|
|
|
|
|
|
onCustomAgentAccept() {
|
|
|
|
return this.$http.post(`CustomsAgents`, this.newCustomsAgent)
|
|
|
|
.then(res => this.address.customsAgentFk = res.data.id);
|
|
|
|
}
|
2017-06-07 06:39:40 +00:00
|
|
|
}
|
|
|
|
|
2018-05-23 12:26:51 +00:00
|
|
|
ngModule.component('vnClientAddressEdit', {
|
|
|
|
template: require('./index.html'),
|
2018-05-02 09:54:13 +00:00
|
|
|
controller: Controller,
|
|
|
|
require: {
|
|
|
|
card: '^vnClientCard'
|
|
|
|
}
|
2017-06-03 11:01:47 +00:00
|
|
|
});
|