假如有个项目,有个样品编号的列,需要采用年份+分类号+四位流水号的形式(如2024A0001)自动生成,而且跨年后,流水号以自动从001开始(如2024A0001)。关于这种特殊格式的自动编号列,有以下几个问题:1.Foxtable中_identify自动编号的原理是怎样的?怎样实现循环和判断?
2.这种特殊要求表达式列是否能实现(个人研究了下,不能)?
3.如果通过代码来实现,怎样实现跨年后流水号自动的逻辑判定?
以下是我个人的尝试代码(在添加行的按钮onclick事件上添加),没有达到预期效果(跨年后流水号自动从0001开始),请各位大侠指教?
Dim y1 As Date = now
static y2 As Date = #12/31/2024#
Static i As String
Dim s As String = "A"
Dim ID As String
If y1 <= y2 Then
i += 1
ID = y1.Year & s & Format(i, "0000")
Tables("样品表").current("样品编号") = ID
Else
i = 0001
y2=y1.year+y2.month+y2.day
ID = y1.Year & s & Format(i, "0000")
Tables("样品表").current("样品编号") = ID
End If
参考:
http://www.foxtable.com/webhelp/topics/2403.htm
比如样品表datacolchanged事件
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 fd As Date = New Date(y,1,1) '获得该月的第一天
Dim ld As Date = New Date(y,12,31) '获得该月的最后一天
Dim bh As String = y & e.DataRow("分类号") '生成编号的前缀
If e.DataRow("样品编号").StartsWith(bh) = False '如果单据编号前缀不符
Dim max As String
Dim idx As Integer
Dim flt As String
flt = "分类号 = '"& e.DataRow("分类号") & "' And 制单日期 >= #" & fd & "# And 制单日期 <= #" & ld & "# And [_Identify] <> " & 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
感谢,还是不太懂,再看下参考文件。假如分类号与样品编号是在两个不同的表,这个情况要怎样处理?
比如我的分类号是在A表,可以根据建立样品类型与对应的分类号,而我的样品编号是在B表的样品编号列,这样就分属于不同的表了,怎样用同一个事件?
Select e.DataCol.Name
Case "制单日期", "样品类型"
If e.DataRow.IsNull("制单日期") OrElse e.DataRow.IsNull("样品类型") Then
e.DataRow("样品编号") = Nothing
Else
Dim dr As DataRow = datatabls("A表").find("样品类型='" & e.DataRow("样品类型") & "'")
If dr Is Nothing Then
e.DataRow("样品编号") = Nothing
Else
Dim d As Date = e.DataRow("制单日期")
Dim y As Integer = d.Year
Dim fd As Date = New Date(y, 1, 1) '获得该月的第一天
Dim ld As Date = New Date(y, 12, 31) '获得该月的最后一天
Dim bh As String = y & dr("分类号") '生成编号的前缀
If e.DataRow("样品编号").StartsWith(bh) = False Then'如果单据编号前缀不符
Dim max As String
Dim idx As Integer
Dim flt As String
flt = "样品类型 = '" & e.DataRow("样品类型") & "' And 制单日期 >= #" & fd & "# And 制单日期 <= #" & ld & "# And [_Identify] <> " & 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 If
End Select
这个是放在B表的Datacolchanged 事件中吗?