以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 自动编号跨年 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=46563) |
-- 作者:yuyu060712 -- 发布时间:2014/2/25 16:59:00 -- 自动编号跨年 Select e.DataCol.Name Case "登记日期","类别" If e.DataRow.IsNull("登记日期") OrElse e.DataRow.IsNull("类别") Then e.DataRow("编号") = Nothing Else Dim d As Date = e.DataRow("登记日期") Dim y As Integer = d.Year Dim bh As String = e.DataRow("类别") & "[" & Format(d,"yyyy") & "]" \'生成编号的前缀 If e.DataRow("编号").StartsWith(bh) = False \'如果立案编号前缀不符 Dim max As String Dim idx As Integer Dim flt As String flt = "类别 = \'"& e.DataRow("类别") & " \'And [_Identify] <> " & e.DataRow("_Identify") max = e.DataTable.Compute("Max(编号)",flt) \'取得区划机关行为简称的最大单据编号 If max > "" Then \'如果存在最大立案编号 idx = CInt(max.Substring(8,3)) + 1 \'获得最大单据编号的后四位顺序号,并加1 Else idx = 1 \'否则顺序号等于1 End If e.DataRow("编号") = bh & Format(idx,"000") End If End If End Select 老师,这段代码我跨年之后怎么从001自动开始呢?比如2015年? |
-- 作者:Bin -- 发布时间:2014/2/25 17:00:00 -- 你这个本来就会自动跨年的哦. |
-- 作者:yuyu060712 -- 发布时间:2014/2/25 17:01:00 -- 我在前面试了试,日期变为2015年后还是按前面的类别来编号的?要修改系统日期才可以? |
-- 作者:Bin -- 发布时间:2014/2/25 17:03:00 -- flt = "类别 = \'"& e.DataRow("类别") & " \'And [_Identify] <> " & e.DataRow("_Identify") & " and Year(登记日期)=" & y 不好意思,刚才没看准.条件里加个判断即可
|
-- 作者:yuyu060712 -- 发布时间:2014/2/26 13:14:00 -- .NET Framework 版本:2.0.50727.3655 Foxtable 版本:2013.10.14.1 错误所在事件:表,质量反馈,DataColChanged 详细错误信息: Exception has been thrown by the target of an invocation. The expression contains undefined function call Year(). 老师,换代码后提示错误 |
-- 作者:lsy -- 发布时间:2014/2/26 13:51:00 -- flt = "类别 = \'"& e.DataRow("类别") & " \'And [_Identify] <> " & e.DataRow("_Identify") & " and Convert(登记日期, \'System.String\') Like \'" & y & "%\'" |