|
@@ -603,21 +603,21 @@ namespace TEAMModelOS.SDK
|
|
|
if (item.exerciseScore > 0)
|
|
|
{
|
|
|
if (currencyInt == 1)
|
|
|
- {
|
|
|
- currency.exerciseAbility += 1;
|
|
|
+ {// 与J哥 ,郭杰确认。只计算通过能力点自测就能获得的成长值。 并取消已学能力点 learnAbility
|
|
|
+ currency.exerciseAbility += ability.abilityCount;
|
|
|
//并且完全看完视频和文档。
|
|
|
- if (item.allDone) {
|
|
|
- currency.learnAbility += ability.abilityCount;
|
|
|
+ if (item.allDone)
|
|
|
+ {
|
|
|
+ currency.learnAbility += 1;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
//并且完全看完视频和文档。
|
|
|
if (item.allDone)
|
|
|
{
|
|
|
- currencyAll.learnAbility += ability.abilityCount;
|
|
|
+ currencyAll.learnAbility += 1;
|
|
|
}
|
|
|
- currencyAll.exerciseAbility += 1;
|
|
|
-
|
|
|
+ currencyAll.exerciseAbility += ability.abilityCount;
|
|
|
}
|
|
|
|
|
|
List<TeacherHprecord> hprecords = new List<TeacherHprecord>();
|