I want to add products by csv files with prices in hryvnas(ukrainian currency) and euros. My main currency is hryvna.
So euro prices should be converted to hryvnas. I know that it is a standard functionality, but how can I load products with euro prices?
just loads a product price in csv is assigned to your default currency.
There is no user charging for other currencies. The CMS automatically converts the price for all other active currencies in your store
Related
In Huawei HMS services, i have integrated IAP kit in my application. IAP currency configured as INR, however for the region Cambodia (KH)-the converted currency value with respect to the pack is incorrect.
In my AppGallery console, product management page, the conversion is 11.99 for KHR-Cambodian currency. But the settlement the conversion is different.
Please can somebody check and let me know how to set conversion correct.
Select a country or region and its currency to be displayed by default, set Default price (tax included), and select a sorting rule. Then, select the countries and regions for which you want to convert prices based on exchange rates and click Convert prices to calculate their local prices.
For details , please refer to: https://developer.huawei.com/consumer/en/doc/distribution/app/agc-help-create-product-0000001099854866
Please Note:
After you click Convert prices, local prices for the selected countries and regions are calculated based on exchange rates and conversion rules.
You can also manually change a product price for a specified country or region on the list as required.
If a message displays, indicating that no exchange rate is found when you convert the price for a country or region, you need to manually enter the product price.
Huawei will update the exchange rates every day but will not update the product prices you have saved. You need to manually update the prices as required.
Click this link https://developer.huawei.com/consumer/en/doc/start/merchant-service-0000001053025967#section154132916309 to view tax rates of different countries and regions.
I have some Items in my game that can be bought.
I need to show the price in local currency BEFORE user click "buy".
It is easy, when the default price is in USD,
so that I call
FB.api('/me/?fields=currency')
and as an response I get
user_currency
usd_exchange_inverse
With that, local price is:
PRICE_IN_USD * usd_exchange_inverse.
But what if default price is in EURO?
It seems that I need to get exchange rate from EURO to LOCAL CURRENCY.
But how?
thanks
I want to set different prices for two customers.
If customer is commercial, than price should be $10.00.
If customer is government, than price should be $5.00.
How can I set this ?
Create two groups, put the customers there in and define group prices for both groups.
But be careful, it only works if the standard price is higher than $10
Which Magento version are you running ? With the latest versions you can simple create a customer group (customer tab in backend) and than assign a group price in the product > price tab for each group.
We are integrating our order management application with Quickbooks Desktop using IDS. We are finding that the tax calculated by our application is different by a few pennies to the tax calculated by Quickbooks. Is there any way to override the tax calculated by Quickbooks when we do an Invoice POST?
Normally, you would set the items as non-taxable and then add a line item that references the tax item and you can set the amount when added. However, it looks like IDS is NOT writing back the Taxable field in v2 (Cannot be written to QuickBooks.)
You should be able to change the tax code on the item to no-tax and then use the TaxLine to add the tax at the value you want.
William
I have downloaded the sample paypal IPN script using php and customised with the email for the buyout option and it has also some hidden paramaters such as amount, quantity,return_url, notify_url like this. My main idea is to do the buyout option for the product purchase in my website.The current calculation for the product purchase is as follows:
Item Price:$20
Quantity :10
Total amount $200
I need the calculation to some different way as our site have some static set of quantities and prices, so our point of calculation is as follows:
Item Price:$20
Quantity :10
Total amount:$20
So, the total amount needs to be the same for the given number of quantities.The IPN configuration doesn't allow me to change the quantity field by this way, please suggest some ideas to overcome this issue.
The item price is price per item, the quantity is of course multiplied by the item price. Your second example should have $2 as the --Item-- price. If you want to sell "10 items for $20", I think you will need to make a new item for that combo and just but the actual quantity in a custom field.
If you want to use the same item and paypal's quantity field, I think you need to look into calculating a discount and making that part of the parameters (discount_amount_cart or discount_amount_X for item X I think).