Announcement

Collapse
No announcement yet.

Tax message

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Tax message

    any suggestion!!! how can i show my prices both exclusive and inclusive vat in list box on this page
    http://www.aalabels.com/acatalog/AAC006.html

    I have worked around layouts but just able to show prices exclusive vat. but this time want to show both inc. and exc. vat

    guide me plz

    #2
    Cool site Assad

    OK, you need to go to 'Design | Library | Layouts' and go to the 'Permutation Prices' group. Right-click on any layout in there and select 'New Layout'. Give the new layout a name of 'Including and Excluding Tax'. Then double-click on this new layout to edit it, and replace the entire contents with the following:
    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PermutationAssociatedPricesAreUsed%22%20%2f%3e%20%3d%3d%20FALSE" >
    	<actinic:block PHP='true' SELECTABLE='false'>formattedcurrency(round(<actinic:variable name="PermutationPriceRaw" /> * 1.175, <actinic:variable name="CurrencyDigits" />), <actinic:variable name="CurrencyDigits" />, '<actinic:variable name="MoneyDecimalSeparator" />', '<actinic:variable name="MoneyThousandSeparator" />', '<actinic:variable name="DefaultCurrency" />');</actinic:block>&nbsp;
       (<actinic:block PHP='true' SELECTABLE='false'>formattedcurrency(<actinic:variable name="PermutationPriceRaw" />, <actinic:variable name="CurrencyDigits" />, '<actinic:variable name="MoneyDecimalSeparator" />', '<actinic:variable name="MoneyThousandSeparator" />', '<actinic:variable name="DefaultCurrency" />');</actinic:block>
       Excluding <actinic:variable name="Tax1Description" /><actinic:block if="%3cactinic%3avariable%20name%3d%22Tax2Description%22%20%2f%3e%20%21%3d%20%22%22" > and <actinic:variable name="Tax2Description" /></actinic:block>)
    </actinic:block>
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PermutationAssociatedPricesAreUsed%22%20%2f%3e" />
    	<actinic:block PHP='true' SELECTABLE='false'>formattedcurrency(round(<actinic:variable name="AssociatedProduct::ProductPriceRaw" /> * 1.175, <actinic:variable name="CurrencyDigits" />), <actinic:variable name="CurrencyDigits" />, '<actinic:variable name="MoneyDecimalSeparator" />', '<actinic:variable name="MoneyThousandSeparator" />', '<actinic:variable name="DefaultCurrency" />');</actinic:block>&nbsp;
       (<actinic:block PHP='true' SELECTABLE='false'>formattedcurrency(<actinic:variable name="AssociatedProduct::ProductPriceRaw" />, <actinic:variable name="CurrencyDigits" />, '<actinic:variable name="MoneyDecimalSeparator" />', '<actinic:variable name="MoneyThousandSeparator" />', '<actinic:variable name="DefaultCurrency" />');</actinic:block>
       Excluding <actinic:variable name="Tax1Description" /><actinic:block if="%3cactinic%3avariable%20name%3d%22Tax2Description%22%20%2f%3e%20%21%3d%20%22%22" > and <actinic:variable name="Tax2Description" /></actinic:block>)
    </actinic:block>
    You can then select this layout within the 'Layout' tab of any component where you want these prices appearing.

    Comment


      #3
      Hi chris:

      This worked !!! thanks alot

      Comment

      Working...
      X