iptdevs-design-system 3.1.729 → 3.1.730

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.
@@ -5870,6 +5870,10 @@ class BudgetService extends IPTGeneralService {
5870
5870
  let serviceUrl = this.SERVICE_URL + 'get/payment/bill/canceled/by/student/' + codeStudent;
5871
5871
  return this.http.get(serviceUrl);
5872
5872
  }
5873
+ getPaymentBillByReference(reference) {
5874
+ let serviceUrl = this.SERVICE_URL + 'get/payment/bill/canceled/by/reference/' + reference;
5875
+ return this.http.get(serviceUrl);
5876
+ }
5873
5877
  getPriceByTypeService(params) {
5874
5878
  let serviceUrl = this.SERVICE_URL + 'post/obtain/price/by/type/service';
5875
5879
  this.generateRequestParams(params);