diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index c3f28f23..b54734ff 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -16591,7 +16591,7 @@ - + diff --git a/SGGL/FineUIPro.Web/HSSE/CostGoods/CostManage.aspx.cs b/SGGL/FineUIPro.Web/HSSE/CostGoods/CostManage.aspx.cs index 03c9f175..d2d9feea 100644 --- a/SGGL/FineUIPro.Web/HSSE/CostGoods/CostManage.aspx.cs +++ b/SGGL/FineUIPro.Web/HSSE/CostGoods/CostManage.aspx.cs @@ -349,6 +349,14 @@ namespace FineUIPro.Web.HSSE.CostGoods else { string messaage = CostManageService.PushDataToHSE(this.CurrUser.LoginProjectId, costManage.ContractNum); + if (string.IsNullOrEmpty(messaage)) + { + Alert.ShowInTop("推送成功!", MessageBoxIcon.Success); + } + else + { + Alert.ShowInTop(messaage, MessageBoxIcon.Warning); + } }