iptdevs-design-system 3.2.177 → 3.2.178
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/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +7 -0
- package/lib/core/services/budget-service/budget-service.d.ts +3 -2
- package/package.json +1 -1
|
@@ -8337,6 +8337,11 @@ class BudgetService extends IPTGeneralService {
|
|
|
8337
8337
|
this.generateRequestParams(param);
|
|
8338
8338
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
8339
8339
|
}
|
|
8340
|
+
getAllDiscountWithModalityBySegmentAndCampus(param) {
|
|
8341
|
+
let serviceUrl = this.SERVICE_URL + 'post/discounts/coupon/all/with/modality/segment/campus';
|
|
8342
|
+
this.generateRequestParams(param);
|
|
8343
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
8344
|
+
}
|
|
8340
8345
|
createDiscountWithSegment(param) {
|
|
8341
8346
|
let serviceUrl = this.SERVICE_URL + 'post/discount/coupon/create/with/segment';
|
|
8342
8347
|
this.generateRequestParams(param);
|