Skip to content

Commit

Permalink
feat: include SDGs in project approval template
Browse files Browse the repository at this point in the history
  • Loading branch information
keenthekeen committed Sep 20, 2024
1 parent 53e8804 commit 162f98a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion app/Http/Controllers/ProjectController.php
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,9 @@ public function generateApprovalDocument(Request $request, Project $project) {
'signer_s2_title' => 'ประธานฝ่าย/ประธานนิสิตแพทย์ชั้นปีที่.....',
'signer_s3_title' => 'อุปนายกสโมสรฝ่าย .....',
'signer_s4_title' => "นายกสโมสรนิสิต\nคณะแพทยศาสตร์ จุฬาลงกรณ์มหาวิทยาลัย",
'background' => $project->background
'background' => $project->background,
'sdgs' => $project->sdgs
? ('สอดคล้องกับเป้าหมายข้อที่ '.implode(', ', $project->sdgs)) : 'ไม่มีเป้าหมายที่สอดคล้อง',
]);
if ($organizer = $project->participants->where('type', 'organizer')->first()) {
$template->setValues([
Expand Down
6 changes: 5 additions & 1 deletion resources/js/Pages/ProjectCreate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,11 @@
<p>จุฬาลงกรณ์มหาวิทยาลัยมุ่งมั่นที่จะบรรลุ<a href="https://sdgs.un.org/goals" target="_blank" class="text-green-600">เป้าหมายการพัฒนาอย่างยั่งยืน
(SDGs)</a>
17 ประการขององค์การสหประชาชาติ</p>
<p class="mt-2">กรุณากดเลือกเป้าหมายที่เกี่ยวข้อง (ถ้ามี)</p>
<p class="mt-2 text-blue-600">กรุณากดเลือกเป้าหมายที่เกี่ยวข้อง (ถ้ามี)</p>
<p class="mt-2">
วัตถุประสงค์ของโครงการควรสอดคล้องกับเป้าหมายที่เลือก เช่น มีวัตถุประสงค์
"เพื่อส่งเสริมสุขภาพและป้องกันโรคให้กับคนในชุมชน" จึงเลือกเป้าหมายข้อที่ 3
</p>
</template>
<template #form>
<SDGSelector class="col-span-6" v-model="form.sdgs"/>
Expand Down
Binary file modified storage/project_approval_template.docx
Binary file not shown.

0 comments on commit 162f98a

Please sign in to comment.