Esempio n. 1
0
 private void ShowInfo()
 {
     ZhangWei.BLL.EnterStock_Detail   bll   = new ZhangWei.BLL.EnterStock_Detail();
     ZhangWei.Model.EnterStock_Detail model = bll.GetModel();
     this.txtEnterStock_ID.Text  = model.EnterStock_ID.ToString();
     this.txtProduct_ID.Text     = model.Product_ID.ToString();
     this.txtQuantity.Text       = model.Quantity.ToString();
     this.txtPrice.Text          = model.Price.ToString();
     this.chkHaveInvoice.Checked = model.HaveInvoice;
     this.txtInvoiceNum.Text     = model.InvoiceNum;
 }
Esempio n. 2
0
 private void ShowInfo()
 {
     ZhangWei.BLL.EnterStock_Detail   bll   = new ZhangWei.BLL.EnterStock_Detail();
     ZhangWei.Model.EnterStock_Detail model = bll.GetModel();
     this.lblEnterStock_ID.Text = model.EnterStock_ID.ToString();
     this.lblProduct_ID.Text    = model.Product_ID.ToString();
     this.lblQuantity.Text      = model.Quantity.ToString();
     this.lblPrice.Text         = model.Price.ToString();
     this.lblHaveInvoice.Text   = model.HaveInvoice?"是":"否";
     this.lblInvoiceNum.Text    = model.InvoiceNum;
 }
Esempio n. 3
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtEnterStock_ID.Text))
            {
                strErr += "EnterStock_ID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtProduct_ID.Text))
            {
                strErr += "Product_ID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtQuantity.Text))
            {
                strErr += "Quantity格式错误!\\n";
            }
            if (!PageValidate.IsDecimal(txtPrice.Text))
            {
                strErr += "Price格式错误!\\n";
            }
            if (this.txtInvoiceNum.Text.Trim().Length == 0)
            {
                strErr += "InvoiceNum不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int     EnterStock_ID = int.Parse(this.txtEnterStock_ID.Text);
            int     Product_ID    = int.Parse(this.txtProduct_ID.Text);
            int     Quantity      = int.Parse(this.txtQuantity.Text);
            decimal Price         = decimal.Parse(this.txtPrice.Text);
            bool    HaveInvoice   = this.chkHaveInvoice.Checked;
            string  InvoiceNum    = this.txtInvoiceNum.Text;


            ZhangWei.Model.EnterStock_Detail model = new ZhangWei.Model.EnterStock_Detail();
            model.EnterStock_ID = EnterStock_ID;
            model.Product_ID    = Product_ID;
            model.Quantity      = Quantity;
            model.Price         = Price;
            model.HaveInvoice   = HaveInvoice;
            model.InvoiceNum    = InvoiceNum;

            ZhangWei.BLL.EnterStock_Detail bll = new ZhangWei.BLL.EnterStock_Detail();
            bll.Update(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "list.aspx");
        }