iptdevs-design-system 2.7.12 → 2.7.13

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.
@@ -2169,9 +2169,9 @@ class CommercialService extends IPTGeneralService {
2169
2169
  this.SERVICE_URL = 'commercial/api/';
2170
2170
  this.SERVICE_URL = this.baseUrl() + this.SERVICE_URL;
2171
2171
  }
2172
- getStudentCodHistory(token, student_code) {
2172
+ getStudentCodHistory(token, student_id_card) {
2173
2173
  let serviceUrl = this.SERVICE_URL + 'post/obtain/cod/history/by/student';
2174
- this.generateRequestParams({ token, student_code });
2174
+ this.generateRequestParams({ token, student_id_card });
2175
2175
  return this.http.post(serviceUrl, this.httpOptions);
2176
2176
  }
2177
2177
  }