以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  这段代码错那里,怎么改  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=80132)

--  作者:qctv
--  发布时间:2016/1/16 20:58:00
--  这段代码错那里,怎么改
网络环境下的不重复编码的代码,怎么实现 "单位简称"+"项目类型"+"申报时间" +序列  



[此贴子已经被作者于2016/1/16 22:14:46编辑过]

--  作者:qctv
--  发布时间:2016/1/16 21:52:00
--  
Select e.DataCol.Name
    Case "单位简称","项目类型","申报时间"
        If e.DataRow.IsNull("项目类型") OrElse e.DataRow.IsNull("单位简称") OrElse e.DataRow.Isnull("申报时间") Then
            e.DataRow("项目编号") = Nothing
        Else
            Dim d As Date = e.DataRow("申报时间")
            Dim bh As String = GetPy(e.DataRow("单位简称"),True).ToUpper & "-" & GetPy(e.DataRow("项目类型"),True).ToUpper & Format(d,"yyyyMMdd") & 

"-" \'生成项目编号的前缀
            If e.DataRow("项目编号").StartsWith(bh) = False \'如果单据项目编号前缀不符
                Dim max As String
                Dim idx As Integer
                Dim flt As String
                flt = "单位简称 = \'"& e.DataRow("单位简称") & "\' and 项目类型 = \'" & e.DataRow("项目类型") & "\' And 申报时间 >= #" & d & "# And 申报时

间 < #" & d.AddDays(1) & "# And [_Identify] <> " & e.DataRow("_Identify")
                max = e.DataTable.Compute("Max(项目编号)",flt) \'取得该月的相同工程代码的最大单据项目编号
                If max > "" Then \'如果存在最大单据项目编号
                    idx = CInt(max.Substring(bh.length)) + 1 \'获得最大单据项目编号的后四位顺序号,并加1
                Else
                    idx = 1 \'否则顺序号等于1
                End If
                e.DataRow("项目编号") = bh & Format(idx,"000")
            End If
        End If
End Se

--  作者:大红袍
--  发布时间:2016/1/17 10:58:00
--  
报什么错啊?上传例子测试。
--  作者:大红袍
--  发布时间:2016/1/17 11:01:00
--  
Select e.DataCol.Name
    Case "单位简称","项目类型","申报时间"
        If e.DataRow.IsNull("项目类型") OrElse e.DataRow.IsNull("单位简称") OrElse e.DataRow.Isnull("申报时间") Then
            e.DataRow("项目编号") = Nothing
        Else
            Dim d As Date = e.DataRow("申报时间")
            Dim bh As String = GetPy(e.DataRow("单位简称"),True).ToUpper & "-" & GetPy(e.DataRow("项目类型"),True).ToUpper & Format(d,"yyyyMMdd") & "-" \'生成项目编号的前缀
            If e.DataRow("项目编号").StartsWith(bh) = False \'如果单据项目编号前缀不符
                Dim max As String
                Dim idx As Integer
                Dim flt As String
                flt = "单位简称 = \'"& e.DataRow("单位简称") & "\' and 项目类型 = \'" & e.DataRow("项目类型") & "\' And 申报时间 >= #" & d & "# And 申报时间 < #" & d.AddDays(1) & "# And [_Identify] <> " & e.DataRow("_Identify")
                max = e.DataTable.sqlCompute("Max(项目编号)",flt) \'取得该月的相同工程代码的最大单据项目编号
                If max > "" Then \'如果存在最大单据项目编号
                    idx = CInt(max.Substring(bh.length)) + 1 \'获得最大单据项目编号的后四位顺序号,并加1
                Else
                    idx = 1 \'否则顺序号等于1
                End If
                e.DataRow("项目编号") = bh & Format(idx,"000")
            End If
        End If
        e.DataRow.Save
End Select

--  作者:qctv
--  发布时间:2016/1/19 10:36:00
--  
提示#"  附近有语法错误
--  作者:大红袍
--  发布时间:2016/1/19 10:37:00
--  

sqlserver数据源,要这样改

 

flt = "单位简称 = \'"& e.DataRow("单位简称") & "\' and 项目类型 = \'" & e.DataRow("项目类型") & "\' And 申报时间 >= \'" & d & "\' And 申报时间 < \'" & d.AddDays(1) & "\' And [_Identify] <> " & e.DataRow("_Identify")


--  作者:qctv
--  发布时间:2016/1/19 11:23:00
--  
还是会出现重复号

是不是因为我把 
Dim bh As String = GetPy(e.DataRow("单位简称"),True).ToUpper & "-" & GetPy(e.DataRow("项目类型"),True).ToUpper & Format(d,"yyyyMMdd") & "-" \'生成项目编号的前缀

修改成了 Dim bh As String = GetPy(e.DataRow("单位简称"),True).ToUpper & "-" & GetPy(e.DataRow("项目类型"),True).ToUpper & Format(d,"yyyyMM") & "-" \'生成项目编号的前缀
的原因

--  作者:大红袍
--  发布时间:2016/1/19 11:25:00
--  
上传具体例子测试