add job invoice
This commit is contained in:
@@ -131,9 +131,21 @@ RecurringJob.AddOrUpdate<ProductSyncJob>(
|
||||
new RecurringJobOptions
|
||||
{
|
||||
TimeZone = TimeZoneInfo.Local,
|
||||
MisfireHandling = app.Environment.IsDevelopment()
|
||||
? MisfireHandlingMode.Relaxed
|
||||
: MisfireHandlingMode.Strict
|
||||
MisfireHandling = app.Environment.IsDevelopment()
|
||||
? MisfireHandlingMode.Relaxed
|
||||
: MisfireHandlingMode.Strict
|
||||
});
|
||||
|
||||
RecurringJob.AddOrUpdate<InvoiceSyncJob>(
|
||||
"invoice-sync",
|
||||
job => job.ExecuteAsync(),
|
||||
Cron.Daily(2, 30), // Every day at 2:30 AM
|
||||
new RecurringJobOptions
|
||||
{
|
||||
TimeZone = TimeZoneInfo.Local,
|
||||
MisfireHandling = app.Environment.IsDevelopment()
|
||||
? MisfireHandlingMode.Relaxed
|
||||
: MisfireHandlingMode.Strict
|
||||
});
|
||||
|
||||
app.Run();
|
||||
Reference in New Issue
Block a user