@ignos/api-client 20241023.0.10606 → 20241105.0.10657
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/lib/ignosportal-api.d.ts +56 -1
- package/lib/ignosportal-api.js +185 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +240 -2
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -1506,6 +1506,7 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
|
|
|
1506
1506
|
export interface IMoveLocationsClient {
|
|
1507
1507
|
searchLocations(input: string | null | undefined, locationKinds: LocationKindDto[] | null | undefined, locationProfiles: LocationProfileDto[] | null | undefined): Promise<LocationDto[]>;
|
|
1508
1508
|
suggestionsLocations(locationProfiles: LocationProfileDto[] | null | undefined, count: number | undefined): Promise<LocationDto[]>;
|
|
1509
|
+
suggestionsLocations2(locationProfiles: LocationProfileDto[] | null | undefined, parcelId: string | undefined): Promise<SuggestionsResponseDto>;
|
|
1509
1510
|
}
|
|
1510
1511
|
export declare class MoveLocationsClient extends AuthorizedApiBase implements IMoveLocationsClient {
|
|
1511
1512
|
private http;
|
|
@@ -1518,6 +1519,8 @@ export declare class MoveLocationsClient extends AuthorizedApiBase implements IM
|
|
|
1518
1519
|
protected processSearchLocations(response: Response): Promise<LocationDto[]>;
|
|
1519
1520
|
suggestionsLocations(locationProfiles: LocationProfileDto[] | null | undefined, count: number | undefined): Promise<LocationDto[]>;
|
|
1520
1521
|
protected processSuggestionsLocations(response: Response): Promise<LocationDto[]>;
|
|
1522
|
+
suggestionsLocations2(locationProfiles: LocationProfileDto[] | null | undefined, parcelId: string | undefined): Promise<SuggestionsResponseDto>;
|
|
1523
|
+
protected processSuggestionsLocations2(response: Response): Promise<SuggestionsResponseDto>;
|
|
1521
1524
|
}
|
|
1522
1525
|
export interface IMoveMaterialsClient {
|
|
1523
1526
|
listMaterials(): Promise<MaterialDesciptionDto[]>;
|
|
@@ -8266,6 +8269,46 @@ export interface IBookingStatusUpdateDto {
|
|
|
8266
8269
|
deliveryExceptionComment?: string | null;
|
|
8267
8270
|
}
|
|
8268
8271
|
export type LocationProfileDto = "Cage" | "CantileverRack" | "Deviation" | "Environmental" | "Gate" | "Ground" | "Inbound" | "Logia" | "LogiaTransit" | "Outbound" | "Pack" | "PalletRack" | "Pick" | "Quality" | "Quarantine" | "Resource" | "ShelvingRack";
|
|
8272
|
+
export declare class SuggestionsResponseDto implements ISuggestionsResponseDto {
|
|
8273
|
+
parcels: SuggestionsParcelDto[];
|
|
8274
|
+
constructor(data?: ISuggestionsResponseDto);
|
|
8275
|
+
init(_data?: any): void;
|
|
8276
|
+
static fromJS(data: any): SuggestionsResponseDto;
|
|
8277
|
+
toJSON(data?: any): any;
|
|
8278
|
+
}
|
|
8279
|
+
export interface ISuggestionsResponseDto {
|
|
8280
|
+
parcels: SuggestionsParcelDto[];
|
|
8281
|
+
}
|
|
8282
|
+
export declare class SuggestionsParcelDto implements ISuggestionsParcelDto {
|
|
8283
|
+
parcelId: string;
|
|
8284
|
+
items: SuggestionsItemDto[];
|
|
8285
|
+
constructor(data?: ISuggestionsParcelDto);
|
|
8286
|
+
init(_data?: any): void;
|
|
8287
|
+
static fromJS(data: any): SuggestionsParcelDto;
|
|
8288
|
+
toJSON(data?: any): any;
|
|
8289
|
+
}
|
|
8290
|
+
export interface ISuggestionsParcelDto {
|
|
8291
|
+
parcelId: string;
|
|
8292
|
+
items: SuggestionsItemDto[];
|
|
8293
|
+
}
|
|
8294
|
+
export declare class SuggestionsItemDto implements ISuggestionsItemDto {
|
|
8295
|
+
trackingId: string;
|
|
8296
|
+
fromAutoFill?: LocationDto | null;
|
|
8297
|
+
toAutoFill?: LocationDto | null;
|
|
8298
|
+
fromSuggestions: LocationDto[];
|
|
8299
|
+
toSuggestions: LocationDto[];
|
|
8300
|
+
constructor(data?: ISuggestionsItemDto);
|
|
8301
|
+
init(_data?: any): void;
|
|
8302
|
+
static fromJS(data: any): SuggestionsItemDto;
|
|
8303
|
+
toJSON(data?: any): any;
|
|
8304
|
+
}
|
|
8305
|
+
export interface ISuggestionsItemDto {
|
|
8306
|
+
trackingId: string;
|
|
8307
|
+
fromAutoFill?: LocationDto | null;
|
|
8308
|
+
toAutoFill?: LocationDto | null;
|
|
8309
|
+
fromSuggestions: LocationDto[];
|
|
8310
|
+
toSuggestions: LocationDto[];
|
|
8311
|
+
}
|
|
8269
8312
|
export declare class MaterialDesciptionDto implements IMaterialDesciptionDto {
|
|
8270
8313
|
materialId: string;
|
|
8271
8314
|
materialName: string;
|
|
@@ -8367,6 +8410,7 @@ export declare class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
|
8367
8410
|
activeBooking?: boolean | null;
|
|
8368
8411
|
currentTracking?: TrackingEventDto | null;
|
|
8369
8412
|
trackingEvents: TrackingEventDto[];
|
|
8413
|
+
suggestions?: SuggestionsItemDto | null;
|
|
8370
8414
|
constructor(data?: ITrackingHistoryDto);
|
|
8371
8415
|
init(_data?: any): void;
|
|
8372
8416
|
static fromJS(data: any): TrackingHistoryDto;
|
|
@@ -8378,6 +8422,7 @@ export interface ITrackingHistoryDto {
|
|
|
8378
8422
|
activeBooking?: boolean | null;
|
|
8379
8423
|
currentTracking?: TrackingEventDto | null;
|
|
8380
8424
|
trackingEvents: TrackingEventDto[];
|
|
8425
|
+
suggestions?: SuggestionsItemDto | null;
|
|
8381
8426
|
}
|
|
8382
8427
|
export declare class TrackingEventDto implements ITrackingEventDto {
|
|
8383
8428
|
id: number;
|
|
@@ -8475,6 +8520,7 @@ export interface ITrackingHistoryFlattenedDto {
|
|
|
8475
8520
|
export declare class TrackingParcelRequestListDto implements ITrackingParcelRequestListDto {
|
|
8476
8521
|
parcelIds: string[];
|
|
8477
8522
|
includeActiveBookings: boolean;
|
|
8523
|
+
includeSuggestions?: boolean | null;
|
|
8478
8524
|
constructor(data?: ITrackingParcelRequestListDto);
|
|
8479
8525
|
init(_data?: any): void;
|
|
8480
8526
|
static fromJS(data: any): TrackingParcelRequestListDto;
|
|
@@ -8483,6 +8529,7 @@ export declare class TrackingParcelRequestListDto implements ITrackingParcelRequ
|
|
|
8483
8529
|
export interface ITrackingParcelRequestListDto {
|
|
8484
8530
|
parcelIds: string[];
|
|
8485
8531
|
includeActiveBookings: boolean;
|
|
8532
|
+
includeSuggestions?: boolean | null;
|
|
8486
8533
|
}
|
|
8487
8534
|
export declare class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
8488
8535
|
trackingId: string;
|
|
@@ -9108,6 +9155,7 @@ export declare class ProductionOrderOperationActivityDto implements IProductionO
|
|
|
9108
9155
|
startedQuantity?: number | null;
|
|
9109
9156
|
producedQuantity?: number | null;
|
|
9110
9157
|
scrappedQuantity?: number | null;
|
|
9158
|
+
workType: WorkTypeDto;
|
|
9111
9159
|
constructor(data?: IProductionOrderOperationActivityDto);
|
|
9112
9160
|
init(_data?: any): void;
|
|
9113
9161
|
static fromJS(data: any): ProductionOrderOperationActivityDto;
|
|
@@ -9126,7 +9174,9 @@ export interface IProductionOrderOperationActivityDto {
|
|
|
9126
9174
|
startedQuantity?: number | null;
|
|
9127
9175
|
producedQuantity?: number | null;
|
|
9128
9176
|
scrappedQuantity?: number | null;
|
|
9177
|
+
workType: WorkTypeDto;
|
|
9129
9178
|
}
|
|
9179
|
+
export type WorkTypeDto = "None" | "Production" | "Setup";
|
|
9130
9180
|
export declare class GeneratePrintableLabel implements IGeneratePrintableLabel {
|
|
9131
9181
|
labelIds: LabelId[];
|
|
9132
9182
|
constructor(data?: IGeneratePrintableLabel);
|
|
@@ -9559,7 +9609,6 @@ export interface ICurrentWorkDto {
|
|
|
9559
9609
|
startedQuantity?: number | null;
|
|
9560
9610
|
workType: WorkTypeDto;
|
|
9561
9611
|
}
|
|
9562
|
-
export type WorkTypeDto = "None" | "Production" | "Setup";
|
|
9563
9612
|
export declare class StoppedWorkDto implements IStoppedWorkDto {
|
|
9564
9613
|
operation: ProductionScheduleOperationDto;
|
|
9565
9614
|
lastWorkActivity: CurrentWorkDto;
|
|
@@ -9589,6 +9638,7 @@ export declare class StartOperationDto implements IStartOperationDto {
|
|
|
9589
9638
|
operationNumber: number;
|
|
9590
9639
|
startedQuantity?: number | null;
|
|
9591
9640
|
resource: string;
|
|
9641
|
+
workType?: WorkTypeDto;
|
|
9592
9642
|
constructor(data?: IStartOperationDto);
|
|
9593
9643
|
init(_data?: any): void;
|
|
9594
9644
|
static fromJS(data: any): StartOperationDto;
|
|
@@ -9599,6 +9649,7 @@ export interface IStartOperationDto {
|
|
|
9599
9649
|
operationNumber: number;
|
|
9600
9650
|
startedQuantity?: number | null;
|
|
9601
9651
|
resource: string;
|
|
9652
|
+
workType?: WorkTypeDto;
|
|
9602
9653
|
}
|
|
9603
9654
|
export declare class ReportOperationProgress implements IReportOperationProgress {
|
|
9604
9655
|
operations: ReportOperationProgressDto[];
|
|
@@ -10460,6 +10511,7 @@ export declare class MeasurementFormSettingsDto implements IMeasurementFormSetti
|
|
|
10460
10511
|
generateSchemaRequirements: boolean;
|
|
10461
10512
|
generateSchemaInstances: boolean;
|
|
10462
10513
|
autoCompleteSchemaInstances: boolean;
|
|
10514
|
+
autoApproveSchemaInstances: boolean;
|
|
10463
10515
|
generateReportForApprovedInstances: boolean;
|
|
10464
10516
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
10465
10517
|
requireCustomerOnWorkOrders: boolean;
|
|
@@ -10476,6 +10528,7 @@ export interface IMeasurementFormSettingsDto {
|
|
|
10476
10528
|
generateSchemaRequirements: boolean;
|
|
10477
10529
|
generateSchemaInstances: boolean;
|
|
10478
10530
|
autoCompleteSchemaInstances: boolean;
|
|
10531
|
+
autoApproveSchemaInstances: boolean;
|
|
10479
10532
|
generateReportForApprovedInstances: boolean;
|
|
10480
10533
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
10481
10534
|
requireCustomerOnWorkOrders: boolean;
|
|
@@ -10488,6 +10541,7 @@ export declare class UpdateMeasurementFormSettings implements IUpdateMeasurement
|
|
|
10488
10541
|
generateSchemaRequirements: boolean;
|
|
10489
10542
|
generateSchemaInstances: boolean;
|
|
10490
10543
|
autoCompleteSchemaInstances: boolean;
|
|
10544
|
+
autoApproveSchemaInstances: boolean;
|
|
10491
10545
|
generateReportForApprovedInstances: boolean;
|
|
10492
10546
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
10493
10547
|
requireCustomerOnWorkOrders: boolean;
|
|
@@ -10504,6 +10558,7 @@ export interface IUpdateMeasurementFormSettings {
|
|
|
10504
10558
|
generateSchemaRequirements: boolean;
|
|
10505
10559
|
generateSchemaInstances: boolean;
|
|
10506
10560
|
autoCompleteSchemaInstances: boolean;
|
|
10561
|
+
autoApproveSchemaInstances: boolean;
|
|
10507
10562
|
generateReportForApprovedInstances: boolean;
|
|
10508
10563
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
10509
10564
|
requireCustomerOnWorkOrders: boolean;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -12374,6 +12374,49 @@ export class MoveLocationsClient extends AuthorizedApiBase {
|
|
|
12374
12374
|
}
|
|
12375
12375
|
return Promise.resolve(null);
|
|
12376
12376
|
}
|
|
12377
|
+
suggestionsLocations2(locationProfiles, parcelId) {
|
|
12378
|
+
let url_ = this.baseUrl + "/move/locations/suggestions2?";
|
|
12379
|
+
if (locationProfiles !== undefined && locationProfiles !== null)
|
|
12380
|
+
locationProfiles && locationProfiles.forEach(item => { url_ += "locationProfiles=" + encodeURIComponent("" + item) + "&"; });
|
|
12381
|
+
if (parcelId === null)
|
|
12382
|
+
throw new Error("The parameter 'parcelId' cannot be null.");
|
|
12383
|
+
else if (parcelId !== undefined)
|
|
12384
|
+
url_ += "parcelId=" + encodeURIComponent("" + parcelId) + "&";
|
|
12385
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
12386
|
+
let options_ = {
|
|
12387
|
+
method: "GET",
|
|
12388
|
+
headers: {
|
|
12389
|
+
"Accept": "application/json"
|
|
12390
|
+
}
|
|
12391
|
+
};
|
|
12392
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
12393
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
12394
|
+
}).then((_response) => {
|
|
12395
|
+
return this.processSuggestionsLocations2(_response);
|
|
12396
|
+
});
|
|
12397
|
+
}
|
|
12398
|
+
processSuggestionsLocations2(response) {
|
|
12399
|
+
const status = response.status;
|
|
12400
|
+
let _headers = {};
|
|
12401
|
+
if (response.headers && response.headers.forEach) {
|
|
12402
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
12403
|
+
}
|
|
12404
|
+
;
|
|
12405
|
+
if (status === 200) {
|
|
12406
|
+
return response.text().then((_responseText) => {
|
|
12407
|
+
let result200 = null;
|
|
12408
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
12409
|
+
result200 = SuggestionsResponseDto.fromJS(resultData200);
|
|
12410
|
+
return result200;
|
|
12411
|
+
});
|
|
12412
|
+
}
|
|
12413
|
+
else if (status !== 200 && status !== 204) {
|
|
12414
|
+
return response.text().then((_responseText) => {
|
|
12415
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
12416
|
+
});
|
|
12417
|
+
}
|
|
12418
|
+
return Promise.resolve(null);
|
|
12419
|
+
}
|
|
12377
12420
|
}
|
|
12378
12421
|
export class MoveMaterialsClient extends AuthorizedApiBase {
|
|
12379
12422
|
constructor(configuration, baseUrl, http) {
|
|
@@ -31581,6 +31624,136 @@ export class BookingStatusUpdateDto {
|
|
|
31581
31624
|
return data;
|
|
31582
31625
|
}
|
|
31583
31626
|
}
|
|
31627
|
+
export class SuggestionsResponseDto {
|
|
31628
|
+
constructor(data) {
|
|
31629
|
+
if (data) {
|
|
31630
|
+
for (var property in data) {
|
|
31631
|
+
if (data.hasOwnProperty(property))
|
|
31632
|
+
this[property] = data[property];
|
|
31633
|
+
}
|
|
31634
|
+
}
|
|
31635
|
+
if (!data) {
|
|
31636
|
+
this.parcels = [];
|
|
31637
|
+
}
|
|
31638
|
+
}
|
|
31639
|
+
init(_data) {
|
|
31640
|
+
if (_data) {
|
|
31641
|
+
if (Array.isArray(_data["parcels"])) {
|
|
31642
|
+
this.parcels = [];
|
|
31643
|
+
for (let item of _data["parcels"])
|
|
31644
|
+
this.parcels.push(SuggestionsParcelDto.fromJS(item));
|
|
31645
|
+
}
|
|
31646
|
+
}
|
|
31647
|
+
}
|
|
31648
|
+
static fromJS(data) {
|
|
31649
|
+
data = typeof data === 'object' ? data : {};
|
|
31650
|
+
let result = new SuggestionsResponseDto();
|
|
31651
|
+
result.init(data);
|
|
31652
|
+
return result;
|
|
31653
|
+
}
|
|
31654
|
+
toJSON(data) {
|
|
31655
|
+
data = typeof data === 'object' ? data : {};
|
|
31656
|
+
if (Array.isArray(this.parcels)) {
|
|
31657
|
+
data["parcels"] = [];
|
|
31658
|
+
for (let item of this.parcels)
|
|
31659
|
+
data["parcels"].push(item.toJSON());
|
|
31660
|
+
}
|
|
31661
|
+
return data;
|
|
31662
|
+
}
|
|
31663
|
+
}
|
|
31664
|
+
export class SuggestionsParcelDto {
|
|
31665
|
+
constructor(data) {
|
|
31666
|
+
if (data) {
|
|
31667
|
+
for (var property in data) {
|
|
31668
|
+
if (data.hasOwnProperty(property))
|
|
31669
|
+
this[property] = data[property];
|
|
31670
|
+
}
|
|
31671
|
+
}
|
|
31672
|
+
if (!data) {
|
|
31673
|
+
this.items = [];
|
|
31674
|
+
}
|
|
31675
|
+
}
|
|
31676
|
+
init(_data) {
|
|
31677
|
+
if (_data) {
|
|
31678
|
+
this.parcelId = _data["parcelId"];
|
|
31679
|
+
if (Array.isArray(_data["items"])) {
|
|
31680
|
+
this.items = [];
|
|
31681
|
+
for (let item of _data["items"])
|
|
31682
|
+
this.items.push(SuggestionsItemDto.fromJS(item));
|
|
31683
|
+
}
|
|
31684
|
+
}
|
|
31685
|
+
}
|
|
31686
|
+
static fromJS(data) {
|
|
31687
|
+
data = typeof data === 'object' ? data : {};
|
|
31688
|
+
let result = new SuggestionsParcelDto();
|
|
31689
|
+
result.init(data);
|
|
31690
|
+
return result;
|
|
31691
|
+
}
|
|
31692
|
+
toJSON(data) {
|
|
31693
|
+
data = typeof data === 'object' ? data : {};
|
|
31694
|
+
data["parcelId"] = this.parcelId;
|
|
31695
|
+
if (Array.isArray(this.items)) {
|
|
31696
|
+
data["items"] = [];
|
|
31697
|
+
for (let item of this.items)
|
|
31698
|
+
data["items"].push(item.toJSON());
|
|
31699
|
+
}
|
|
31700
|
+
return data;
|
|
31701
|
+
}
|
|
31702
|
+
}
|
|
31703
|
+
export class SuggestionsItemDto {
|
|
31704
|
+
constructor(data) {
|
|
31705
|
+
if (data) {
|
|
31706
|
+
for (var property in data) {
|
|
31707
|
+
if (data.hasOwnProperty(property))
|
|
31708
|
+
this[property] = data[property];
|
|
31709
|
+
}
|
|
31710
|
+
}
|
|
31711
|
+
if (!data) {
|
|
31712
|
+
this.fromSuggestions = [];
|
|
31713
|
+
this.toSuggestions = [];
|
|
31714
|
+
}
|
|
31715
|
+
}
|
|
31716
|
+
init(_data) {
|
|
31717
|
+
if (_data) {
|
|
31718
|
+
this.trackingId = _data["trackingId"];
|
|
31719
|
+
this.fromAutoFill = _data["fromAutoFill"] ? LocationDto.fromJS(_data["fromAutoFill"]) : undefined;
|
|
31720
|
+
this.toAutoFill = _data["toAutoFill"] ? LocationDto.fromJS(_data["toAutoFill"]) : undefined;
|
|
31721
|
+
if (Array.isArray(_data["fromSuggestions"])) {
|
|
31722
|
+
this.fromSuggestions = [];
|
|
31723
|
+
for (let item of _data["fromSuggestions"])
|
|
31724
|
+
this.fromSuggestions.push(LocationDto.fromJS(item));
|
|
31725
|
+
}
|
|
31726
|
+
if (Array.isArray(_data["toSuggestions"])) {
|
|
31727
|
+
this.toSuggestions = [];
|
|
31728
|
+
for (let item of _data["toSuggestions"])
|
|
31729
|
+
this.toSuggestions.push(LocationDto.fromJS(item));
|
|
31730
|
+
}
|
|
31731
|
+
}
|
|
31732
|
+
}
|
|
31733
|
+
static fromJS(data) {
|
|
31734
|
+
data = typeof data === 'object' ? data : {};
|
|
31735
|
+
let result = new SuggestionsItemDto();
|
|
31736
|
+
result.init(data);
|
|
31737
|
+
return result;
|
|
31738
|
+
}
|
|
31739
|
+
toJSON(data) {
|
|
31740
|
+
data = typeof data === 'object' ? data : {};
|
|
31741
|
+
data["trackingId"] = this.trackingId;
|
|
31742
|
+
data["fromAutoFill"] = this.fromAutoFill ? this.fromAutoFill.toJSON() : undefined;
|
|
31743
|
+
data["toAutoFill"] = this.toAutoFill ? this.toAutoFill.toJSON() : undefined;
|
|
31744
|
+
if (Array.isArray(this.fromSuggestions)) {
|
|
31745
|
+
data["fromSuggestions"] = [];
|
|
31746
|
+
for (let item of this.fromSuggestions)
|
|
31747
|
+
data["fromSuggestions"].push(item.toJSON());
|
|
31748
|
+
}
|
|
31749
|
+
if (Array.isArray(this.toSuggestions)) {
|
|
31750
|
+
data["toSuggestions"] = [];
|
|
31751
|
+
for (let item of this.toSuggestions)
|
|
31752
|
+
data["toSuggestions"].push(item.toJSON());
|
|
31753
|
+
}
|
|
31754
|
+
return data;
|
|
31755
|
+
}
|
|
31756
|
+
}
|
|
31584
31757
|
export class MaterialDesciptionDto {
|
|
31585
31758
|
constructor(data) {
|
|
31586
31759
|
if (data) {
|
|
@@ -31827,6 +32000,7 @@ export class TrackingHistoryDto {
|
|
|
31827
32000
|
for (let item of _data["trackingEvents"])
|
|
31828
32001
|
this.trackingEvents.push(TrackingEventDto.fromJS(item));
|
|
31829
32002
|
}
|
|
32003
|
+
this.suggestions = _data["suggestions"] ? SuggestionsItemDto.fromJS(_data["suggestions"]) : undefined;
|
|
31830
32004
|
}
|
|
31831
32005
|
}
|
|
31832
32006
|
static fromJS(data) {
|
|
@@ -31846,6 +32020,7 @@ export class TrackingHistoryDto {
|
|
|
31846
32020
|
for (let item of this.trackingEvents)
|
|
31847
32021
|
data["trackingEvents"].push(item.toJSON());
|
|
31848
32022
|
}
|
|
32023
|
+
data["suggestions"] = this.suggestions ? this.suggestions.toJSON() : undefined;
|
|
31849
32024
|
return data;
|
|
31850
32025
|
}
|
|
31851
32026
|
}
|
|
@@ -32087,6 +32262,7 @@ export class TrackingParcelRequestListDto {
|
|
|
32087
32262
|
this.parcelIds.push(item);
|
|
32088
32263
|
}
|
|
32089
32264
|
this.includeActiveBookings = _data["includeActiveBookings"];
|
|
32265
|
+
this.includeSuggestions = _data["includeSuggestions"];
|
|
32090
32266
|
}
|
|
32091
32267
|
}
|
|
32092
32268
|
static fromJS(data) {
|
|
@@ -32103,6 +32279,7 @@ export class TrackingParcelRequestListDto {
|
|
|
32103
32279
|
data["parcelIds"].push(item);
|
|
32104
32280
|
}
|
|
32105
32281
|
data["includeActiveBookings"] = this.includeActiveBookings;
|
|
32282
|
+
data["includeSuggestions"] = this.includeSuggestions;
|
|
32106
32283
|
return data;
|
|
32107
32284
|
}
|
|
32108
32285
|
}
|
|
@@ -33301,6 +33478,7 @@ export class ProductionOrderOperationActivityDto {
|
|
|
33301
33478
|
this.startedQuantity = _data["startedQuantity"];
|
|
33302
33479
|
this.producedQuantity = _data["producedQuantity"];
|
|
33303
33480
|
this.scrappedQuantity = _data["scrappedQuantity"];
|
|
33481
|
+
this.workType = _data["workType"];
|
|
33304
33482
|
}
|
|
33305
33483
|
}
|
|
33306
33484
|
static fromJS(data) {
|
|
@@ -33323,6 +33501,7 @@ export class ProductionOrderOperationActivityDto {
|
|
|
33323
33501
|
data["startedQuantity"] = this.startedQuantity;
|
|
33324
33502
|
data["producedQuantity"] = this.producedQuantity;
|
|
33325
33503
|
data["scrappedQuantity"] = this.scrappedQuantity;
|
|
33504
|
+
data["workType"] = this.workType;
|
|
33326
33505
|
return data;
|
|
33327
33506
|
}
|
|
33328
33507
|
}
|
|
@@ -34395,6 +34574,7 @@ export class StartOperationDto {
|
|
|
34395
34574
|
this.operationNumber = _data["operationNumber"];
|
|
34396
34575
|
this.startedQuantity = _data["startedQuantity"];
|
|
34397
34576
|
this.resource = _data["resource"];
|
|
34577
|
+
this.workType = _data["workType"];
|
|
34398
34578
|
}
|
|
34399
34579
|
}
|
|
34400
34580
|
static fromJS(data) {
|
|
@@ -34409,6 +34589,7 @@ export class StartOperationDto {
|
|
|
34409
34589
|
data["operationNumber"] = this.operationNumber;
|
|
34410
34590
|
data["startedQuantity"] = this.startedQuantity;
|
|
34411
34591
|
data["resource"] = this.resource;
|
|
34592
|
+
data["workType"] = this.workType;
|
|
34412
34593
|
return data;
|
|
34413
34594
|
}
|
|
34414
34595
|
}
|
|
@@ -35934,6 +36115,7 @@ export class MeasurementFormSettingsDto {
|
|
|
35934
36115
|
this.generateSchemaRequirements = _data["generateSchemaRequirements"];
|
|
35935
36116
|
this.generateSchemaInstances = _data["generateSchemaInstances"];
|
|
35936
36117
|
this.autoCompleteSchemaInstances = _data["autoCompleteSchemaInstances"];
|
|
36118
|
+
this.autoApproveSchemaInstances = _data["autoApproveSchemaInstances"];
|
|
35937
36119
|
this.generateReportForApprovedInstances = _data["generateReportForApprovedInstances"];
|
|
35938
36120
|
this.includeMeasuringToolsInReportAsDefault = _data["includeMeasuringToolsInReportAsDefault"];
|
|
35939
36121
|
this.requireCustomerOnWorkOrders = _data["requireCustomerOnWorkOrders"];
|
|
@@ -35958,6 +36140,7 @@ export class MeasurementFormSettingsDto {
|
|
|
35958
36140
|
data["generateSchemaRequirements"] = this.generateSchemaRequirements;
|
|
35959
36141
|
data["generateSchemaInstances"] = this.generateSchemaInstances;
|
|
35960
36142
|
data["autoCompleteSchemaInstances"] = this.autoCompleteSchemaInstances;
|
|
36143
|
+
data["autoApproveSchemaInstances"] = this.autoApproveSchemaInstances;
|
|
35961
36144
|
data["generateReportForApprovedInstances"] = this.generateReportForApprovedInstances;
|
|
35962
36145
|
data["includeMeasuringToolsInReportAsDefault"] = this.includeMeasuringToolsInReportAsDefault;
|
|
35963
36146
|
data["requireCustomerOnWorkOrders"] = this.requireCustomerOnWorkOrders;
|
|
@@ -35986,6 +36169,7 @@ export class UpdateMeasurementFormSettings {
|
|
|
35986
36169
|
this.generateSchemaRequirements = _data["generateSchemaRequirements"];
|
|
35987
36170
|
this.generateSchemaInstances = _data["generateSchemaInstances"];
|
|
35988
36171
|
this.autoCompleteSchemaInstances = _data["autoCompleteSchemaInstances"];
|
|
36172
|
+
this.autoApproveSchemaInstances = _data["autoApproveSchemaInstances"];
|
|
35989
36173
|
this.generateReportForApprovedInstances = _data["generateReportForApprovedInstances"];
|
|
35990
36174
|
this.includeMeasuringToolsInReportAsDefault = _data["includeMeasuringToolsInReportAsDefault"];
|
|
35991
36175
|
this.requireCustomerOnWorkOrders = _data["requireCustomerOnWorkOrders"];
|
|
@@ -36010,6 +36194,7 @@ export class UpdateMeasurementFormSettings {
|
|
|
36010
36194
|
data["generateSchemaRequirements"] = this.generateSchemaRequirements;
|
|
36011
36195
|
data["generateSchemaInstances"] = this.generateSchemaInstances;
|
|
36012
36196
|
data["autoCompleteSchemaInstances"] = this.autoCompleteSchemaInstances;
|
|
36197
|
+
data["autoApproveSchemaInstances"] = this.autoApproveSchemaInstances;
|
|
36013
36198
|
data["generateReportForApprovedInstances"] = this.generateReportForApprovedInstances;
|
|
36014
36199
|
data["includeMeasuringToolsInReportAsDefault"] = this.includeMeasuringToolsInReportAsDefault;
|
|
36015
36200
|
data["requireCustomerOnWorkOrders"] = this.requireCustomerOnWorkOrders;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -13122,6 +13122,8 @@ export interface IMoveLocationsClient {
|
|
|
13122
13122
|
searchLocations(input: string | null | undefined, locationKinds: LocationKindDto[] | null | undefined, locationProfiles: LocationProfileDto[] | null | undefined): Promise<LocationDto[]>;
|
|
13123
13123
|
|
|
13124
13124
|
suggestionsLocations(locationProfiles: LocationProfileDto[] | null | undefined, count: number | undefined): Promise<LocationDto[]>;
|
|
13125
|
+
|
|
13126
|
+
suggestionsLocations2(locationProfiles: LocationProfileDto[] | null | undefined, parcelId: string | undefined): Promise<SuggestionsResponseDto>;
|
|
13125
13127
|
}
|
|
13126
13128
|
|
|
13127
13129
|
export class MoveLocationsClient extends AuthorizedApiBase implements IMoveLocationsClient {
|
|
@@ -13226,6 +13228,48 @@ export class MoveLocationsClient extends AuthorizedApiBase implements IMoveLocat
|
|
|
13226
13228
|
}
|
|
13227
13229
|
return Promise.resolve<LocationDto[]>(null as any);
|
|
13228
13230
|
}
|
|
13231
|
+
|
|
13232
|
+
suggestionsLocations2(locationProfiles: LocationProfileDto[] | null | undefined, parcelId: string | undefined): Promise<SuggestionsResponseDto> {
|
|
13233
|
+
let url_ = this.baseUrl + "/move/locations/suggestions2?";
|
|
13234
|
+
if (locationProfiles !== undefined && locationProfiles !== null)
|
|
13235
|
+
locationProfiles && locationProfiles.forEach(item => { url_ += "locationProfiles=" + encodeURIComponent("" + item) + "&"; });
|
|
13236
|
+
if (parcelId === null)
|
|
13237
|
+
throw new Error("The parameter 'parcelId' cannot be null.");
|
|
13238
|
+
else if (parcelId !== undefined)
|
|
13239
|
+
url_ += "parcelId=" + encodeURIComponent("" + parcelId) + "&";
|
|
13240
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
13241
|
+
|
|
13242
|
+
let options_: RequestInit = {
|
|
13243
|
+
method: "GET",
|
|
13244
|
+
headers: {
|
|
13245
|
+
"Accept": "application/json"
|
|
13246
|
+
}
|
|
13247
|
+
};
|
|
13248
|
+
|
|
13249
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
13250
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
13251
|
+
}).then((_response: Response) => {
|
|
13252
|
+
return this.processSuggestionsLocations2(_response);
|
|
13253
|
+
});
|
|
13254
|
+
}
|
|
13255
|
+
|
|
13256
|
+
protected processSuggestionsLocations2(response: Response): Promise<SuggestionsResponseDto> {
|
|
13257
|
+
const status = response.status;
|
|
13258
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
13259
|
+
if (status === 200) {
|
|
13260
|
+
return response.text().then((_responseText) => {
|
|
13261
|
+
let result200: any = null;
|
|
13262
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
13263
|
+
result200 = SuggestionsResponseDto.fromJS(resultData200);
|
|
13264
|
+
return result200;
|
|
13265
|
+
});
|
|
13266
|
+
} else if (status !== 200 && status !== 204) {
|
|
13267
|
+
return response.text().then((_responseText) => {
|
|
13268
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
13269
|
+
});
|
|
13270
|
+
}
|
|
13271
|
+
return Promise.resolve<SuggestionsResponseDto>(null as any);
|
|
13272
|
+
}
|
|
13229
13273
|
}
|
|
13230
13274
|
|
|
13231
13275
|
export interface IMoveMaterialsClient {
|
|
@@ -38814,6 +38858,176 @@ export interface IBookingStatusUpdateDto {
|
|
|
38814
38858
|
|
|
38815
38859
|
export type LocationProfileDto = "Cage" | "CantileverRack" | "Deviation" | "Environmental" | "Gate" | "Ground" | "Inbound" | "Logia" | "LogiaTransit" | "Outbound" | "Pack" | "PalletRack" | "Pick" | "Quality" | "Quarantine" | "Resource" | "ShelvingRack";
|
|
38816
38860
|
|
|
38861
|
+
export class SuggestionsResponseDto implements ISuggestionsResponseDto {
|
|
38862
|
+
parcels!: SuggestionsParcelDto[];
|
|
38863
|
+
|
|
38864
|
+
constructor(data?: ISuggestionsResponseDto) {
|
|
38865
|
+
if (data) {
|
|
38866
|
+
for (var property in data) {
|
|
38867
|
+
if (data.hasOwnProperty(property))
|
|
38868
|
+
(<any>this)[property] = (<any>data)[property];
|
|
38869
|
+
}
|
|
38870
|
+
}
|
|
38871
|
+
if (!data) {
|
|
38872
|
+
this.parcels = [];
|
|
38873
|
+
}
|
|
38874
|
+
}
|
|
38875
|
+
|
|
38876
|
+
init(_data?: any) {
|
|
38877
|
+
if (_data) {
|
|
38878
|
+
if (Array.isArray(_data["parcels"])) {
|
|
38879
|
+
this.parcels = [] as any;
|
|
38880
|
+
for (let item of _data["parcels"])
|
|
38881
|
+
this.parcels!.push(SuggestionsParcelDto.fromJS(item));
|
|
38882
|
+
}
|
|
38883
|
+
}
|
|
38884
|
+
}
|
|
38885
|
+
|
|
38886
|
+
static fromJS(data: any): SuggestionsResponseDto {
|
|
38887
|
+
data = typeof data === 'object' ? data : {};
|
|
38888
|
+
let result = new SuggestionsResponseDto();
|
|
38889
|
+
result.init(data);
|
|
38890
|
+
return result;
|
|
38891
|
+
}
|
|
38892
|
+
|
|
38893
|
+
toJSON(data?: any) {
|
|
38894
|
+
data = typeof data === 'object' ? data : {};
|
|
38895
|
+
if (Array.isArray(this.parcels)) {
|
|
38896
|
+
data["parcels"] = [];
|
|
38897
|
+
for (let item of this.parcels)
|
|
38898
|
+
data["parcels"].push(item.toJSON());
|
|
38899
|
+
}
|
|
38900
|
+
return data;
|
|
38901
|
+
}
|
|
38902
|
+
}
|
|
38903
|
+
|
|
38904
|
+
export interface ISuggestionsResponseDto {
|
|
38905
|
+
parcels: SuggestionsParcelDto[];
|
|
38906
|
+
}
|
|
38907
|
+
|
|
38908
|
+
export class SuggestionsParcelDto implements ISuggestionsParcelDto {
|
|
38909
|
+
parcelId!: string;
|
|
38910
|
+
items!: SuggestionsItemDto[];
|
|
38911
|
+
|
|
38912
|
+
constructor(data?: ISuggestionsParcelDto) {
|
|
38913
|
+
if (data) {
|
|
38914
|
+
for (var property in data) {
|
|
38915
|
+
if (data.hasOwnProperty(property))
|
|
38916
|
+
(<any>this)[property] = (<any>data)[property];
|
|
38917
|
+
}
|
|
38918
|
+
}
|
|
38919
|
+
if (!data) {
|
|
38920
|
+
this.items = [];
|
|
38921
|
+
}
|
|
38922
|
+
}
|
|
38923
|
+
|
|
38924
|
+
init(_data?: any) {
|
|
38925
|
+
if (_data) {
|
|
38926
|
+
this.parcelId = _data["parcelId"];
|
|
38927
|
+
if (Array.isArray(_data["items"])) {
|
|
38928
|
+
this.items = [] as any;
|
|
38929
|
+
for (let item of _data["items"])
|
|
38930
|
+
this.items!.push(SuggestionsItemDto.fromJS(item));
|
|
38931
|
+
}
|
|
38932
|
+
}
|
|
38933
|
+
}
|
|
38934
|
+
|
|
38935
|
+
static fromJS(data: any): SuggestionsParcelDto {
|
|
38936
|
+
data = typeof data === 'object' ? data : {};
|
|
38937
|
+
let result = new SuggestionsParcelDto();
|
|
38938
|
+
result.init(data);
|
|
38939
|
+
return result;
|
|
38940
|
+
}
|
|
38941
|
+
|
|
38942
|
+
toJSON(data?: any) {
|
|
38943
|
+
data = typeof data === 'object' ? data : {};
|
|
38944
|
+
data["parcelId"] = this.parcelId;
|
|
38945
|
+
if (Array.isArray(this.items)) {
|
|
38946
|
+
data["items"] = [];
|
|
38947
|
+
for (let item of this.items)
|
|
38948
|
+
data["items"].push(item.toJSON());
|
|
38949
|
+
}
|
|
38950
|
+
return data;
|
|
38951
|
+
}
|
|
38952
|
+
}
|
|
38953
|
+
|
|
38954
|
+
export interface ISuggestionsParcelDto {
|
|
38955
|
+
parcelId: string;
|
|
38956
|
+
items: SuggestionsItemDto[];
|
|
38957
|
+
}
|
|
38958
|
+
|
|
38959
|
+
export class SuggestionsItemDto implements ISuggestionsItemDto {
|
|
38960
|
+
trackingId!: string;
|
|
38961
|
+
fromAutoFill?: LocationDto | null;
|
|
38962
|
+
toAutoFill?: LocationDto | null;
|
|
38963
|
+
fromSuggestions!: LocationDto[];
|
|
38964
|
+
toSuggestions!: LocationDto[];
|
|
38965
|
+
|
|
38966
|
+
constructor(data?: ISuggestionsItemDto) {
|
|
38967
|
+
if (data) {
|
|
38968
|
+
for (var property in data) {
|
|
38969
|
+
if (data.hasOwnProperty(property))
|
|
38970
|
+
(<any>this)[property] = (<any>data)[property];
|
|
38971
|
+
}
|
|
38972
|
+
}
|
|
38973
|
+
if (!data) {
|
|
38974
|
+
this.fromSuggestions = [];
|
|
38975
|
+
this.toSuggestions = [];
|
|
38976
|
+
}
|
|
38977
|
+
}
|
|
38978
|
+
|
|
38979
|
+
init(_data?: any) {
|
|
38980
|
+
if (_data) {
|
|
38981
|
+
this.trackingId = _data["trackingId"];
|
|
38982
|
+
this.fromAutoFill = _data["fromAutoFill"] ? LocationDto.fromJS(_data["fromAutoFill"]) : <any>undefined;
|
|
38983
|
+
this.toAutoFill = _data["toAutoFill"] ? LocationDto.fromJS(_data["toAutoFill"]) : <any>undefined;
|
|
38984
|
+
if (Array.isArray(_data["fromSuggestions"])) {
|
|
38985
|
+
this.fromSuggestions = [] as any;
|
|
38986
|
+
for (let item of _data["fromSuggestions"])
|
|
38987
|
+
this.fromSuggestions!.push(LocationDto.fromJS(item));
|
|
38988
|
+
}
|
|
38989
|
+
if (Array.isArray(_data["toSuggestions"])) {
|
|
38990
|
+
this.toSuggestions = [] as any;
|
|
38991
|
+
for (let item of _data["toSuggestions"])
|
|
38992
|
+
this.toSuggestions!.push(LocationDto.fromJS(item));
|
|
38993
|
+
}
|
|
38994
|
+
}
|
|
38995
|
+
}
|
|
38996
|
+
|
|
38997
|
+
static fromJS(data: any): SuggestionsItemDto {
|
|
38998
|
+
data = typeof data === 'object' ? data : {};
|
|
38999
|
+
let result = new SuggestionsItemDto();
|
|
39000
|
+
result.init(data);
|
|
39001
|
+
return result;
|
|
39002
|
+
}
|
|
39003
|
+
|
|
39004
|
+
toJSON(data?: any) {
|
|
39005
|
+
data = typeof data === 'object' ? data : {};
|
|
39006
|
+
data["trackingId"] = this.trackingId;
|
|
39007
|
+
data["fromAutoFill"] = this.fromAutoFill ? this.fromAutoFill.toJSON() : <any>undefined;
|
|
39008
|
+
data["toAutoFill"] = this.toAutoFill ? this.toAutoFill.toJSON() : <any>undefined;
|
|
39009
|
+
if (Array.isArray(this.fromSuggestions)) {
|
|
39010
|
+
data["fromSuggestions"] = [];
|
|
39011
|
+
for (let item of this.fromSuggestions)
|
|
39012
|
+
data["fromSuggestions"].push(item.toJSON());
|
|
39013
|
+
}
|
|
39014
|
+
if (Array.isArray(this.toSuggestions)) {
|
|
39015
|
+
data["toSuggestions"] = [];
|
|
39016
|
+
for (let item of this.toSuggestions)
|
|
39017
|
+
data["toSuggestions"].push(item.toJSON());
|
|
39018
|
+
}
|
|
39019
|
+
return data;
|
|
39020
|
+
}
|
|
39021
|
+
}
|
|
39022
|
+
|
|
39023
|
+
export interface ISuggestionsItemDto {
|
|
39024
|
+
trackingId: string;
|
|
39025
|
+
fromAutoFill?: LocationDto | null;
|
|
39026
|
+
toAutoFill?: LocationDto | null;
|
|
39027
|
+
fromSuggestions: LocationDto[];
|
|
39028
|
+
toSuggestions: LocationDto[];
|
|
39029
|
+
}
|
|
39030
|
+
|
|
38817
39031
|
export class MaterialDesciptionDto implements IMaterialDesciptionDto {
|
|
38818
39032
|
materialId!: string;
|
|
38819
39033
|
materialName!: string;
|
|
@@ -39139,6 +39353,7 @@ export class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
|
39139
39353
|
activeBooking?: boolean | null;
|
|
39140
39354
|
currentTracking?: TrackingEventDto | null;
|
|
39141
39355
|
trackingEvents!: TrackingEventDto[];
|
|
39356
|
+
suggestions?: SuggestionsItemDto | null;
|
|
39142
39357
|
|
|
39143
39358
|
constructor(data?: ITrackingHistoryDto) {
|
|
39144
39359
|
if (data) {
|
|
@@ -39163,6 +39378,7 @@ export class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
|
39163
39378
|
for (let item of _data["trackingEvents"])
|
|
39164
39379
|
this.trackingEvents!.push(TrackingEventDto.fromJS(item));
|
|
39165
39380
|
}
|
|
39381
|
+
this.suggestions = _data["suggestions"] ? SuggestionsItemDto.fromJS(_data["suggestions"]) : <any>undefined;
|
|
39166
39382
|
}
|
|
39167
39383
|
}
|
|
39168
39384
|
|
|
@@ -39184,6 +39400,7 @@ export class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
|
39184
39400
|
for (let item of this.trackingEvents)
|
|
39185
39401
|
data["trackingEvents"].push(item.toJSON());
|
|
39186
39402
|
}
|
|
39403
|
+
data["suggestions"] = this.suggestions ? this.suggestions.toJSON() : <any>undefined;
|
|
39187
39404
|
return data;
|
|
39188
39405
|
}
|
|
39189
39406
|
}
|
|
@@ -39194,6 +39411,7 @@ export interface ITrackingHistoryDto {
|
|
|
39194
39411
|
activeBooking?: boolean | null;
|
|
39195
39412
|
currentTracking?: TrackingEventDto | null;
|
|
39196
39413
|
trackingEvents: TrackingEventDto[];
|
|
39414
|
+
suggestions?: SuggestionsItemDto | null;
|
|
39197
39415
|
}
|
|
39198
39416
|
|
|
39199
39417
|
export class TrackingEventDto implements ITrackingEventDto {
|
|
@@ -39511,6 +39729,7 @@ export interface ITrackingHistoryFlattenedDto {
|
|
|
39511
39729
|
export class TrackingParcelRequestListDto implements ITrackingParcelRequestListDto {
|
|
39512
39730
|
parcelIds!: string[];
|
|
39513
39731
|
includeActiveBookings!: boolean;
|
|
39732
|
+
includeSuggestions?: boolean | null;
|
|
39514
39733
|
|
|
39515
39734
|
constructor(data?: ITrackingParcelRequestListDto) {
|
|
39516
39735
|
if (data) {
|
|
@@ -39532,6 +39751,7 @@ export class TrackingParcelRequestListDto implements ITrackingParcelRequestListD
|
|
|
39532
39751
|
this.parcelIds!.push(item);
|
|
39533
39752
|
}
|
|
39534
39753
|
this.includeActiveBookings = _data["includeActiveBookings"];
|
|
39754
|
+
this.includeSuggestions = _data["includeSuggestions"];
|
|
39535
39755
|
}
|
|
39536
39756
|
}
|
|
39537
39757
|
|
|
@@ -39550,6 +39770,7 @@ export class TrackingParcelRequestListDto implements ITrackingParcelRequestListD
|
|
|
39550
39770
|
data["parcelIds"].push(item);
|
|
39551
39771
|
}
|
|
39552
39772
|
data["includeActiveBookings"] = this.includeActiveBookings;
|
|
39773
|
+
data["includeSuggestions"] = this.includeSuggestions;
|
|
39553
39774
|
return data;
|
|
39554
39775
|
}
|
|
39555
39776
|
}
|
|
@@ -39557,6 +39778,7 @@ export class TrackingParcelRequestListDto implements ITrackingParcelRequestListD
|
|
|
39557
39778
|
export interface ITrackingParcelRequestListDto {
|
|
39558
39779
|
parcelIds: string[];
|
|
39559
39780
|
includeActiveBookings: boolean;
|
|
39781
|
+
includeSuggestions?: boolean | null;
|
|
39560
39782
|
}
|
|
39561
39783
|
|
|
39562
39784
|
export class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
@@ -41358,6 +41580,7 @@ export class ProductionOrderOperationActivityDto implements IProductionOrderOper
|
|
|
41358
41580
|
startedQuantity?: number | null;
|
|
41359
41581
|
producedQuantity?: number | null;
|
|
41360
41582
|
scrappedQuantity?: number | null;
|
|
41583
|
+
workType!: WorkTypeDto;
|
|
41361
41584
|
|
|
41362
41585
|
constructor(data?: IProductionOrderOperationActivityDto) {
|
|
41363
41586
|
if (data) {
|
|
@@ -41382,6 +41605,7 @@ export class ProductionOrderOperationActivityDto implements IProductionOrderOper
|
|
|
41382
41605
|
this.startedQuantity = _data["startedQuantity"];
|
|
41383
41606
|
this.producedQuantity = _data["producedQuantity"];
|
|
41384
41607
|
this.scrappedQuantity = _data["scrappedQuantity"];
|
|
41608
|
+
this.workType = _data["workType"];
|
|
41385
41609
|
}
|
|
41386
41610
|
}
|
|
41387
41611
|
|
|
@@ -41406,6 +41630,7 @@ export class ProductionOrderOperationActivityDto implements IProductionOrderOper
|
|
|
41406
41630
|
data["startedQuantity"] = this.startedQuantity;
|
|
41407
41631
|
data["producedQuantity"] = this.producedQuantity;
|
|
41408
41632
|
data["scrappedQuantity"] = this.scrappedQuantity;
|
|
41633
|
+
data["workType"] = this.workType;
|
|
41409
41634
|
return data;
|
|
41410
41635
|
}
|
|
41411
41636
|
}
|
|
@@ -41423,8 +41648,11 @@ export interface IProductionOrderOperationActivityDto {
|
|
|
41423
41648
|
startedQuantity?: number | null;
|
|
41424
41649
|
producedQuantity?: number | null;
|
|
41425
41650
|
scrappedQuantity?: number | null;
|
|
41651
|
+
workType: WorkTypeDto;
|
|
41426
41652
|
}
|
|
41427
41653
|
|
|
41654
|
+
export type WorkTypeDto = "None" | "Production" | "Setup";
|
|
41655
|
+
|
|
41428
41656
|
export class GeneratePrintableLabel implements IGeneratePrintableLabel {
|
|
41429
41657
|
labelIds!: LabelId[];
|
|
41430
41658
|
|
|
@@ -42842,8 +43070,6 @@ export interface ICurrentWorkDto {
|
|
|
42842
43070
|
workType: WorkTypeDto;
|
|
42843
43071
|
}
|
|
42844
43072
|
|
|
42845
|
-
export type WorkTypeDto = "None" | "Production" | "Setup";
|
|
42846
|
-
|
|
42847
43073
|
export class StoppedWorkDto implements IStoppedWorkDto {
|
|
42848
43074
|
operation!: ProductionScheduleOperationDto;
|
|
42849
43075
|
lastWorkActivity!: CurrentWorkDto;
|
|
@@ -42944,6 +43170,7 @@ export class StartOperationDto implements IStartOperationDto {
|
|
|
42944
43170
|
operationNumber!: number;
|
|
42945
43171
|
startedQuantity?: number | null;
|
|
42946
43172
|
resource!: string;
|
|
43173
|
+
workType?: WorkTypeDto;
|
|
42947
43174
|
|
|
42948
43175
|
constructor(data?: IStartOperationDto) {
|
|
42949
43176
|
if (data) {
|
|
@@ -42960,6 +43187,7 @@ export class StartOperationDto implements IStartOperationDto {
|
|
|
42960
43187
|
this.operationNumber = _data["operationNumber"];
|
|
42961
43188
|
this.startedQuantity = _data["startedQuantity"];
|
|
42962
43189
|
this.resource = _data["resource"];
|
|
43190
|
+
this.workType = _data["workType"];
|
|
42963
43191
|
}
|
|
42964
43192
|
}
|
|
42965
43193
|
|
|
@@ -42976,6 +43204,7 @@ export class StartOperationDto implements IStartOperationDto {
|
|
|
42976
43204
|
data["operationNumber"] = this.operationNumber;
|
|
42977
43205
|
data["startedQuantity"] = this.startedQuantity;
|
|
42978
43206
|
data["resource"] = this.resource;
|
|
43207
|
+
data["workType"] = this.workType;
|
|
42979
43208
|
return data;
|
|
42980
43209
|
}
|
|
42981
43210
|
}
|
|
@@ -42985,6 +43214,7 @@ export interface IStartOperationDto {
|
|
|
42985
43214
|
operationNumber: number;
|
|
42986
43215
|
startedQuantity?: number | null;
|
|
42987
43216
|
resource: string;
|
|
43217
|
+
workType?: WorkTypeDto;
|
|
42988
43218
|
}
|
|
42989
43219
|
|
|
42990
43220
|
export class ReportOperationProgress implements IReportOperationProgress {
|
|
@@ -45361,6 +45591,7 @@ export class MeasurementFormSettingsDto implements IMeasurementFormSettingsDto {
|
|
|
45361
45591
|
generateSchemaRequirements!: boolean;
|
|
45362
45592
|
generateSchemaInstances!: boolean;
|
|
45363
45593
|
autoCompleteSchemaInstances!: boolean;
|
|
45594
|
+
autoApproveSchemaInstances!: boolean;
|
|
45364
45595
|
generateReportForApprovedInstances!: boolean;
|
|
45365
45596
|
includeMeasuringToolsInReportAsDefault!: boolean;
|
|
45366
45597
|
requireCustomerOnWorkOrders!: boolean;
|
|
@@ -45383,6 +45614,7 @@ export class MeasurementFormSettingsDto implements IMeasurementFormSettingsDto {
|
|
|
45383
45614
|
this.generateSchemaRequirements = _data["generateSchemaRequirements"];
|
|
45384
45615
|
this.generateSchemaInstances = _data["generateSchemaInstances"];
|
|
45385
45616
|
this.autoCompleteSchemaInstances = _data["autoCompleteSchemaInstances"];
|
|
45617
|
+
this.autoApproveSchemaInstances = _data["autoApproveSchemaInstances"];
|
|
45386
45618
|
this.generateReportForApprovedInstances = _data["generateReportForApprovedInstances"];
|
|
45387
45619
|
this.includeMeasuringToolsInReportAsDefault = _data["includeMeasuringToolsInReportAsDefault"];
|
|
45388
45620
|
this.requireCustomerOnWorkOrders = _data["requireCustomerOnWorkOrders"];
|
|
@@ -45409,6 +45641,7 @@ export class MeasurementFormSettingsDto implements IMeasurementFormSettingsDto {
|
|
|
45409
45641
|
data["generateSchemaRequirements"] = this.generateSchemaRequirements;
|
|
45410
45642
|
data["generateSchemaInstances"] = this.generateSchemaInstances;
|
|
45411
45643
|
data["autoCompleteSchemaInstances"] = this.autoCompleteSchemaInstances;
|
|
45644
|
+
data["autoApproveSchemaInstances"] = this.autoApproveSchemaInstances;
|
|
45412
45645
|
data["generateReportForApprovedInstances"] = this.generateReportForApprovedInstances;
|
|
45413
45646
|
data["includeMeasuringToolsInReportAsDefault"] = this.includeMeasuringToolsInReportAsDefault;
|
|
45414
45647
|
data["requireCustomerOnWorkOrders"] = this.requireCustomerOnWorkOrders;
|
|
@@ -45428,6 +45661,7 @@ export interface IMeasurementFormSettingsDto {
|
|
|
45428
45661
|
generateSchemaRequirements: boolean;
|
|
45429
45662
|
generateSchemaInstances: boolean;
|
|
45430
45663
|
autoCompleteSchemaInstances: boolean;
|
|
45664
|
+
autoApproveSchemaInstances: boolean;
|
|
45431
45665
|
generateReportForApprovedInstances: boolean;
|
|
45432
45666
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
45433
45667
|
requireCustomerOnWorkOrders: boolean;
|
|
@@ -45441,6 +45675,7 @@ export class UpdateMeasurementFormSettings implements IUpdateMeasurementFormSett
|
|
|
45441
45675
|
generateSchemaRequirements!: boolean;
|
|
45442
45676
|
generateSchemaInstances!: boolean;
|
|
45443
45677
|
autoCompleteSchemaInstances!: boolean;
|
|
45678
|
+
autoApproveSchemaInstances!: boolean;
|
|
45444
45679
|
generateReportForApprovedInstances!: boolean;
|
|
45445
45680
|
includeMeasuringToolsInReportAsDefault!: boolean;
|
|
45446
45681
|
requireCustomerOnWorkOrders!: boolean;
|
|
@@ -45463,6 +45698,7 @@ export class UpdateMeasurementFormSettings implements IUpdateMeasurementFormSett
|
|
|
45463
45698
|
this.generateSchemaRequirements = _data["generateSchemaRequirements"];
|
|
45464
45699
|
this.generateSchemaInstances = _data["generateSchemaInstances"];
|
|
45465
45700
|
this.autoCompleteSchemaInstances = _data["autoCompleteSchemaInstances"];
|
|
45701
|
+
this.autoApproveSchemaInstances = _data["autoApproveSchemaInstances"];
|
|
45466
45702
|
this.generateReportForApprovedInstances = _data["generateReportForApprovedInstances"];
|
|
45467
45703
|
this.includeMeasuringToolsInReportAsDefault = _data["includeMeasuringToolsInReportAsDefault"];
|
|
45468
45704
|
this.requireCustomerOnWorkOrders = _data["requireCustomerOnWorkOrders"];
|
|
@@ -45489,6 +45725,7 @@ export class UpdateMeasurementFormSettings implements IUpdateMeasurementFormSett
|
|
|
45489
45725
|
data["generateSchemaRequirements"] = this.generateSchemaRequirements;
|
|
45490
45726
|
data["generateSchemaInstances"] = this.generateSchemaInstances;
|
|
45491
45727
|
data["autoCompleteSchemaInstances"] = this.autoCompleteSchemaInstances;
|
|
45728
|
+
data["autoApproveSchemaInstances"] = this.autoApproveSchemaInstances;
|
|
45492
45729
|
data["generateReportForApprovedInstances"] = this.generateReportForApprovedInstances;
|
|
45493
45730
|
data["includeMeasuringToolsInReportAsDefault"] = this.includeMeasuringToolsInReportAsDefault;
|
|
45494
45731
|
data["requireCustomerOnWorkOrders"] = this.requireCustomerOnWorkOrders;
|
|
@@ -45508,6 +45745,7 @@ export interface IUpdateMeasurementFormSettings {
|
|
|
45508
45745
|
generateSchemaRequirements: boolean;
|
|
45509
45746
|
generateSchemaInstances: boolean;
|
|
45510
45747
|
autoCompleteSchemaInstances: boolean;
|
|
45748
|
+
autoApproveSchemaInstances: boolean;
|
|
45511
45749
|
generateReportForApprovedInstances: boolean;
|
|
45512
45750
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
45513
45751
|
requireCustomerOnWorkOrders: boolean;
|