소스 검색

Merge branch 'dev/v4.9.21_rjj' of qmx/jy into feature/v4.9.21

renjiaojiao 1 년 전
부모
커밋
2c5f8baeb0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/jfw/modules/subscribepay/src/service/invoice.go

+ 1 - 1
src/jfw/modules/subscribepay/src/service/invoice.go

@@ -1555,7 +1555,7 @@ func OpenInvoiceAgain(oldOnlyIdentifying string, data map[string]interface{}) er
 	if !ok {
 		return errors.New("插入失败记录出错")
 	}
-	if !util.Mysql.Update("invoice", map[string]interface{}{"only_Identifying": oldOnlyIdentifying}, data) {
+	if !util.Mysql.Update("invoice", map[string]interface{}{"only_Identifying": oldOnlyIdentifying, "invoice_status": -1}, data) {
 		return errors.New("再次开票更新发票信息出错")
 	}
 	return nil