修改视图

This commit is contained in:
2025-03-25 15:06:34 +08:00
parent 6161452816
commit 2a7a73b657
9 changed files with 650 additions and 75 deletions

View File

@@ -17,7 +17,25 @@ namespace Pilot.Report.Exploitation.Receivables
{
public void Run(Kingdee.BOS.Context ctx, Schedule schedule)
{
DBServiceHelper.Execute(ctx, "/*dialect*/ EXEC PR_YingShouMingXi_yuyubo");
try
{
DBServiceHelper.Execute(ctx, "/*dialect*/ EXEC PR_YingShouMingXi_yuyubo");
}
catch (Exception ex)
{
throw new Exception("PR_YingShouMingXi_yuyubo:"+ex.Message);
}
finally
{
try
{
DBServiceHelper.Execute(ctx, "/*dialect*/ EXEC ZPR_SalesRportShareData");
}
catch (Exception ex)
{
throw new Exception("ZPR_SalesRportShareData:"+ex.Message);
}
}
}