以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  自动编码  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=87080)

--  作者:lk15502
--  发布时间:2016/7/2 14:41:00
--  自动编码
在表中,根据入库日期写代码编写入库日期,新增的行会自动生成,原来的没有反应,请问是什么原因?
If e.DataCol.Name = "入库日期" Then
    If e.DataRow.IsNull("入库日期") Then
        e.DataRow("入库编号") = Nothing
    Else
        Dim bh As String = Format(e.DataRow("入库日期"),"yyyyMMdd") \'取得编号的8位前缀
        If e.DataRow("入库编号").StartsWith(bh) = False \'如果编号的前8位不符
            Dim max As String
            Dim idx As Integer
            max = e.DataTable.Compute("Max(入库编号)","入库日期 = #" & e.DataRow("入库日期") & "# And [_Identify] <> " & e.DataRow("_Identify")) \'取得该天的最大编号
            If max > "" Then \'如果存在最大编号
                idx = CInt(max.Substring(9,3)) + 1 \'获得最大编号的后三位顺序号,并加1
            Else
                idx = 1 \'否则顺序号等于1
            End If
            e.DataRow("入库编号") = bh & "-" & Format(idx,"000")
        End If
    End If
End If

--  作者:Hyphen
--  发布时间:2016/7/2 14:49:00
--  
如果是在DataColChanged事件当然是 "入库日期"的值改变才会触发事件的。


--  作者:lk15502
--  发布时间:2016/7/2 15:26:00
--  
不好意思,简单问题弄复杂了
--  作者:lk15502
--  发布时间:2016/7/2 15:30:00
--  
请问怎么在编码前加RK两个字母?
--  作者:Hyphen
--  发布时间:2016/7/2 15:45:00
--  
If e.DataCol.Name = "入库日期" Then
    If e.DataRow.IsNull("入库日期") Then
        e.DataRow("入库编号") = Nothing
    Else
        Dim bh As String = "RK" & Format(e.DataRow("入库日期"),"yyyyMMdd") \'取得编号的8位前缀
        If e.DataRow("入库编号").StartsWith(bh) = False \'如果编号的前8位不符
            Dim max As String
            Dim idx As Integer
            max = e.DataTable.Compute("Max(入库编号)","入库日期 = #" & e.DataRow("入库日期") & "# And [_Identify] <> " & e.DataRow("_Identify")) \'取得该天的最大编号
            If max > "" Then \'如果存在最大编号
                idx = CInt(max.Substring(11,3)) + 1 \'获得最大编号的后三位顺序号,并加1
            Else
                idx = 1 \'否则顺序号等于1
            End If
            e.DataRow("入库编号") = bh & "-" & Format(idx,"000")
        End If
    End If
End If