Total price and price per unit microdata - schema

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.

Related

Amadeus - Command Cryptic - get taxes in country/city

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) ?

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

Prestashop - Specify shipping for specific price interval

I wish to make to rules/conditions regarding shipping and prices. I have tried several things so far, but with no result. The 2 rules are as following (The currency is Danish Crown - DKK):
When you buy products in the price interval 0-500 DKK, you have to
pay additionally 50 DKK for shipping.
When you buy products for (in total) over 500 DKK, there is free shipping.
So far, we have managed to make the second rule (free shipping when buying for more than 500 DKK). But how can I make the first rule?
Thanks in advance
EDIT:
I have 2 shipping companies to choose from. For each of them, there are some specific rules regarding weight.
I just need to make sure that (regardless of which shipping company it is) there will be added an additional 50 DK when the price is between 0 and 500 DKK. Above 500 DKK, the shipping is free.

How does the backend of a e-commerce looks

I would like to know how does e-commerce sites maintain their databases?
Let say they are selling a product name X from a marchant M
Now the merchant increases or decreases the cost of the item. It is manually edited in the e-commerse backend ? Is this part automated?
If there is an id associated with the item, is id given by the merchant or the e-commerce site?
There can be 10 same product items provided by 10 different merchant. Now the specification of the product is same but the amount varies from each merchant. if let say every merchant change the cost of the item and tell us the cost. How can we in automated fashion edit the backend in such a situation
The shop owner with the website is adjusting their prices independently of the wholesaler. This can be done manually in an online product admin interface, or it can be done through some kind of data feed of all products like XML or CVS. The data feed can be coming directly from a retail point of sale system. If the wholesaler raises the prices - the shop owner still has stock on hand of the product they bought at the previous price. When the shop owner takes delivery of the new stock and enters that inventory into the system - at that point they would adjust the prices.
A product has a UPC code (or EAN if in europe) which is universal for that product. For example all products on Amazon have a UPC code which is how they organize different sellers for the same product
VERSUS a SKU or Product ID - which is unique to the shop owner. That is what the shop owner uses to track inventory and prices. The universal UPC plus unique SKU is how amazon determines the product that is sold.
In your last example - you are talking about functioning as a "marketplace" like Amazon.com Amazon lets merchants determine their own prices - but very important to know the price is ranked as price + shipping cost. Because some merchants will lower the product price to try and come out on top but then they inflate the shipping cost to make up for it.

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.