HSE费用修改

This commit is contained in:
2025-11-17 20:31:53 +08:00
parent 1325b721a2
commit 0fd29567b1
12 changed files with 252 additions and 28 deletions
@@ -1,4 +1,5 @@
using BLL;
using FineUIPro.Web.SmartSite;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
@@ -218,6 +219,16 @@ namespace FineUIPro.Web.HSSE.CostGoods
getCost.NextManId = null;
getCost.States = BLL.Const.State_2;
BLL.CostManageService.UpdateCostManage(getCost);
string messaage = CostManageService.PushDataToHSE(this.CurrUser.LoginProjectId, getCost.ContractNum, getCost.CostManageId);
if (string.IsNullOrEmpty(messaage))
{
Alert.ShowInTop("推送成功!", MessageBoxIcon.Success);
}
else
{
Alert.ShowInTop(messaage, MessageBoxIcon.Warning);
}
}
}