Amadeus - Command Cryptic - get taxes in country/city - amadeus

i'm trying to get informations about tax in specific country/city.
I need this because in availability from Amadeus i have price with tax or price without tax never together. Need to know what is net price. So i'm trying to get info about tax in city/country and calculate that on price with tax.
This is my query:
<Command_Cryptic>
<messageAction>
<messageFunctionDetails>
<messageFunction>M</messageFunction>
</messageFunctionDetails>
</messageAction>
<longTextString>
<textStringDetails>FQNTAX/STO</textStringDetails>
</longTextString>
</Command_Cryptic>
But this returns 39 pages :) maybe there is some option to get only hotel taxes with value ? or maybe somehow i can get this in easier way (need net price of reservation) ?

Related

Total price and price per unit microdata

Currently trying to optimise our e-comm shop and google merchant products and I can't seem to get any further or get any other information on how to display a total price and a price per ct.
Product.
I need to have the total price the customer pays displayed on the website (£100.00) the quantity they'll receive (100 ct), and the price per unit that they pay (£1.00).
But what would the pages microdata and JSON-LD be?
Thanks!
One way to provide that sort of info is to start with the offer and use includesObject which has an amountOfThisGood.
offer
price - 100
includesObject
amountOfThisGood - 100
typeOfGood
type - Product
offer
price - 1
However, I suspect systems including Google will not understand that yet.

Issues when setting discounts and using special prices

We recently launched a Prestashop store where we use Prestashops "Specific Prices" so customers in our own country get a special price and all other countries get the regular price.
We want to set a Catalog Price Rule, so all products get a 20% discount. The discount works fine, but all products that have a specific price, do not get the discount. Is there any way to override the specific price, so that all items on the store get a discount ?
We use Geo Targeting Pro, might it have something to do with it ?
Maybe someone has had the same problem ?

Setting up product purchase cost and selling cost in oscommerce

I'm setting up a oscommerce store for my friends. He gets a product at 48.3 INR and sells at 60 INR . TAX for product is is 12.5%
For this he wants to have proper system to calculate profit
Now when I'm trying to enter product cost in OSC, it has only 2 fields.
Gross and Net.
If I enter 48.3 in Net it shows 54.3375 INR in gross (*TAX). while I need to show 60 INR for that product and calculate profit. Can any one help me about how to this in oscommerce!!
I need to show product cost on product page as 60 INR. and I should be able to input purchase cost somewhere in OSC. So that its possible to calculate profit.
I'm not entirely getting whether its possible in OSC or how to achieve it.
Please help.!
It's very possible. Either you will need to find a preexisting addon that does this or write your own addon. What you have described is simple to implement if you know php and mysql. If you don't then you should hire a programmer to do it for you.
Check out http://addons.oscommerce.com

Zillow API - How to find the property tax?

Is there a way to get the most recent amount of property tax paid using the Zillow API? I can obtain the assessed value - just not the amount paid in taxes.
This information is available on the Zillow website in the Tax History section when viewing a property's detail.
Sample property on Zillow - scroll down to Tax History
Zillow gives the year the Tax assessment and the Assessed Value of the home that year. It also provides a link to the county assessors website. Basically this means that you have to find out the Mill Levy amount and then calculate the monthly or yearly taxes from that number. In Colorado this is area by area levy found on the county assessors website, so it may differ in different parts of your city, state and much different between states.
To calculate the property tax, the authority will multiply the assessed value of the property by the mill rate and then divide by 1,000. For example, a property with an assessed value of $50,000 located in a municipality with a mill rate of 20 mills would have a property tax bill of $1,000 per year. ~Wikipedia
Seems like Zillow has this info on their website so they should be able to open that up in their API, but sadly they don't. Makes for a lot of extra work! Good Luck

shopify api: calculate total shipping price

There is a nice helper - shipping_price - available in liquid templates (for order). Returns total order shipping price (hopefully). How do I get the same via API?
Should I go through order order.shipping_lines and sum their price? Is that the right way to do it?
EDIT
Or, perhaps, order.subtotal_price + order.total_tax?
If you just want the shipping price then summing the shipping line prices is the correct approach.
At this time, there's only ever one shipping line per order but it's built as an array to accomodate potential changes to this situation.