Пример #1
0
 private void ShowInfo()
 {
     Bsam.Core.Model.Models.BLL.Inv_Inv_Info   bll   = new Bsam.Core.Model.Models.BLL.Inv_Inv_Info();
     Bsam.Core.Model.Models.Model.Inv_Inv_Info model = bll.GetModel();
     this.lblId.Text               = model.Id.ToString();
     this.lblInvCode.Text          = model.InvCode;
     this.lblInvName.Text          = model.InvName;
     this.lblInvDesc.Text          = model.InvDesc;
     this.lblInvAddress.Text       = model.InvAddress;
     this.lblVolume.Text           = model.Volume.ToString();
     this.lblVolumeUnit.Text       = model.VolumeUnit;
     this.lblDateTimeCreated.Text  = model.DateTimeCreated.ToString();
     this.lblUserCreator.Text      = model.UserCreator;
     this.lblDateTimeModified.Text = model.DateTimeModified.ToString();
     this.lblUserModified.Text     = model.UserModified;
     this.lblState.Text            = model.State?"是":"否";
     this.lblOrgId.Text            = model.OrgId;
 }
Пример #2
0
 private void ShowInfo()
 {
     Bsam.Core.Model.Models.BLL.Inv_Inv_Info   bll   = new Bsam.Core.Model.Models.BLL.Inv_Inv_Info();
     Bsam.Core.Model.Models.Model.Inv_Inv_Info model = bll.GetModel();
     this.txtId.Text               = model.Id.ToString();
     this.txtInvCode.Text          = model.InvCode;
     this.txtInvName.Text          = model.InvName;
     this.txtInvDesc.Text          = model.InvDesc;
     this.txtInvAddress.Text       = model.InvAddress;
     this.txtVolume.Text           = model.Volume.ToString();
     this.txtVolumeUnit.Text       = model.VolumeUnit;
     this.txtDateTimeCreated.Text  = model.DateTimeCreated.ToString();
     this.txtUserCreator.Text      = model.UserCreator;
     this.txtDateTimeModified.Text = model.DateTimeModified.ToString();
     this.txtUserModified.Text     = model.UserModified;
     this.chkState.Checked         = model.State;
     this.txtOrgId.Text            = model.OrgId;
 }
Пример #3
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtId.Text))
            {
                strErr += "Id格式错误!\\n";
            }
            if (this.txtInvCode.Text.Trim().Length == 0)
            {
                strErr += "InvCode不能为空!\\n";
            }
            if (this.txtInvName.Text.Trim().Length == 0)
            {
                strErr += "InvName不能为空!\\n";
            }
            if (this.txtInvDesc.Text.Trim().Length == 0)
            {
                strErr += "InvDesc不能为空!\\n";
            }
            if (this.txtInvAddress.Text.Trim().Length == 0)
            {
                strErr += "InvAddress不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtVolume.Text))
            {
                strErr += "Volume格式错误!\\n";
            }
            if (this.txtVolumeUnit.Text.Trim().Length == 0)
            {
                strErr += "VolumeUnit不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtDateTimeCreated.Text))
            {
                strErr += "DateTimeCreated格式错误!\\n";
            }
            if (this.txtUserCreator.Text.Trim().Length == 0)
            {
                strErr += "UserCreator不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtDateTimeModified.Text))
            {
                strErr += "DateTimeModified格式错误!\\n";
            }
            if (this.txtUserModified.Text.Trim().Length == 0)
            {
                strErr += "UserModified不能为空!\\n";
            }
            if (this.txtOrgId.Text.Trim().Length == 0)
            {
                strErr += "OrgId不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int      Id               = int.Parse(this.txtId.Text);
            string   InvCode          = this.txtInvCode.Text;
            string   InvName          = this.txtInvName.Text;
            string   InvDesc          = this.txtInvDesc.Text;
            string   InvAddress       = this.txtInvAddress.Text;
            int      Volume           = int.Parse(this.txtVolume.Text);
            string   VolumeUnit       = this.txtVolumeUnit.Text;
            DateTime DateTimeCreated  = DateTime.Parse(this.txtDateTimeCreated.Text);
            string   UserCreator      = this.txtUserCreator.Text;
            DateTime DateTimeModified = DateTime.Parse(this.txtDateTimeModified.Text);
            string   UserModified     = this.txtUserModified.Text;
            bool     State            = this.chkState.Checked;
            string   OrgId            = this.txtOrgId.Text;

            Bsam.Core.Model.Models.Model.Inv_Inv_Info model = new Bsam.Core.Model.Models.Model.Inv_Inv_Info();
            model.Id               = Id;
            model.InvCode          = InvCode;
            model.InvName          = InvName;
            model.InvDesc          = InvDesc;
            model.InvAddress       = InvAddress;
            model.Volume           = Volume;
            model.VolumeUnit       = VolumeUnit;
            model.DateTimeCreated  = DateTimeCreated;
            model.UserCreator      = UserCreator;
            model.DateTimeModified = DateTimeModified;
            model.UserModified     = UserModified;
            model.State            = State;
            model.OrgId            = OrgId;

            Bsam.Core.Model.Models.BLL.Inv_Inv_Info bll = new Bsam.Core.Model.Models.BLL.Inv_Inv_Info();
            bll.Add(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx");
        }