Skip to main content
All CollectionsAutonomousWorker Dashboard
Workers - Pricing/Quantity Matrix
Workers - Pricing/Quantity Matrix
AMFG Consulting & Support avatar
Written by AMFG Consulting & Support
Updated over 2 months ago

Configure matrix pricing based on order quantity from workers. This enhancement allows for streamlined setup and management of pricing based on quantity thresholds, enabling more efficient pricing strategies tailored to your business needs.

  1. To enable the Pricing/Quantity Matrix, go to Autonomous -> Workers Dashboard -> Order Management -> Pricing:

  2. Select the pricing worker you want to update and click Open.

  3. Scroll to the bottom of the script and find the following script line related to Price:

    engine.updateResponse
    'price': price,
    'priceToken': context.priceToken


    This is an example of what it could look like:

  4. To add the Pricing/Quantity Matrix, add the below code in the line right before engine.updateResponse:

context = engine.getContext();

quantityStr = context.productionParameters.Quantity;
quantity = int(quantityStr);
price = 100;

priceMatrix = [{
"quantityMin": 1,
"quantityMax": 10,
"discount": 0
}, {
"quantityMin": 11,
"quantityMax": 50,
"discount": 10
}, {
"quantityMin": 51,
"quantityMax": getMaximumInt(),
"discount": 50
}
];

matches = [it for it in priceMatrix if it['quantityMin'] <= quantity and it['quantityMax'] >= quantity]
matrix_section = matches[0] if matches else {};

price_matrix = []
for priceMatrixObj in priceMatrix:
updated_obj = priceMatrixObj;
updated_obj['price'] = price / 100 * (100 - priceMatrixObj['discount'])
price_matrix.append(updated_obj)

engine.updateResponse({
"price": price / 100 * (100 - matrix_section.discount),
"priceMatrix": price_matrix
});

Note: The price for 1 Qty is set to 100 by default. It must be adjusted according to what is already attached to the Price in engine.updateResponse.

This is where the code should be added:


5. After pasting the code, you have to match what was written in:

engine.updateResponse  
'price': price,
'priceToken': context.priceToken


This means you have to replace the value attached to Price in "price = 100" in the new code with the pre-existing one in the script. In this case, this will look like "price = price".

Here is how it will look in the Pricing Worker before editing:


This is how it will look after editing:


6. You must copy the 'priceToken': line at the bottom (usually contains 'priceToken': context.priceToken) and paste it after "priceMatrix": price_matrix in the new code that was added. It should look like this:

engine.updateResponse({
"price": price / 100 * (100 - matrix_section.discount),
"priceMatrix": price_matrix,
'priceToken': context.priceToken
});


7. The final step would be to delete the original engine.updateResponse section from the code located at the bottom of the script. Refer to the screenshot below for the part that needs to be deleted:

After you update the script, click Save. The Pricing/Quantity Matrix will now be available on the Customer Portal and in the Management Console!

If you have any difficulties configuring the Pricing/Quantity Matrix or have questions, please do not hesitate to contact the AMFG Support Team.

Did this answer your question?