Hello,
Weird that you can't display a table of discounts. To go back to what you want to achieve, the output of the price export is this:
Artikelcode StartStaffel EindStaffel Prijs
3053410 50 0 3.10
3053410 10 49 3.25
3053410 1 9 3.60
To import this you are going to need to reformat it as:
product_sku,Start_Staffel1,End_Staffel1,Price_staffel1,Start_Staffel2,End_Staffel2,Price_staffel2,Start_Staffel3,End_Staffel3,Price_staffel3
3053410,50,0,3.10,10,49,3.25,1,9,3.60
This way you can import them all in one go. If you run the Update from the Available Fields after creating the custom fields you should see these fields available.
The only problem I see here is that you need to transpose the data, that is not easy.
Thinking out loud what may work is a format like this:
product_sku,custom_title,custom_value
3053410,Start_Staffel1~End_Staffel1~Price_staffel1,50~0~3.10
3053410,Start_Staffel2~End_Staffel2~Price_staffel2,10~49~3.25
3053410,Start_Staffel3~End_Staffel3~Price_staffel3,1~9~3.60
I haven't tested this but you could give it a try. With some imagination you could have the export produce this format I think.
The other option is also of course to make a template override of the VirtueMart view and write some code to retrieve the prices from the database and display them in a table as you wish.
Kind regards,
RolandD
=========================
If you use our extensions, please post a rating and a review at the
Joomla! Extension Directory