добавил такой код в папке sale.order.ajax в файле order_ajax.js
let text;
$(document).on('click', '.bx-soa-pp-company', function () {
if (document.querySelector("#soa-property-7")) {
document.querySelector("#soa-property-7").addEventListener('input', function () {
text = localStorage.setItem('test', document.querySelector("#soa-property-7").value);
});
} else {
localStorage.setItem('test', '');
text = localStorage.test;
}
});
function getTextInput() {
if (localStorage.getItem('test')) {
return text = localStorage.getItem('test')
} else {
return text = '';
}
}
и добавил вызов функции сюда: