Merge branch 'dev' of https://git.verdnatura.es/salix into dev

This commit is contained in:
nelo 2017-06-29 14:09:11 +02:00
commit 8e177fcb2d
2 changed files with 8 additions and 9 deletions

View File

@ -17,14 +17,15 @@
</vn-two>
<vn-one vn-horizontal>
<vn-one></vn-one>
<vn-autocomplete vn-two
<vn-autocomplete vn-two
initial-value="$ctrl.filter.warehouseFk"
show-field="name"
value-field="id"
field="$ctrl.warehouseFk"
field="$ctrl.filter.warehouseFk"
url="/production/api/Warehouses/production"
label="Store">
</vn-autocomplete>
<vn-icon-button vn-none pad-ten-top icon="refresh"></vn-icon-button>
<vn-icon-button vn-none pad-ten-top icon="refresh" ng-click="$ctrl.searchTickets()"></vn-icon-button>
</vn-one>
</vn-horizontal>
<vn-horizontal vn-one margin-large-bottom>

View File

@ -2,7 +2,7 @@ import ngModule from '../module';
import './style.scss';
export default class ProductionIndex {
constructor($element, $scope, $http, vnPopover) {
constructor($element, $scope, $http, vnPopover, aclConstant) {
this.$element = $element;
this.$ = $scope;
this.$http = $http;
@ -17,10 +17,8 @@ export default class ProductionIndex {
};
this.hourItems = [];
this.child = undefined;
this.warehouse = {
id: 1,
name: "Silla FV"
};
this.userProfile = aclConstant.userProfile;
this.filter.warehouseFk = this.userProfile.warehouseId;
}
// Actions Callbacks
@ -101,7 +99,7 @@ export default class ProductionIndex {
this.searchTickets();
}
}
ProductionIndex.$inject = ['$element', '$scope', '$http', 'vnPopover'];
ProductionIndex.$inject = ['$element', '$scope', '$http', 'vnPopover', 'aclConstant'];
ngModule.component('vnProductionIndex', {
template: require('./index.html'),