bugs fixed
This commit is contained in:
parent
5b5523e6b6
commit
5e2be42247
|
@ -29,7 +29,7 @@
|
||||||
</vn-horizontal>
|
</vn-horizontal>
|
||||||
<vn-horizontal vn-one margin-large-bottom>
|
<vn-horizontal vn-one margin-large-bottom>
|
||||||
<vn-one>
|
<vn-one>
|
||||||
<vn-production-actions tickets="$ctrl.tickets" states="$ctrl.states"></vn-production-actions>
|
<vn-production-actions tickets="$ctrl.tickets" states="$ctrl.states" hour-items="$ctrl.hourItems"></vn-production-actions>
|
||||||
</vn-one>
|
</vn-one>
|
||||||
<vn-two></vn-two>
|
<vn-two></vn-two>
|
||||||
</vn-horizontal>
|
</vn-horizontal>
|
||||||
|
|
|
@ -107,7 +107,8 @@ ngModule.component('vnProductionActions', {
|
||||||
template: require('./production-actions.html'),
|
template: require('./production-actions.html'),
|
||||||
bindings: {
|
bindings: {
|
||||||
tickets: '<',
|
tickets: '<',
|
||||||
states: '<'
|
states: '<',
|
||||||
|
hourItems: '<'
|
||||||
},
|
},
|
||||||
controller: ProductionActions
|
controller: ProductionActions
|
||||||
});
|
});
|
||||||
|
|
|
@ -39,8 +39,7 @@ ngModule.component('vnProductionTable', {
|
||||||
template: require('./production-table.html'),
|
template: require('./production-table.html'),
|
||||||
bindings: {
|
bindings: {
|
||||||
tickets: '=',
|
tickets: '=',
|
||||||
footer: '<',
|
footer: '<'
|
||||||
selected: '='
|
|
||||||
},
|
},
|
||||||
controller: ProductionTable
|
controller: ProductionTable
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue