예제 #1
0
 private void ShowInfo()
 {
     MyERP.BLL.SAL_ITEM_NOW_PRICE   bll   = new MyERP.BLL.SAL_ITEM_NOW_PRICE();
     MyERP.Model.SAL_ITEM_NOW_PRICE model = bll.GetModel();
     this.txtCompanyCode.Text      = model.CompanyCode;
     this.txtItemNo.Text           = model.ItemNo;
     this.txtColor.Text            = model.Color;
     this.txtItemInternalCode.Text = model.ItemInternalCode;
     this.txtInternalCodeMean.Text = model.InternalCodeMean;
     this.txtAllPrice.Text         = model.AllPrice.ToString();
     this.txtWholeSalePrice.Text   = model.WholeSalePrice.ToString();
     this.txtOncePrice.Text        = model.OncePrice.ToString();
     this.txtMeasureUnit.Text      = model.MeasureUnit;
     this.txtLastEdit.Text         = model.LastEdit.ToString();
 }
예제 #2
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtCompanyCode.Text.Trim().Length == 0)
            {
                strErr += "CompanyCode不能为空!\\n";
            }
            if (this.txtItemNo.Text.Trim().Length == 0)
            {
                strErr += "ItemNo不能为空!\\n";
            }
            if (this.txtColor.Text.Trim().Length == 0)
            {
                strErr += "Color不能为空!\\n";
            }
            if (this.txtItemInternalCode.Text.Trim().Length == 0)
            {
                strErr += "ItemInternalCode不能为空!\\n";
            }
            if (this.txtInternalCodeMean.Text.Trim().Length == 0)
            {
                strErr += "InternalCodeMean不能为空!\\n";
            }
            if (!PageValidate.IsDecimal(txtAllPrice.Text))
            {
                strErr += "AllPrice格式错误!\\n";
            }
            if (!PageValidate.IsDecimal(txtWholeSalePrice.Text))
            {
                strErr += "WholeSalePrice格式错误!\\n";
            }
            if (!PageValidate.IsDecimal(txtOncePrice.Text))
            {
                strErr += "OncePrice格式错误!\\n";
            }
            if (this.txtMeasureUnit.Text.Trim().Length == 0)
            {
                strErr += "MeasureUnit不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            string  CompanyCode      = this.txtCompanyCode.Text;
            string  ItemNo           = this.txtItemNo.Text;
            string  Color            = this.txtColor.Text;
            string  ItemInternalCode = this.txtItemInternalCode.Text;
            string  InternalCodeMean = this.txtInternalCodeMean.Text;
            decimal AllPrice         = decimal.Parse(this.txtAllPrice.Text);
            decimal WholeSalePrice   = decimal.Parse(this.txtWholeSalePrice.Text);
            decimal OncePrice        = decimal.Parse(this.txtOncePrice.Text);
            string  MeasureUnit      = this.txtMeasureUnit.Text;

            byte[] LastEdit = new UnicodeEncoding().GetBytes(this.txtLastEdit.Text);


            MyERP.Model.SAL_ITEM_NOW_PRICE model = new MyERP.Model.SAL_ITEM_NOW_PRICE();
            model.CompanyCode      = CompanyCode;
            model.ItemNo           = ItemNo;
            model.Color            = Color;
            model.ItemInternalCode = ItemInternalCode;
            model.InternalCodeMean = InternalCodeMean;
            model.AllPrice         = AllPrice;
            model.WholeSalePrice   = WholeSalePrice;
            model.OncePrice        = OncePrice;
            model.MeasureUnit      = MeasureUnit;
            model.LastEdit         = LastEdit;

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