以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  保存提示错误  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=115668)

--  作者:有点甜
--  发布时间:2018/3/12 11:13:00
--  
If e.DataRow("线长确认") = Nothing AndAlso e.DataRow("设备指派") = Nothing AndAlso e.DataRow("实际完成日期") = Nothing AndAlso e.DataRow("线长验收") = Nothing Then
    e.DataRow("节点状态") = "线长审核"
ElseIf e.DataRow("线长确认") <> Nothing AndAlso e.DataRow("设备指派") = Nothing AndAlso e.DataRow("实际完成日期") = Nothing AndAlso e.DataRow("线长验收") = Nothing Then
    e.DataRow("节点状态") = "待分配"
ElseIf e.DataRow("线长确认") <> Nothing AndAlso e.DataRow("设备指派") <> Nothing AndAlso e.DataRow("实际完成日期") = Nothing AndAlso e.DataRow("线长验收") = Nothing
    e.DataRow("节点状态") = "单已分解"
ElseIf e.DataRow("线长确认") <> Nothing AndAlso e.DataRow("设备指派") <> Nothing AndAlso e.DataRow("实际完成日期") = Nothing AndAlso e.DataRow("线长验收") = Nothing
    e.DataRow("节点状态") = "维修中"
ElseIf e.DataRow("线长确认") <> Nothing AndAlso e.DataRow("设备指派") <> Nothing AndAlso e.DataRow("实际完成日期") <> Nothing AndAlso e.DataRow("线长验收") = Nothing
    e.DataRow("节点状态") = "待验收"
Else
    e.DataRow("节点状态") = "已完成"
End If