您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

checkout.rst 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ========
  2. Checkout
  3. ========
  4. Flow
  5. ----
  6. The checkout process comprises the following steps:
  7. 1. **Gateway** - For anonymous users, they are offered the choice of logging in, registering
  8. or checking out anonymously. Signed in users will be automatically redirected to the next
  9. step.
  10. 2. **Shipping address** - Enter or chooose a shipping address.
  11. 3. **Shipping method** - Chooose a shipping method. If only one shipping method is available
  12. then it is automatically chosen and the user is redirected onto the next step.
  13. 4. **Payment method** - Choose the method of payment plus any allocations if payment is to be
  14. split across multiple sources. If only one method is available, then the user is
  15. redirected onto the next step.
  16. 5. **Preview** - The prospective order can be previewed.
  17. 6. **Payment details** - If any sensitive payment details are required (eg bankcard number),
  18. then a form is presented within this step. This has to be the last step before submission
  19. so that sensitive details don't have to be stored in the session.
  20. 7. **Submission** - The order is placed.
  21. 8. **Thank you** - A summary of the order with any relevant tracking information.
  22. Customisation
  23. -------------
  24. The checkout can be customised in many ways as you can extend and override and class from
  25. oscar's core using the overriding core classes technique detailed previously.