Esempio n. 1
0
 /// <summary>
 /// 获取记录数据
 /// </summary>
 protected void Get_Knet_Suppliers_ByID()
 {
     ZWL.BLL.ERPOperations MyModel = new ZWL.BLL.ERPOperations();
     if (Request["ID"] != null && Request["ID"] != "")
     {
         int ID = int.Parse(Request.QueryString["ID"].ToString().Trim());
         if (MyModel.Exists(ID) == true)
         {
             MyModel.GetModel(ID);
             this.OrderNo.Text          = MyModel.OrderNo;
             this.RepairDepartment.Text = MyModel.RepairDepartment;
             this.RepairPeople.Text     = MyModel.RepairPeople;
             this.FauleEquipment.Text   = MyModel.FauleEquipment;
             this.Phenomenon.Text       = MyModel.Phenomenon;
             this.XingHao.Text          = MyModel.XingHao;
             this.CunFangAddr.Text      = MyModel.CunFangAddr;
             this.EquipmentName.Text    = MyModel.EquipmentName;
             this.EquipmentType.Text    = MyModel.EquipmentType;
             this.RepairDate.Text       = MyModel.RepairDate.ToString();
             this.FauleDate.Text        = MyModel.FauleDate.ToString();
         }
         else
         {
             Response.Write("<script language=javascript>alert('该维修记录已不存在!');window.close();</script>");
             Response.End();
         }
     }
     else
     {
         Response.Write("<script language=javascript>alert('非法参数!');window.close();</script>");
         Response.End();
     }
 }
Esempio n. 2
0
    //<summary>
    //获取记录数据
    //</summary>
    protected void Get_Knet_Suppliers_ByID()
    {
        ZWL.BLL.ERPOperations MyModel = new ZWL.BLL.ERPOperations();
        string[] HeadPeople           = { "" };
        string[] AssistPeople1        = { "" };
        string[] AssistPeople2        = { "" };
        if (Request["ID"] != null && Request["ID"] != "")
        {
            int ID = int.Parse(Request.QueryString["ID"].ToString().Trim());
            if (MyModel.Exists(ID) == true)
            {
                MyModel.GetModel(ID);
                this.OrderNo.Text          = MyModel.OrderNo;
                this.RepairDepartment.Text = MyModel.RepairDepartment;
                this.RepairPeople.Text     = MyModel.RepairPeople;
                this.FauleEquipment.Text   = MyModel.FauleEquipment;
                this.Phenomenon.Text       = MyModel.Phenomenon;
                this.XingHao.Text          = MyModel.XingHao;
                this.CunfangAddr.Text      = MyModel.CunFangAddr;
                this.EquipmentName.Text    = MyModel.EquipmentName;
                this.EquipmentType.Text    = MyModel.EquipmentType;
                this.repairdate.Text       = MyModel.RepairDate.ToString();
                this.FauleDate.Text        = MyModel.FauleDate.ToString();

                try {
                    HeadPeople    = MyModel.HeadPeople.Split(':');
                    AssistPeople1 = MyModel.AssistPeople1.Split(':');
                    AssistPeople2 = MyModel.AssistPeople2.Split(':');
                }
                catch { }
                this.HeadPeople.Text        = HeadPeople[1] + ' ' + AssistPeople1[0] + ' ' + AssistPeople2[0];//MyModel.HeadPeople+' '+MyModel.AssistPeople1+' '+MyModel.AssistPeople2;
                this.DispatchingPeople.Text = MyModel.DispatchingPeople;
                this.DispatchingDate.Text   = MyModel.DispatchingDate.ToString();
                this.Orderdate.Text         = MyModel.OrderDate.ToString();
                this.RepairCall.Text        = MyModel.RepairCall.ToString();
            }
            else
            {
                Response.Write("<script language=javascript>alert('该维修记录已不存在!');window.close();</script>");
                Response.End();
            }
        }
        else
        {
            Response.Write("<script language=javascript>alert('非法参数!');window.close();</script>");
            Response.End();
        }
    }
    /// <summary>
    /// 获取记录数据
    /// </summary>
    protected void Get_Knet_Suppliers_ByID()
    {
        ZWL.BLL.ERPOperations MyModel = new ZWL.BLL.ERPOperations();
        if (Request["ID"] != null && Request["ID"] != "")
        {
            int ID = int.Parse(Request.QueryString["ID"].ToString().Trim());
            if (MyModel.Exists(ID) == true)
            {
                String [] Headname_str      = { "" };
                String[]  AssistPeople1_str = { "" };
                String[]  AssistPeople2_str = { "" };



                MyModel.GetModel(ID);
                try
                {
                    Headname_str      = MyModel.HeadPeople.Split(':');
                    AssistPeople1_str = MyModel.AssistPeople1.Split(':');
                    AssistPeople2_str = MyModel.AssistPeople2.Split(':');
                }
                catch { }
                this.OrderNo.Text          = MyModel.OrderNo;
                this.RepairDepartment.Text = MyModel.RepairDepartment;
                this.RepairPeople.Text     = MyModel.RepairPeople;
                this.FauleEquipment.Text   = MyModel.FauleEquipment;
                this.Phenomenon.Text       = MyModel.Phenomenon;
                this.XingHao.Text          = MyModel.XingHao;
                this.CunFangAddr.Text      = MyModel.CunFangAddr;
                this.EquipmentName.Text    = MyModel.EquipmentName;
                this.EquipmentType.Text    = MyModel.EquipmentType;
                this.RepairDate.Text       = MyModel.RepairDate.ToString();
                this.FauleDate.Text        = MyModel.FauleDate.ToString();
                if (Headname_str.Length > 1)
                {
                    this.headpeople.Text = Headname_str[1];
                }
                else
                {
                    this.headpeople.Text = MyModel.HeadPeople;
                }
                if (AssistPeople1_str.Length > 1)
                {
                    this.AssistPeople1.Text = AssistPeople1_str[1];
                }
                else
                {
                    this.AssistPeople1.Text = MyModel.AssistPeople1;
                }
                if (AssistPeople2_str.Length > 1)
                {
                    this.AssistPeople2.Text = AssistPeople2_str[1];
                }
                else
                {
                    this.AssistPeople2.Text = MyModel.AssistPeople2;
                }
            }
            else
            {
                Response.Write("<script language=javascript>alert('该维修记录已不存在!');window.close();</script>");
                Response.End();
            }
        }
        else
        {
            Response.Write("<script language=javascript>alert('非法参数!');window.close();</script>");
            Response.End();
        }
    }