import ngModule from '../module';
import Section from 'salix/components/section';

export default class Controller extends Section {
    onSubmit() {
        return this.$.watcher.submit().then(res =>
            this.$state.go('shelving.card.basicData', {id: res.data.id})
        );
    }
}

ngModule.vnComponent('vnShelvingCreate', {
    template: require('./index.html'),
    controller: Controller
});