Documentation
Feedback
Guides
VTEX IO Apps

VTEX IO Apps
B2B components
Quickorder
Official extension
Version: 3.14.0
Latest version: 3.14.0

{"base64":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAIAAAB2XpiaAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVR4nGPg4+Mz1Nfjl5T7f2c+AAzxA3lptuDWAAAAAElFTkSuQmCC","img":{"src":"https://img.shields.io/badge/all_contributors-0-orange.svg?style=flat-square","width":110,"height":20,"type":"svg"}}

The Quickorder app, designed for B2B scenarios, creates a custom page in your store aimed at purchases in bulk, offering tools such as uploading a spreadsheet to make bulk orders more agile.

{"base64":"  ","img":{"width":1540,"height":972,"type":"png","mime":"image/png","wUnits":"px","hUnits":"px","length":116667,"url":"https://raw.githubusercontent.com/vtex-apps/quickorder/master/docs/image/RawQuickorder.png"}}
Example of a quick order page without customization

Configuration

  1. Install the Quickorder app by running vtex install vtex.quickorder@3.x in your terminal.

  2. Open your store's Store Theme app directory in your code editor.

  3. Add the Quickorder app as a peerDependency in the manifest.json file:


    _10
    "peerDependencies": {
    _10
    + "vtex.quickorder": "3.x"
    _10
    }

Once installed, the app will generate a new route called /quickorder for your store, creating the Quickorder custom page that allows bulk orders.

The new page already contains a default template with all blocks exported by the Quickorder app. This means the Quickorder page is ready to be rendered and no further actions are required.

However, you can customize it by overwriting the template and creating a brand new one tailored to your preferences. To do so, check the Advanced configurations section below.

Advanced configurations

In order to define the Quickorder custom page UI, you must use the blocks exported by the vtex.quickorder app:

Block nameDescription
quickorder-textareaRenders a text box, allowing users to paste a list of desired SKUs following the structure [SKU Reference ID],[Quantity]. For more on this component, check out the How the app works section.
quickorder-uploadRenders an upload box, working as an option that replaces the Copy/Paste SKU component (quickorder-textarea block). It allows users to upload a spreadsheet containing the desired SKUs. For more on this component, check out the How the app works section.
quickorder-autocompleteRenders a custom search bar, allowing users to look for SKUs and add them to the Minicart at once according to the desired quantity. For more on this component, check out the How the app works section.
quickorder-categoriesRenders the store's category tree, allowing users to look for the desired SKUs and add them to the Minicart at once according to the desired quantity.

To use these blocks, follow the instructions below.

  1. In the store folder of your Store Theme app, create a new file called quickorder.json.

  2. Then, create a new store template called store.quickorder.

  3. In its blocks array, declare the blocks responsible for building your Quickorder custom page. For example:


    _10
    {
    _10
    "store.quickorder": {
    _10
    "blocks": [
    _10
    "flex-layout.row#title",
    _10
    "flex-layout.row#textarea",
    _10
    "flex-layout.row#upload",
    _10
    "flex-layout.row#autocomplete",
    _10
    "flex-layout.row#categories"
    _10
    ]
    _10
    },

  4. Configure each one of the blocks previously declared using its props, as shown in the example below:


    _84
    {
    _84
    "store.quickorder": {
    _84
    "blocks": [
    _84
    "flex-layout.row#title",
    _84
    "flex-layout.row#textarea",
    _84
    "flex-layout.row#upload",
    _84
    "flex-layout.row#autocomplete",
    _84
    "flex-layout.row#categories"
    _84
    ]
    _84
    },
    _84
    "flex-layout.row#title": {
    _84
    "children": ["flex-layout.col#title"]
    _84
    },
    _84
    "flex-layout.col#title": {
    _84
    "children": ["rich-text#title"],
    _84
    "props": {
    _84
    "blockClass": "titleQuickorder",
    _84
    "preventVerticalStretch": true
    _84
    }
    _84
    },
    _84
    "rich-text#title": {
    _84
    "props": {
    _84
    "text": "## Quick Order"
    _84
    }
    _84
    },
    _84
    _84
    "flex-layout.row#textarea": {
    _84
    "children": ["flex-layout.col#textarea"]
    _84
    },
    _84
    "flex-layout.col#textarea": {
    _84
    "children": ["quickorder-textarea"]
    _84
    },
    _84
    "quickorder-textarea": {
    _84
    "props": {
    _84
    "componentOnly": false,
    _84
    "text": "Copy/Paste Skus",
    _84
    "description": "[SKU Reference ID],[Quantity]"
    _84
    }
    _84
    },
    _84
    _84
    "flex-layout.row#upload": {
    _84
    "children": ["flex-layout.col#upload"]
    _84
    },
    _84
    "flex-layout.col#upload": {
    _84
    "children": ["quickorder-upload"]
    _84
    },
    _84
    "quickorder-upload": {
    _84
    "props": {
    _84
    "componentOnly": false,
    _84
    "text": "Upload",
    _84
    "description": "Upload a Spreadsheet with two columns (SKU, Quantity) to bulk order",
    _84
    "downloadText": "Click here to download a spreadsheet model",
    _84
    "alwaysShowAddToCart:": true
    _84
    }
    _84
    },
    _84
    _84
    "flex-layout.row#autocomplete": {
    _84
    "children": ["flex-layout.col#autocomplete"]
    _84
    },
    _84
    "flex-layout.col#autocomplete": {
    _84
    "children": ["quickorder-autocomplete"]
    _84
    },
    _84
    "quickorder-autocomplete": {
    _84
    "props": {
    _84
    "componentOnly": false,
    _84
    "text": "One by One",
    _84
    "description": "Type the product name, select, enter quantity, add to the cart"
    _84
    }
    _84
    },
    _84
    _84
    "flex-layout.row#categories": {
    _84
    "children": ["flex-layout.col#categories"]
    _84
    },
    _84
    "flex-layout.col#categories": {
    _84
    "children": ["quickorder-categories"]
    _84
    },
    _84
    "quickorder-categories": {
    _84
    "props": {
    _84
    "componentOnly": false,
    _84
    "text": "Categories",
    _84
    "description": "Add products directly from their categories"
    _84
    }
    _84
    }
    _84
    }

Props

All blocks exported by the quickorder app share the same props:

Prop nameTypeDescriptionDefault value
textstringComponent title.undefined
descriptionstringComponent description. It should be used to explain users how to properly bulk order using the given component.undefined
componentOnlybooleanIf true, only the component will be loaded, removing the text and description column.false

Especially, the quickorder-upload block also can use the following prop:

Prop nameTypeDescriptionDefault value
downloadTextstringDefines a text for the spreadsheet download button. Use this prop to explain users how to properly download the spreadsheet model provided by the component.undefined
alwaysShowAddToCartbooleanProperty that defines if the add to cart button will appear even if it has some invalid Sku.true

In addition, the quickorder-upload and the quickorder-textarea block can use the following prop:

Prop nameTypeDescriptionDefault value
hiddenColumnsarray of strings (i.e. ["sku", "seller", "quantity"])Defines which columns of the review block must be hidden, you might hide more than one column separating the values with comma[]

For more on each of the components and their respective functionalities, check out the How the app works section below.

How the app works

The Quickorder custom page works just like any other store page, with a unique route and its own components.

This means that you can display a link to it in components from other pages, such as the homepage, so that your storefront users can access it faster.

When configuring the page itself, we recommend that you choose a maximum of 2 bulk order options (from the total of 4 available) to establish clear communication with users. Remember: the more options on the UI, the more complex the order process becomes.

Read the following sections to learn more about the available options.

Copy/Paste SKU (quickorder-textarea block)

The Copy/Paste SKU option allows user to paste a list of desired SKUs in a text box following the structure [SKU Reference ID],[Quantity], where:

  • SKU Reference ID: SKU Reference ID (be aware that this is not the SKU ID displayed in your admin's Catalog).
  • Quantity: SKU quantity you wish to add to the cart.

For example:

{"base64":"  ","img":{"width":600,"height":290,"type":"gif","mime":"image/gif","wUnits":"px","hUnits":"px","length":132552,"url":"https://raw.githubusercontent.com/vtex-apps/quickorder/master/docs/image/Copy-n-Paste.gif"}}

ℹ Remember that you need to validate the list after pasting it. Validating the Reference IDs will let you know if the selected SKUs are in fact available for purchase.

Upload (quickorder-upload block)

Another possible option that replaces the Copy/Paste SKU option is to upload a spreadsheet containing two columns (SKU and Quantity) to the Upload component (quickorder-upload block).

{"base64":"  ","img":{"width":326,"height":260,"type":"png","mime":"image/png","wUnits":"px","hUnits":"px","length":14205,"url":"https://raw.githubusercontent.com/vtex-apps/quickorder/master/docs/image/Spreadsheet.png"}}

The spreadsheet will work in the same way as the list pasted using the Copy/Paste SKU option, as follows:

  • SKU column: SKU Reference ID (be aware that this is not the SKU ID displayed in your admin's Catalog).
  • Quantity column: SKU quantity you wish to add to the cart.

ℹ Once uploaded, the spreadsheet is then validated. Based on the filled in SKU reference IDs, Quickorder will confirm whether the SKUs are in fact available for purchase.

Custom Search Bar (quickorder-autocomplete block)

The Custom Search Bar component works as a custom search bar. Simply add the name of the desired SKU, then select it and set the amount you wish to add to the cart.

Remember to add each selected item to the cart by clicking on Add.

{"base64":"  ","img":{"width":600,"height":293,"type":"gif","mime":"image/gif","wUnits":"px","hUnits":"px","length":166341,"url":"https://raw.githubusercontent.com/vtex-apps/quickorder/master/docs/image/One-by-One.gif"}}

This option does not require any validation, since selecting the SKUs using a search bar already ensures that they are available to purchase.

Categories (quickorder-categories block)

The Categories component allows users to choose their desired SKUs and respective quantities using the store's categories tree, adding all the selected options to the cart at once.

{"base64":"  ","img":{"width":600,"height":290,"type":"gif","mime":"image/gif","wUnits":"px","hUnits":"px","length":233023,"url":"https://raw.githubusercontent.com/vtex-apps/quickorder/master/docs/image/Category.gif"}}

This option is only recommended if you have less than 50 SKUs for each category in your Catalog. Otherwise, the component will take too long to load and will negatively affect your store's user experience.

This scenario also does not require validating the SKUs that you've added to the cart, since selecting them directly from the store's categories tree ensures their availability.

Customization

In order to apply CSS customizations to this and other blocks, follow the instructions given in the recipe on Using CSS Handles for store customization.

CSS Handles
autocompleteBlock
buttonAdd
buttonClear
buttonsBlock
buttonValidate
categoriesSubCategory
categoriesProductContainer
categoryButtonAdd
categoryContainer
categoryLoadingProducts
categoryHelper
categoryInputQuantity
categoryProductLabel
categoryProductTitle
categoryProductThumb
categoryProductReference
categoryProductItem
categoryTitle
componentContainer
container
copyPasteBlock
dropzoneContainer
dropzoneLink
dropzoneText
downloadLink
inputQuantity
productLabel
productTitle
productSku
productThumb
reviewBlock
skuSelection
textContainer
textContainerTitle
textContainerDescription
title
customOptionButton
See also
VTEX App Store
VTEX IO Apps