填入数据,参考下面,如果不正确,请说明哪里不正确。
'生产计划金额累计
'取出
Dim dr1 As DataRow
Dim jhje As Double
dr1 = DataTables("计划表").Find("[部门] = 'ORG1011' and [年份] = '2018' and [月份] = '11'")
If dr1 IsNot Nothing Then
jhje = dr1("计划金额")
Else
jhje = 1
End If
Dim jelist As New List(Of String)
'返回指定月份的天数
Dim tianshu As Integer = Date.DaysInMonth(Year(Date.Today),11)
Dim pgje As Double = jhje / tianshu
''''''''''''''''''''''''''''
'生成临时表
Dim dtb As New DataTableBuilder("总统计表")
dtb.AddDef("日期", Gettype(String), 32)
dtb.AddDef("计划金额累计", Gettype(String), 32)
dtb.AddDef("实际金额累计", Gettype(String), 32)
dtb.Build()
'添加数据
Dim jj As Integer
Dim zhrq As String
Dim t As Table = Tables("表B")
For jj = 1 To tianshu
Dim dr3 As DataRow = DataTables("总统计表").AddNew()
zhrq = Cstr(Year(Date.Today)) + "-11-" + Cstr(jj)
dr3("日期") = zhrq
dr3("计划金额累计") = Cstr(pgje*jj)
For Each r As Row In t.Rows
If CDate(r("日期")) = CDate(zhrq) Then
dr3("实际金额累计") = r("实际金额累计")
exit for
End If
Next
If dr3("实际金额累计") = Nothing Then
dr3("实际金额累计") = Cstr(pgje*jj)
End If
Next
DataTables("总统计表").Save()