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

Add missing doc links #2948

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 11 additions & 22 deletions guides/source/developers/orders/overview.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,29 +87,22 @@ The `Spree::LineItem` model provides the cost of each item added to an order.
Line items provide a link between the order and `Spree::Product`s and
`Spree::Variant`s.

<!-- For more information about line items, products, and variants, see the
[Products and variants][products-and-variants] documentation. -->
For more information about line items, products, and variants, see the
[Products and variants][products-and-variants] documentation.

<!-- TODO:
Add link to products and variants documentation once it is merged.
Add link to line item-specific documentation once it has been written and
merged.
-->
[products-and-variants]: ../products-and-variants/overview.html

### Adjustments

The `Spree::Adjustment` model provides the cost of each adjustment to an order,
line item, or shipment on an order. Adjustments can decrease the total (via
promotions) or increase it (via [shipments][shipments] and [taxes][taxes]).

<!-- For more information, see the [Adjustments][adjustments] documentation -->
[promotions][promotions]) or increase it (via [shipments][shipments] and [taxes][taxes]).

<!-- TODO:
Add link to promotions guide once it is merged.
Add link to adjustments guide once it is merged.
-->
For more information, see the [Adjustments][adjustments] documentation.

[promotions]: ../promotions/overview.html
[taxes]: ../taxation/overview.html
[adjustments]: ../adjustments/overview.html

### Shipments

Expand All @@ -133,23 +126,19 @@ order via the `ship_address_id` and `bill_address_id`. An order may have one or
two different addresses associated it, depending on the customer's preferred
shipping and billing address.

<!-- For more information, see the [Addresses][addresses] documentation. -->
For more information, see the [Addresses][addresses] documentation.

<!-- TODO:
Add link to addresses guide once it is merged.
-->
[addresses]: ../users/addresses.html

### Payments

The `Spree::Payment` model stores payment information for the order. Once the
payment object is updated with the amount paid, this updates the corresponding
order's `payment_total` value.

<!-- For more information, see the [Payments][payments] documentation. -->
For more information, see the [Payments][payments] documentation.

<!-- TODO:
Add link to payments guide once it is merged.
-->
[payments]: ../payments/overview.html

### Return Authorizations

Expand Down