|
|
|
@ -390,11 +390,11 @@ namespace DS.WMS.Core.Op.Method
|
|
|
|
|
userList.Add(entity.LaneId);
|
|
|
|
|
var taskReq = new TaskCreationRequest()
|
|
|
|
|
{
|
|
|
|
|
BusinessId = newKey,
|
|
|
|
|
BusinessId = info.Id,
|
|
|
|
|
BusinessType = BusinessType.OceanShippingExport,
|
|
|
|
|
TaskTypeName = TaskBaseTypeEnum.RETURN_CABIN_POOL.ToString(),
|
|
|
|
|
TaskTitle = $"【{TaskBaseTypeEnum.RETURN_CABIN_POOL.GetDescription()}】{entity?.CustomerNo}",
|
|
|
|
|
TaskDescription = $"【{TaskBaseTypeEnum.RETURN_CABIN_POOL.GetDescription()}】{entity?.CustomerNo}",
|
|
|
|
|
TaskTitle = $"【{TaskBaseTypeEnum.RETURN_CABIN_POOL.GetDescription()}】{info?.CustomerNo}",
|
|
|
|
|
TaskDescription = $"【{TaskBaseTypeEnum.RETURN_CABIN_POOL.GetDescription()}】{info?.CustomerNo}",
|
|
|
|
|
RecvUserIdList = userList.ToArray()
|
|
|
|
|
};
|
|
|
|
|
var result = await taskService.CreateTaskAsync(taskReq, false);
|
|
|
|
@ -597,7 +597,9 @@ namespace DS.WMS.Core.Op.Method
|
|
|
|
|
{
|
|
|
|
|
OpType = "del",
|
|
|
|
|
DataObj = new BookingSlotBaseApiSaveDto()
|
|
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
Id = info.ChangeOrderId.IsNotNull()? (long)info.ChangeOrderId : info.Id,
|
|
|
|
|
SlotBookingNo = info.MBLNO,
|
|
|
|
|
CtnList = ctns,
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|