|
@@ -300,7 +300,6 @@ func SuppleInfoExamine(context *admin.Context) (interface{}, error) {
|
|
|
newState := 1
|
|
|
operatorType := 2
|
|
|
if param.State == 1 { //审核通过
|
|
|
- param.Reason = ""
|
|
|
if oldState == 1 { //记录为待审核状态
|
|
|
newState = 2
|
|
|
} else if oldState == 2 { //记录为一审通过状态
|
|
@@ -375,7 +374,6 @@ func OrdersExamine(context *admin.Context) (interface{}, error) {
|
|
|
return nil, errors.New("订单审核已完成,无需审批")
|
|
|
}
|
|
|
if param.State == 1 { //审核通过
|
|
|
- param.Reason = ""
|
|
|
if oldState == 1 { //记录为待审核状态
|
|
|
newState = 2
|
|
|
} else if oldState == 2 { //记录为一审通过状态
|