修改状态保存

optimize
jianghaiqing 1 year ago
parent a4d852fb25
commit 79ce8d382b

@ -362,7 +362,7 @@ namespace Myshipping.Application
bool currIsYield = true;
//完成时间为空,备注不为空只保存备注信息,不标记完成
if(st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
if(!st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
{
currIsYield = false;
}
@ -424,7 +424,7 @@ namespace Myshipping.Application
bool currIsYield = true;
//完成时间为空,备注不为空只保存备注信息,不标记完成
if (st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
if (!st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
{
currIsYield = false;
}
@ -524,7 +524,7 @@ namespace Myshipping.Application
bool currIsYield = true;
//完成时间为空,备注不为空只保存备注信息,不标记完成
if (st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
if (!st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
{
currIsYield = false;
}
@ -586,7 +586,7 @@ namespace Myshipping.Application
bool currIsYield = true;
//完成时间为空,备注不为空只保存备注信息,不标记完成
if (st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
if (!st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
{
currIsYield = false;
}
@ -659,7 +659,7 @@ namespace Myshipping.Application
bool currIsYield = true;
//完成时间为空,备注不为空只保存备注信息,不标记完成
if (st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
if (!st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
{
currIsYield = false;
}
@ -711,7 +711,7 @@ namespace Myshipping.Application
bool currIsYield = true;
//完成时间为空,备注不为空只保存备注信息,不标记完成
if (st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
if (!st.StatusDate.HasValue && !string.IsNullOrWhiteSpace(st.Remark))
{
currIsYield = false;
}

Loading…
Cancel
Save