Multiply Variable

What does 'Multiply' mean?

Multiply will repeat a Bundle product a specified number of times. If the value is 3 for example, then you will expect a bundle to be offered three times.

When would this be applicable?

Multiply is used when creating a combo deal that contains bundles that need choosing from more than once.

Typically, this is for ordering in a group, where each person will be choosing their variation of a bundle.

The screenshot below shows a product for two ice creams. It contains a modifier group that has a multiply of 2, which requires the customer to choose two types of ice creams.

1212

How would this be structured in the product push from POS to Deliverect?

The example below shows the ice cream product that was mentioned above.

{
    "accountId": "xxx",
    "locationId": "xx",
    "products": [
        {
            "productType": 1,
            "plu": "473",
            "price": 1025,
            "name": "Ice cream for 2",
            "posProductId": "65ee420a8ebc4bdabc6c0494b86c701c70216669bf054ca9870b1de0",
            "description": "Choose 2 scoops each!",
            "deliveryTax": 5000,
            "takeawayTax": 5000,
            "posCategoryIds": [
                "ICE-CREAM-1"
            ],
            "subProducts": [
                "1411"
            ]
        },
        {
            "productType": 4,
            "plu": "1411",
            "name": "Choose your flavour",
            "posProductId": "73b147592bc8aa0f02b4c1f6ad1d569258bdc22a85d7f6b9abe15ebb",
            "takeawayTax": 0,
            "deliveryTax": 0,
            "posCategoryIds": [
                "F1395a9c04351fd12f5d26dc3dc0283755476450a8f0dbeb3055591df7d"
            ],
            "price": 0,
            "subProducts": [
                "STRAWB1",
                "CHOC1",
                "VANIL1"
            ],
            "min": 2,
            "max": 2,
            "multiMax": 2,
            "multiply": 2
        },
        {
            "productType": 1,
            "plu": "STRAWB1",
            "price": 500,
            "name": "Strawberry",
            "posProductId": "IC_POS-002",
            "posCategoryIds": "ICE-CREAM-1",
            "imageUrl": "",
            "description": "",
            "deliveryTax": 9000,
            "takeawayTax": 9000
        },
        {
            "productType": 1,
            "plu": "CHOC1",
            "price": 500,
            "name": "Chocolate",
            "posProductId": "IC_POS-002",
            "posCategoryIds": "ICE-CREAM-1",
            "imageUrl": "",
            "description": "",
            "deliveryTax": 9000,
            "takeawayTax": 9000
        },
        {
            "productType": 1,
            "plu": "VANIL1",
            "price": 500,
            "name": "Vanilla",
            "posProductId": "IC_POS-002",
            "posCategoryIds": "ICE-CREAM-1",
            "imageUrl": "",
            "description": "",
            "deliveryTax": 9000,
            "takeawayTax": 9000
        }
    ],
    "categories": [
        {
            "name": "Ice Cream",
            "posCategoryId": "ICE-CREAM-1",
            "imageUrl": ""
        }
    ]
}