new flowNo to use id if deskcustomer's toFlowNo is null

This commit is contained in:
bobwang 2024-05-27 10:40:32 +08:00
parent 90d9cc76ed
commit 8305a6bb74
1 changed files with 9 additions and 0 deletions

View File

@ -68,6 +68,15 @@ namespace DeiNiu.wms.Data.Model
else else
return CustOper(201); return CustOper(201);
} }
public string toFlowNo
{
get
{
return string.IsNullOrEmpty(_flowNo)?_id+"":_flowNo;
}
}
} }
} }