28 lines
595 B
JavaScript
28 lines
595 B
JavaScript
import ngModule from '../module';
|
|
import Section from 'salix/components/section';
|
|
|
|
class Controller extends Section {
|
|
add() {
|
|
this.$.model.insert({
|
|
clientFk: this.client.id,
|
|
name: this.$translate.instant('Phone'),
|
|
phone: null
|
|
});
|
|
}
|
|
|
|
onSubmit() {
|
|
this.$.watcher.check();
|
|
this.$.model.save().then(() =>
|
|
this.$.watcher.notifySaved()
|
|
);
|
|
}
|
|
}
|
|
|
|
ngModule.component('vnClientContact', {
|
|
template: require('./index.html'),
|
|
controller: Controller,
|
|
bindings: {
|
|
client: '<'
|
|
}
|
|
});
|