Compare commits

..

No commits in common. "49137828da712047d222a60758cd9947d473683f" and "1988c49b82c22927e62951975f70984466e766f1" have entirely different histories.

View File

@ -221,7 +221,7 @@ func CreateBundleOrderSignature(c *gin.Context) {
//有套餐并且套餐未过期
if orderRecordsList.OrderRecords != nil {
for _, orderInfo := range orderRecordsList.OrderRecords {
if orderInfo.CustomerID == strconv.FormatUint(userInfo.ID, 10) && orderInfo.Status == 1 {
if orderInfo.CustomerID == strconv.FormatUint(userInfo.ID, 10) && orderInfo.PayType == 1 {
service.Error(c, errors.New(common.ThereAreOutstandingOrders))
return
}