25 lines
486 B
JavaScript
25 lines
486 B
JavaScript
|
import ngModule from '../module';
|
||
|
import Section from 'salix/components/section';
|
||
|
|
||
|
export default class Controller extends Section {
|
||
|
get supplier() {
|
||
|
return this._supplier;
|
||
|
}
|
||
|
|
||
|
set supplier(value) {
|
||
|
this._supplier = value;
|
||
|
}
|
||
|
|
||
|
onSubmit() {
|
||
|
return this.$.watcher.submit();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ngModule.vnComponent('vnSupplierBillingData', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller,
|
||
|
bindings: {
|
||
|
supplier: '<'
|
||
|
}
|
||
|
});
|