Compare commits

...

7 Commits

Author SHA1 Message Date
decoder
a46ec03369 Merge branch 'Lang_function_update' of https://git.softuniq.eu/NW/Aknaproff into Lang_function_update 2024-04-25 23:40:56 +05:00
decoder
3485957da4 fix lang bug 2024-04-25 23:40:12 +05:00
decoder
2d0d36af7e fix lang bug 2024-04-25 23:29:44 +05:00
NW
4cf46bd449 change column 1.03 2024-04-23 09:22:09 +00:00
NW
90ed266998 change column 1.02 2024-04-23 09:16:58 +00:00
NW
ca3985a551 change column 2024-04-23 09:07:42 +00:00
NW
1bb5406b80 update 20.03.24 2024-03-20 10:00:37 +00:00
3 changed files with 867 additions and 45 deletions

View File

@ -278,7 +278,7 @@ class HomeController extends Controller
$forms = UserForm::join('forms', 'user_forms.form_id', '=', 'forms.id')
->leftJoin('users', 'forms.created_by', '=', 'users.id')
->where('user_forms.assigned_to', \Auth::id())
->select('user_forms.permissions as permissions', 'forms.name as name', 'forms.description as description', 'forms.id as form_id', 'forms.created_at as created_at', 'forms.slug as slug', 'users.name as created_by');
->select('user_forms.permissions as permissions', 'forms.name as name', 'forms.name_ru as name_ru', 'forms.name_est as name_est', 'forms.description as description', 'forms.description_ru as description_ru', 'forms.description_est as description_est', 'forms.id as form_id', 'forms.created_at as created_at', 'forms.slug as slug', 'users.name as created_by');
return DataTables::of($forms)
->addColumn(

File diff suppressed because one or more lines are too long

View File

@ -141,9 +141,10 @@
<div class="table-responsive">
<table class="table" id="assigned_form_table" style="width: 100%;">
<thead>
<tr>
<th>@lang('messages.name')</th>
<th>@lang('messages.description')</th>
<th>@lang('messages.name')</th>
@if (auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value))
<th>@lang('messages.created_by')</th>
@endif
@ -407,12 +408,22 @@
}
],
columns: [{
data: 'name',
name: 'forms.name'
data: descColName,
name: 'forms.' + descColName,
createdCell: function(td, cellData, rowData, row, col) {
if (td.innerHTML.length === 0) {
td.innerHTML = rowData.description
}
},
},
{
data: 'description',
name: 'forms.description'
data: titleColName,
name: 'forms.' + titleColName,
createdCell: function(td, cellData, rowData, row, col) {
if (td.innerHTML.length === 0) {
td.innerHTML = rowData.name
}
},
},
@if (auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value))
{
@ -427,6 +438,7 @@
]
});
//form collaborate
$(document).on('click', '.collab_btn', function() {
var url = $(this).data('href');