Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

注文画面の UI や確認ダイアログの追加 #65

Merged
merged 8 commits into from
Oct 3, 2024

Conversation

SuzuSys
Copy link
Contributor

@SuzuSys SuzuSys commented Oct 2, 2024

  • orders.py の order_sessions の型を変更
  • 変更した order_sessions の型に合わせ、orders.py の各関数を変更
  • 変更した order_sessions の型に合わせ、components/order-session.html の for loop 処理の変更
  • 確認ダイアログ components/order-confirm.html の追加
  • 確認ダイアログのリクエスト処理をする get_order_session_to_confirm() の追加
  • 商品の name, price, count をまとめた ProductCompact クラスの追加
  • components/order-session.html の UI の変更

Resolves #50

@SuzuSys SuzuSys changed the title 注文画面の UI や確認ダイアログの追加 #50 注文画面の UI や確認ダイアログの追加 Oct 2, 2024
@exflikt exflikt mentioned this pull request Oct 3, 2024
@exflikt
Copy link
Collaborator

exflikt commented Oct 3, 2024

ダイアログの実装してくださってありがとうございます!
ちなみに、勝手にですが 3cfb209ProductCompact クラスを定義しているファイルを app/store/product.py に変更しました。

placement_status の表示場所を検討する必要があると思いますが、とりあえずマージします。

app/templates.py Outdated
Comment on lines 19 to 23
class ProductCompact:
def __init__(self, name: str, price: int):
self.name = name
self.price = Product.to_price_str(price)
self.count = 1
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ProductCompact クラスは app/templates.py じゃなくて app/store/product.py に定義しちゃっていいと思います。

@exflikt exflikt merged commit de93666 into tut-cc:main Oct 3, 2024
1 check passed
@exflikt
Copy link
Collaborator

exflikt commented Oct 3, 2024

発行された注文番号の表示場所については #68 を開きました。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

注文画面について
2 participants