This commit is contained in:
2026-02-03 09:33:24 +08:00
parent 797e6c792d
commit be6966127f
3 changed files with 11 additions and 3 deletions
+3
View File
@@ -158,17 +158,20 @@ public partial class supplierBuildFile : System.Web.UI.Page
if (result != 1)
{
addLog(ctid, userId, "初始化秘钥失败" + result, 0);
updateSql += string.Format("update CE_ErpPackDataItem set message = '解密失败!' where packId= {0} and ctid='{1}' ;", packId, ctid);
continue;
}
uint a = DecFile(fname);
if (a != 0)
{
addLog(ctid, userId, "解密失败" + a, 0);
updateSql += string.Format("update CE_ErpPackDataItem set message = '解密失败!' where packId= {0} and ctid='{1}' ;", packId, ctid);
continue;
}
}
if (string.IsNullOrEmpty(fname))
{
updateSql += string.Format("update CE_ErpPackDataItem set message = '解密失败!' where packId= {0} and ctid='{1}' ;", packId, ctid);
continue;
}
try