改配退舱入池逻辑修改

dev
cjy 2 months ago
parent b2b8f7c633
commit fbd69d3ad8

@ -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,
}
};

Loading…
Cancel
Save