--
If e.DataCol.Name = "姓名" Then
e.DataRow("首年佣金") = DataTables("承保明细").Compute("Sum(佣金)","[业务员姓名] = \'" & e.NewValue & "\'")
e.DataRow("增员津贴_直接") = DataTables("承保明细").Compute("Sum(一代增员津贴)","[一代推荐人姓名] = \'" & e.NewValue & "\'")
e.DataRow("增员津贴_间接") = DataTables("承保明细").Compute("Sum(二代增员津贴)","[二代推荐人姓名] = \'" & e.NewValue & "\'")
End If
If e.DataRow("现任职级")= "见习客户经理" Then
If e.DataRow("首年佣金")>= 6000 Then
e.DataRow("展业津贴") = e.DataRow("标准保费")*0.35
ElseIf e.DataRow("首年佣金")>= 3000 Then
e.DataRow("展业津贴") = e.DataRow("标准保费")*0.3
ElseIf e.DataRow("首年佣金")>= 0 Then
e.DataRow("展业津贴") = e.DataRow("标准保费")*0.15
End If
Else
If e.DataRow("首年佣金")>= 6000 Then
e.DataRow("展业津贴") = e.DataRow("标准保费")*0.35
ElseIf e.DataRow("首年佣金")>= 3000 Then
e.DataRow("展业津贴") = e.DataRow("标准保费")*0.3
ElseIf e.DataRow("首年佣金")>= 0 Then
e.DataRow("展业津贴") = e.DataRow("标准保费")*0.2
End If
End If