|
@ -68,6 +68,12 @@ openerp.web_custom_search_quantity = function (instance) { |
|
|
}).blur(function() { |
|
|
}).blur(function() { |
|
|
$(this).trigger('change'); |
|
|
$(this).trigger('change'); |
|
|
}) |
|
|
}) |
|
|
|
|
|
.keypress(function(e) { |
|
|
|
|
|
if(e.which == 13) { |
|
|
|
|
|
$(this).trigger('change'); |
|
|
|
|
|
} |
|
|
|
|
|
}) |
|
|
|
|
|
.focus() |
|
|
.val(self._limit || '0'); |
|
|
.val(self._limit || '0'); |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|