Printing Customer Group F(6) Price on Barcode Label. I am trying to get Customer group 6 p[...]
The Below works fine I have included a Calc for GST but I cannot seem to choose different price groups only store price? I want Customer group 6 pricing for my label for a retail outlet.
<center style="padding-top: 15px; padding-right:45px;">
<img align="center" src="[%BARCODE_URL fn:'' height:'25px' sku:'[@SKU@]'; upc:'[@upc@]'; scale:'3'%][%END BARCODE_URL%]" width="75%" border="0"/>
<br>
[%product sku:'[@sku@]';%]
[%param *body%]
<div style="font-size:12px; padding:0px 4px 2px 4px;">[%format type:'text' maxlength:'70'%][@name@][%/format%]</div>
<div style="font-size:35px;font-weight: bold;">[%format type:'currency'%][%calc [@store_price@]*1.1 /%][%/format%]</div>
[%/param%]
[%/product%]
</center>
Sort by:
1 - 1 of
11
The product barcode template already contains a [%product%] function to help grab the products details. Instead of updating the price tag directly you can set the Customer Group at the function level using the `group_id:''` param.
For example:
[%product sku:'[@sku@]'; group_id:'6' preview:'y'%]
... function code remains unchanged ...
[%/product%]
This code will set the [@store_price@] tag to use the Customer Group F pricing. It also prints the values regardless of the products approval status on the webstore - helpful if you have products instore which you do not sell online.