Ship and carry out in a single order on POS is now available for Retail Pro Merchants using eligible tax software
Shopify's Point of Sale (POS) now supports combining ship and carry out items in a single order for Retail Pro Merchants.
If you're a Retail Pro Merchant, you can now include carry out items and items that will ship at a later date in one transaction. Learn more about eligibility details.
Email templates changes
We've updated the default email templates in the Shopify admin under Settings > Notification for ,
Order confirmation
, Order invoice
, and Order edited
.
If you use the default template, no action is required. However, if you've customized your template, then we recommend reverting to the default template and reapplying your changes. If you choose not to revert, please review the object.
There will be two properties for Ship and carry out orders: one for In store and one for Shipping. Loop through the
to find the line items for each agreement. Key fields include:
: Indicates if the method is
In store
orShipping
. This field is translated to the buyer's checkout language.: Provides access to the line items specific to the
.
POS receipts template changes
We've updated the default POS receipt Shopify admin under Sales channels > Point of Sale > Customize > Receipts for footer.liquid
template. It now lists which items are shipped.
If you use the default footer template, no action is required. However, if you've customized your template, then we recommend reverting to the default footer template and reapplying your changes. If you choose not to revert, please review the object inside the
order
object to find all the items that are being shipped.
Behavior changes to the Order and FulfillmentOrder objects for Ship and carry out orders
The following is the high level impact to Order
and objects for Ship and carry out orders:
contains the tax lines for both the carry out and ship portions of the order. To determine which taxes are applied, refer to
Order.lineitems
..
- Multiple fulfillment orders are generated for a POS order that contains both Ship and carry out items. The
will either be
or
.
Check out some GraphQL examples for the order
and queries.
The following are relevant fields of the Order
object and the object for a Ship and carry out order.
Order object
: Stores the tax lines for the entire order, as generated by the configured tax software during checkout. For taxes charged on each
, refer to
, where
x
denotes the array index.Order.fulfillments
: Contains only the fulfilled parts of the order. Initially, it only displays the carry out portion. After the ship portion of the order is fulfilled, it will be listed here as well.: Contains the shipping address of the ship portion of the order.
: Contains the shipping lines that are relevant to the ship portion of the order.
Order.lineitems
.taxLines: The tax lines for this specific line item.
FulfillmentOrder object
For a given Ship and carry out order, there will be at least two objects. One
for the carry out and separate objects for ship portions.