sigesp 1.1.38-20250103 → 1.1.39-20250123

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.
@@ -1,18 +1,29 @@
1
1
  export interface ITipoDepositos {
2
2
  id_empresa: string;
3
3
  id_enterprise: string;
4
+ id_almacen: string;
5
+ id_deposito: string;
4
6
  id_tipodeposito: string;
7
+ id_articulo: string;
8
+ id_ubicacion: string;
9
+ id_lote: string;
10
+ codlote: string;
11
+ serlot: string;
12
+ codalm: string;
13
+ nomfisalm: string;
5
14
  codtipalm: string;
6
15
  dentipalm: string;
7
- existencia: string;
8
- reservado: string;
9
- id_cenlog: string;
10
- codcenlog: string;
11
- dencenlog: string;
12
- id_deposito: string;
13
16
  coddep: string;
14
- id_almacen: string;
15
- codalm: string;
16
- nomfisalm: string;
17
- relacion: string;
17
+ dendep: string;
18
+ codart: string;
19
+ denart: string;
20
+ zona: string;
21
+ pasillo: string;
22
+ nivel: string;
23
+ subnivel: string;
24
+ codigo: string;
25
+ recepcion: string;
26
+ reservacion: string;
27
+ despacho: string;
28
+ disponible: string;
18
29
  }
@@ -3,20 +3,31 @@ import { MBasicModel } from '../basic-model.model';
3
3
  export declare class MTipoDepositos extends MBasicModel {
4
4
  idEmpresa: number;
5
5
  idEnterprise: number;
6
+ idAlmacen: number;
7
+ idDeposito: number;
6
8
  idTipoDeposito: number;
9
+ idArticulo: number;
10
+ idUbicacion: number;
11
+ idLote: number;
12
+ codigoAlmacen: string;
13
+ nombreAlmacen: string;
7
14
  codigoTipoDeposito: string;
8
15
  denominacionTipoDeposito: string;
9
- idDeposito: number;
10
16
  codigoDeposito: string;
11
- reservado: number;
12
- existencia: number;
13
- idCentroLogistico: number;
14
- codigoCentroLogistico: string;
15
- denominacionCentroLogistico: string;
16
- idAlmacen: number;
17
- codigoAlmacen: string;
18
- nombreAlmacen: string;
19
- relacion: string;
17
+ denominacionDeposito: string;
18
+ codigoArticulo: string;
19
+ denominacionArticulo: string;
20
+ codigoLote: string;
21
+ zona: string;
22
+ pasillo: string;
23
+ nivel: string;
24
+ subnivel: string;
25
+ codigo: string;
26
+ recepcion: number;
27
+ reservacion: number;
28
+ despacho: number;
29
+ disponible: number;
30
+ seriaLote: string;
20
31
  constructor(e?: ITipoDepositos);
21
32
  dataInterface(): ITipoDepositos;
22
33
  }
@@ -864,13 +864,13 @@ export declare class SigespService {
864
864
  /**
865
865
  * @description Obtiene los tipos de depositos *
866
866
  * @param procede : procede del modulo
867
- * @param idArticulo : id del articulo
867
+ * @param idMaterial : id del articulo
868
868
  * @param idUsuario : id usuario permitido
869
869
  * @returns
870
- * @author Javier Tovar
871
- * @date 23-11-2022
870
+ * @author Dimaly Crespo
871
+ * @date 23-01-2025
872
872
  */
873
- getDepositType(procede: string, idArticulo: number, idUsuario?: number): Observable<any>;
873
+ getDepositType(procede: string, idMaterial: number, idEnterprise: number): Observable<any>;
874
874
  /**
875
875
  * @description Obtiene Cargos Adicionales *
876
876
  * @param tipo : one,default
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "1.1.38-20250103",
3
+ "version": "1.1.39-20250123",
4
4
  "dependencies": {
5
5
  "tslib": "^2.6.2"
6
6
  },