Skip to main content
Log inSign up

Shopify uses cookies to provide necessary site functionality and improve your experience. By using our website, you agree to our privacy policy and our cookie policy.

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 POS and mobile receipt, 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 delivery_agreements object.

There will be two delivery_agreements properties for Ship and carry out orders: one for In store and one for Shipping. Loop through the delivery_agreements to find the line items for each agreement. Key fields include:

  • delivery_agreement.delivery_method_name: Indicates if the method is In store or Shipping. This field is translated to the buyer's checkout language.
  • delivery_agreement.line_items: Provides access to the line items specific to the delivery_agreement.

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 shipping_groups 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 FulfillmentOrder objects for Ship and carry out orders:

  • Order.taxLines 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.taxLines.
  • Multiple fulfillment orders are generated for a POS order that contains both Ship and carry out items. The deliveryMethod.methodType will either be RETAIL or SHIPPING.

Check out some GraphQL examples for the order and fulfillmentOrder queries.

The following are relevant fields of the Order object and the FulfillmentOrder object for a Ship and carry out order.

Order object

  • Order.taxLines: Stores the tax lines for the entire order, as generated by the configured tax software during checkout. For taxes charged on each LineItem, refer to Order.lineitems[x].taxLines, 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.
  • Order.shippingAddress: Contains the shipping address of the ship portion of the order.
  • Order.shippingLines: 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 FulfillmentOrder objects. One FulfillmentOrder for the carry out and separate objects for ship portions.

Was this section helpful?