Closed (fixed)
Project:
Feeds Tamper
Version:
7.x-1.x-dev
Component:
Documentation
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
29 Jun 2011 at 18:48 UTC
Updated:
15 Dec 2011 at 22:45 UTC
I have a CSV with this format:
"SKU","Title","Price","FormattedPrice","Image","Description","Weight","Length","Width","Height"
and I have a mapper which maps FormattedPrice to three different target fields. Feeds does fine with this.
However, Feeds tamper only allows me to fiddle with the first mapping, not the other two.
In other words, I want Feeds Tamper to apply transformations to
FormattedPrice -> Cost
FormattedPrice -> List Price
FormattedPrice -> Sell Price
But it doesn't offer options two and three.
Comments
Comment #1
twistor commentedThis is currently a limitation. The problem lies in the fact that tamper is dealing with is the source data, not the actual mappings. It modifies the data before the mappings take place. The "FormattedPrice -> Cost" is only there to remind the user what they're modifying, but it seems that it gives the wrong idea.
If the transformations that you want to perform on FormattedPrice are the same for each mapping then you're in luck. If not there are workarounds but they're not pretty.
Comment #2
twistor commentedI committed a patch that illustrates better that there are multiple targets being modified.
http://drupalcode.org/project/feeds_tamper.git/commit/64b95e3
Comment #3
twistor commentedNow we(me) need to document how to perform separate modifications to the same source.
Comment #4
twistor commented