forked from kahluaband/Homepage_BE_20th
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kahluaband#1 Feat: calculate price in general ticket (kahluaband#14)
* kahluaband#2 feat: add portone api * kahluaband#12 feat: add swagger * kahluaband#2 feat: modify ticket model and add general ticket view * kahluaband#1 feat: add ticket checkout and validation function * kahluaband#1 feat: add requirements.txt 8/1 * kahluaband#4 feat: add applyform create view * kahluaband#1 Fix: remove ordercompleteserializer in ticket.views * kahluaband#12 Fix: replace to empty db * kahluaband#1 Feat: calculate price in general_ticket * kahluaband#1 Feat: make reservation_id in general ticket * kahluaband#1 Feat: modify swagger in generalticketorderview
- Loading branch information
Showing
5 changed files
with
69 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.0 on 2023-08-06 10:18 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('tickets', '0002_ordertransaction'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='generalticket', | ||
name='reservation_id', | ||
field=models.CharField(max_length=10, null=True, unique=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters