Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
simpmw
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alfiro Pratama
simpmw
Commits
9cf90b69
Commit
9cf90b69
authored
Jul 16, 2024
by
Alfiro Pratama
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload Laporan Magang Monev I
parent
69f3f68d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
155 additions
and
19 deletions
+155
-19
app/Http/Controllers/Mahasiswa/LuaranController.php
+16
-11
app/Http/Controllers/Operator/DaftarProposalController.php
+1
-1
app/Http/Controllers/Operator/MonevProposalController.php
+127
-1
app/Models/DaftarProposal.php
+1
-1
app/Models/DaftarProposalMonev.php
+5
-0
app/Models/ProposalLuaran.php
+1
-1
resources/views/backend/mahasiswa/luaran/index.blade.php
+0
-0
resources/views/backend/mahasiswa/monev/indexmonevI.blade.php
+1
-1
resources/views/backend/mahasiswa/monev/upload_monev.blade.php
+1
-1
resources/views/backend/operator/daftar_proposal/monev.blade.php
+2
-2
No files found.
app/Http/Controllers/Mahasiswa/LuaranController.php
View file @
9cf90b69
...
...
@@ -69,8 +69,10 @@ class LuaranController extends Controller
'judul'
=>
$luaran
[
'judul'
],
'jenis_luaran'
=>
$luaran
[
'jenis_luaran'
],
'keterangan_luaran'
=>
$luaran
[
'keterangan_luaran'
],
'kategori_luaran'
=>
$luaran
[
'jenis_luaran_lainnya'
]
===
'Lainnya'
?
$luaran
[
'jenis_luaran_lainnya'
]
:
null
,
'file_luaran'
=>
$file_nama
,
'created_user'
=>
Auth
::
user
()
->
id
'created_user'
=>
Auth
::
user
()
->
id
,
'updated_user'
=>
Auth
::
user
()
->
id
]);
return
redirect
()
->
route
(
'mahasiswa.luaran.show'
,
encrypt
(
$luaran
[
'proposal_id'
]))
->
with
(
'success'
,
'Proposal Berhasil ditambahkan'
);
...
...
@@ -85,7 +87,7 @@ class LuaranController extends Controller
public
function
show
(
$id
)
{
//
$title
=
'
Proposal Luaran
Mahasiswa'
;
$title
=
'
Unggah Laporan Magang
Mahasiswa'
;
$proposal
=
Proposal
::
with
([
'rluaran'
,
'rPeriode'
])
->
find
(
decrypt
(
$id
));
$data
=
[
...
...
@@ -100,15 +102,18 @@ class LuaranController extends Controller
{
$pro
=
$request
->
except
(
'_token'
);
$proposal
=
Proposal
::
query
()
->
find
(
decrypt
(
$pro
[
'id'
]));
Storage
::
disk
(
'static'
)
->
delete
(
'simpmw/luaran/'
.
$proposal
->
jenis_luaran
.
'/'
.
$proposal
->
file_luaran
);
$proposal
->
delete
();
Alert
::
success
(
'Berhasil dihapus'
);
return
redirect
()
->
route
(
'mahasiswa.luaran.index'
);
// Dekripsi ID hanya sekali
$id
=
decrypt
(
$pro
[
'id'
]);
$proposal
=
ProposalLuaran
::
query
()
->
find
(
$id
);
if
(
$proposal
)
{
Storage
::
disk
(
'static'
)
->
delete
(
'simpmw/luaran/'
.
$proposal
->
jenis_luaran
.
'/'
.
$proposal
->
file_luaran
);
$proposal
->
delete
();
return
response
()
->
json
([
'status'
=>
'success'
,
'message'
=>
'Berhasil dihapus'
]);
}
else
{
return
response
()
->
json
([
'status'
=>
'error'
,
'message'
=>
'Proposal tidak ditemukan'
]);
}
}
public
function
dosen
(
$id
)
...
...
app/Http/Controllers/Operator/DaftarProposalController.php
View file @
9cf90b69
...
...
@@ -176,7 +176,7 @@ class DaftarProposalController extends Controller
$lolos
=
"confirmFinal('"
.
Crypt
::
encrypt
(
$proposal_id
)
.
"', '1')"
;
$tidak_lolos
=
"confirmFinal('"
.
Crypt
::
encrypt
(
$proposal_id
)
.
"', '2')"
;
$batalkanNilai1
=
//
$batalkanNilai1 =
$disable_1
=
$disable_2
=
''
;
...
...
app/Http/Controllers/Operator/MonevProposalController.php
View file @
9cf90b69
This diff is collapsed.
Click to expand it.
app/Models/DaftarProposal.php
View file @
9cf90b69
...
...
@@ -12,7 +12,7 @@ class DaftarProposal extends Model
protected
$keyType
=
'string'
;
protected
$fillable
=
[
'proposal_id'
,
'jenis_id'
,
'kode'
,
'jenis_pkm'
,
'judul'
,
'status'
,
'status_hapus'
,
'status_administrasi_1'
,
'status_administrasi_2'
,
'reviewer_id_1'
,
'reviewer_id_2'
,
'status_final'
,
'nidn_reviewer_id_1'
,
'nidn_reviewer_id_2'
,
'upload_dokumen'
,
'date_upload'
,
'date_approval'
,
'identitas_ketua'
,
'identitas_dospem'
,
'periode'
'proposal_id'
,
'jenis_id'
,
'kode'
,
'jenis_pkm'
,
'judul'
,
'status'
,
'status_hapus'
,
'status_administrasi_1'
,
'status_administrasi_2'
,
'reviewer_id_1'
,
'reviewer_id_2'
,
'status_final'
,
'nidn_reviewer_id_1'
,
'nidn_reviewer_id_2'
,
'upload_dokumen'
,
'date_upload'
,
'date_approval'
,
'identitas_ketua'
,
'identitas_dospem'
,
'periode'
,
'url'
];
public
function
rKelompokDetil
()
...
...
app/Models/DaftarProposalMonev.php
View file @
9cf90b69
...
...
@@ -23,4 +23,9 @@ class DaftarProposalMonev extends Model
{
return
$this
->
hasMany
(
\App\Models\KelompokDetail
::
class
,
'kelompok_id'
,
'kelompok_id'
);
}
public
function
proposalUrl
()
{
return
$this
->
belongsTo
(
ProposalUrl
::
class
,
'proposal_id'
,
'proposal_id'
);
}
}
app/Models/ProposalLuaran.php
View file @
9cf90b69
...
...
@@ -22,7 +22,7 @@ class ProposalLuaran extends Model
'proposal_id'
,
'judul'
,
'jenis_luaran'
,
'k
e
tegori_luaran'
,
'k
a
tegori_luaran'
,
'keterangan_luaran'
,
'file_luaran'
,
'created_user'
,
...
...
resources/views/backend/mahasiswa/luaran/index.blade.php
View file @
9cf90b69
This diff is collapsed.
Click to expand it.
resources/views/backend/mahasiswa/monev/indexmonevI.blade.php
View file @
9cf90b69
...
...
@@ -97,7 +97,7 @@
</td>
<td align="
center
">
<button data-bs-toggle="
modal
" data-bs-target="
{{
'#lihat'
.
$item
->
id
}}
" class="
btn
btn
-
success
btn
-
sm
form
-
control
mb
-
2
"><i class="
fas
fa
-
search
"></i> Hasil Penilaian</button>
<a href="
{{
URL
::
to
(
'mahasiswa/monev-revisi/'
.
encrypt
(
$item
->
id
.
'__proposal__I'
))
}}
" type="
button
" class="
btn
btn
-
danger
btn
-
sm
waves
-
effect
waves
-
light
form
-
control
" data-bs-toggle="
tooltip
" data-bs-placement="
bottom
" title="
Revisi
Proposal
"><i class="
fas
fa
-
file
-
upload
"></i> Revisi</a>
<a href="
{{
URL
::
to
(
'mahasiswa/monev-revisi/'
.
encrypt
(
$item
->
proposal_
id
.
'__proposal__I'
))
}}
" type="
button
" class="
btn
btn
-
danger
btn
-
sm
waves
-
effect
waves
-
light
form
-
control
" data-bs-toggle="
tooltip
" data-bs-placement="
bottom
" title="
Revisi
Proposal
"><i class="
fas
fa
-
file
-
upload
"></i> Revisi</a>
<div id="
{{
'lihat'
.
$item
->
id
}}
" class="
modal
fade
" tabindex="
-
1
" role="
dialog
"
aria-labelledby="
lihatLabel
" aria-hidden="
true
">
...
...
resources/views/backend/mahasiswa/monev/upload_monev.blade.php
View file @
9cf90b69
...
...
@@ -83,7 +83,7 @@
<div class="
mb
-
0
">
<div>
<button type="
submit
" class="
btn
btn
-
primary
waves
-
effect
waves
-
light
me
-
1
"> Submit </button>
<button type="
button
" onclick="
window
.
location
.
href
=
'{{ URL::to('
/
mahasiswa
/
monev
/
II
') }}'
" class="
btn
btn
-
secondary
waves
-
effect
"> Cancel </button>
<button type="
button
" onclick="
window
.
history
.
back
();
" class="
btn
btn
-
secondary
waves
-
effect
"> Cancel </button>
</div>
</div>
</form>
...
...
resources/views/backend/operator/daftar_proposal/monev.blade.php
View file @
9cf90b69
...
...
@@ -21,7 +21,7 @@
<div class="
col
-
md
-
8
">
<h6 class="
page
-
title
">{!!
$title
!!}</h6>
<ol class="
breadcrumb
m
-
0
">
<li class="
breadcrumb
-
item
">
Monev Internal I
</li>
<li class="
breadcrumb
-
item
">
{{
$jenis_monev->nama
}}
</li>
<li class="
breadcrumb
-
item
">{!!
$title
!!}</li>
</ol>
</div>
...
...
@@ -82,7 +82,7 @@
<br>
<div class="
table
-
responsive
">
<table id="
example
" class="
table
table
-
bordered
dt
-
responsive
wrap
" style="
border
-
collapse
:
collapse
;
border
-
spacing
:
0
;
width
:
100
%
;
">
<thead>
<thead
align="
center
" style="
vertical
-
align
:
middle
;
"
>
<tr>
<th rowspan="
2
">id</th>
<th rowspan="
2
">Kode Kelompok</th>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment