I'm just thinking what is the better way to track the following things in Google Analytics. So I decided to ask you first, before I regret it afterwards.
A seeds shop sells seeds by corn or by portion (10-30 corns).
In the Google Analytics pageTracker._addItem
there is this variation param. But I'm not sure if it get's a mess later.
If you buy 1 portion:
pageTracker._addItem("orderId", "productId", "productName", "perPortion", "4.50", "1");
If you buy 100 corns:
pageTracker._addItem("orderId", "productId", "productName", "perCorn", "40.00", "100");
If I track it this way then I have an exact tracking of all orders. Or makes it more sense if I convert all orders to one unit (for example perPortion)?
I don't know if theres an easier way?