-- HikaShop version -- : 2.3.5
-- Joomla version -- : 3.3.6
-- PHP version -- : 5.3.17
I Have two currency:
- EURO (default currency)
- CZK (second currency)
For product I define separate prices for EURO & CZK,
Example for Product 1:
EUR: 2.5
CZK: 10
Is there any way to import from CSV file both prices to the product?
This syntax imports only last currency (with err msg of course):
product_code,price_value,price_currency_id,price_value,price_currency_id
001,2.5,EUR,10,CZK
...so It seems it is impossible
But - If the product with both EUR & CZK & with separate defined EUR & CZK prices has been already created,
the solution could be correctly update at least one currency.
Unfortunatelly - after import:
product_code,product_name,price_value
001,Bread,2.5,EUR
- the CZK currency from the product is deleted! ...what is very bad for me
Any advices, please?