salix/modules/order/front/create/index.js

21 lines
499 B
JavaScript
Raw Normal View History

2018-03-14 10:41:19 +00:00
import ngModule from '../module';
class Controller {
2018-07-09 11:54:43 +00:00
constructor($scope, $http, $state) {
2018-03-14 10:41:19 +00:00
this.$ = $scope;
2018-07-09 11:54:43 +00:00
this.$http = $http;
2018-03-14 10:41:19 +00:00
this.$state = $state;
}
2018-07-09 11:54:43 +00:00
async onSubmit() {
let newOrderID = await this.$.card.createOrder();
this.$state.go('order.card.summary', {id: newOrderID});
2018-03-14 10:41:19 +00:00
}
}
2018-07-09 11:54:43 +00:00
Controller.$inject = ['$scope', '$http', '$state'];
2018-03-14 10:41:19 +00:00
ngModule.component('vnOrderCreate', {
template: require('./index.html'),
controller: Controller
2018-03-14 10:41:19 +00:00
});