This commit is contained in:
parent
d1acd60d5a
commit
d56c7ff540
|
@ -168,13 +168,14 @@
|
|||
</vn-confirm>
|
||||
<vn-dialog
|
||||
vn-id="changeShippedDialog"
|
||||
on-open="$ctrl.focusInput()"
|
||||
on-response="$ctrl.changeShipped(response)">
|
||||
<tpl-body>
|
||||
<div>
|
||||
<h5 style="text-align: center">
|
||||
<span translate>Change shipped hour</span>
|
||||
</h5>
|
||||
<vn-input-time vn-one model="$ctrl.newShipped" label="Shipped hour"></vn-input-time>
|
||||
<vn-input-time vn-id="newShipped" vn-one model="$ctrl.newShipped" label="Shipped hour"></vn-input-time>
|
||||
</div>
|
||||
</tpl-body>
|
||||
<tpl-buttons>
|
||||
|
|
|
@ -297,6 +297,10 @@ class Controller {
|
|||
);
|
||||
}
|
||||
}
|
||||
|
||||
focusInput() {
|
||||
this.$scope.newShipped.focus();
|
||||
}
|
||||
}
|
||||
|
||||
Controller.$inject = ['$state', '$scope', '$http', 'vnApp', '$translate', 'aclService'];
|
||||
|
|
Loading…
Reference in New Issue