iptdevs-design-system 3.2.36 → 3.2.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +18 -18
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +2 -2
- package/fesm2015/iptdevs-design-system.mjs +18 -18
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +18 -18
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/commercial-service/comercial.service.d.ts +8 -8
- package/package.json +1 -1
|
@@ -4203,9 +4203,9 @@ class CommercialService extends IPTGeneralService {
|
|
|
4203
4203
|
this.generateRequestParams(code);
|
|
4204
4204
|
return this.http.get(serviceUrl, this.httpOptions);
|
|
4205
4205
|
}
|
|
4206
|
-
getSummaryByCommercialAdvisor(
|
|
4207
|
-
|
|
4208
|
-
this.generateRequestParams(
|
|
4206
|
+
getSummaryByCommercialAdvisor(params) {
|
|
4207
|
+
let serviceUrl = this.SERVICE_URL + 'get/summary/by/commercial/advisor';
|
|
4208
|
+
this.generateRequestParams(params);
|
|
4209
4209
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4210
4210
|
}
|
|
4211
4211
|
getCodStudentDetailsByAdviser(request) {
|
|
@@ -4213,9 +4213,9 @@ class CommercialService extends IPTGeneralService {
|
|
|
4213
4213
|
const options = { ...this.httpOptions, params: request };
|
|
4214
4214
|
return this.http.get(serviceUrl, options);
|
|
4215
4215
|
}
|
|
4216
|
-
createTypePayment(
|
|
4216
|
+
createTypePayment(params) {
|
|
4217
4217
|
const serviceUrl = this.SERVICE_URL + 'post/create/type/payment/commissions';
|
|
4218
|
-
this.generateRequestParams(
|
|
4218
|
+
this.generateRequestParams(params);
|
|
4219
4219
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4220
4220
|
}
|
|
4221
4221
|
getAllTypePayments(request) {
|
|
@@ -4223,9 +4223,9 @@ class CommercialService extends IPTGeneralService {
|
|
|
4223
4223
|
this.generateRequestParams(request);
|
|
4224
4224
|
return this.http.get(serviceUrl, this.httpOptions);
|
|
4225
4225
|
}
|
|
4226
|
-
createCommissionArea(
|
|
4226
|
+
createCommissionArea(params) {
|
|
4227
4227
|
const serviceUrl = this.SERVICE_URL + 'post/create/commission/area';
|
|
4228
|
-
this.generateRequestParams(
|
|
4228
|
+
this.generateRequestParams(params);
|
|
4229
4229
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4230
4230
|
}
|
|
4231
4231
|
getAllCommissionAreas(request) {
|
|
@@ -4233,14 +4233,14 @@ class CommercialService extends IPTGeneralService {
|
|
|
4233
4233
|
this.generateRequestParams(request);
|
|
4234
4234
|
return this.http.get(serviceUrl, this.httpOptions);
|
|
4235
4235
|
}
|
|
4236
|
-
assignCourseTypesToArea(
|
|
4236
|
+
assignCourseTypesToArea(params) {
|
|
4237
4237
|
const serviceUrl = this.SERVICE_URL + 'post/assign/course-types/to-area';
|
|
4238
|
-
this.generateRequestParams(
|
|
4238
|
+
this.generateRequestParams(params);
|
|
4239
4239
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4240
4240
|
}
|
|
4241
|
-
createPaymentAreaCommission(
|
|
4241
|
+
createPaymentAreaCommission(params) {
|
|
4242
4242
|
const serviceUrl = this.SERVICE_URL + 'post/create/payment/area/commission';
|
|
4243
|
-
this.generateRequestParams(
|
|
4243
|
+
this.generateRequestParams(params);
|
|
4244
4244
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4245
4245
|
}
|
|
4246
4246
|
getCommissionRulesByArea(request, areaCode) {
|
|
@@ -4248,9 +4248,9 @@ class CommercialService extends IPTGeneralService {
|
|
|
4248
4248
|
this.generateRequestParams(request);
|
|
4249
4249
|
return this.http.get(serviceUrl, this.httpOptions);
|
|
4250
4250
|
}
|
|
4251
|
-
createTypeUserCommission(
|
|
4251
|
+
createTypeUserCommission(params) {
|
|
4252
4252
|
const serviceUrl = this.SERVICE_URL + 'post/create/type/user/commission';
|
|
4253
|
-
this.generateRequestParams(
|
|
4253
|
+
this.generateRequestParams(params);
|
|
4254
4254
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4255
4255
|
}
|
|
4256
4256
|
getAllTypeUserCommissions(request) {
|
|
@@ -4258,9 +4258,9 @@ class CommercialService extends IPTGeneralService {
|
|
|
4258
4258
|
this.generateRequestParams(request);
|
|
4259
4259
|
return this.http.get(serviceUrl, this.httpOptions);
|
|
4260
4260
|
}
|
|
4261
|
-
assignCommissionGoalToUser(
|
|
4261
|
+
assignCommissionGoalToUser(params) {
|
|
4262
4262
|
const serviceUrl = this.SERVICE_URL + 'post/assign/goal/to/user';
|
|
4263
|
-
this.generateRequestParams(
|
|
4263
|
+
this.generateRequestParams(params);
|
|
4264
4264
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4265
4265
|
}
|
|
4266
4266
|
getActiveCommissionGoalForUser(request) {
|
|
@@ -4268,9 +4268,9 @@ class CommercialService extends IPTGeneralService {
|
|
|
4268
4268
|
this.generateRequestParams(request);
|
|
4269
4269
|
return this.http.get(serviceUrl, this.httpOptions);
|
|
4270
4270
|
}
|
|
4271
|
-
payCommissions(
|
|
4271
|
+
payCommissions(params) {
|
|
4272
4272
|
const serviceUrl = this.SERVICE_URL + 'post/pay/commissions';
|
|
4273
|
-
this.generateRequestParams(
|
|
4273
|
+
this.generateRequestParams(params);
|
|
4274
4274
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4275
4275
|
}
|
|
4276
4276
|
updatePaymentAreaCommission(request, ruleCode) {
|
|
@@ -4720,7 +4720,7 @@ class CourseService extends IPTGeneralService {
|
|
|
4720
4720
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4721
4721
|
}
|
|
4722
4722
|
getAllCourseTypes(request) {
|
|
4723
|
-
const serviceUrl = this.SERVICE_URL + 'get/all-
|
|
4723
|
+
const serviceUrl = this.SERVICE_URL + 'get/all/course-types';
|
|
4724
4724
|
this.generateRequestParams(request);
|
|
4725
4725
|
return this.http.get(serviceUrl, this.httpOptions);
|
|
4726
4726
|
}
|