|
@@ -177,7 +177,7 @@ func SubmitReportApprove(reportType, reportId int, reportTitle string, firstId,
|
|
|
flowPars := make([]interface{}, 0)
|
|
|
flowPars = append(flowPars, reportType, firstId, secondId, thirdId)
|
|
|
flowItem, e := flowOb.GetItemByCondition(flowCond, flowPars, "")
|
|
|
- if e != nil {
|
|
|
+ if e != nil && !utils.IsErrNoRow(e) {
|
|
|
err = fmt.Errorf("ApproveFlow GetItemByCondition err: %s", e.Error())
|
|
|
return
|
|
|
}
|