26 lines
633 B
C#
26 lines
633 B
C#
|
using Kingdee.BOS.Contracts;
|
|||
|
using Kingdee.BOS.Core;
|
|||
|
using Kingdee.BOS.ServiceHelper;
|
|||
|
using Kingdee.BOS.Util;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Pilot.Report.Exploitation.Receivables
|
|||
|
{
|
|||
|
[Description("定时刷新应收款报表的数据")]
|
|||
|
[HotUpdate]
|
|||
|
public class ReceivablesAutoExecute : IScheduleService
|
|||
|
{
|
|||
|
public void Run(Kingdee.BOS.Context ctx, Schedule schedule)
|
|||
|
{
|
|||
|
DBServiceHelper.Execute(ctx, "/*dialect*/ EXEC PR_YingShouMingXi_yuyubo");
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|