@indigina/wms-api 0.0.142 → 0.0.144
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.
package/package.json
CHANGED
|
@@ -831,6 +831,29 @@ declare class CartonDeliveryItemsService extends BaseService {
|
|
|
831
831
|
context?: HttpContext;
|
|
832
832
|
transferCache?: boolean;
|
|
833
833
|
}): Observable<HttpEvent<CartonDeliveryItems>>;
|
|
834
|
+
/**
|
|
835
|
+
* Get carton IDs by delivery item IDs
|
|
836
|
+
* @endpoint get /cartons/deliveryItems/cartonIds
|
|
837
|
+
* @param ids
|
|
838
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
839
|
+
* @param reportProgress flag to report request and response progress.
|
|
840
|
+
* @param options additional options
|
|
841
|
+
*/
|
|
842
|
+
getCartonIdsByDeliveryItemIds(ids: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
843
|
+
httpHeaderAccept?: 'application/json';
|
|
844
|
+
context?: HttpContext;
|
|
845
|
+
transferCache?: boolean;
|
|
846
|
+
}): Observable<Array<string>>;
|
|
847
|
+
getCartonIdsByDeliveryItemIds(ids: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
848
|
+
httpHeaderAccept?: 'application/json';
|
|
849
|
+
context?: HttpContext;
|
|
850
|
+
transferCache?: boolean;
|
|
851
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
852
|
+
getCartonIdsByDeliveryItemIds(ids: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
853
|
+
httpHeaderAccept?: 'application/json';
|
|
854
|
+
context?: HttpContext;
|
|
855
|
+
transferCache?: boolean;
|
|
856
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
834
857
|
static ɵfac: i0.ɵɵFactoryDeclaration<CartonDeliveryItemsService, [null, { optional: true; }, { optional: true; }]>;
|
|
835
858
|
static ɵprov: i0.ɵɵInjectableDeclaration<CartonDeliveryItemsService>;
|
|
836
859
|
}
|
|
@@ -2210,6 +2233,7 @@ interface DeliveryItemView {
|
|
|
2210
2233
|
reasonDescription: string;
|
|
2211
2234
|
qcPercentage: number | null;
|
|
2212
2235
|
qcControlled: boolean;
|
|
2236
|
+
lotNo?: string | null;
|
|
2213
2237
|
bestBeforeDate: string | null;
|
|
2214
2238
|
lotControlled?: boolean | null;
|
|
2215
2239
|
dateControlled?: boolean | null;
|