@ignos/api-client 20251023.0.12963 → 20251023.0.12976
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 +12 -6
- package/lib/ignosportal-api.js +22 -26
- package/package.json +1 -1
- package/src/ignosportal-api.ts +36 -32
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -1692,7 +1692,7 @@ export interface IMoveBookingClient {
|
|
|
1692
1692
|
createBookingGeneral(bookingRequest: BookingGeneralRequestDto): Promise<BookingDto[]>;
|
|
1693
1693
|
preBookGeneral(req: PreBookingGeneralRequestDto): Promise<PreBookingResultItemDto[]>;
|
|
1694
1694
|
updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
|
|
1695
|
-
exportBookings(includeTracking: boolean | undefined): Promise<
|
|
1695
|
+
exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
|
|
1696
1696
|
}
|
|
1697
1697
|
export declare class MoveBookingClient extends AuthorizedApiBase implements IMoveBookingClient {
|
|
1698
1698
|
private http;
|
|
@@ -1719,8 +1719,8 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
|
|
|
1719
1719
|
protected processPreBookGeneral(response: Response): Promise<PreBookingResultItemDto[]>;
|
|
1720
1720
|
updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
|
|
1721
1721
|
protected processUpdateBookingStatus(response: Response): Promise<BookingDto>;
|
|
1722
|
-
exportBookings(includeTracking: boolean | undefined): Promise<
|
|
1723
|
-
protected processExportBookings(response: Response): Promise<
|
|
1722
|
+
exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
|
|
1723
|
+
protected processExportBookings(response: Response): Promise<DownloadDto>;
|
|
1724
1724
|
}
|
|
1725
1725
|
export interface IMoveLocationsClient {
|
|
1726
1726
|
listLocations(): Promise<LocationZoneGroupDto[]>;
|
|
@@ -1813,7 +1813,7 @@ export interface IMoveTrackingClient {
|
|
|
1813
1813
|
createTrackingEvents(trackingUpdates: TrackingUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1814
1814
|
createTrackingHistory(trackingUpdates: TrackingHistoryUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1815
1815
|
deleteTrackingHistory(trackingId: string): Promise<void>;
|
|
1816
|
-
exportParcels(): Promise<
|
|
1816
|
+
exportParcels(): Promise<DownloadDto>;
|
|
1817
1817
|
}
|
|
1818
1818
|
export declare class MoveTrackingClient extends AuthorizedApiBase implements IMoveTrackingClient {
|
|
1819
1819
|
private http;
|
|
@@ -1838,8 +1838,8 @@ export declare class MoveTrackingClient extends AuthorizedApiBase implements IMo
|
|
|
1838
1838
|
protected processCreateTrackingHistory(response: Response): Promise<TrackingHistoryDto[]>;
|
|
1839
1839
|
deleteTrackingHistory(trackingId: string): Promise<void>;
|
|
1840
1840
|
protected processDeleteTrackingHistory(response: Response): Promise<void>;
|
|
1841
|
-
exportParcels(): Promise<
|
|
1842
|
-
protected processExportParcels(response: Response): Promise<
|
|
1841
|
+
exportParcels(): Promise<DownloadDto>;
|
|
1842
|
+
protected processExportParcels(response: Response): Promise<DownloadDto>;
|
|
1843
1843
|
}
|
|
1844
1844
|
export interface IParcelCategoryClient {
|
|
1845
1845
|
getSettings(): Promise<ParcelCategorySettingsDto>;
|
|
@@ -10765,6 +10765,7 @@ export declare class ProductionOrderOperationDto implements IProductionOrderOper
|
|
|
10765
10765
|
quantity: number;
|
|
10766
10766
|
startedQuantity?: number | null;
|
|
10767
10767
|
ongoingQuantity?: number | null;
|
|
10768
|
+
earlierOperationsScrappedQuantity: number;
|
|
10768
10769
|
availableToStartQuantity: number;
|
|
10769
10770
|
workInstructions?: string | null;
|
|
10770
10771
|
note?: string | null;
|
|
@@ -10802,6 +10803,7 @@ export interface IProductionOrderOperationDto {
|
|
|
10802
10803
|
quantity: number;
|
|
10803
10804
|
startedQuantity?: number | null;
|
|
10804
10805
|
ongoingQuantity?: number | null;
|
|
10806
|
+
earlierOperationsScrappedQuantity: number;
|
|
10805
10807
|
availableToStartQuantity: number;
|
|
10806
10808
|
workInstructions?: string | null;
|
|
10807
10809
|
note?: string | null;
|
|
@@ -11225,6 +11227,7 @@ export declare class ProductionScheduleOperationDto implements IProductionSchedu
|
|
|
11225
11227
|
producedQuantity: number;
|
|
11226
11228
|
scrappedQuantity: number;
|
|
11227
11229
|
availableToStartQuantity: number;
|
|
11230
|
+
earlierOperationsScrappedQuantity: number;
|
|
11228
11231
|
startedQuantity?: number | null;
|
|
11229
11232
|
ongoingQuantity?: number | null;
|
|
11230
11233
|
project?: WorkOrderProjectDto | null;
|
|
@@ -11279,6 +11282,7 @@ export interface IProductionScheduleOperationDto {
|
|
|
11279
11282
|
producedQuantity: number;
|
|
11280
11283
|
scrappedQuantity: number;
|
|
11281
11284
|
availableToStartQuantity: number;
|
|
11285
|
+
earlierOperationsScrappedQuantity: number;
|
|
11282
11286
|
startedQuantity?: number | null;
|
|
11283
11287
|
ongoingQuantity?: number | null;
|
|
11284
11288
|
project?: WorkOrderProjectDto | null;
|
|
@@ -11325,6 +11329,7 @@ export declare class SurroundingOperationDto implements ISurroundingOperationDto
|
|
|
11325
11329
|
resourceDepartmentName?: string | null;
|
|
11326
11330
|
producedQuantity: number;
|
|
11327
11331
|
scrappedQuantity: number;
|
|
11332
|
+
earlierOperationsScrappedQuantity: number;
|
|
11328
11333
|
startedQuantity?: number | null;
|
|
11329
11334
|
constructor(data?: ISurroundingOperationDto);
|
|
11330
11335
|
init(_data?: any): void;
|
|
@@ -11347,6 +11352,7 @@ export interface ISurroundingOperationDto {
|
|
|
11347
11352
|
resourceDepartmentName?: string | null;
|
|
11348
11353
|
producedQuantity: number;
|
|
11349
11354
|
scrappedQuantity: number;
|
|
11355
|
+
earlierOperationsScrappedQuantity: number;
|
|
11350
11356
|
startedQuantity?: number | null;
|
|
11351
11357
|
}
|
|
11352
11358
|
export declare class OperationPrerequisitesDto implements IOperationPrerequisitesDto {
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -14613,7 +14613,7 @@ export class MoveBookingClient extends AuthorizedApiBase {
|
|
|
14613
14613
|
let options_ = {
|
|
14614
14614
|
method: "POST",
|
|
14615
14615
|
headers: {
|
|
14616
|
-
"Accept": "application/
|
|
14616
|
+
"Accept": "application/json"
|
|
14617
14617
|
}
|
|
14618
14618
|
};
|
|
14619
14619
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
@@ -14629,18 +14629,13 @@ export class MoveBookingClient extends AuthorizedApiBase {
|
|
|
14629
14629
|
response.headers.forEach((v, k) => _headers[k] = v);
|
|
14630
14630
|
}
|
|
14631
14631
|
;
|
|
14632
|
-
if (status === 200
|
|
14633
|
-
|
|
14634
|
-
|
|
14635
|
-
|
|
14636
|
-
|
|
14637
|
-
|
|
14638
|
-
}
|
|
14639
|
-
else {
|
|
14640
|
-
fileNameMatch = contentDisposition ? /filename="?([^"]*?)"?(;|$)/g.exec(contentDisposition) : undefined;
|
|
14641
|
-
fileName = fileNameMatch && fileNameMatch.length > 1 ? fileNameMatch[1] : undefined;
|
|
14642
|
-
}
|
|
14643
|
-
return response.blob().then(blob => { return { fileName: fileName, data: blob, status: status, headers: _headers }; });
|
|
14632
|
+
if (status === 200) {
|
|
14633
|
+
return response.text().then((_responseText) => {
|
|
14634
|
+
let result200 = null;
|
|
14635
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
14636
|
+
result200 = DownloadDto.fromJS(resultData200);
|
|
14637
|
+
return result200;
|
|
14638
|
+
});
|
|
14644
14639
|
}
|
|
14645
14640
|
else if (status !== 200 && status !== 204) {
|
|
14646
14641
|
return response.text().then((_responseText) => {
|
|
@@ -15611,7 +15606,7 @@ export class MoveTrackingClient extends AuthorizedApiBase {
|
|
|
15611
15606
|
let options_ = {
|
|
15612
15607
|
method: "POST",
|
|
15613
15608
|
headers: {
|
|
15614
|
-
"Accept": "application/
|
|
15609
|
+
"Accept": "application/json"
|
|
15615
15610
|
}
|
|
15616
15611
|
};
|
|
15617
15612
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
@@ -15627,18 +15622,13 @@ export class MoveTrackingClient extends AuthorizedApiBase {
|
|
|
15627
15622
|
response.headers.forEach((v, k) => _headers[k] = v);
|
|
15628
15623
|
}
|
|
15629
15624
|
;
|
|
15630
|
-
if (status === 200
|
|
15631
|
-
|
|
15632
|
-
|
|
15633
|
-
|
|
15634
|
-
|
|
15635
|
-
|
|
15636
|
-
}
|
|
15637
|
-
else {
|
|
15638
|
-
fileNameMatch = contentDisposition ? /filename="?([^"]*?)"?(;|$)/g.exec(contentDisposition) : undefined;
|
|
15639
|
-
fileName = fileNameMatch && fileNameMatch.length > 1 ? fileNameMatch[1] : undefined;
|
|
15640
|
-
}
|
|
15641
|
-
return response.blob().then(blob => { return { fileName: fileName, data: blob, status: status, headers: _headers }; });
|
|
15625
|
+
if (status === 200) {
|
|
15626
|
+
return response.text().then((_responseText) => {
|
|
15627
|
+
let result200 = null;
|
|
15628
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
15629
|
+
result200 = DownloadDto.fromJS(resultData200);
|
|
15630
|
+
return result200;
|
|
15631
|
+
});
|
|
15642
15632
|
}
|
|
15643
15633
|
else if (status !== 200 && status !== 204) {
|
|
15644
15634
|
return response.text().then((_responseText) => {
|
|
@@ -40065,6 +40055,7 @@ export class ProductionOrderOperationDto {
|
|
|
40065
40055
|
this.quantity = _data["quantity"];
|
|
40066
40056
|
this.startedQuantity = _data["startedQuantity"];
|
|
40067
40057
|
this.ongoingQuantity = _data["ongoingQuantity"];
|
|
40058
|
+
this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
|
|
40068
40059
|
this.availableToStartQuantity = _data["availableToStartQuantity"];
|
|
40069
40060
|
this.workInstructions = _data["workInstructions"];
|
|
40070
40061
|
this.note = _data["note"];
|
|
@@ -40106,6 +40097,7 @@ export class ProductionOrderOperationDto {
|
|
|
40106
40097
|
data["quantity"] = this.quantity;
|
|
40107
40098
|
data["startedQuantity"] = this.startedQuantity;
|
|
40108
40099
|
data["ongoingQuantity"] = this.ongoingQuantity;
|
|
40100
|
+
data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
|
|
40109
40101
|
data["availableToStartQuantity"] = this.availableToStartQuantity;
|
|
40110
40102
|
data["workInstructions"] = this.workInstructions;
|
|
40111
40103
|
data["note"] = this.note;
|
|
@@ -40909,6 +40901,7 @@ export class ProductionScheduleOperationDto {
|
|
|
40909
40901
|
this.producedQuantity = _data["producedQuantity"];
|
|
40910
40902
|
this.scrappedQuantity = _data["scrappedQuantity"];
|
|
40911
40903
|
this.availableToStartQuantity = _data["availableToStartQuantity"];
|
|
40904
|
+
this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
|
|
40912
40905
|
this.startedQuantity = _data["startedQuantity"];
|
|
40913
40906
|
this.ongoingQuantity = _data["ongoingQuantity"];
|
|
40914
40907
|
this.project = _data["project"] ? WorkOrderProjectDto.fromJS(_data["project"]) : undefined;
|
|
@@ -40967,6 +40960,7 @@ export class ProductionScheduleOperationDto {
|
|
|
40967
40960
|
data["producedQuantity"] = this.producedQuantity;
|
|
40968
40961
|
data["scrappedQuantity"] = this.scrappedQuantity;
|
|
40969
40962
|
data["availableToStartQuantity"] = this.availableToStartQuantity;
|
|
40963
|
+
data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
|
|
40970
40964
|
data["startedQuantity"] = this.startedQuantity;
|
|
40971
40965
|
data["ongoingQuantity"] = this.ongoingQuantity;
|
|
40972
40966
|
data["project"] = this.project ? this.project.toJSON() : undefined;
|
|
@@ -41025,6 +41019,7 @@ export class SurroundingOperationDto {
|
|
|
41025
41019
|
this.resourceDepartmentName = _data["resourceDepartmentName"];
|
|
41026
41020
|
this.producedQuantity = _data["producedQuantity"];
|
|
41027
41021
|
this.scrappedQuantity = _data["scrappedQuantity"];
|
|
41022
|
+
this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
|
|
41028
41023
|
this.startedQuantity = _data["startedQuantity"];
|
|
41029
41024
|
}
|
|
41030
41025
|
}
|
|
@@ -41051,6 +41046,7 @@ export class SurroundingOperationDto {
|
|
|
41051
41046
|
data["resourceDepartmentName"] = this.resourceDepartmentName;
|
|
41052
41047
|
data["producedQuantity"] = this.producedQuantity;
|
|
41053
41048
|
data["scrappedQuantity"] = this.scrappedQuantity;
|
|
41049
|
+
data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
|
|
41054
41050
|
data["startedQuantity"] = this.startedQuantity;
|
|
41055
41051
|
return data;
|
|
41056
41052
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -15180,7 +15180,7 @@ export interface IMoveBookingClient {
|
|
|
15180
15180
|
|
|
15181
15181
|
updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
|
|
15182
15182
|
|
|
15183
|
-
exportBookings(includeTracking: boolean | undefined): Promise<
|
|
15183
|
+
exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
|
|
15184
15184
|
}
|
|
15185
15185
|
|
|
15186
15186
|
export class MoveBookingClient extends AuthorizedApiBase implements IMoveBookingClient {
|
|
@@ -15568,7 +15568,7 @@ export class MoveBookingClient extends AuthorizedApiBase implements IMoveBooking
|
|
|
15568
15568
|
return Promise.resolve<BookingDto>(null as any);
|
|
15569
15569
|
}
|
|
15570
15570
|
|
|
15571
|
-
exportBookings(includeTracking: boolean | undefined): Promise<
|
|
15571
|
+
exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto> {
|
|
15572
15572
|
let url_ = this.baseUrl + "/move/booking/export?";
|
|
15573
15573
|
if (includeTracking === null)
|
|
15574
15574
|
throw new globalThis.Error("The parameter 'includeTracking' cannot be null.");
|
|
@@ -15579,7 +15579,7 @@ export class MoveBookingClient extends AuthorizedApiBase implements IMoveBooking
|
|
|
15579
15579
|
let options_: RequestInit = {
|
|
15580
15580
|
method: "POST",
|
|
15581
15581
|
headers: {
|
|
15582
|
-
"Accept": "application/
|
|
15582
|
+
"Accept": "application/json"
|
|
15583
15583
|
}
|
|
15584
15584
|
};
|
|
15585
15585
|
|
|
@@ -15590,26 +15590,22 @@ export class MoveBookingClient extends AuthorizedApiBase implements IMoveBooking
|
|
|
15590
15590
|
});
|
|
15591
15591
|
}
|
|
15592
15592
|
|
|
15593
|
-
protected processExportBookings(response: Response): Promise<
|
|
15593
|
+
protected processExportBookings(response: Response): Promise<DownloadDto> {
|
|
15594
15594
|
const status = response.status;
|
|
15595
15595
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
15596
|
-
if (status === 200
|
|
15597
|
-
|
|
15598
|
-
let
|
|
15599
|
-
let
|
|
15600
|
-
|
|
15601
|
-
|
|
15602
|
-
}
|
|
15603
|
-
fileNameMatch = contentDisposition ? /filename="?([^"]*?)"?(;|$)/g.exec(contentDisposition) : undefined;
|
|
15604
|
-
fileName = fileNameMatch && fileNameMatch.length > 1 ? fileNameMatch[1] : undefined;
|
|
15605
|
-
}
|
|
15606
|
-
return response.blob().then(blob => { return { fileName: fileName, data: blob, status: status, headers: _headers }; });
|
|
15596
|
+
if (status === 200) {
|
|
15597
|
+
return response.text().then((_responseText) => {
|
|
15598
|
+
let result200: any = null;
|
|
15599
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
15600
|
+
result200 = DownloadDto.fromJS(resultData200);
|
|
15601
|
+
return result200;
|
|
15602
|
+
});
|
|
15607
15603
|
} else if (status !== 200 && status !== 204) {
|
|
15608
15604
|
return response.text().then((_responseText) => {
|
|
15609
15605
|
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
15610
15606
|
});
|
|
15611
15607
|
}
|
|
15612
|
-
return Promise.resolve<
|
|
15608
|
+
return Promise.resolve<DownloadDto>(null as any);
|
|
15613
15609
|
}
|
|
15614
15610
|
}
|
|
15615
15611
|
|
|
@@ -16292,7 +16288,7 @@ export interface IMoveTrackingClient {
|
|
|
16292
16288
|
|
|
16293
16289
|
deleteTrackingHistory(trackingId: string): Promise<void>;
|
|
16294
16290
|
|
|
16295
|
-
exportParcels(): Promise<
|
|
16291
|
+
exportParcels(): Promise<DownloadDto>;
|
|
16296
16292
|
}
|
|
16297
16293
|
|
|
16298
16294
|
export class MoveTrackingClient extends AuthorizedApiBase implements IMoveTrackingClient {
|
|
@@ -16639,14 +16635,14 @@ export class MoveTrackingClient extends AuthorizedApiBase implements IMoveTracki
|
|
|
16639
16635
|
return Promise.resolve<void>(null as any);
|
|
16640
16636
|
}
|
|
16641
16637
|
|
|
16642
|
-
exportParcels(): Promise<
|
|
16638
|
+
exportParcels(): Promise<DownloadDto> {
|
|
16643
16639
|
let url_ = this.baseUrl + "/move/tracking/export";
|
|
16644
16640
|
url_ = url_.replace(/[?&]$/, "");
|
|
16645
16641
|
|
|
16646
16642
|
let options_: RequestInit = {
|
|
16647
16643
|
method: "POST",
|
|
16648
16644
|
headers: {
|
|
16649
|
-
"Accept": "application/
|
|
16645
|
+
"Accept": "application/json"
|
|
16650
16646
|
}
|
|
16651
16647
|
};
|
|
16652
16648
|
|
|
@@ -16657,26 +16653,22 @@ export class MoveTrackingClient extends AuthorizedApiBase implements IMoveTracki
|
|
|
16657
16653
|
});
|
|
16658
16654
|
}
|
|
16659
16655
|
|
|
16660
|
-
protected processExportParcels(response: Response): Promise<
|
|
16656
|
+
protected processExportParcels(response: Response): Promise<DownloadDto> {
|
|
16661
16657
|
const status = response.status;
|
|
16662
16658
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
16663
|
-
if (status === 200
|
|
16664
|
-
|
|
16665
|
-
let
|
|
16666
|
-
let
|
|
16667
|
-
|
|
16668
|
-
|
|
16669
|
-
}
|
|
16670
|
-
fileNameMatch = contentDisposition ? /filename="?([^"]*?)"?(;|$)/g.exec(contentDisposition) : undefined;
|
|
16671
|
-
fileName = fileNameMatch && fileNameMatch.length > 1 ? fileNameMatch[1] : undefined;
|
|
16672
|
-
}
|
|
16673
|
-
return response.blob().then(blob => { return { fileName: fileName, data: blob, status: status, headers: _headers }; });
|
|
16659
|
+
if (status === 200) {
|
|
16660
|
+
return response.text().then((_responseText) => {
|
|
16661
|
+
let result200: any = null;
|
|
16662
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
16663
|
+
result200 = DownloadDto.fromJS(resultData200);
|
|
16664
|
+
return result200;
|
|
16665
|
+
});
|
|
16674
16666
|
} else if (status !== 200 && status !== 204) {
|
|
16675
16667
|
return response.text().then((_responseText) => {
|
|
16676
16668
|
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
16677
16669
|
});
|
|
16678
16670
|
}
|
|
16679
|
-
return Promise.resolve<
|
|
16671
|
+
return Promise.resolve<DownloadDto>(null as any);
|
|
16680
16672
|
}
|
|
16681
16673
|
}
|
|
16682
16674
|
|
|
@@ -49572,6 +49564,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
|
|
|
49572
49564
|
quantity!: number;
|
|
49573
49565
|
startedQuantity?: number | null;
|
|
49574
49566
|
ongoingQuantity?: number | null;
|
|
49567
|
+
earlierOperationsScrappedQuantity!: number;
|
|
49575
49568
|
availableToStartQuantity!: number;
|
|
49576
49569
|
workInstructions?: string | null;
|
|
49577
49570
|
note?: string | null;
|
|
@@ -49615,6 +49608,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
|
|
|
49615
49608
|
this.quantity = _data["quantity"];
|
|
49616
49609
|
this.startedQuantity = _data["startedQuantity"];
|
|
49617
49610
|
this.ongoingQuantity = _data["ongoingQuantity"];
|
|
49611
|
+
this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
|
|
49618
49612
|
this.availableToStartQuantity = _data["availableToStartQuantity"];
|
|
49619
49613
|
this.workInstructions = _data["workInstructions"];
|
|
49620
49614
|
this.note = _data["note"];
|
|
@@ -49658,6 +49652,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
|
|
|
49658
49652
|
data["quantity"] = this.quantity;
|
|
49659
49653
|
data["startedQuantity"] = this.startedQuantity;
|
|
49660
49654
|
data["ongoingQuantity"] = this.ongoingQuantity;
|
|
49655
|
+
data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
|
|
49661
49656
|
data["availableToStartQuantity"] = this.availableToStartQuantity;
|
|
49662
49657
|
data["workInstructions"] = this.workInstructions;
|
|
49663
49658
|
data["note"] = this.note;
|
|
@@ -49694,6 +49689,7 @@ export interface IProductionOrderOperationDto {
|
|
|
49694
49689
|
quantity: number;
|
|
49695
49690
|
startedQuantity?: number | null;
|
|
49696
49691
|
ongoingQuantity?: number | null;
|
|
49692
|
+
earlierOperationsScrappedQuantity: number;
|
|
49697
49693
|
availableToStartQuantity: number;
|
|
49698
49694
|
workInstructions?: string | null;
|
|
49699
49695
|
note?: string | null;
|
|
@@ -50879,6 +50875,7 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
|
|
|
50879
50875
|
producedQuantity!: number;
|
|
50880
50876
|
scrappedQuantity!: number;
|
|
50881
50877
|
availableToStartQuantity!: number;
|
|
50878
|
+
earlierOperationsScrappedQuantity!: number;
|
|
50882
50879
|
startedQuantity?: number | null;
|
|
50883
50880
|
ongoingQuantity?: number | null;
|
|
50884
50881
|
project?: WorkOrderProjectDto | null;
|
|
@@ -50942,6 +50939,7 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
|
|
|
50942
50939
|
this.producedQuantity = _data["producedQuantity"];
|
|
50943
50940
|
this.scrappedQuantity = _data["scrappedQuantity"];
|
|
50944
50941
|
this.availableToStartQuantity = _data["availableToStartQuantity"];
|
|
50942
|
+
this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
|
|
50945
50943
|
this.startedQuantity = _data["startedQuantity"];
|
|
50946
50944
|
this.ongoingQuantity = _data["ongoingQuantity"];
|
|
50947
50945
|
this.project = _data["project"] ? WorkOrderProjectDto.fromJS(_data["project"]) : undefined as any;
|
|
@@ -51002,6 +51000,7 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
|
|
|
51002
51000
|
data["producedQuantity"] = this.producedQuantity;
|
|
51003
51001
|
data["scrappedQuantity"] = this.scrappedQuantity;
|
|
51004
51002
|
data["availableToStartQuantity"] = this.availableToStartQuantity;
|
|
51003
|
+
data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
|
|
51005
51004
|
data["startedQuantity"] = this.startedQuantity;
|
|
51006
51005
|
data["ongoingQuantity"] = this.ongoingQuantity;
|
|
51007
51006
|
data["project"] = this.project ? this.project.toJSON() : undefined as any;
|
|
@@ -51055,6 +51054,7 @@ export interface IProductionScheduleOperationDto {
|
|
|
51055
51054
|
producedQuantity: number;
|
|
51056
51055
|
scrappedQuantity: number;
|
|
51057
51056
|
availableToStartQuantity: number;
|
|
51057
|
+
earlierOperationsScrappedQuantity: number;
|
|
51058
51058
|
startedQuantity?: number | null;
|
|
51059
51059
|
ongoingQuantity?: number | null;
|
|
51060
51060
|
project?: WorkOrderProjectDto | null;
|
|
@@ -51102,6 +51102,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
|
|
|
51102
51102
|
resourceDepartmentName?: string | null;
|
|
51103
51103
|
producedQuantity!: number;
|
|
51104
51104
|
scrappedQuantity!: number;
|
|
51105
|
+
earlierOperationsScrappedQuantity!: number;
|
|
51105
51106
|
startedQuantity?: number | null;
|
|
51106
51107
|
|
|
51107
51108
|
constructor(data?: ISurroundingOperationDto) {
|
|
@@ -51130,6 +51131,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
|
|
|
51130
51131
|
this.resourceDepartmentName = _data["resourceDepartmentName"];
|
|
51131
51132
|
this.producedQuantity = _data["producedQuantity"];
|
|
51132
51133
|
this.scrappedQuantity = _data["scrappedQuantity"];
|
|
51134
|
+
this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
|
|
51133
51135
|
this.startedQuantity = _data["startedQuantity"];
|
|
51134
51136
|
}
|
|
51135
51137
|
}
|
|
@@ -51158,6 +51160,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
|
|
|
51158
51160
|
data["resourceDepartmentName"] = this.resourceDepartmentName;
|
|
51159
51161
|
data["producedQuantity"] = this.producedQuantity;
|
|
51160
51162
|
data["scrappedQuantity"] = this.scrappedQuantity;
|
|
51163
|
+
data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
|
|
51161
51164
|
data["startedQuantity"] = this.startedQuantity;
|
|
51162
51165
|
return data;
|
|
51163
51166
|
}
|
|
@@ -51179,6 +51182,7 @@ export interface ISurroundingOperationDto {
|
|
|
51179
51182
|
resourceDepartmentName?: string | null;
|
|
51180
51183
|
producedQuantity: number;
|
|
51181
51184
|
scrappedQuantity: number;
|
|
51185
|
+
earlierOperationsScrappedQuantity: number;
|
|
51182
51186
|
startedQuantity?: number | null;
|
|
51183
51187
|
}
|
|
51184
51188
|
|