You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
2.7 KiB
JavaScript

var Tour;
Tour = (function() {
_collections = "";
function Tour(collections) {
_collections = collections;
}
Tour.prototype.getPrice = function() {
$.ajax({
type: "GET",
url: "/api/api.asp?method=cht.tour.getPrice3&CLI_NO="+ _collections,
success: function(xml){
$(xml).find("Item").each(function(){
var obj = $("."+$(this).find("Number").text().toLowerCase()+"");
obj.text("");
obj.text("$"+ setCurrency(""+$(this).find("Price").text())).show();
});
}
});
//return _collections;
};
var setCurrency = function(s) {
if (/[^0-9\.]/.test(s)) return "";
s = s.replace(/^(\d*)$/, "$1.");
s = (s + "00").replace(/(\d*\.\d\d)\d*/, "$1");
s = s.replace(".", ",");
var re = /(\d)(\d{3},)/;
while (re.test(s)) s = s.replace(re, "$1,$2");
s = s.replace(/,(\d\d)$/, ".$1");
s = s.split(".")[0];
return s;
}
return Tour;
})();
$(function(){
collections = "cht-1,cht-62,cht-63,cht-27,cht-12,cht-75,cht-yz-01,bj-1,gl-1,xz-1,cht-75a,cht-yz-03,bj-6,xz-4,gl-4,cht-8"; //for top 10
(new Tour(collections)).getPrice();
collections = "cht-tb-03,cht-tb-01,bj-10,cht-6,cht-6a,cht-6b,cht-6c,cht-1n,cht-yz-04,cht-wh-03,cht-wh-08,cht-sc-02,cht-ta-01,cht-ta-03,cht-ft-01,cht-ft-03,cht-ft-02,cht-ft-07,cht-63s"; //for tour 2012
(new Tour(collections)).getPrice();
collections = "cht-1s,cht-62s,cht-da-1,cht-da-2,cht-da-3,cht-da-4,cht-da-5,cht-da-6,cht-da-7,cht-pd-01,cht5-da-1s,cht-da-3s"; //for deals
(new Tour(collections)).getPrice();
collections = "bj-3,xa-1,xa-2,cd-7,cht-91,cht-yz-02,cht-yz-07,cht-yz-05,cht-yz-08,cht-yz-11,gl-7,gl-9,xz-21,xz-4,xj-1,cht-63e,cht-107a,bj-41,bj-42,bj-34,bj-40,xz-2,xz-3,xz-5,xz-22,xz-24,xz-7-gp,xz-30-gp,xz-31-gp,xz-20,bj-68,xz-26"; //for other page
(new Tour(collections)).getPrice();
collections = "np-1,zd-1,lj-2,qh-01,gl-4"; //for other page
(new Tour(collections)).getPrice();
collections = "hk-1,hk-2,hk-3,hk-6,hk-7,hk-9"; //for hong kong tours
(new Tour(collections)).getPrice();
collections = "gl-4a,gl-7a,gl-2,gl-8,gl-6,gl-10,gl-15,gl-20,gl-3,gl-11,gl-28"; //for guilin tours
(new Tour(collections)).getPrice();
collections = "bj-2,bj-4,bj-13,bj-53,bj-54,bj-19,bj-11,bj-5,sh-1,sh-32,sh-7,sh-5,sh-11,sh-14,sh-33,sh-6a,sh-4,sh-3,sh-6,sh-26,sh-29"; //for Beijing and Shanghai tours
(new Tour(collections)).getPrice();
collections = "chtgp-01-2013,chtgp-02-2013,chtgp-03-2013,chtgp-04,bj-01-gp,cht-sc-01,cht-sc-05,hrb-1,hrb-7,hs-1,km-4,bj-30-gp,hk-13,sy-1,sy-2"; //for china tours 2013
(new Tour(collections)).getPrice();
});