iptdevs-design-system 3.2.179 → 3.2.181
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/models/commercial/commercial.model.mjs +1 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +21 -6
- package/fesm2015/iptdevs-design-system.mjs +20 -5
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +20 -5
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/commercial/commercial.model.d.ts +37 -0
- package/lib/core/services/commercial-service/comercial.service.d.ts +5 -2
- package/package.json +1 -1
|
@@ -4244,11 +4244,21 @@ class CommercialService extends IPTGeneralService {
|
|
|
4244
4244
|
this.generateRequestParams(params);
|
|
4245
4245
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4246
4246
|
}
|
|
4247
|
+
getUserCommercialByTypeAssingAndCampus(params) {
|
|
4248
|
+
let serviceUrl = this.SERVICE_URL + 'get/user/commercial/by/type/assing/and/campus';
|
|
4249
|
+
this.generateRequestParams(params);
|
|
4250
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4251
|
+
}
|
|
4247
4252
|
assingCustomersByTypeAssingContactForAdviser(params) {
|
|
4248
4253
|
let serviceUrl = this.SERVICE_URL + 'post/Assing/user/posible/student/by/date';
|
|
4249
4254
|
this.generateRequestParams(params);
|
|
4250
4255
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4251
4256
|
}
|
|
4257
|
+
assingPosibleStudentByCampusAndDate(params) {
|
|
4258
|
+
let serviceUrl = this.SERVICE_URL + 'post/Assing/user/posible/student/by/campus/and/date';
|
|
4259
|
+
this.generateRequestParams(params);
|
|
4260
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4261
|
+
}
|
|
4252
4262
|
obtainAdditionalUserDataByCourse(params) {
|
|
4253
4263
|
let serviceUrl = this.SERVICE_URL + 'obtain/additional/user/data/by/course';
|
|
4254
4264
|
this.generateRequestParams(params);
|
|
@@ -4555,11 +4565,6 @@ class CommercialService extends IPTGeneralService {
|
|
|
4555
4565
|
};
|
|
4556
4566
|
return this.http.delete(serviceUrl, options);
|
|
4557
4567
|
}
|
|
4558
|
-
getMonthlyBonusStatus(request, code) {
|
|
4559
|
-
let serviceUrl = this.SERVICE_URL + `advisor/monthly/status/${code}`;
|
|
4560
|
-
this.generateRequestParams(request);
|
|
4561
|
-
return this.http.post(serviceUrl, this.httpOptions);
|
|
4562
|
-
}
|
|
4563
4568
|
getAllCourseTypeCategories(request) {
|
|
4564
4569
|
const serviceUrl = this.SERVICE_URL + `get/all/course/type/categories`;
|
|
4565
4570
|
this.generateRequestParams(request);
|
|
@@ -4614,6 +4619,16 @@ class CommercialService extends IPTGeneralService {
|
|
|
4614
4619
|
this.generateRequestParams(params);
|
|
4615
4620
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4616
4621
|
}
|
|
4622
|
+
obtainPreviewTransactionExportData(params) {
|
|
4623
|
+
const serviceUrl = this.SERVICE_URL + 'preview/transaction/export/data';
|
|
4624
|
+
this.generateRequestParams(params);
|
|
4625
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4626
|
+
}
|
|
4627
|
+
getMonthlyBonusStatus(params) {
|
|
4628
|
+
let serviceUrl = this.SERVICE_URL + `advisor/monthly/status`;
|
|
4629
|
+
this.generateRequestParams(params);
|
|
4630
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4631
|
+
}
|
|
4617
4632
|
}
|
|
4618
4633
|
CommercialService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4619
4634
|
CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, providedIn: 'root' });
|