Xenial Menu -> POS Plu Data
Objective:
Understand how we map the menu from Xenial to restaurant POS data to the FE using the different combinations of the Whopper using Xenial store, 300 Herkimer Road Utica, NY
FE Site:
 | Sandwich | Small Combo | Medium Combo | Large Combo |
---|---|---|---|---|
Whopper | 5.49 | 8.09 | 8.69 | 9.29 |
Whopper with Bacon | 6.29 | 8.89 | 9.49 | 10.09 |
Whopper with Cheese | 5.49 | 8.09 | 8.69 | 9.29 |
Whopper with Bacon & Cheese | 6.89 | 9.49 | 10.09 | 10.69 |
Restaurant Data:
Each PLU is specific
 | Sandwich | Small Combo | Medium Combo | Large Combo | Side Ex. Fry TBU | Drink Ex. Coke TBU |
---|---|---|---|---|---|---|
Whopper | 1002 | 1402 | 1452 | 1552 | Small: 50001 Medium: 50002 Large: 50003 | Small: 80101 Medium: 80102 Large: 80103 |
Whopper with Bacon | 1002 | 1402 | 1452 | 1552 | Small: 50001 Medium: 50002 Large: 50003 | Small: 80101 Medium: 80102 Large: 80103 |
Whopper with Cheese | 1002 | 1402 | 1452 | 1552 | Small: 50001 Medium: 50002 Large: 50003 | Small: 80101 Medium: 80102 Large: 80103 |
Whopper with Bacon & Cheese | 1008 | 1450 | 1490 | 1566 | Small: 50001 Medium: 50002 Large: 50003 | Small: 80101 Medium: 80102 Large: 80103 |
Â
Â
Â
Xenial Menu vs POS Plu Prices
 | PLU | Sandwich FE  | Sandwich POS Data | Delta | PLU | Small Combo FE | Small Combo POS Data | Delta | PLU | Medium Combo FE | Medium Combo POS Data | Delta | PLU | Large Combo FE | Large Combo POS Data | Delta |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Whopper | 1002 | 5.49 | 5.49 | .0 | 1402 | 8.09 | 8.09 | .0 | 1452 | 8.69 | 8.69 | .0 | 1552 | 9.29 | 9.29 | .0 |
Whopper with Bacon | 1002 | 6.29 | 5.49 | .80 | 1402 | 8.89 | 8.09 | .80 | 1452 | 9.49 | 8.69 | 0.80 | 1552 | 10.09 | 9.29 | .80 |
Whopper with Cheese | 1002 | 5.49 | 5.49 | .0 | 1402 | 8.09 | 8.09 | .0 | 1452 | 8.69 | 8.69 | .0 | 1552 | 9.29 | 9.29 | .0 |
Whopper with Bacon & Cheese | 1008 | 6.89 | 6.89 | .0 | 1450 | 9.49 | 9.49 | .0 | 1490 | 10.09 | 10.09 | .0 | 1566 | 10.69 | 10.69 | .0 |
Â
Bacon: 7954
POS Plu Data:
Xenial Menu:
Modifiers, Drinks, Sides:
Maps PLU-> PLU
Extra Lettuce: 7686
Xenial POS:
Â
Xenial Menu:
Xenial Menu:
Ex Whopper Meal - Small Unit Price:
Ex. Fountain Drink - Small Unit Price:
Drinks are sent as modifiers to the combo
This means the pricing for a Medium Whopper Combo with the below soda would be
unit_price
ofWHOPPER Meal-small
+unit_price
of[Small SODA]
==809
Carrols has the capacity to handle upselling premium beverages. For Example a Frozen Coke:
it has the
unit_price
andparent_product_ids
 Â
 {
           "unit_price": 1.99,
           "parent_product_ids": [
            "1452",
This means a Frozen Coke within a Medium Whopper Combo incurs a 1.99 upsell charge that would be added to the combo pricing
Carrols currently does not handle upselling to premiums sides, the below is an example of the current state of Cheesy Tots however, using a configuration similar to premium beverages and default sides we would be able to apply a
unit_price
to givenparent_product_ids
FE TBU:
FE has some logic to read the selected size based plu and main item plu combination.