You don't know even how start it?
So, you should get how many days have in each season and just multiply each one for their prices..
An example:
var MILLI_PER_DAY = 86400000;
/**
* identifier is a string that identify the season. like 'summer'
* start and end must be string with date pattern: yyyy/MM/dd
*/
var Season = function(identifier,start, end){
this.id = identifier
this.start = new Date(start);
this.end = new Date(end);
}
/**
* name is the product name
* prices is an object that defines the price of each season.
* e.g. {'summer' : 29.9, 'winter' : 35}
*/
var Product = function(name,prices){
this.name = name;
this.prices = prices;
}
var seasons = [
new Season('s1','2012-01-01','2012-02-28'),
new Season('s2','2012-03-01','2012-05-31')
];
var products = [
new Product('single-room',{'s1':16,'s2':12})
];
/**
* productName is the product name to be bought
* dateStart and dateEnd is the range that productName will be used and
* they should be a string representing a date with pattern: yyyy/MM/dd
*/
function calculatePrice(productName, dateStart, dateEnd) {
var start = new Date(dateStart);
var end = new Date(dateEnd);
//finding product
var product = null;
for ( var i=0; i < products.length; i++ ) {
var p = products[i]
if ( p.name == productName ) {
product = p; break;
}
}
if ( product != null ) {
var totalPrice = 0;
for ( var i=0; i < seasons.length; i++ ) {
var s = seasons[i]
//if this range contains parts or all the season range
if ( start < s.end && end > s.start ) {
var seasonRange = Math.min(s.end,end) - Math.max(s.start,start);
//due to the start day must count
var seasonDays = 1 + (seasonRange/MILLI_PER_DAY);
totalPrice += product.prices[s.id]*seasonDays;
}
}
alert(product.name + " cost " + totalPrice + " in dates from " + dateStart + " to " + dateEnd);
}
}
calculatePrice('single-room','2012-02-08','2012-03-10');
calculatePrice('single-room','2012-03-05','2012-05-10');
calculatePrice('single-room','2012-01-05','2012-02-10');
Here a jsFiddle with this example running :]