20231211安全费用页面新增分包申请表导出功能

This commit is contained in:
2023-12-11 16:38:15 +08:00
parent 878533816a
commit 025add304d
6 changed files with 195 additions and 4 deletions
@@ -318,5 +318,16 @@ namespace FineUIPro.Web.HSSE.CostGoods
// 绑定表格
this.BindGrid();
}
protected void btnPrinter_Click(object sender, EventArgs e)
{
if (Grid1.SelectedRowIndexArray.Length == 0)
{
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
return;
}
PrinterDocService.PrinterDocMethod(Const.ProjectCostManageMenuId, Grid1.SelectedRowID, "HSSE费用管理");
}
}
}