Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tag

Format

Example

Description

prices  The prices tag encloses the prices.
price  representerar ett prisRepresents a price.
pricelistidID
<pricelistid>7</pricelistid>
priset avser personer med denna prislista
The price is valid for persons with specified price list.
businessunitidID
<businessunitid>1</businessunitid>
priset gäller för denna anläggning
The price is valid for this business unit.
priceincvatNummerInteger
<priceincvat>25000</priceincvat>
belopp
inkl momsPrice including VAT.
priceexvatNummerInteger
<priceexvat>20000</priceexvat>
belopp
exkl momsPrice excluding VAT.
starttimeTidpunktTime tidpunkt då priset är giltigt frånTime from when the price is valid.
endtimeTidpunktTime tidpunkt då priset är giltigt tillTime from when the price no longer is valid.
forinternetBoolean
<forinternet>true</forinternet>

priset gäller endast internetbokningarThe price is only valid for Internet bookings

schedule 
<schedule><id>3</id><name>efterid><name>after lunch</name></schedule>
Representerar ett schema. Priset gäller vissa tider på dagenRepresents a schedule. The price is only valid during certain times throughout the day.
Code Block
languagexml
<prices>
	<price>
		<pricelistid>7</pricelistid>			
		<businessunitid>134</businessunitid>
		<priceincvat>25000</priceincvat>
		<priceexvat>20000</priceexvat>
		<schedule>
			<id>3</id>
			<name>efter lunch</name>
		</schedule>
		<starttime>
			<timepoint>
        		<timestamp>1102082400</timestamp>
        		<datetime>2012-05-18 12:00</datetime>
        		<date>2012-05-18</date>
        		<time>12:00</time>
      		</timepoint>
		</starttime>
		<endtime>
			<timepoint>
        		<timestamp>1102082400</timestamp>
        		<datetime>2012-06-18 12:00</datetime>
        		<date>2012-06-18</date>
        		<time>12:00</time>
      		</timepoint>
		</endtime>
		<forinternet>true</forinternet>
	</price>
	<price>
		<pricelistid>8</pricelistid>			
		<businessunitid>134</businessunitid>
		<priceincvat>25000</priceincvat>
		<priceexvat>20000</priceexvat>
		<starttime>
			<timepoint>
        		<timestamp>1102082400</timestamp>
        		<datetime>2007-01-01 00:00</datetime>
        		<date>2007-01-01</date>
        		<time>00:00</time>
      		</timepoint>
		</starttime>
		<starttime><timepoint><date>2007-01-01</date><time>00:00</time></timepoint></starttime>
		<forinternet>true</forinternet>
	</price>
	
	<price>	
		<businessunitid>134</businessunitid>
		<priceincvat>25000</priceincvat>
		<priceexvat>20000</priceexvat>
		<forinternet>true</forinternet>		
	</price>
</prices>

...