默认生成打印格式删除问题处理

sdgslk
ZR20090193-陈敬勇 2 years ago
parent 3e3e792164
commit ff0dd6b992

@ -430,6 +430,7 @@ namespace VOL.System.Services
try try
{ {
bool isUpdate = false;
//GC.Collect(); //GC.Collect();
BasicDALRef.ClearMemory(); BasicDALRef.ClearMemory();
if (string.IsNullOrEmpty(printInfo.MODNAME) || string.IsNullOrEmpty(printInfo.PRINTNAME)) if (string.IsNullOrEmpty(printInfo.MODNAME) || string.IsNullOrEmpty(printInfo.PRINTNAME))
@ -488,6 +489,8 @@ namespace VOL.System.Services
{ {
UpdateFrx_back(ref , printInfo); UpdateFrx_back(ref , printInfo);
isUpdate = true;
} }
} }
@ -501,8 +504,13 @@ namespace VOL.System.Services
fileurl = MakeFile(, printInfo); fileurl = MakeFile(, printInfo);
//删除新生成的frx //删除新生成的frx
File.Delete("wwwroot/" + .FILEPATH); if (isUpdate)
{
File.Delete("wwwroot/" + .FILEPATH);
}
} }
catch (Exception e) catch (Exception e)

Loading…
Cancel
Save