|
|
|
@ -8,6 +8,8 @@ import ( |
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/commonus" |
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global" |
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/model/assessmentmodel" |
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/model/common/response" |
|
|
|
"github.com/gin-gonic/gin" |
|
|
|
) |
|
|
|
|
|
|
|
//计算定量考核
|
|
|
|
@ -161,5 +163,13 @@ func GetPassRate(group, depart, dimen, target, year, timecopy, deaTarget int64) |
|
|
|
@referenceScore 指标权重 |
|
|
|
*/ |
|
|
|
|
|
|
|
func (t *tablePlanVersionStic) SubjectiveMethodNew(wherStr string, i, status, class int, referenceScore int64) { |
|
|
|
func (a *ApiGroup) DepartmentTranscript(c *gin.Context) { |
|
|
|
isTrue, userCont := commonus.ClientIdentity() |
|
|
|
if isTrue != true { |
|
|
|
response.Result(1001, isTrue, "您的身份令牌已经失效!请重新登录获取身份令牌!", c) |
|
|
|
return |
|
|
|
} |
|
|
|
var requestData TranscriptTable |
|
|
|
c.ShouldBindJSON(&requestData) |
|
|
|
var orgList assessmentmodel |
|
|
|
} |
|
|
|
|