以文本方式查看主题
- Foxtable(狐表) (http://foxtable.net/bbs/index.asp)
-- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2)
---- 自动编号问题 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=85293)
|
-- 作者:hongyefor
-- 发布时间:2016/5/22 16:35:00
-- 自动编号问题
看表
1、编号列由第一代码列和第二代码列+000生成 2、如果发生断号,自动调整
3、当每生成一次编号,就自动排序
用易表就是:
if(text([所在部门])>"","BY"+Concat(FindText("部门明细","部门代码","部门", "=" ,[所在部门]),Right("000"+Text(CountFor(GridName,"所在部门","=",[所在部门],1,Row)),3)),"") 再加上自动排序
请问这个代码怎么写啊
|
-- 作者:大红袍
-- 发布时间:2016/5/22 16:37:00
--
参考 http://www.foxtable.com/help/topics/2403.htm
|
-- 作者:大红袍
-- 发布时间:2016/5/22 16:43:00
--
DataColChanged事件
Select e.DataCol.Name Case "第一代码", "第二代码" If e.DataRow.IsNull("第一代码") OrElse e.DataRow.IsNull("第二代码") Then e.DataRow("编号") = Nothing Else Dim lb As String = "BY" & e.DataRow("第一代码") & e.DataRow("第二代码") Dim max As String Dim idx As Integer max = e.DataTable.Compute("Max(编号)","编号 like \'" & lb & "%\' And [_Identify] <> " & e.DataRow("_Identify")) \'取得该类别的最大编号 If max > "" Then \'如果存在最大编号 idx = CInt(max.Substring(lb.length)) + 1 \'获得最大编号的后三位顺序号,并加1 Else idx = 1 \'否则顺序号等于1 End If e.DataRow("编号") = lb & Format(idx,"000") End If End Select
|
-- 作者:hongyefor
-- 发布时间:2016/5/22 17:00:00
--
Select e.DataCol.Name Case "第一代码","第二代码" If e.DataRow.IsNull("第一代码") OrElse e.DataRow.IsNull("第二代码") Then e.DataRow("编号") = Nothing Else Dim lb1 As String = e.DataRow("第一代码") Dim lb2 As String = e.DataRow("第二代码") Dim bh As String = "BY"+ e.DataRow("第一代码") & + & e.DataRow("第一代码") If e.DataRow("编号").StartsWith(bh) = False \'如果单据编号前缀不符 Dim max As String Dim idx As Integer Dim flt As String flt = "第一代码 = \'"& e.DataRow("第一代码") & "\'& e.DataRow("第二代码") & " & e.DataRow("_Identify") max = e.DataTable.Compute("Max(编号)",flt) \'取得该月的相同工程代码的最大单据编号 If max > "" Then \'如果存在最大单据编号 idx = CInt(max.Substring(12,4)) + 1 \'获得最大单据编号的后四位顺序号,并加1 Else idx = 1 \'否则顺序号等于1 End If e.DataRow("编号") = bh & Format(idx,"0000") End If End If End Select
帮我看看错在哪里啊
|
-- 作者:大红袍
-- 发布时间:2016/5/22 17:01:00
--
参考3楼
|
-- 作者:hongyefor
-- 发布时间:2016/5/22 17:09:00
--
如果当中删除一行数据,会有断号的发生,比如说原来尾号是001到003,当删除002时,再增加数据时就是004了,不会因为删除了002而重新排序的
|
-- 作者:大红袍
-- 发布时间:2016/5/22 17:34:00
--
mark 断号
Select e.DataCol.Name Case "第一代码", "第二代码" If e.DataRow.IsNull("第一代码") OrElse e.DataRow.IsNull("第二代码") Then e.DataRow("编号") = Nothing Else Dim flag As Boolean = False Dim lb As String = "BY" & e.DataRow("第一代码") & e.DataRow("第二代码") Dim bhs As List(of String) = e.DataTable.GetValues("编号", "编号 Like \'" & lb & "%\' And [_Identify] <> " & e.DataRow("_Identify")) For i As Integer = 1 To bhs.count If bhs(i-1) <> lb & Format(i, "000") Then lb = lb & Format(i, "000") flag = True Exit For End If Next If bhs.count = 0 Then lb = lb & "001" ElseIf flag = False Then lb = lb & Format(bhs.count+1, "000") End If e.DataRow("编号") = lb End If End Select
|
-- 作者:hongyefor
-- 发布时间:2016/5/23 10:05:00
--
断号问题是解决了,但是我的想法是根据第一代码、第二代码、第四列的内容排序后再刷新编号列让编号一直按照第一代码、第二代码、第四列的内容编号
请问这怎么写代码呢?
|
-- 作者:hongyefor
-- 发布时间:2016/5/23 10:05:00
--
|
-- 作者:大红袍
-- 发布时间:2016/5/23 10:14:00
--
Select e.DataCol.Name Case "第一代码", "第二代码", "第四列" If e.DataRow.IsNull("第一代码") OrElse e.DataRow.IsNull("第二代码") Then e.DataRow("编号") = Nothing Else Dim flag As Boolean = False Dim lb As String = "BY" & e.DataRow("第一代码") & e.DataRow("第二代码") Dim drs As List(of DataRow) = e.DataTable.Select("第一代码 = \'" & e.DataRow("第一代码") & "\' and 第二代码 = \'" & e.DataRow("第二代码") & "\'", "第一代码,第二代码,第四列") For i As Integer = 1 To drs.count drs(i-1)("编号") = lb & Format(i, "000") Next End If End Select
|