|
|
|
ขอคำแนะนำเรื่องcode c# .. ครัยเคยทำ win app c# มั้งค่ะ ทำหน้าขายอ่าค่ะ ที่มีการแสดงจำนวนสินค้าคงเหลือ |
|
|
|
|
|
|
|
update stock set balance=balance-จำนวนสินค้าที่ขายไป where productid='รหัสสินค้า'
|
|
|
|
|
Date :
2010-01-17 18:34:40 |
By :
msorawich |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากค่ะ
จะลองทำดูน่ะค่ะ
ได้ไม่ได้ยังไง เดี๋ยวหนูมาโพสตอบน่ะค่ะ
|
|
|
|
|
Date :
2010-01-18 02:18:52 |
By :
ling-keaw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หนูทำได้แล้วค่ะ ตรงส่วนที่จำนวนสินค้าคงเหลือ ให้ลดลงตามตามจำนวนที่ลูกค้าซื้อไป
แต่ที่ยังไม่ได้ก็คือจำนวนสินค้าในฐานข้อมูลคลังสินค้า ยังไม่ลดลงอ่าค่ะ เพราะมันติดerrorอ่าค่ะ ช่วยดูโค้ดให้หน่อยน่ะค่ะ ว่าหนูเขียนถูกหรือยัง ต้องแก้ไขยังไง
private void Balance()
{
double balance;
balance = int.Parse(lblbalance.Text) - int.Parse(txtAmount.Text);
lblbalance.Text = balance.ToString("###");
}
private void txtAmount_KeyDown(object sender, KeyEventArgs e)
{
if (txtAmount.Text == "")
{
return;
}
if (e.KeyCode == Keys.Enter)
{
sb.Remove(0, sb.Length);
sb.Append("SELECT ProductID,Product,Price,ProductBalance");
sb.Append(" FROM Whouse");
sb.Append(" WHERE (ProductID=@ProductID)");
string sqlProduct = sb.ToString();
DataTable dtProduct;
command.CommandType = CommandType.Text;
command.CommandText = sqlProduct;
command.Parameters.Clear();
command.Parameters.Add("@ProductID", SqlDbType.Int).Value = int.Parse(txtProductID.Text);
command.Connection = Conn;
dr = command.ExecuteReader();
if (dr.HasRows)
{
dtProduct = new DataTable();
dtProduct.Load(dr);
txtProductID.Text = dtProduct.Rows[0]["ProductID"].ToString();
lblProductName.Text = dtProduct.Rows[0]["Product"].ToString();
lblSalePrice.Text = dtProduct.Rows[0]["Price"].ToString();
lblbalance.Text = dtProduct.Rows[0]["ProductBalance"].ToString();
CalculateTotal();
Balance();
txtAmount.Focus();
}
else
{
MessageBox.Show("รหัสสินค้าที่คุณป้อน ไม่ถูกต้อง !!!", "ผลการตรวจสอบ", MessageBoxButtons.OK, MessageBoxIcon.Information);
ClearProductData();
txtProductID.Focus();
}
dr.Close();
}
//ส่วนถัดไปจากบันทัดนี้ หนูเพิ่งเพิ่มเข้าไปค่ะ
tr = Conn.BeginTransaction();
sb.Remove(0, sb.Length);
sb.Append("UPDATE Whouse SET ProductBalance='"+lblbalance+"'");
sb.Append("WHERE ProductID=@ProductID");
string sqlUpdate = sb.ToString();
command.CommandType = CommandType.Text;
command.CommandText = sqlUpdate;
command.Connection = Conn;
command.Transaction = tr;
command.Parameters.Clear();
//command.Parameters.Add("@ProductID", SqlDbType.NVarChar).Value = txtProductID.Text;
command.Parameters.Add("@ProductBalance", SqlDbType.Int).Value = lblbalance.Text;
command.ExecuteNonQuery(); - - มันติดerror ตรงนี้ค่ะว่า Must declare the scalar variable "@ProductID".
tr.Commit();
}
|
|
|
|
|
Date :
2010-01-18 16:15:22 |
By :
ling-keaw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|