Announcement

Collapse
No announcement yet.

Google Product Feed Layout has taxation back-to-front

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

    Google Product Feed Layout has taxation back-to-front

    YASB (yet another SellerDeck bug).
    Layout Google Product Feed Layout line 21 has its logic back-to-front. Setting Tax Inclusive prices will show Exclusive and vice-versa.
    To fix, change:
    Code:
    			<g:price><actinic:block if="%3cactinic%3avariable%20name%3d%22IsGoogleExportIncludeTax%22%20%2f%3e" ><actinic:variable name="TaxExclusivePriceRaw" /></actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22IsGoogleExportIncludeTax%22%20%2f%3e%20%3d%3d%200"><actinic:variable name="TaxInclusivePriceRaw" /></actinic:block> <actinic:variable name="DefaultIntCurrencySymbol" /></g:price>
    To:
    Code:
    			<g:price><actinic:block if="%3cactinic%3avariable%20name%3d%22IsGoogleExportIncludeTax%22%20%2f%3e" ><actinic:variable name="TaxInclusivePriceRaw" /></actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22IsGoogleExportIncludeTax%22%20%2f%3e%20%3d%3d%200"><actinic:variable name="TaxExclusivePriceRaw" /></actinic:block> <actinic:variable name="DefaultIntCurrencySymbol" /></g:price>
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    #2
    Thanks Norman. This is a known bug (ref SD-6372) and is fixed in v16.0.2
    Last edited by brucet; 26-Oct-2016, 08:16 AM.
    Bruce Townsend
    Ecommerce Product Manager
    Sellerdeck Ecommerce Solutions

    Comment

    Working...
    X