From: marina Date: Tue, 3 Jun 2025 10:22:27 +0000 (+0300) Subject: ERP-417 X-Git-Url: https://gitweb.erp-flowers.ru/?a=commitdiff_plain;h=e5c58af4e0405286225612c16a1362cda92e07ce;p=erp24_rep%2Fyii-erp24%2F.git ERP-417 --- diff --git a/erp24/views/write_offs_erp/view.php b/erp24/views/write_offs_erp/view.php index 5ab4ebb1..7a3a7438 100644 --- a/erp24/views/write_offs_erp/view.php +++ b/erp24/views/write_offs_erp/view.php @@ -196,35 +196,41 @@ $this->registerCssFile('/css/write-offs-erp.css', ['position' => \yii\web\View:: if (in_array($model->store_id, [1, 9, 28]) && !in_array(Yii::$app->user->id, [785, 1463, 1070, 826, 1036])) { $class .= ' disabled'; } - echo Html::button('Согласовать', [ - 'title' => 'Согласовать списания на Ванеева, Народная и Революции могут только Трушина Вера, Горячев Дмитрий, Яшенкова Алена и Емельянова Ольга', - 'class' => $class, - 'onclick' => " - if (confirm('Вы уверены, что хотите согласовать этот документ?')) { - $('.error-text').text(''); - $.ajax ({ - url: '/write-offs-erp/confirm-write-off', - type: 'POST', - dataType: 'json', - data: { - id : '" . $model->id . "' - }, - success: function(model) { - console.log(model); - alert(model); - location.reload(); - - }, - error: function(model){ - console.log(model); - alert('Ошибка согласования: ' + model.responseText); - $('.error-text').text(model.responseText); - } - }); - } - - " - ]); + echo Html::tag('span', + Html::button('Согласовать', [ + 'class' => $class, + 'onclick' => " + if (confirm('Вы уверены, что хотите согласовать этот документ?')) { + $('.error-text').text(''); + $.ajax ({ + url: '/write-offs-erp/confirm-write-off', + type: 'POST', + dataType: 'json', + data: { + id : '" . $model->id . "' + }, + success: function(model) { + console.log(model); + alert(model); + location.reload(); + }, + error: function(model){ + console.log(model); + alert('Ошибка согласования: ' + model.responseText); + $('.error-text').text(model.responseText); + } + }); + } + ", + ]), + [ + 'title' => 'Согласовать списания на Ванеева, Народная и Революции могут только Трушина Вера, Горячев Дмитрий, Яшенкова Алена и Емельянова Ольга', + 'data-bs-toggle' => 'tooltip', + 'data-bs-placement' => 'top', + 'style' => 'display:inline-block; cursor:not-allowed;', + ] + ); + ?>