Судя по коду этого модуля, он добавил в admin/view/template/sale/order_list.tpl вот такой кусок:
<script type="text/javascript"><!--
$(document).ready(function() {
$('.editable').editable(function(value, settings) {
var order_id = this.id;
var text_value = '';
$.ajax({
url: 'index.php?route=sale/order/history&token=<?php echo $token; ?>&order_id=' + order_id,
type: 'post',
dataType: 'html',
async: false,
data: 'order_status_id=' + encodeURIComponent(value) + '¬ify=0&append=0&comment=',
success: function(html) {
var data = $.parseJSON(settings.data);
text_value = data[value];
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
return(text_value);
}, {
data : '<?php echo $status_json; ?>',
type : 'select',
submit : 'OK'
});
});
//--></script>
Как видно, нужно руками заменить notify=0 на notify=1