CheckInEditor.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.Collections.Generic;
  6. using System.Web;
  7. using System.Web.Security;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.WebControls.WebParts;
  11. using System.Web.UI.HtmlControls;
  12. public partial class Articles_CheckInEditor : 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_CheckInEditor");
  21.         if (!IsPostBack)
  22.         {
  23.             object objid = Request.QueryString["id"];
  24.             if (objid != null)
  25.             {
  26.                 DropLoadSet();
  27.                 int ri = int.Parse(objid.ToString());
  28.                 MU = BU.GetModel(ri);
  29.                 KeyValue_DJBS.SelectedValue = MU.DJBS;
  30.                 KeyValue_DJ.Text = MU.DJ.ToString("0.00");
  31.                 KeyValue_WP.Text = MU.WP;
  32.                 KeyValue_SL.Text = MU.SL.ToString();
  33.                 KeyValue_BZ.Text = MU.BZ;
  34.                 KeyValue_DJR.Text = MU.DJR;
  35.             }
  36.         }
  37.     }
  38.     protected void Button1_Click(object sender, EventArgs e)
  39.     {
  40.         try
  41.         {
  42.             if (KeyValue_DJBS.SelectedValue == "0")
  43.             {
  44.                 throw new Exception("请选择登记表示!");
  45.             }
  46.             decimal DKeyValue_DJ = 0;
  47.             if (!decimal.TryParse(KeyValue_DJ.Text, out DKeyValue_DJ))
  48.             {
  49.                 throw new Exception("单价不正确!");
  50.             }
  51.             if (String.IsNullOrEmpty(KeyValue_WP.Text.Trim()))
  52.             {
  53.                 throw new Exception("物品不能为空!");
  54.             }
  55.             int IKeyValue_SL = 0;
  56.             if (!int.TryParse(KeyValue_SL.Text, out IKeyValue_SL))
  57.             {
  58.                 throw new Exception("数量不正确!");
  59.             }
  60.             if (String.IsNullOrEmpty(KeyValue_DJR.Text.Trim()))
  61.             {
  62.                 throw new Exception("登记人不能为空!");
  63.             }
  64.             MU.ID = int.Parse(Request.QueryString["id"].ToString());
  65.             MU.DJBS = KeyValue_DJBS.SelectedValue;
  66.             MU.DJ = DKeyValue_DJ;
  67.             MU.WP = KeyValue_WP.Text;
  68.             MU.SL = IKeyValue_SL;
  69.             MU.BZ = KeyValue_BZ.Text;
  70.             MU.DJR = KeyValue_DJR.Text;
  71.             BU.Update(MU);
  72.             MessageBox.Show("更新成功");
  73.         }
  74.         catch (Exception exp)
  75.         {
  76.             MessageBox.Show(exp.Message);
  77.         }
  78.     }
  79.     public void DropLoadSet()
  80.     {
  81.         List<EnumList> list = EnumGet.DengJiGetEnum();
  82.         for (int i = 0; i < list.Count; i++)
  83.         {
  84.             KeyValue_DJBS.Items.Add(list[i].Text);
  85.         }
  86.         ListItem linone = new ListItem();
  87.         linone.Text = "---请选择---";
  88.         linone.Value = "0";
  89.         KeyValue_DJBS.Items.Add(linone);
  90.         KeyValue_DJBS.SelectedIndex = KeyValue_DJBS.Items.Count - 1;
  91.     }
  92. }