Created
March 15, 2012 03:52
-
-
Save hatelove/2041769 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//v8 | |
protected void btnCalculate_Click(object sender, EventArgs e) | |
{ | |
//若頁面通過驗證 | |
if (this.IsValid) | |
{ | |
//取得畫面資料 | |
var product = this.GetProduct(); | |
ILogistics logistics = FactoryRepository.GetILogistics(this.drpCompany.SelectedValue, product); | |
if (logistics != null) | |
{ | |
logistics.Calculate(); | |
var companyName = logistics.GetsComapanyName(); | |
var fee = logistics.GetsFee(); | |
//呈現結果 | |
this.SetResult(companyName, fee); | |
} | |
else | |
{ | |
var js = "alert('發生不預期錯誤,請洽系統管理者');location.href='http://tw.yahoo.com/';"; | |
this.ClientScript.RegisterStartupScript(this.GetType(), "back", js, true); | |
} | |
} | |
} | |
//v0 | |
protected void btnCalculate_Click(object sender, EventArgs e) | |
{ | |
if (this.IsValid) | |
{ | |
if (this.drpCompany.SelectedValue == "1") | |
{ | |
this.lblCompany.Text = "黑貓"; | |
var weight = Convert.ToDouble(this.txtProductWeight.Text); | |
if (weight > 20) | |
{ | |
this.lblCharge.Text = "500"; | |
} | |
else | |
{ | |
var fee = 100 + weight * 10; | |
this.lblCharge.Text = fee.ToString(); | |
} | |
} | |
else if (this.drpCompany.SelectedValue == "2") | |
{ | |
this.lblCompany.Text = "新竹貨運"; | |
var length = Convert.ToDouble(this.txtProductLength.Text); | |
var width = Convert.ToDouble(this.txtProductWidth.Text); | |
var height = Convert.ToDouble(this.txtProductHeight.Text); | |
var size = length * width * height; | |
//長 x 寬 x 高(公分)x 0.0000353 | |
if (length > 100 || width > 100 || height > 100) | |
{ | |
this.lblCharge.Text = (size * 0.0000353 * 1100 + 500).ToString(); | |
} | |
else | |
{ | |
this.lblCharge.Text = (size * 0.0000353 * 1200).ToString(); | |
} | |
} | |
else if (this.drpCompany.SelectedValue == "3") | |
{ | |
this.lblCompany.Text = "郵局"; | |
var weight = Convert.ToDouble(this.txtProductWeight.Text); | |
var feeByWeight = 80 + weight * 10; | |
var length = Convert.ToDouble(this.txtProductLength.Text); | |
var width = Convert.ToDouble(this.txtProductWidth.Text); | |
var height = Convert.ToDouble(this.txtProductHeight.Text); | |
var size = length * width * height; | |
var feeBySize = size * 0.0000353 * 1100; | |
if (feeByWeight < feeBySize) | |
{ | |
this.lblCharge.Text = feeByWeight.ToString(); | |
} | |
else | |
{ | |
this.lblCharge.Text = feeBySize.ToString(); | |
} | |
} | |
else | |
{ | |
var js = "alert('發生不預期錯誤,請洽系統管理者');location.href='http://tw.yahoo.com/';"; | |
this.ClientScript.RegisterStartupScript(this.GetType(), "back", js, true); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment