Gitlab@Informatics
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
65160394
Project
Commits
c3b517dc
Commit
c3b517dc
authored
2 weeks ago
by
65160394
Browse files
Options
Downloads
Patches
Plain Diff
Project Round 11
parent
891484d4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
models/tourModel.js
+16
-12
16 additions, 12 deletions
models/tourModel.js
views/index.ejs
+0
-2
0 additions, 2 deletions
views/index.ejs
with
16 additions
and
14 deletions
models/tourModel.js
+
16
−
12
View file @
c3b517dc
...
...
@@ -100,30 +100,34 @@ class Tour {
if
(
!
id
)
{
throw
new
Error
(
"
Tour ID is required
"
);
}
// ตรวจสอบว่าทัวร์มีอยู่จริง
const
checkQuery
=
'
SELECT * FROM tours WHERE id = ?
'
;
const
[
tours
]
=
await
pool
.
execute
(
checkQuery
,
[
id
]);
if
(
tours
.
length
===
0
)
{
throw
new
Error
(
`ไม่พบทัวร์ที่ต้องการลบ ID:
${
id
}
`
);
throw
new
Error
(
"
Tour not found
"
);
}
// ลบ bookings ที่เกี่ยวข้องก่อน
const
deleteBookingsQuery
=
'
DELETE FROM bookings WHERE tour_id = ?
'
;
await
pool
.
execute
(
deleteBookingsQuery
,
[
id
]);
// ลบ tour หลังจาก bookings ถูกลบแล้ว
const
deleteTourQuery
=
'
DELETE FROM tours WHERE id = ?
'
;
const
[
result
]
=
await
pool
.
execute
(
deleteTourQuery
,
[
id
]);
// แจ้งเตือนก่อนลบ
const
userConfirmation
=
confirm
(
`คุณต้องการลบทัวร์ "
${
tours
[
0
].
name
}
" หรือไม่?`
);
if
(
!
userConfirmation
)
{
throw
new
Error
(
"
ลบทัวร์ถูกยกเลิก
"
);
}
// ลบข้อมูลทัวร์จากฐานข้อมูล
const
deleteQuery
=
'
DELETE FROM tours WHERE id = ?
'
;
const
[
result
]
=
await
pool
.
execute
(
deleteQuery
,
[
id
]);
console
.
log
(
"
Delete result:
"
,
result
);
return
result
;
}
catch
(
error
)
{
console
.
error
(
'
Error deleting tour:
'
,
error
);
throw
new
Error
(
'
เกิดข้อผิดพลาดในการลบทัวร์
'
);
}
}
}
...
...
This diff is collapsed.
Click to expand it.
views/index.ejs
+
0
−
2
View file @
c3b517dc
...
...
@@ -13,7 +13,6 @@
<nav>
<
%
if
(
session
&&
session.userId
)
{
%
>
<a
href=
"/create"
class=
"btn-create"
>
Create Tour
</a>
<a
href=
"/create-booking"
class=
"btn-create"
>
Create Booking
</a>
<
%
}
%
>
<form
action=
"/search"
method=
"GET"
class=
"search-container"
>
<input
type=
"text"
name=
"query"
placeholder=
"Search for tours..."
required
>
...
...
@@ -21,7 +20,6 @@
</form>
<
%
if
(
session
&&
session.userId
)
{
%
>
<!-- ตรวจสอบ session -->
<a
href=
"/bookinglist"
>
Booking List
</a>
<a
href=
"/logout"
>
Logout
</a>
<
%
}
else
{
%
>
<a
href=
"/login"
class=
"login-btn"
>
Login
</a>
<!-- ถ้ายังไม่ได้ login -->
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment