'---------fa piao编号自动根据客户编号年份生成--------------------------------
Select e.DataCol.Name
Case "fa piao日期","客户编号"
If e.DataRow.IsNull("fa piao日期") OrElse e.DataRow.IsNull("客户编号") Then
e.DataRow("fa piao编号") = Nothing
Else
Dim d As Date = e.DataRow("fa piao日期")
Dim bh As String = "SMXS-" & e.DataRow("客户编号") & "" & Format(d,"yy") & "" '生成编号的前缀
Dim max As String
Dim idx As Integer
Dim flt As String
flt = "fa piao编号 like '" & bh & "%' And [_Identify] <> " & e.DataRow("_Identify")
max = e.DataTable.Compute("Max(fa piao编号)",flt) '取得该年的相同客户编号的最大fa piao编号
If max > "" Then '如果存在最大fa piao编号
idx = CInt(max.Substring(bh.Length,2)) + 1 '获得最大fa piao编号的后两位顺序号,并加1
Else
idx = 1 '否则顺序号等于1
End If
e.DataRow("fa piao编号") = bh & Format(idx,"00")
End If
End Select
'---------fa piao编号自动根据客户编号年份生成--------------------------------
上段代码使用中有个问题, fa piao编号已经自动生成, 当你更改日期后, fa piao编号就改变了, 怎么搞成fa piao编号一旦生成就不能更改呢?