Exemple #1
0
 void BindData()
 {
     //ReportFuel report = new ReportFuelService().FindByKey(ReportId);
     //if (report != null)
     //{
     ltOldYear.Text  = ("I. Kết quả thực hiện năm " + (ReportYear - 1).ToString()).ToUpper();
     ltNextYear.Text = ("II .Kế hoạch thực hiện năm " + ReportYear.ToString()).ToUpper();
     //}
 }
 void BindData()
 {
     //ReportFuel report = new ReportFuelService().FindByKey(ReportId);
     //if (report != null)
     //{
     ltOldYear.Text  = ("I. Kết quả thực hiện năm " + (ReportYear - 1).ToString()).ToUpper();
     ltNextYear.Text = ("II. Kế hoạch thực hiện năm " + ReportYear.ToString()).ToUpper();
     //}
     btnAddDevice.Visible = btnAddPlan.Visible = btnAddPlanDeviceNext.Visible = btnAddPlanNext.Visible = btnAddSolution.Visible = btnAddSolution2.Visible = AllowEdit;;
 }
    private void BindDataDetail()
    {
        if (hdnDetailId.Value != "")
        {
            ReportFuelDetail reportDetail = new ReportFuelDetailService().FindByKey(Convert.ToInt32(hdnDetailId.Value));
            if (reportDetail != null)
            {
                try
                {
                    if (reportDetail.FuelId > 0)
                    {
                        ddlFuel.SelectedValue = reportDetail.FuelId.ToString();
                        BindMeasurement();
                    }
                    if (reportDetail.MeasurementId > 0)
                    {
                        ddlMeasure.SelectedValue = reportDetail.MeasurementId.ToString();
                        BindTOE();
                    }
                }
                catch { }
                txtPropose.Text = reportDetail.Reason;
                if (reportDetail.NoFuel > 0)
                {
                    txtNoFuel.Text = reportDetail.NoFuel.ToString();
                }
                if (reportDetail.Price > 0)
                {
                    txtPrice.Text = reportDetail.Price.ToString();
                }

                if (reportDetail.No_RateTOE > 0)
                {
                    txtNoTOE.Text = Tool.ConvertDecimalToString(reportDetail.No_RateTOE);
                }
                hdnNextYear.Value = reportDetail.IsNextYear ? "1" : "0";

                if (reportDetail.IsNextYear)
                {
                    ltTitle.Text = "Mức nhiên liệu tiêu thụ dự kiến năm " + (reportDetail.Year + 1).ToString();
                }
                else
                {
                    //ltTitle.Text = "Mức nhiên liệu tiêu thụ năm " + reportDetail.Year;
                    ltTitle.Text = "Mức nhiên liệu tiêu thụ năm " + ReportYear.ToString();
                }
            }
        }
    }
Exemple #4
0
        public IList <Report> GetRelatedReports()
        {
            IList <Report> result = new List <Report>();

            if (ReportYear > 0)
            {
                //查詢
                IDictionary <string, string> conditions = new Dictionary <string, string>();
                conditions.Add("CompanyTrade", CompanyTrade);
                conditions.Add("ReportYearFrom", ReportYear.ToString());
                conditions.Add("ReportYearTo", ReportYear.ToString());

                result = m_FTISService.GetReportList(conditions).Where(r => r.ReportName != ReportName).ToList();
            }

            if (result == null)
            {
                result = new List <Report>();
            }

            return(result);
        }
 void BindData()
 {
     //ReportFuel report = new ReportFuelService().FindByKey(ReportId);
     //if (report != null)
     //{
     ltNextPeriod.Text    = ("Kế hoạch, mục tiêu tiết kiệm và sử dụng hiệu quả năng lượng trong 5 năm tới (" + ReportYear.ToString() + " - " + (ReportYear + 4).ToString() + ")").ToUpper();
     ltPeriod.Text        = ("Kết quả thực hiện kế hoạch 5 năm (" + (ReportYear - 5).ToString() + " - " + (ReportYear - 1).ToString() + ")").ToUpper();
     btnAddDevice.Visible = btnAddPlan.Visible = btnAddSolution.Visible = AllowEdit;
     //}
 }
Exemple #6
0
 void BindData()
 {
     //ReportFuel report = new ReportFuelService().FindByKey(ReportId);
     //if (report != null)
     //{
     ltNextPeriod.Text = ("Kế hoạch, mục tiêu tiết kiệm và sử dụng hiệu quả năng lượng trong 5 năm tới (" + (ReportYear + 1).ToString() + " - " + (ReportYear + 6).ToString() + ")").ToUpper();
     ltPeriod.Text     = ("Kết quả thực hiện kế hoạch 5 năm (" + (ReportYear - 5).ToString() + " - " + ReportYear.ToString() + ")").ToUpper();
     //}
 }