|
@ -1,3 +1,4 @@ |
|
|
|
|
|
using System; |
|
|
using System.Collections.Generic; |
|
|
using System.Collections.Generic; |
|
|
using System.Linq; |
|
|
using System.Linq; |
|
|
using System.Threading.Tasks; |
|
|
using System.Threading.Tasks; |
|
@ -99,6 +100,7 @@ public class CountPlanEventHandler |
|
|
foreach (var job in jobs) |
|
|
foreach (var job in jobs) |
|
|
{ |
|
|
{ |
|
|
var countNote = ObjectMapper.Map<CountJob, CountNote>(job); |
|
|
var countNote = ObjectMapper.Map<CountJob, CountNote>(job); |
|
|
|
|
|
countNote.EndTime = DateTime.Now; |
|
|
notes.Add(countNote); |
|
|
notes.Add(countNote); |
|
|
} |
|
|
} |
|
|
if (notes.Count > 0) |
|
|
if (notes.Count > 0) |
|
|