Fix stock modal add/remove value preset value [SCI-6740]

This commit is contained in:
Anton 2022-04-19 13:44:53 +02:00
parent 42605e1a8a
commit 1be5ba9dd0

View file

@ -92,7 +92,6 @@ var RepositoryStockValues = (function() {
dropdownSelector.selectValues(UNIT_SELECTOR, $('#initial_units').val());
$('#operator').val($(this).data('operator'));
switch ($(this).data('operator')) {
case 'set':
dropdownSelector.enableSelector(UNIT_SELECTOR);
@ -175,6 +174,7 @@ var RepositoryStockValues = (function() {
});
$manageModal.modal('show');
amountChanged = false;
$('#stock-input-amount').focus();
$('#stock-input-amount')[0].selectionStart = $('#stock-input-amount')[0].value.length;
$('#stock-input-amount')[0].selectionEnd = $('#stock-input-amount')[0].value.length;