移交统计增加附件

This commit is contained in:
2024-02-04 11:11:43 +08:00
parent 9d7679a283
commit df83f9713f
3 changed files with 54 additions and 15 deletions
@@ -230,7 +230,7 @@ namespace FineUIPro.Web.Transfer.Chart
}
if (systemBol)
{
this.ChartUc.CreateChart(BLL.ChartControlService.GetDataSourceChart(dtTime, "PROGRESS REPORT", this.drpChartType.SelectedValue, 1100, 600, false));
this.ChartUc.CreateChart(BLL.ChartControlService.GetDataSourceChart(dtTime, "PROGRESS REPORT", "Column", 1100, 600, false));
}
@@ -476,11 +476,33 @@ namespace FineUIPro.Web.Transfer.Chart
}
if (systemBol)
{
this.ChartUc.CreateChart(BLL.ChartControlService.GetDataSourceChart(dtTime, "SYSTEM PROGRESS REPORT", this.drpChartType.SelectedValue, 1100, 600, false));
this.ChartUc.CreateChart(BLL.ChartControlService.GetDataSourceChart(dtTime, "SYSTEM PROGRESS REPORT", "Column", 1100, 600, false));
}
}
}
#endregion
#region
/// <summary>
/// 上传附件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnAttachUrl_Click(object sender, EventArgs e)
{
//必须点击系统
var SystemName = this.trRectify.SelectedNodeID;
if (SystemName=="ALL"|| SystemName=="")
{
Alert.ShowInTop("请选择系统。", MessageBoxIcon.Warning);
return;
}
var toKeyId = "D142B96F-4D36-429D-AB08-FA0D7C30BB69" + SystemName;
PageContext.RegisterStartupScript(WindowAtt.GetShowReference
(String.Format("~/AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/Trancfer&menuId={1}",
toKeyId, "E6F5125D-DD94-4978-B7EB-D9C26694D86D")));
}
#endregion
}
}