'作业工地名称及销售工地名称
For Each r As Row In Tables("工作总表_Table4").Rows
If r("泵送明细_日期") = Nothing Then
r("泵送明细_作业工地名称") = Nothing
r("泵送明细_销售客户名称") = Nothing
Else
' Select Case r
' Case r("泵送明细_日期"), r("泵送明细_泵车信息_车号")
Dim drs1 = DataTables("白塔泵送明细").SQLSelect(" 泵送明细_日期 = '" & r("泵送明细_日期") & "' and 泵送明细_泵车信息_车号 = '" & r("泵送明细_泵车信息_车号") & "'")
Dim drs = DataTables("白塔砼销明细").SQLSelect(" 砼销明细_销售审核_日期0 = '" & r("泵送明细_日期") & "' and 砼销明细_泵车作业_泵号='" & r("泵送明细_泵车信息_车号") & "'")
For Each cdr As DataRow In drs
Dim flag As Boolean = True
For Each dr As DataRow In drs1
If cdr("砼销明细_泵送名称0") = dr("泵送明细_作业工地名称") Then
flag = False
Exit For
End If
Next
If flag Then
r("泵送明细_作业工地名称") = cdr("砼销明细_泵送名称0")
r("泵送明细_销售客户名称") = cdr("砼销明细_销售名称0")
End If
Next
' End Select
End If
Next