以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]库存计算  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=119652)

--  作者:cool314156
--  发布时间:2018/5/29 16:19:00
--  [求助]库存计算



此主题相关图片如下:rk.png
按此在新窗口浏览图片入库是这样的,
此主题相关图片如下:kc.png
按此在新窗口浏览图片库存是这样的

现在入库的商品编号,批号,想入到库存里有同样的商品编号,批号,而且有库存的货位号里去,然后数量自动能更新,这样能行吗 

Select Case e.DataCol.name
    Case "货位号"
        
        Dim dr As DataRow = DataTables("库存").Find("货位号 = \'" & e.OldValue & "\'")
msgbox(2)

        If dr Is Nothing Then
            msgbox(11)
            dr = DataTables("库存").AddNew()
            
            dr("商品编号") = e.DataRow("商品编号")
            dr("通用名") = e.DataRow("通用名")
            dr("批号") = e.DataRow("批号")
            dr("规格") = e.DataRow("规格")
            dr("入库数量") = e.DataRow("入库数量")
            dr("入库类型") = e.DataRow("入库类型")
            dr("货位号") = e.DataRow("货位号")
            dr("单价") = e.DataRow("单价")
        Else
msgbox(22)
            
                        Dim jr As Row = Tables("采购订单.入库").Current
            Dim kr As DataRow = DataTables("库存").Find("货位号 Is Null")

                kr("货位号") = jr("货位号")
        End If
End Select
DataColChanged事件是这样的代码
设置了重复值的话,库存货位号就会自动变成空白的
[此贴子已经被作者于2018/5/29 16:25:02编辑过]

--  作者:cool314156
--  发布时间:2018/5/29 16:24:00
--  
求教下,要计算的话,代码要怎么写啊
--  作者:有点甜
--  发布时间:2018/5/29 17:07:00
--  

Select Case e.DataCol.name
    Case "商品编号", "批号", "货位号"
        Dim dr As DataRow = DataTables("库存").Find("商品编号=\'" & e.DataRow("商品编号") & "\' and 批号=\'" & e.DataRow("批号") & "\' and 货位号=\'" & e.DataRow("货位号") & "\'")
        If dr Is Nothing Then
            dr = DataTables("库存").AddNew()
            dr("商品编号") = e.DataRow("商品编号")
            dr("通用名") = e.DataRow("通用名")
            dr("批号") = e.DataRow("批号")
            dr("规格") = e.DataRow("规格")
            dr("入库数量") = e.DataRow("入库数量")
            dr("入库类型") = e.DataRow("入库类型")
            dr("货位号") = e.DataRow("货位号")
            dr("单价") = e.DataRow("单价")
        Else
            dr(”入库数量") = dr(“入库数量") + e.DataRow("入库数量")
        End If
End Select

 

http://www.foxtable.com/webhelp/scr/1472.htm