CheckInAdd.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. using System.Collections.Generic;
  12. public partial class Articles_CheckInAdd : System.Web.UI.Page
  13. {
  14.     //模板
  15.     Model.UseThingsUse MU = new Model.UseThingsUse();
  16.     //业务
  17.     BLL.UseThingsUse BU = new BLL.UseThingsUse();
  18.     protected void Page_Load(object sender, EventArgs e)
  19.     {
  20.         LoginLogic.MatchLoad("../", "Articles_CheckInAdd");
  21.         if (!IsPostBack)
  22.         {
  23.             DropLoadSet();
  24.         }
  25.     }
  26.     protected void Button1_Click(object sender, EventArgs e)
  27.     {
  28.         try
  29.         {
  30.             if (KeyValue_DJBS.SelectedValue == "0")
  31.             {
  32.                 throw new Exception("请选择登记表示!");
  33.             }
  34.             decimal DKeyValue_DJ = 0;
  35.             if (!decimal.TryParse(KeyValue_DJ.Text, out DKeyValue_DJ))
  36.             {
  37.                 throw new Exception("单价不正确!");
  38.             }
  39.             if (String.IsNullOrEmpty(KeyValue_WP.Text.Trim()))
  40.             {
  41.                 throw new Exception("物品不能为空!");
  42.             }
  43.             int IKeyValue_SL = 0;
  44.             if (!int.TryParse(KeyValue_SL.Text, out IKeyValue_SL))
  45.             {
  46.                 throw new Exception("数量不正确!");
  47.             }
  48.             if (String.IsNullOrEmpty(KeyValue_DJR.Text.Trim()))
  49.             {
  50.                 throw new Exception("登记人不能为空!");
  51.             }
  52.             MU.DJBS = KeyValue_DJBS.SelectedValue;
  53.             MU.DJ = DKeyValue_DJ;
  54.             MU.WP = KeyValue_WP.Text;
  55.             MU.SL = IKeyValue_SL;
  56.             MU.BZ= KeyValue_BZ.Text;
  57.             MU.DJR = KeyValue_DJR.Text;
  58.             BU.Add(MU);
  59.             MessageBox.Show("添加成功");
  60.             KeyValue_DJBS.SelectedIndex = KeyValue_DJBS.Items.Count - 1;
  61.             KeyValue_DJ.Text = "";
  62.             KeyValue_WP.Text = "";
  63.             KeyValue_SL.Text = "";
  64.             KeyValue_DJ.Text = "";
  65.             KeyValue_BZ.Text = "";
  66.             KeyValue_DJR.Text = "";
  67.         }
  68.         catch (Exception exp)
  69.         {
  70.             MessageBox.Show(exp.Message);
  71.         }
  72.     }
  73.     public void DropLoadSet()
  74.     {
  75.         List<EnumList> list = EnumGet.DengJiGetEnum();
  76.         for (int i = 0; i < list.Count; i++)
  77.         {
  78.             KeyValue_DJBS.Items.Add(list[i].Text);
  79.         }
  80.         ListItem linone = new ListItem();
  81.         linone.Text = "---请选择---";
  82.         linone.Value = "0";
  83.         KeyValue_DJBS.Items.Add(linone);
  84.         KeyValue_DJBS.SelectedIndex = KeyValue_DJBS.Items.Count - 1;
  85.     }
  86. }