@experteam-mx/ngx-services 20.9.5-dev2.0 → 20.9.5-dev2.2
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.
|
@@ -3811,6 +3811,15 @@ class ApiInventoriesService {
|
|
|
3811
3811
|
return this.http.delete(`${this.url}/inventory-controls/${id}`)
|
|
3812
3812
|
.pipe(map(({ data }) => data));
|
|
3813
3813
|
}
|
|
3814
|
+
/**
|
|
3815
|
+
* Get Inventory Capacity resource..
|
|
3816
|
+
*
|
|
3817
|
+
* @param {InventoryLocationCapacityIn} body - The inventory capacity data to be obtained.
|
|
3818
|
+
* @returns {Observable<InventoryLocationCapacityOut>} An observable with the Inventory Location Capacity resource.
|
|
3819
|
+
*/
|
|
3820
|
+
postInventoryLocationCapacity(body) {
|
|
3821
|
+
return this.http.post(`${this.url}/inventory-location-capacities`, body).pipe(map(({ data }) => data));
|
|
3822
|
+
}
|
|
3814
3823
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ApiInventoriesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3815
3824
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ApiInventoriesService, providedIn: 'root' });
|
|
3816
3825
|
}
|