This commit is contained in:
2024-11-11 16:10:08 +08:00
parent 2e14c723c8
commit 809c06a3cb
55 changed files with 769 additions and 340 deletions
@@ -291,6 +291,15 @@ namespace FineUIPro.Web.Report
string actStr = actType + "1";
reportModel.GetRow(rowIndex).GetCell(6).SetCellValue(actStr);
}
if (actType.Contains("1"))
{
string thirdParty = table.Rows[i]["IsThirdParty"].ToString();
if (thirdParty != "" && thirdParty == "是")
{
string actStr = actType + "1";
reportModel.GetRow(rowIndex).GetCell(6).SetCellValue(actStr);
}
}
}
else if (table.Rows[i]["Type"].ToString().Contains("T02_OverTime"))
{
@@ -300,6 +309,15 @@ namespace FineUIPro.Web.Report
string actStr = actType + "2";
reportModel.GetRow(rowIndex).GetCell(6).SetCellValue(actStr);
}
if (actType.Contains("1"))
{
string thirdParty = table.Rows[i]["IsThirdParty"].ToString();
if (thirdParty != "" && thirdParty == "是")
{
string actStr = actType + "2";
reportModel.GetRow(rowIndex).GetCell(6).SetCellValue(actStr);
}
}
}
else if (table.Rows[i]["Type"].ToString().Contains("T03_OverTime"))
@@ -310,6 +328,15 @@ namespace FineUIPro.Web.Report
string actStr = actType + "3";
reportModel.GetRow(rowIndex).GetCell(6).SetCellValue(actStr);
}
if (actType.Contains("1"))
{
string thirdParty = table.Rows[i]["IsThirdParty"].ToString();
if (thirdParty != "" && thirdParty == "是")
{
string actStr = actType + "3";
reportModel.GetRow(rowIndex).GetCell(6).SetCellValue(actStr);
}
}
}
else