添加报送文件开始编号属性及相关逻辑

This commit is contained in:
锦麟 王
2025-05-15 18:19:21 +08:00
parent ed352e388b
commit 3e885b1089
5 changed files with 16 additions and 0 deletions
@@ -262,6 +262,10 @@ namespace YLErp.Modules.SuperviseReportModule.SAC.Service
fileId = Regex.Match(fileId, @"\d{4}$").Value;
index = int.Parse(fileId) + 1;
}
if (index <= PS.Config.ReportFileBeginNumber)
{
index += PS.Config.ReportFileBeginNumber;
}
return index;
}