If e.Row("InDate") > Date.Today.AddDays(-30) Then
Dim dr As DataRow = DataTables("出库记录").find("工单号 = '" & e.Row("工单号") & "'")
If dr Is Nothing Then
Dim cnt As Decimal = DataTables("纸张需求").Compute("Sum(用量)", "PaperName = '" & e.Row("PaperName") & "'")
If cnt > e.Row("库存") Then
e.Style = "缺料"
End If
End If
End If
30天内没有出库的工单,在纸张需求表中标记出合计用量大于库存的行。合计用量小于库存的行不用标记。帮看下代码要怎么改?
[此贴子已经被作者于2019/1/19 16:52:10编辑过]