|
|
@@ -1488,6 +1488,7 @@ public class InstitutionService {
|
|
|
}
|
|
|
|
|
|
QuotaEntity quota = new QuotaEntity();
|
|
|
+ quota.setQuotaId(java.util.UUID.randomUUID().toString().replace("-", ""));
|
|
|
quota.setEmployeeId(empId);
|
|
|
quota.setInstitutionId(institutionId);
|
|
|
quota.setQuotaType("period".equals(grantMode) ? "CAP" : null);
|
|
|
@@ -1585,6 +1586,7 @@ public class InstitutionService {
|
|
|
}
|
|
|
|
|
|
QuotaEntity quota = new QuotaEntity();
|
|
|
+ quota.setQuotaId(java.util.UUID.randomUUID().toString().replace("-", ""));
|
|
|
quota.setEmployeeId(empId);
|
|
|
quota.setInstitutionId(institutionId);
|
|
|
quota.setOutBizNo("inst_" + institutionId + "_" + empId);
|