以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 自动编号 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=133601) |
||||
-- 作者:cqli -- 发布时间:2019/4/17 9:48:00 -- 自动编号 你好! 用导入数据方式 DataColChanged的自动编号生成重号? If e.DataCol.Name = "制单日期" Then Dim d As Date = e.DataRow("制单日期") Dim y As Integer = d.Year Dim m As Integer = d.Month Dim Days As Integer = Date.DaysInMonth(y,m) Dim fd As Date = New Date(y,m,1) Dim ld As Date = New Date(y,m,Days) Dim bh As String = Format(d,"yyyyMM") If e.DataRow("销售单号").StartsWith(bh) = False Dim max As String Dim idx As Integer max = e.DataTable.SQLCompute("Max(销售单号)","制单日期 >= \'" & fd & "\' And 制单日期 <= \'" & ld & "\' And [_Identify] <> " & e.DataRow("_Identify")) If max > "" Then idx = CInt(max.Substring(9,5)) + 1 Else idx = 1 End If If e.DataRow.Isnull("销售单号") e.DataRow("销售单号") ="DD" & bh & "-" & Format(idx,"00000") End If End If End If |
||||
-- 作者:有点甜 -- 发布时间:2019/4/17 10:48:00 --
不应该,做一个对应实例发上来测试。
|
||||
-- 作者:cqli -- 发布时间:2019/4/17 13:05:00 -- 比如数据有3行,导入后这3行生成的编号就相同,若再导一次这三行编号的序号会+1,但也是相同的。 |
||||
-- 作者:有点甜 -- 发布时间:2019/4/17 13:08:00 -- 请上传对应实例测试。我测试没问题。 |
||||
-- 作者:cqli -- 发布时间:2019/4/17 14:28:00 -- 附件已上传
|
||||
-- 作者:有点甜 -- 发布时间:2019/4/17 15:44:00 -- 导入代码改成
Dim dlg As New OpenFileDialog |
||||
-- 作者:cqli -- 发布时间:2019/4/17 16:38:00 -- 还是不行,报错数据类型不一致,数据能导入但编号相同 |
||||
-- 作者:有点甜 -- 发布时间:2019/4/17 17:36:00 -- 如果报错,修改你datacolchanged事件代码
If e.DataCol.Name = "制单日期" Then e.DataRow .save
|