Hello!
I’ve created a carrier service example in my development shop, to explore how to configure it. But I had a question about to the service’s price.
I’v configured this rates as a example:
{
"rates": [
{
"service_name": "Envío Sameday",
"service_code": "ON",
"total_price": "5500",
"description": "This is the fastest option by far",
"currency": "COP",
"min_delivery_date": "2013-04-12 14:48:45 -0400",
"max_delivery_date": "2013-04-12 14:48:45 -0400"
},
{
"service_name": "Envío Nacional",
"service_code": "2D",
"total_price": "10000",
"currency": "COP",
"min_delivery_date": "2013-04-12 14:48:45 -0400",
"max_delivery_date": "2013-04-12 14:48:45 -0400"
},
{
"service_name": "Envío estandar",
"service_code": "1D",
"total_price": "8000",
"currency": "COP",
"min_delivery_date": "2013-04-12 14:48:45 -0400",
"max_delivery_date": "2013-04-12 14:48:45 -0400"
}
]
}
And I set the currency as a COP. (pesos colombianos), but in the checkout, the price is shown like this:
In this case the total price 5500 is $5500 COP, but the checkout show $55.00 that is wrong.
It should be clarified that the store is configured in COP.
Does anybody know what is happening?
Thank you!
