iptdevs-design-system 3.1.610 → 3.1.612

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.
@@ -481,7 +481,7 @@ export interface IUserWalletRs {
481
481
  phone_number: string;
482
482
  is_visible: number;
483
483
  }
484
- export interface PaymentBillEgress {
484
+ export interface IpaymentBillEgressRq {
485
485
  payment_method: number;
486
486
  payment_services: number;
487
487
  payment_wallet: number;
@@ -502,17 +502,31 @@ export interface PaymentBillEgress {
502
502
  common_expenses: number;
503
503
  type_movements: number;
504
504
  }
505
- export interface CashClosing {
505
+ export interface IcashClosingRq {
506
506
  token: string;
507
507
  }
508
- export interface InfoCashClosing {
508
+ export interface InfoCashClosingRq {
509
509
  token: string;
510
510
  code: number;
511
511
  code_user: number;
512
512
  }
513
- export interface CashClosingDate {
513
+ export interface IcashClosingDateRq {
514
514
  token: string;
515
515
  start_date: string;
516
516
  finish_date: string;
517
517
  code_user: number;
518
518
  }
519
+ interface IPaymentWalletRs {
520
+ name: string;
521
+ cantidad: number;
522
+ total: number;
523
+ }
524
+ export interface IcashClosingDataRs {
525
+ totalIncome: number;
526
+ totalEgress: number;
527
+ paymentMethodIncomeInfo: IPaymentWalletRs[];
528
+ paymentMethodEgressInfo: IPaymentWalletRs[];
529
+ paymentWalletEgressInfo: IPaymentWalletRs[];
530
+ paymentWalletIncomeInfo: IPaymentWalletRs[];
531
+ }
532
+ export {};
@@ -164,3 +164,23 @@ export interface ParamsUser {
164
164
  token: string;
165
165
  param: string;
166
166
  }
167
+ export interface IusersRq {
168
+ name: string;
169
+ last_name: string;
170
+ email: string;
171
+ phone_indicative: number;
172
+ phone_number: number;
173
+ id_card_type: number;
174
+ id_card: number;
175
+ city: number;
176
+ password: string;
177
+ role: number;
178
+ gender: number;
179
+ token: string;
180
+ is_company: number;
181
+ name_company?: string;
182
+ category?: number;
183
+ address_company?: string;
184
+ phone_company?: number;
185
+ nit?: number;
186
+ }
@@ -1,6 +1,6 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
- import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq, IObtainStudentPaymentByDiffParamRq, PaymentBillEgress, CashClosing, InfoCashClosing, CashClosingDate } from '../../models/budget/budget.model';
3
+ import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq, IObtainStudentPaymentByDiffParamRq, InfoCashClosingRq, IcashClosingDateRq, IcashClosingRq, IpaymentBillEgressRq } from '../../models/budget/budget.model';
4
4
  import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, PaymentBillRq2, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
5
5
  import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
6
6
  import { IPTGeneralService } from '../service-enviroments';
@@ -56,16 +56,16 @@ export declare class BudgetService extends IPTGeneralService {
56
56
  obtainStudentPaymentTransactionHistoryByCourse(param: IObtainPaymentTranHistoryRq): Observable<any>;
57
57
  obtainPaymentTransactionHistoryByCod(param: IObtainPaymentTranHistoryRq): Observable<any>;
58
58
  obtainStudentPaymentByDifferentParameter(param: IObtainStudentPaymentByDiffParamRq): Observable<any>;
59
- createEgress(param: PaymentBillEgress): Observable<any>;
59
+ createEgress(param: IpaymentBillEgressRq): Observable<any>;
60
60
  getCategory(): Observable<any>;
61
- createCashClosing(param: CashClosing): Observable<any>;
61
+ createCashClosing(param: IcashClosingRq): Observable<any>;
62
62
  searchCommonExpenses(name: string): Observable<any>;
63
63
  getUsersCashClosing(): Observable<any>;
64
64
  getCashClosingDay(code: number): Observable<any>;
65
65
  getCashClosingMonth(code: number): Observable<any>;
66
66
  getCashClosingYear(code: number): Observable<any>;
67
- getInfoCashClosingByCode(param: InfoCashClosing): Observable<any>;
68
- getCashClosingDate(param: CashClosingDate): Observable<any>;
67
+ getInfoCashClosingByCode(param: InfoCashClosingRq): Observable<any>;
68
+ getCashClosingDate(param: IcashClosingDateRq): Observable<any>;
69
69
  static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
70
70
  static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
71
71
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.1.610",
3
+ "version": "3.1.612",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",