URL: http://www.mrtakeoutbags.com/mm5/mer...=mrtakeoutbags
You'll have to add a product to the basket in order to see what I'm talking about.
The BASK screen gives the Item, quantity, size, Item Price, and Total Price.
I edited the HTML table and used a product weight and total weight token to display the item weight in line with the product, and the total weight along the bottom row where price is totaled.
Our salespeople use the basket to price out phone-in orders, so they need to be able to see the total weight right here.
What I've done can be seen here (once you've entered an item into the cart) http://www.mrtakeoutbags.com/mm5/mer...creen=testBASK
Will making such changes have further reaching implications? I'm worried that displaying these extra items will pass that data along into our system incorrectly since I changed the order.
Here are the only changes I added to the current structure (please ignore inline CSS, I don't have access to that file ATM):
<!--Display product weight-->
<td align="center">&mvt:item:weight;
<mvt:if expr="g.weight">
&mvte:global:weight;
</mvt:if>
</td>
<!-- Display total weight -->
<td style="text-align:center;font-weight:bold;">
<mvt:item name="toolkit" param="weight|totalweight" />&mvte:global:totalweight;</b>
</td>
Thanks in advance for any help
You'll have to add a product to the basket in order to see what I'm talking about.
The BASK screen gives the Item, quantity, size, Item Price, and Total Price.
I edited the HTML table and used a product weight and total weight token to display the item weight in line with the product, and the total weight along the bottom row where price is totaled.
Our salespeople use the basket to price out phone-in orders, so they need to be able to see the total weight right here.
What I've done can be seen here (once you've entered an item into the cart) http://www.mrtakeoutbags.com/mm5/mer...creen=testBASK
Will making such changes have further reaching implications? I'm worried that displaying these extra items will pass that data along into our system incorrectly since I changed the order.
Here are the only changes I added to the current structure (please ignore inline CSS, I don't have access to that file ATM):
<!--Display product weight-->
<td align="center">&mvt:item:weight;
<mvt:if expr="g.weight">
&mvte:global:weight;
</mvt:if>
</td>
<!-- Display total weight -->
<td style="text-align:center;font-weight:bold;">
<mvt:item name="toolkit" param="weight|totalweight" />&mvte:global:totalweight;</b>
</td>
Thanks in advance for any help
Comment