以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 数据加载不全 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=147776) |
||||
-- 作者:outcat -- 发布时间:2020/3/24 0:56:00 -- 数据加载不全 此主题相关图片如下:qq截图20200324003108.jpg
我这个要实现的是:初次维护一个商品时,同时在 “商品名称附表”录入了库房的期初数量,然后就是 正常的出入库,算出期初数量,到下个月时,上个月的期末数自动变为该月的期初数,我要每次打开查询时,所有的商品(商品名称附表)都加载,可现在不知怎么回事。 现在的问题:这个查询出来的结果 有个出入库记录的商品,还有就是当天新增加的商品明细可以出来,其余的商品都看不到了,且期初数量也出不来了,我是3月22日第一次启用这块,当时各项数据都有的。请老师帮忙。 查询代码: e.Form.Controls("Table3").Visible = True Dim Filter As String With e.Form.Controls("StartDate") If .Value IsNot Nothing Then If Filter >"" Then Filter = Filter & " And " End If Filter = Filter & "日期 >= #" & .Value & "# " End If End With With e.Form.Controls("EndDate") If .Value IsNot Nothing Then If Filter >"" Then Filter = Filter & " And " End If Filter = Filter & "日期 <= #" & .Value & "# " End If End With DataTables("采购明细表").LoadFilter = "" DataTables("采购明细表").Load DataTables("出库明细表").loadFilter = "" DataTables("出库明细表").load DataTables("商品名称附表").loadFilter = "" DataTables("商品名称附表").load Dim bd1 As New GroupTableBuilder("统计表1",DataTables("商品名称附表")) Dim dt1 As fxDataSource bd1.Groups.AddDef("仓库名称") bd1.Groups.AddDef("商品类别") bd1.Groups.AddDef("商品编号") bd1.Groups.AddDef("商品名称") bd1.Groups.AddDef("规格型号") bd1.Groups.AddDef("单位") bd1.Totals.AddDef("期初数量","期初_数量") bd1.Totals.AddDef("期初金额","期初_金额") \'对数量进行统计 Dim max As Date = DataTables("商品名称附表").Compute("max(日期)", "日期 <=\'" & e.Form.Controls("EndDate").value & "\'") bd1.Filter = "日期 = \'" & max & "\'" dt1 = bd1.BuildDataSource() Dim bd2 As New GroupTableBuilder("统计表2",DataTables("采购明细表")) Dim dt2 As fxDataSource bd2.Groups.AddDef("仓库名称") bd2.Groups.AddDef("商品类别") bd2.Groups.AddDef("商品编号") bd2.Groups.AddDef("商品名称") bd2.Groups.AddDef("规格型号") bd2.Groups.AddDef("单位") bd2.Totals.AddDef("数量","采购_数量") \'对数量进行统计 bd2.Totals.AddDef("金额","采购_金额") bd2.Filter = Filter dt2 = bd2.BuildDataSource() Dim bd3 As New GroupTableBuilder("统计表3",DataTables("出库明细表")) Dim dt3 As fxDataSource bd3.Groups.AddDef("仓库名称") bd3.Groups.AddDef("商品类别") bd3.Groups.AddDef("商品编号") bd3.Groups.AddDef("商品名称") bd3.Groups.AddDef("规格型号") bd3.Groups.AddDef("单位") bd3.Totals.AddDef("数量","出库_数量") \'对数量进行统计 bd3.Totals.AddDef("金额","出库_金额") bd3.Filter = Filter dt3 = bd3.BuildDataSource() Dim nms As String() = {"仓库名称","商品类别","商品编号","商品名称","规格型号","单位"} \'指定连接列 dt1.Combine(nms,dt2,nms) \'将销售统计数据组合到进货统计数据 dt1.Combine(nms,dt3,nms) Tables("库存管理_Table3").DataSource = dt1 \'将统计结果绑定到Table Dim dt As DataTable = DataTables("库存管理_Table3") For Each dr As DataRow In dt.DataRows Dim filter2 As String filter2="商品编号 = \'" & dr("商品编号") & "\'and 仓库名称 = \'" & dr("仓库名称") & "\'" Dim drs As List(Of DataRow) = DataTables("采购明细表").Select(filter2) Dim s1 As Double = 0 Dim s2 As Double = 0 For Each cdr As DataRow In drs If cdr("日期") < e.Form.Controls("startdate").value Then s1 += cdr("数量") s2 += cdr("金额") End If Next drs = DataTables("出库明细表").Select(filter2) Dim s3 As Double = 0 Dim s4 As Double = 0 For Each cdr As DataRow In drs If cdr("日期") < e.Form.Controls("startdate").value Then s3 += cdr("数量") s4 += cdr("金额") End If Next dr("期初_数量") += s1 - s3 dr("期初_金额") += s2 - s4 Next With DataTables("库存管理_Table3").DataCols \'用表达式列计算库存数据 .Add("期末_数量",Gettype(Double), "IsNull([期初_数量],0) + ISNULL([采购_数量],0) - ISNULL([出库_数量],0)") .Add("期末_金额",Gettype(Double), "IsNull([期初_金额],0) + ISNULL([采购_金额],0) - ISNULL([出库_金额],0)") End With Tables("库存管理_Table3").SetColVisibleWidth("仓库名称|70|商品类别|70|商品编号|70|商品名称|90|规格型号|90|单位|50|期初_数量|50|期初_金额|70|采购_数量|50|采购_金额|70|出库_数量|50|出库_金额|70|期末_数量|50|期末_金额|70") Tables("库存管理_Table3").Sort = "商品类别,商品编号" Tables("库存管理_Table3").Cols("期初_数量").GrandTotal = True Tables("库存管理_Table3").Cols("期初_金额").GrandTotal = True Tables("库存管理_Table3").Cols("采购_数量").GrandTotal = True Tables("库存管理_Table3").Cols("采购_金额").GrandTotal = True Tables("库存管理_Table3").Cols("出库_数量").GrandTotal = True Tables("库存管理_Table3").Cols("出库_金额").GrandTotal = True Tables("库存管理_Table3").Cols("期末_数量").GrandTotal = True Tables("库存管理_Table3").Cols("期末_金额").GrandTotal = True Tables("库存管理_Table3").GrandTotal = True Tables("库存管理_Table3").ExtendLastCol = True |
||||
-- 作者:有点蓝 -- 发布时间:2020/3/24 11:28:00 -- 按什么条件,什么步骤测试?哪个商品的什么数据有问题? |
||||
-- 作者:outcat -- 发布时间:2020/3/24 19:19:00 -- 我的商品明细是15个,应该一点查询后,总库、二级库显示全部的记录数应该是30条,可现在只有14条记录,老师先帮忙看一下,怎么先让商品记录数正确了 |
||||
-- 作者:有点蓝 -- 发布时间:2020/3/24 20:27:00 -- 没看出来怎么有30条的。详细描述一下计算逻辑 [此贴子已经被作者于2020/3/24 20:27:05编辑过]
|