Esempio n. 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!base.IsPostBack)
     {
         this.tpcode = base.Request.QueryString["code"].ToString();
         PublicInterface.PTDBSJDelete(this.tpcode, "024");
         this.labTypeCode.Text = this.tpcode;
         this.bindPagedata(this.tpcode);
         this.lbllink.Text = this.FilesBind(18, this.tpcode);
     }
 }
Esempio n. 2
0
 protected void Page_Load(object sender, System.EventArgs e)
 {
     if (!base.IsPostBack)
     {
         this.tpcode = base.Request.QueryString["typecode"].ToString();
         PublicInterface.PTDBSJDelete(this.tpcode, "024");
         this.labTypeCode.Text = this.tpcode;
         this.bindPagedata();
         this.FileLink1.MID  = 18;
         this.FileLink1.FID  = this.hdfPrjGuid.Value.ToString();
         this.FileLink1.Type = 1;
     }
 }
Esempio n. 3
0
    protected void Page_Load(object sender, EventArgs e)
    {
        string text = base.Request.QueryString["Guid"];
        string lXBM = base.Request.QueryString["Type"];

        PublicInterface.PTDBSJDelete(text, lXBM);
        EquipmentInfo singleEquipmentInfo = EquipmentAction.GetSingleEquipmentInfo(new Guid(text));
        DataTable     list = this.manage.GetList("ResourceTypeCode='" + singleEquipmentInfo.EquipmentType + "'");

        if (list.Rows.Count > 0)
        {
            this.lblType.Text = list.Rows[0]["ResourceTypeName"].ToString();
        }
        else
        {
            this.lblType.Text = "";
        }
        this.lblcode.Text     = singleEquipmentInfo.EquipmentManCode.ToString();
        this.lblName.Text     = singleEquipmentInfo.EquipmentName.ToString();
        this.lblSp.Text       = singleEquipmentInfo.Spec.ToString();
        this.lbljingdu.Text   = singleEquipmentInfo.ThePrecision.ToString();
        this.lblmader.Text    = singleEquipmentInfo.Manufacturer.ToString();
        this.lblchuchang.Text = singleEquipmentInfo.FactoryCode.ToString();
        this.lblDatechu.Text  = singleEquipmentInfo.FactoryDate.ToShortDateString();
        this.lblBugDate.Text  = singleEquipmentInfo.PurchaseDate.ToShortDateString();
        this.lblzhouqi.Text   = singleEquipmentInfo.CheckCycle.ToString();
        this.lblyear.Text     = singleEquipmentInfo.ServiceYear.ToString();
        this.lblMoney.Text    = singleEquipmentInfo.OriginalPrice.ToString();
        this.lblState.Text    = singleEquipmentInfo.State.ToString();
        this.lblRemark.Text   = singleEquipmentInfo.Remark;
        this.lblzeju.Text     = singleEquipmentInfo.depreciation.ToString();
        this.lblProject.Text  = this.BLL.projectName(singleEquipmentInfo.EquipmentUniqueCode.ToString());
        try
        {
            this.lbldanwei.Text = com.jwsoft.pm.entpm.PageHelper.QueryCorp(this, int.Parse(singleEquipmentInfo.ContactDept));
        }
        catch
        {
        }
    }