hongze 1 년 전
부모
커밋
4c49c44fcd
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      controllers/overseas_custom/custom.go

+ 2 - 0
controllers/overseas_custom/custom.go

@@ -110,6 +110,8 @@ func (this *OverseasCustomController) CustomList() {
 		condition += ` AND m.company_status='试用' AND m.overseas_status='' `
 	} else if companyStatus == "正式" {
 		condition += ` AND (m.company_status='正式' OR m.overseas_status='正式') `
+	} else {
+		condition += ` AND m.company_status='关闭' `
 	}
 
 	total, err := obj.GetCustomListCount(condition, pars, companyStatus)