@ignos/api-client 20260728.199.1-alpha → 20260731.201.1
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 +125 -117
- package/lib/ignosportal-api.js +39 -39
- package/package.json +1 -1
- package/src/ignosportal-api.ts +167 -164
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2460,6 +2460,7 @@ export declare class MesLinksClient extends AuthorizedApiBase implements IMesLin
|
|
|
2460
2460
|
}
|
|
2461
2461
|
export interface IMesOrMoveClient {
|
|
2462
2462
|
getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
|
|
2463
|
+
postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
2463
2464
|
}
|
|
2464
2465
|
export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClient {
|
|
2465
2466
|
private http;
|
|
@@ -2469,6 +2470,8 @@ export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOr
|
|
|
2469
2470
|
});
|
|
2470
2471
|
getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
|
|
2471
2472
|
protected processGetPrintableLabels(response: Response): Promise<DownloadDto>;
|
|
2473
|
+
postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
2474
|
+
protected processPostListProductionOrders(response: Response): Promise<ProductionOrderListDto[]>;
|
|
2472
2475
|
}
|
|
2473
2476
|
export interface IMesPlannerClient {
|
|
2474
2477
|
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
@@ -2547,7 +2550,6 @@ export declare class MesProductionOrderAttachmentClient extends AuthorizedApiBas
|
|
|
2547
2550
|
protected processDeleteAttachment(response: Response): Promise<FileResponse>;
|
|
2548
2551
|
}
|
|
2549
2552
|
export interface IMesProductionOrderClient {
|
|
2550
|
-
listProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
2551
2553
|
getProductionOrder(id: string): Promise<ProductionOrderDto>;
|
|
2552
2554
|
getProductionOrderBom(id: string, operation: number | null | undefined): Promise<ProductionOrderBomDto[]>;
|
|
2553
2555
|
getProductionOrderPickListSuggestion(id: string, operation: number | undefined): Promise<PickListSuggestionDto[]>;
|
|
@@ -2564,8 +2566,6 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
|
|
|
2564
2566
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2565
2567
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2566
2568
|
});
|
|
2567
|
-
listProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
2568
|
-
protected processListProductionOrders(response: Response): Promise<ProductionOrderListDto[]>;
|
|
2569
2569
|
getProductionOrder(id: string): Promise<ProductionOrderDto>;
|
|
2570
2570
|
protected processGetProductionOrder(response: Response): Promise<ProductionOrderDto>;
|
|
2571
2571
|
getProductionOrderBom(id: string, operation: number | null | undefined): Promise<ProductionOrderBomDto[]>;
|
|
@@ -7199,10 +7199,6 @@ export interface SearchParcelDto {
|
|
|
7199
7199
|
items: SearchParcelItemDto[];
|
|
7200
7200
|
partName?: string | null;
|
|
7201
7201
|
partNumber?: string | null;
|
|
7202
|
-
status?: WorkorderStatus | null;
|
|
7203
|
-
startDate?: Date | null;
|
|
7204
|
-
endDate?: Date | null;
|
|
7205
|
-
deliveryDate?: Date | null;
|
|
7206
7202
|
}
|
|
7207
7203
|
export type SearchMatchCriteriaDto = "Tracking" | "WorkOrder" | "Parcel";
|
|
7208
7204
|
export interface SearchParcelItemDto {
|
|
@@ -7395,6 +7391,37 @@ export interface LabelId {
|
|
|
7395
7391
|
parcelId: string;
|
|
7396
7392
|
trackingId?: string | null;
|
|
7397
7393
|
}
|
|
7394
|
+
export interface ProductionOrderListDto {
|
|
7395
|
+
id: string;
|
|
7396
|
+
companyId?: string | null;
|
|
7397
|
+
part?: PartDto | null;
|
|
7398
|
+
quantity: number;
|
|
7399
|
+
unit?: string | null;
|
|
7400
|
+
status: WorkorderStatus;
|
|
7401
|
+
plannedStart?: Date | null;
|
|
7402
|
+
plannedEnd?: Date | null;
|
|
7403
|
+
producedQuantity: number;
|
|
7404
|
+
scrappedQuantity: number;
|
|
7405
|
+
deliveryLocation?: WarehouseLocationDto | null;
|
|
7406
|
+
project?: WorkOrderProjectDto | null;
|
|
7407
|
+
startDate?: Date | null;
|
|
7408
|
+
endDate?: Date | null;
|
|
7409
|
+
deliveryDate?: Date | null;
|
|
7410
|
+
bomPosition?: string | null;
|
|
7411
|
+
orderReference?: OrderReferenceDto | null;
|
|
7412
|
+
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
7413
|
+
}
|
|
7414
|
+
export interface OrderReferenceDto {
|
|
7415
|
+
orderReferenceType?: OrderReferenceTypeDto;
|
|
7416
|
+
orderNumber?: string;
|
|
7417
|
+
orderLineNumber?: number | null;
|
|
7418
|
+
}
|
|
7419
|
+
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
7420
|
+
export interface ListProductionOrdersRequest {
|
|
7421
|
+
search: string;
|
|
7422
|
+
searchType: SearchTypeDto;
|
|
7423
|
+
maxResults?: number | null;
|
|
7424
|
+
}
|
|
7398
7425
|
export interface PlannerPlanDto {
|
|
7399
7426
|
resourceGroupId: string;
|
|
7400
7427
|
sequence: PlannerOperationDto[];
|
|
@@ -7479,37 +7506,6 @@ export interface WorkOrderAttachmentDto {
|
|
|
7479
7506
|
notes?: string | null;
|
|
7480
7507
|
attachmentType?: string | null;
|
|
7481
7508
|
}
|
|
7482
|
-
export interface ProductionOrderListDto {
|
|
7483
|
-
id: string;
|
|
7484
|
-
companyId?: string | null;
|
|
7485
|
-
part?: PartDto | null;
|
|
7486
|
-
quantity: number;
|
|
7487
|
-
unit?: string | null;
|
|
7488
|
-
status: WorkorderStatus;
|
|
7489
|
-
plannedStart?: Date | null;
|
|
7490
|
-
plannedEnd?: Date | null;
|
|
7491
|
-
producedQuantity: number;
|
|
7492
|
-
scrappedQuantity: number;
|
|
7493
|
-
deliveryLocation?: WarehouseLocationDto | null;
|
|
7494
|
-
project?: WorkOrderProjectDto | null;
|
|
7495
|
-
startDate?: Date | null;
|
|
7496
|
-
endDate?: Date | null;
|
|
7497
|
-
deliveryDate?: Date | null;
|
|
7498
|
-
bomPosition?: string | null;
|
|
7499
|
-
orderReference?: OrderReferenceDto | null;
|
|
7500
|
-
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
7501
|
-
}
|
|
7502
|
-
export interface OrderReferenceDto {
|
|
7503
|
-
orderReferenceType?: OrderReferenceTypeDto;
|
|
7504
|
-
orderNumber?: string;
|
|
7505
|
-
orderLineNumber?: number | null;
|
|
7506
|
-
}
|
|
7507
|
-
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
7508
|
-
export interface ListProductionOrdersRequest {
|
|
7509
|
-
search: string;
|
|
7510
|
-
searchType: SearchTypeDto;
|
|
7511
|
-
maxResults?: number | null;
|
|
7512
|
-
}
|
|
7513
7509
|
export interface ProductionOrderDto {
|
|
7514
7510
|
id: string;
|
|
7515
7511
|
companyId: string;
|
|
@@ -8100,22 +8096,20 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
8100
8096
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
8101
8097
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
8102
8098
|
}
|
|
8103
|
-
export interface
|
|
8104
|
-
}
|
|
8105
|
-
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
8099
|
+
export interface ImaCertificateTypeManufacturerRequirementsDto {
|
|
8106
8100
|
manufacturer?: boolean;
|
|
8107
8101
|
address?: boolean;
|
|
8108
8102
|
contact?: boolean;
|
|
8109
8103
|
steelPlant?: boolean;
|
|
8110
8104
|
}
|
|
8111
|
-
export interface ImaCertificateTypeSignatureRequirementsDto
|
|
8105
|
+
export interface ImaCertificateTypeSignatureRequirementsDto {
|
|
8112
8106
|
certifiedBy?: boolean;
|
|
8113
8107
|
position?: boolean;
|
|
8114
8108
|
signature?: boolean;
|
|
8115
8109
|
date?: boolean;
|
|
8116
8110
|
stamp?: boolean;
|
|
8117
8111
|
}
|
|
8118
|
-
export interface ImaCertificateTypeThirdPartyRequirementsDto
|
|
8112
|
+
export interface ImaCertificateTypeThirdPartyRequirementsDto {
|
|
8119
8113
|
inspectionBody?: boolean;
|
|
8120
8114
|
inspectorName?: boolean;
|
|
8121
8115
|
position?: boolean;
|
|
@@ -8124,12 +8118,12 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
8124
8118
|
date?: boolean;
|
|
8125
8119
|
stamp?: boolean;
|
|
8126
8120
|
}
|
|
8127
|
-
export interface ImaCertificateTypeCertificationRequirementsDto
|
|
8121
|
+
export interface ImaCertificateTypeCertificationRequirementsDto {
|
|
8128
8122
|
certificateType?: boolean;
|
|
8129
8123
|
certificateOfCompliance?: boolean;
|
|
8130
8124
|
inspectionCertificate?: boolean;
|
|
8131
8125
|
}
|
|
8132
|
-
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto
|
|
8126
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto {
|
|
8133
8127
|
productDescription?: boolean;
|
|
8134
8128
|
materialGrade?: boolean;
|
|
8135
8129
|
customer?: boolean;
|
|
@@ -8140,10 +8134,10 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
8140
8134
|
relevantStandard?: boolean;
|
|
8141
8135
|
steelMaking?: boolean;
|
|
8142
8136
|
}
|
|
8143
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto
|
|
8137
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto {
|
|
8144
8138
|
usedStandards?: boolean;
|
|
8145
8139
|
}
|
|
8146
|
-
export interface ImaCertificateTypeTestResultsRequirementsDto
|
|
8140
|
+
export interface ImaCertificateTypeTestResultsRequirementsDto {
|
|
8147
8141
|
tensileTests?: boolean;
|
|
8148
8142
|
hardnessTests?: boolean;
|
|
8149
8143
|
impactTests?: boolean;
|
|
@@ -8265,7 +8259,7 @@ export interface ImaMaterialCheckDto {
|
|
|
8265
8259
|
purchaseOrderPartRevision?: string | null;
|
|
8266
8260
|
purchaseOrderDrawing?: string | null;
|
|
8267
8261
|
purchaseOrderDrawingRevision?: string | null;
|
|
8268
|
-
|
|
8262
|
+
heatNumbers?: string[] | null;
|
|
8269
8263
|
status: ImaMaterialCheckStatusDto;
|
|
8270
8264
|
created: Date;
|
|
8271
8265
|
createdBy: string;
|
|
@@ -8284,7 +8278,7 @@ export interface ImaMaterialCheckDto {
|
|
|
8284
8278
|
}
|
|
8285
8279
|
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8286
8280
|
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8287
|
-
export interface ImaCertificateTypeResultsDto
|
|
8281
|
+
export interface ImaCertificateTypeResultsDto {
|
|
8288
8282
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
8289
8283
|
signature: ImaCertificateTypeSignatureResultsDto;
|
|
8290
8284
|
thirdParty: ImaCertificateTypeThirdPartyResultsDto;
|
|
@@ -8292,18 +8286,18 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
8292
8286
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
8293
8287
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
8294
8288
|
}
|
|
8295
|
-
export interface ImaCertificateTypeManufacturerResultsDto
|
|
8289
|
+
export interface ImaCertificateTypeManufacturerResultsDto {
|
|
8296
8290
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
8297
8291
|
address?: ImaCertificateTypeResultLine | null;
|
|
8298
8292
|
contact?: ImaCertificateTypeResultLine | null;
|
|
8299
8293
|
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
8300
8294
|
}
|
|
8301
|
-
export interface ImaCertificateTypeResultLine
|
|
8295
|
+
export interface ImaCertificateTypeResultLine {
|
|
8302
8296
|
found?: boolean;
|
|
8303
8297
|
readValue?: string | null;
|
|
8304
8298
|
override?: ImaResultLineOverrideDto | null;
|
|
8305
8299
|
}
|
|
8306
|
-
export interface ImaResultLineOverrideDto
|
|
8300
|
+
export interface ImaResultLineOverrideDto {
|
|
8307
8301
|
approved?: boolean | null;
|
|
8308
8302
|
comment?: string | null;
|
|
8309
8303
|
updated: Date;
|
|
@@ -8311,14 +8305,14 @@ export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
|
|
|
8311
8305
|
updatedById: string;
|
|
8312
8306
|
updatedByName?: string | null;
|
|
8313
8307
|
}
|
|
8314
|
-
export interface ImaCertificateTypeSignatureResultsDto
|
|
8308
|
+
export interface ImaCertificateTypeSignatureResultsDto {
|
|
8315
8309
|
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
8316
8310
|
position?: ImaCertificateTypeResultLine | null;
|
|
8317
8311
|
signature?: ImaCertificateTypeResultLine | null;
|
|
8318
8312
|
date?: ImaCertificateTypeResultLine | null;
|
|
8319
8313
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
8320
8314
|
}
|
|
8321
|
-
export interface ImaCertificateTypeThirdPartyResultsDto
|
|
8315
|
+
export interface ImaCertificateTypeThirdPartyResultsDto {
|
|
8322
8316
|
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
8323
8317
|
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
8324
8318
|
position?: ImaCertificateTypeResultLine | null;
|
|
@@ -8327,12 +8321,12 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
8327
8321
|
date?: ImaCertificateTypeResultLine | null;
|
|
8328
8322
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
8329
8323
|
}
|
|
8330
|
-
export interface ImaCertificateTypeCertificationResultsDto
|
|
8324
|
+
export interface ImaCertificateTypeCertificationResultsDto {
|
|
8331
8325
|
certificateType?: ImaCertificateTypeResultLine | null;
|
|
8332
8326
|
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
8333
8327
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
8334
8328
|
}
|
|
8335
|
-
export interface ImaSupplementaryCheckResultDto
|
|
8329
|
+
export interface ImaSupplementaryCheckResultDto {
|
|
8336
8330
|
status?: string | null;
|
|
8337
8331
|
documentId?: string | null;
|
|
8338
8332
|
acceptable?: boolean | null;
|
|
@@ -8340,7 +8334,7 @@ export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
|
8340
8334
|
summary?: string | null;
|
|
8341
8335
|
override?: ImaResultLineOverrideDto | null;
|
|
8342
8336
|
}
|
|
8343
|
-
export interface ImaCertificateTypeProductAndOrderInformationResultsDto
|
|
8337
|
+
export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
|
|
8344
8338
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
8345
8339
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
8346
8340
|
customer?: ImaCertificateTypeResultLine | null;
|
|
@@ -8351,18 +8345,15 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
8351
8345
|
relevantStandard?: ImaCertificateTypeResultLine | null;
|
|
8352
8346
|
steelMaking: ImaSteelMakingResultDto;
|
|
8353
8347
|
}
|
|
8354
|
-
export interface ImaSteelMakingResultDto
|
|
8348
|
+
export interface ImaSteelMakingResultDto {
|
|
8355
8349
|
raw?: string[] | null;
|
|
8356
8350
|
chain?: string[] | null;
|
|
8357
8351
|
unmatched?: string[] | null;
|
|
8358
8352
|
}
|
|
8359
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto
|
|
8353
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8360
8354
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
8361
8355
|
}
|
|
8362
|
-
export interface ImaSpecificationResultsDto
|
|
8363
|
-
chemistry: ImaSpecificationChemistryResultsDto;
|
|
8364
|
-
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
8365
|
-
ferrite: ImaSpecificationFerriteResultsDto;
|
|
8356
|
+
export interface ImaSpecificationResultsDto {
|
|
8366
8357
|
chemicalAnalysis: ImaChemicalAnalysisResultDto[];
|
|
8367
8358
|
tensileTests: ImaTensileTestResultDto[];
|
|
8368
8359
|
hardnessTests: ImaHardnessTestResultDto[];
|
|
@@ -8372,7 +8363,15 @@ export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
|
8372
8363
|
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
8373
8364
|
documentTypes: ImaDocumentTypesResultsDto;
|
|
8374
8365
|
}
|
|
8375
|
-
export interface
|
|
8366
|
+
export interface ImaChemicalAnalysisResultDto {
|
|
8367
|
+
heatNumber?: string | null;
|
|
8368
|
+
sampleReference?: string | null;
|
|
8369
|
+
analysisType?: string | null;
|
|
8370
|
+
elements: ImaChemicalAnalysisElementsResultDto;
|
|
8371
|
+
indices: ImaChemicalIndexResultDto[];
|
|
8372
|
+
testStandards: string[];
|
|
8373
|
+
}
|
|
8374
|
+
export interface ImaChemicalAnalysisElementsResultDto {
|
|
8376
8375
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
8377
8376
|
manganese?: ImaSpecificationResultLineDto | null;
|
|
8378
8377
|
silicon?: ImaSpecificationResultLineDto | null;
|
|
@@ -8384,9 +8383,26 @@ export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBas
|
|
|
8384
8383
|
copper?: ImaSpecificationResultLineDto | null;
|
|
8385
8384
|
nitrogen?: ImaSpecificationResultLineDto | null;
|
|
8386
8385
|
wolfram?: ImaSpecificationResultLineDto | null;
|
|
8386
|
+
titanium?: ImaSpecificationResultLineDto | null;
|
|
8387
|
+
aluminum?: ImaSpecificationResultLineDto | null;
|
|
8388
|
+
niobium?: ImaSpecificationResultLineDto | null;
|
|
8389
|
+
tantalum?: ImaSpecificationResultLineDto | null;
|
|
8390
|
+
cobalt?: ImaSpecificationResultLineDto | null;
|
|
8391
|
+
boron?: ImaSpecificationResultLineDto | null;
|
|
8392
|
+
lead?: ImaSpecificationResultLineDto | null;
|
|
8393
|
+
selenium?: ImaSpecificationResultLineDto | null;
|
|
8394
|
+
bismuth?: ImaSpecificationResultLineDto | null;
|
|
8387
8395
|
iron?: ImaSpecificationResultLineDto | null;
|
|
8388
|
-
|
|
8389
|
-
|
|
8396
|
+
vanadium?: ImaSpecificationResultLineDto | null;
|
|
8397
|
+
oxygen?: ImaSpecificationResultLineDto | null;
|
|
8398
|
+
calcium?: ImaSpecificationResultLineDto | null;
|
|
8399
|
+
arsenic?: ImaSpecificationResultLineDto | null;
|
|
8400
|
+
tin?: ImaSpecificationResultLineDto | null;
|
|
8401
|
+
antimony?: ImaSpecificationResultLineDto | null;
|
|
8402
|
+
hydrogen?: ImaSpecificationResultLineDto | null;
|
|
8403
|
+
zirconium?: ImaSpecificationResultLineDto | null;
|
|
8404
|
+
}
|
|
8405
|
+
export interface ImaSpecificationResultLineDto {
|
|
8390
8406
|
specificationMin?: number | null;
|
|
8391
8407
|
specificationMax?: number | null;
|
|
8392
8408
|
readValue?: string | null;
|
|
@@ -8394,48 +8410,13 @@ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
|
8394
8410
|
override?: ImaResultLineOverrideDto | null;
|
|
8395
8411
|
}
|
|
8396
8412
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8397
|
-
export interface
|
|
8398
|
-
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
8399
|
-
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
8400
|
-
elongation?: ImaSpecificationResultLineDto | null;
|
|
8401
|
-
reductionOfArea?: ImaSpecificationResultLineDto | null;
|
|
8402
|
-
impactEnergy?: ImaSpecificationResultLineDto | null;
|
|
8403
|
-
hardness?: ImaSpecificationResultLineDto | null;
|
|
8404
|
-
}
|
|
8405
|
-
export interface ImaSpecificationFerriteResultsDto extends ImaCdfEntityReadBase {
|
|
8406
|
-
ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
|
|
8407
|
-
}
|
|
8408
|
-
export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBase {
|
|
8409
|
-
specificationMin?: number | null;
|
|
8410
|
-
specificationMax?: number | null;
|
|
8411
|
-
readValue?: string | null;
|
|
8412
|
-
status: ImaSpecificationResultLineStatusDto;
|
|
8413
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8414
|
-
measurementMethod?: string | null;
|
|
8415
|
-
}
|
|
8416
|
-
export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
|
|
8417
|
-
sampleReference?: string | null;
|
|
8418
|
-
analysisType?: string | null;
|
|
8419
|
-
elements: ImaChemicalElementResultDto[];
|
|
8420
|
-
indices: ImaChemicalIndexResultDto[];
|
|
8421
|
-
testStandards: string[];
|
|
8422
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8423
|
-
}
|
|
8424
|
-
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
8425
|
-
symbol?: string | null;
|
|
8426
|
-
value?: ImaResultValueDto | null;
|
|
8427
|
-
}
|
|
8428
|
-
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
8429
|
-
readValue?: string | null;
|
|
8430
|
-
value?: number | null;
|
|
8431
|
-
unit?: string | null;
|
|
8432
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8433
|
-
}
|
|
8434
|
-
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
8413
|
+
export interface ImaChemicalIndexResultDto {
|
|
8435
8414
|
name?: string | null;
|
|
8436
8415
|
value?: number | null;
|
|
8416
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8437
8417
|
}
|
|
8438
|
-
export interface ImaTensileTestResultDto
|
|
8418
|
+
export interface ImaTensileTestResultDto {
|
|
8419
|
+
heatNumber?: string | null;
|
|
8439
8420
|
sampleReference?: string | null;
|
|
8440
8421
|
orientation?: string | null;
|
|
8441
8422
|
testLocation?: string | null;
|
|
@@ -8449,15 +8430,21 @@ export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
|
8449
8430
|
testStandards: string[];
|
|
8450
8431
|
override?: ImaResultLineOverrideDto | null;
|
|
8451
8432
|
}
|
|
8452
|
-
export interface
|
|
8433
|
+
export interface ImaResultValueDto {
|
|
8434
|
+
readValue?: string | null;
|
|
8435
|
+
unit?: string | null;
|
|
8436
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8437
|
+
}
|
|
8438
|
+
export interface ImaYieldStrengthResultDto {
|
|
8453
8439
|
label?: string | null;
|
|
8454
8440
|
value?: ImaResultValueDto | null;
|
|
8455
8441
|
}
|
|
8456
|
-
export interface ImaElongationResultDto
|
|
8442
|
+
export interface ImaElongationResultDto {
|
|
8457
8443
|
gauge?: string | null;
|
|
8458
8444
|
value?: ImaResultValueDto | null;
|
|
8459
8445
|
}
|
|
8460
|
-
export interface ImaHardnessTestResultDto
|
|
8446
|
+
export interface ImaHardnessTestResultDto {
|
|
8447
|
+
heatNumber?: string | null;
|
|
8461
8448
|
sampleReference?: string | null;
|
|
8462
8449
|
orientation?: string | null;
|
|
8463
8450
|
testLocation?: string | null;
|
|
@@ -8465,12 +8452,13 @@ export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
|
8465
8452
|
testStandards: string[];
|
|
8466
8453
|
override?: ImaResultLineOverrideDto | null;
|
|
8467
8454
|
}
|
|
8468
|
-
export interface ImaHardnessReadingResultDto
|
|
8455
|
+
export interface ImaHardnessReadingResultDto {
|
|
8469
8456
|
label?: string | null;
|
|
8470
8457
|
scale?: string | null;
|
|
8471
8458
|
value?: number | null;
|
|
8472
8459
|
}
|
|
8473
|
-
export interface ImaImpactTestResultDto
|
|
8460
|
+
export interface ImaImpactTestResultDto {
|
|
8461
|
+
heatNumber?: string | null;
|
|
8474
8462
|
sampleReference?: string | null;
|
|
8475
8463
|
orientation?: string | null;
|
|
8476
8464
|
testLocation?: string | null;
|
|
@@ -8485,7 +8473,8 @@ export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
|
8485
8473
|
testStandards: string[];
|
|
8486
8474
|
override?: ImaResultLineOverrideDto | null;
|
|
8487
8475
|
}
|
|
8488
|
-
export interface ImaCorrosionTestResultDto
|
|
8476
|
+
export interface ImaCorrosionTestResultDto {
|
|
8477
|
+
heatNumber?: string | null;
|
|
8489
8478
|
sampleReference?: string | null;
|
|
8490
8479
|
testLocation?: string | null;
|
|
8491
8480
|
testMethod?: string | null;
|
|
@@ -8497,7 +8486,8 @@ export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
|
8497
8486
|
acceptable?: boolean | null;
|
|
8498
8487
|
override?: ImaResultLineOverrideDto | null;
|
|
8499
8488
|
}
|
|
8500
|
-
export interface ImaFerriteResultDto
|
|
8489
|
+
export interface ImaFerriteResultDto {
|
|
8490
|
+
heatNumber?: string | null;
|
|
8501
8491
|
sampleReference?: string | null;
|
|
8502
8492
|
testLocation?: string | null;
|
|
8503
8493
|
ferrite?: ImaResultValueDto | null;
|
|
@@ -8508,7 +8498,8 @@ export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
|
8508
8498
|
testStandards: string[];
|
|
8509
8499
|
override?: ImaResultLineOverrideDto | null;
|
|
8510
8500
|
}
|
|
8511
|
-
export interface ImaHeatTreatmentResultDto
|
|
8501
|
+
export interface ImaHeatTreatmentResultDto {
|
|
8502
|
+
heatNumber?: string | null;
|
|
8512
8503
|
stepType?: string | null;
|
|
8513
8504
|
treatmentName?: string | null;
|
|
8514
8505
|
temperature?: ImaResultValueDto | null;
|
|
@@ -8519,7 +8510,7 @@ export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
|
8519
8510
|
coolingMedium?: string | null;
|
|
8520
8511
|
override?: ImaResultLineOverrideDto | null;
|
|
8521
8512
|
}
|
|
8522
|
-
export interface ImaDocumentTypesResultsDto
|
|
8513
|
+
export interface ImaDocumentTypesResultsDto {
|
|
8523
8514
|
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8524
8515
|
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8525
8516
|
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
@@ -8638,7 +8629,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8638
8629
|
purchaseOrderPartRevision?: string | null;
|
|
8639
8630
|
purchaseOrderDrawing?: string | null;
|
|
8640
8631
|
purchaseOrderDrawingRevision?: string | null;
|
|
8641
|
-
|
|
8632
|
+
heatNumbers?: string[] | null;
|
|
8642
8633
|
status: ImaMaterialCheckStatusDto;
|
|
8643
8634
|
created: Date;
|
|
8644
8635
|
createdBy: string;
|
|
@@ -8827,9 +8818,26 @@ export interface ImaChemistrySpecificationDto {
|
|
|
8827
8818
|
copper?: ImaSpecificationLineDto | null;
|
|
8828
8819
|
nitrogen?: ImaSpecificationLineDto | null;
|
|
8829
8820
|
wolfram?: ImaSpecificationLineDto | null;
|
|
8821
|
+
titanium?: ImaSpecificationLineDto | null;
|
|
8822
|
+
aluminum?: ImaSpecificationLineDto | null;
|
|
8823
|
+
niobium?: ImaSpecificationLineDto | null;
|
|
8824
|
+
tantalum?: ImaSpecificationLineDto | null;
|
|
8825
|
+
cobalt?: ImaSpecificationLineDto | null;
|
|
8826
|
+
boron?: ImaSpecificationLineDto | null;
|
|
8827
|
+
lead?: ImaSpecificationLineDto | null;
|
|
8828
|
+
selenium?: ImaSpecificationLineDto | null;
|
|
8829
|
+
bismuth?: ImaSpecificationLineDto | null;
|
|
8830
8830
|
iron?: ImaSpecificationLineDto | null;
|
|
8831
|
-
|
|
8832
|
-
|
|
8831
|
+
vanadium?: ImaSpecificationLineDto | null;
|
|
8832
|
+
oxygen?: ImaSpecificationLineDto | null;
|
|
8833
|
+
calcium?: ImaSpecificationLineDto | null;
|
|
8834
|
+
arsenic?: ImaSpecificationLineDto | null;
|
|
8835
|
+
tin?: ImaSpecificationLineDto | null;
|
|
8836
|
+
antimony?: ImaSpecificationLineDto | null;
|
|
8837
|
+
hydrogen?: ImaSpecificationLineDto | null;
|
|
8838
|
+
zirconium?: ImaSpecificationLineDto | null;
|
|
8839
|
+
}
|
|
8840
|
+
export interface ImaSpecificationLineDto {
|
|
8833
8841
|
min?: number | null;
|
|
8834
8842
|
max?: number | null;
|
|
8835
8843
|
}
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -20552,6 +20552,45 @@ export class MesOrMoveClient extends AuthorizedApiBase {
|
|
|
20552
20552
|
}
|
|
20553
20553
|
return Promise.resolve(null);
|
|
20554
20554
|
}
|
|
20555
|
+
postListProductionOrders(request) {
|
|
20556
|
+
let url_ = this.baseUrl + "/mes/productionorders/list";
|
|
20557
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
20558
|
+
const content_ = JSON.stringify(request);
|
|
20559
|
+
let options_ = {
|
|
20560
|
+
body: content_,
|
|
20561
|
+
method: "POST",
|
|
20562
|
+
headers: {
|
|
20563
|
+
"Content-Type": "application/json",
|
|
20564
|
+
"Accept": "application/json"
|
|
20565
|
+
}
|
|
20566
|
+
};
|
|
20567
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
20568
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
20569
|
+
}).then((_response) => {
|
|
20570
|
+
return this.processPostListProductionOrders(_response);
|
|
20571
|
+
});
|
|
20572
|
+
}
|
|
20573
|
+
processPostListProductionOrders(response) {
|
|
20574
|
+
const status = response.status;
|
|
20575
|
+
let _headers = {};
|
|
20576
|
+
if (response.headers && response.headers.forEach) {
|
|
20577
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
20578
|
+
}
|
|
20579
|
+
;
|
|
20580
|
+
if (status === 200) {
|
|
20581
|
+
return response.text().then((_responseText) => {
|
|
20582
|
+
let result200 = null;
|
|
20583
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
20584
|
+
return result200;
|
|
20585
|
+
});
|
|
20586
|
+
}
|
|
20587
|
+
else if (status !== 200 && status !== 204) {
|
|
20588
|
+
return response.text().then((_responseText) => {
|
|
20589
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
20590
|
+
});
|
|
20591
|
+
}
|
|
20592
|
+
return Promise.resolve(null);
|
|
20593
|
+
}
|
|
20555
20594
|
}
|
|
20556
20595
|
export class MesPlannerClient extends AuthorizedApiBase {
|
|
20557
20596
|
constructor(configuration, baseUrl, http) {
|
|
@@ -21186,45 +21225,6 @@ export class MesProductionOrderClient extends AuthorizedApiBase {
|
|
|
21186
21225
|
this.http = http ? http : window;
|
|
21187
21226
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
21188
21227
|
}
|
|
21189
|
-
listProductionOrders(request) {
|
|
21190
|
-
let url_ = this.baseUrl + "/mes/productionorders/list";
|
|
21191
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
21192
|
-
const content_ = JSON.stringify(request);
|
|
21193
|
-
let options_ = {
|
|
21194
|
-
body: content_,
|
|
21195
|
-
method: "POST",
|
|
21196
|
-
headers: {
|
|
21197
|
-
"Content-Type": "application/json",
|
|
21198
|
-
"Accept": "application/json"
|
|
21199
|
-
}
|
|
21200
|
-
};
|
|
21201
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
21202
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
21203
|
-
}).then((_response) => {
|
|
21204
|
-
return this.processListProductionOrders(_response);
|
|
21205
|
-
});
|
|
21206
|
-
}
|
|
21207
|
-
processListProductionOrders(response) {
|
|
21208
|
-
const status = response.status;
|
|
21209
|
-
let _headers = {};
|
|
21210
|
-
if (response.headers && response.headers.forEach) {
|
|
21211
|
-
response.headers.forEach((v, k) => _headers[k] = v);
|
|
21212
|
-
}
|
|
21213
|
-
;
|
|
21214
|
-
if (status === 200) {
|
|
21215
|
-
return response.text().then((_responseText) => {
|
|
21216
|
-
let result200 = null;
|
|
21217
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
21218
|
-
return result200;
|
|
21219
|
-
});
|
|
21220
|
-
}
|
|
21221
|
-
else if (status !== 200 && status !== 204) {
|
|
21222
|
-
return response.text().then((_responseText) => {
|
|
21223
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
21224
|
-
});
|
|
21225
|
-
}
|
|
21226
|
-
return Promise.resolve(null);
|
|
21227
|
-
}
|
|
21228
21228
|
getProductionOrder(id) {
|
|
21229
21229
|
let url_ = this.baseUrl + "/mes/productionorders/{id}";
|
|
21230
21230
|
if (id === undefined || id === null)
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -21918,6 +21918,8 @@ export class MesLinksClient extends AuthorizedApiBase implements IMesLinksClient
|
|
|
21918
21918
|
export interface IMesOrMoveClient {
|
|
21919
21919
|
|
|
21920
21920
|
getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
|
|
21921
|
+
|
|
21922
|
+
postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
21921
21923
|
}
|
|
21922
21924
|
|
|
21923
21925
|
export class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClient {
|
|
@@ -21968,6 +21970,45 @@ export class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClie
|
|
|
21968
21970
|
}
|
|
21969
21971
|
return Promise.resolve<DownloadDto>(null as any);
|
|
21970
21972
|
}
|
|
21973
|
+
|
|
21974
|
+
postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]> {
|
|
21975
|
+
let url_ = this.baseUrl + "/mes/productionorders/list";
|
|
21976
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
21977
|
+
|
|
21978
|
+
const content_ = JSON.stringify(request);
|
|
21979
|
+
|
|
21980
|
+
let options_: RequestInit = {
|
|
21981
|
+
body: content_,
|
|
21982
|
+
method: "POST",
|
|
21983
|
+
headers: {
|
|
21984
|
+
"Content-Type": "application/json",
|
|
21985
|
+
"Accept": "application/json"
|
|
21986
|
+
}
|
|
21987
|
+
};
|
|
21988
|
+
|
|
21989
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
21990
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
21991
|
+
}).then((_response: Response) => {
|
|
21992
|
+
return this.processPostListProductionOrders(_response);
|
|
21993
|
+
});
|
|
21994
|
+
}
|
|
21995
|
+
|
|
21996
|
+
protected processPostListProductionOrders(response: Response): Promise<ProductionOrderListDto[]> {
|
|
21997
|
+
const status = response.status;
|
|
21998
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
21999
|
+
if (status === 200) {
|
|
22000
|
+
return response.text().then((_responseText) => {
|
|
22001
|
+
let result200: any = null;
|
|
22002
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ProductionOrderListDto[];
|
|
22003
|
+
return result200;
|
|
22004
|
+
});
|
|
22005
|
+
} else if (status !== 200 && status !== 204) {
|
|
22006
|
+
return response.text().then((_responseText) => {
|
|
22007
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22008
|
+
});
|
|
22009
|
+
}
|
|
22010
|
+
return Promise.resolve<ProductionOrderListDto[]>(null as any);
|
|
22011
|
+
}
|
|
21971
22012
|
}
|
|
21972
22013
|
|
|
21973
22014
|
export interface IMesPlannerClient {
|
|
@@ -22637,8 +22678,6 @@ export class MesProductionOrderAttachmentClient extends AuthorizedApiBase implem
|
|
|
22637
22678
|
|
|
22638
22679
|
export interface IMesProductionOrderClient {
|
|
22639
22680
|
|
|
22640
|
-
listProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
22641
|
-
|
|
22642
22681
|
getProductionOrder(id: string): Promise<ProductionOrderDto>;
|
|
22643
22682
|
|
|
22644
22683
|
getProductionOrderBom(id: string, operation: number | null | undefined): Promise<ProductionOrderBomDto[]>;
|
|
@@ -22668,45 +22707,6 @@ export class MesProductionOrderClient extends AuthorizedApiBase implements IMesP
|
|
|
22668
22707
|
this.baseUrl = baseUrl ?? "";
|
|
22669
22708
|
}
|
|
22670
22709
|
|
|
22671
|
-
listProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]> {
|
|
22672
|
-
let url_ = this.baseUrl + "/mes/productionorders/list";
|
|
22673
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22674
|
-
|
|
22675
|
-
const content_ = JSON.stringify(request);
|
|
22676
|
-
|
|
22677
|
-
let options_: RequestInit = {
|
|
22678
|
-
body: content_,
|
|
22679
|
-
method: "POST",
|
|
22680
|
-
headers: {
|
|
22681
|
-
"Content-Type": "application/json",
|
|
22682
|
-
"Accept": "application/json"
|
|
22683
|
-
}
|
|
22684
|
-
};
|
|
22685
|
-
|
|
22686
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22687
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22688
|
-
}).then((_response: Response) => {
|
|
22689
|
-
return this.processListProductionOrders(_response);
|
|
22690
|
-
});
|
|
22691
|
-
}
|
|
22692
|
-
|
|
22693
|
-
protected processListProductionOrders(response: Response): Promise<ProductionOrderListDto[]> {
|
|
22694
|
-
const status = response.status;
|
|
22695
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22696
|
-
if (status === 200) {
|
|
22697
|
-
return response.text().then((_responseText) => {
|
|
22698
|
-
let result200: any = null;
|
|
22699
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ProductionOrderListDto[];
|
|
22700
|
-
return result200;
|
|
22701
|
-
});
|
|
22702
|
-
} else if (status !== 200 && status !== 204) {
|
|
22703
|
-
return response.text().then((_responseText) => {
|
|
22704
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22705
|
-
});
|
|
22706
|
-
}
|
|
22707
|
-
return Promise.resolve<ProductionOrderListDto[]>(null as any);
|
|
22708
|
-
}
|
|
22709
|
-
|
|
22710
22710
|
getProductionOrder(id: string): Promise<ProductionOrderDto> {
|
|
22711
22711
|
let url_ = this.baseUrl + "/mes/productionorders/{id}";
|
|
22712
22712
|
if (id === undefined || id === null)
|
|
@@ -35456,10 +35456,6 @@ export interface SearchParcelDto {
|
|
|
35456
35456
|
items: SearchParcelItemDto[];
|
|
35457
35457
|
partName?: string | null;
|
|
35458
35458
|
partNumber?: string | null;
|
|
35459
|
-
status?: WorkorderStatus | null;
|
|
35460
|
-
startDate?: Date | null;
|
|
35461
|
-
endDate?: Date | null;
|
|
35462
|
-
deliveryDate?: Date | null;
|
|
35463
35459
|
}
|
|
35464
35460
|
|
|
35465
35461
|
export type SearchMatchCriteriaDto = "Tracking" | "WorkOrder" | "Parcel";
|
|
@@ -35684,6 +35680,41 @@ export interface LabelId {
|
|
|
35684
35680
|
trackingId?: string | null;
|
|
35685
35681
|
}
|
|
35686
35682
|
|
|
35683
|
+
export interface ProductionOrderListDto {
|
|
35684
|
+
id: string;
|
|
35685
|
+
companyId?: string | null;
|
|
35686
|
+
part?: PartDto | null;
|
|
35687
|
+
quantity: number;
|
|
35688
|
+
unit?: string | null;
|
|
35689
|
+
status: WorkorderStatus;
|
|
35690
|
+
plannedStart?: Date | null;
|
|
35691
|
+
plannedEnd?: Date | null;
|
|
35692
|
+
producedQuantity: number;
|
|
35693
|
+
scrappedQuantity: number;
|
|
35694
|
+
deliveryLocation?: WarehouseLocationDto | null;
|
|
35695
|
+
project?: WorkOrderProjectDto | null;
|
|
35696
|
+
startDate?: Date | null;
|
|
35697
|
+
endDate?: Date | null;
|
|
35698
|
+
deliveryDate?: Date | null;
|
|
35699
|
+
bomPosition?: string | null;
|
|
35700
|
+
orderReference?: OrderReferenceDto | null;
|
|
35701
|
+
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
35702
|
+
}
|
|
35703
|
+
|
|
35704
|
+
export interface OrderReferenceDto {
|
|
35705
|
+
orderReferenceType?: OrderReferenceTypeDto;
|
|
35706
|
+
orderNumber?: string;
|
|
35707
|
+
orderLineNumber?: number | null;
|
|
35708
|
+
}
|
|
35709
|
+
|
|
35710
|
+
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
35711
|
+
|
|
35712
|
+
export interface ListProductionOrdersRequest {
|
|
35713
|
+
search: string;
|
|
35714
|
+
searchType: SearchTypeDto;
|
|
35715
|
+
maxResults?: number | null;
|
|
35716
|
+
}
|
|
35717
|
+
|
|
35687
35718
|
export interface PlannerPlanDto {
|
|
35688
35719
|
resourceGroupId: string;
|
|
35689
35720
|
sequence: PlannerOperationDto[];
|
|
@@ -35777,41 +35808,6 @@ export interface WorkOrderAttachmentDto {
|
|
|
35777
35808
|
attachmentType?: string | null;
|
|
35778
35809
|
}
|
|
35779
35810
|
|
|
35780
|
-
export interface ProductionOrderListDto {
|
|
35781
|
-
id: string;
|
|
35782
|
-
companyId?: string | null;
|
|
35783
|
-
part?: PartDto | null;
|
|
35784
|
-
quantity: number;
|
|
35785
|
-
unit?: string | null;
|
|
35786
|
-
status: WorkorderStatus;
|
|
35787
|
-
plannedStart?: Date | null;
|
|
35788
|
-
plannedEnd?: Date | null;
|
|
35789
|
-
producedQuantity: number;
|
|
35790
|
-
scrappedQuantity: number;
|
|
35791
|
-
deliveryLocation?: WarehouseLocationDto | null;
|
|
35792
|
-
project?: WorkOrderProjectDto | null;
|
|
35793
|
-
startDate?: Date | null;
|
|
35794
|
-
endDate?: Date | null;
|
|
35795
|
-
deliveryDate?: Date | null;
|
|
35796
|
-
bomPosition?: string | null;
|
|
35797
|
-
orderReference?: OrderReferenceDto | null;
|
|
35798
|
-
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
35799
|
-
}
|
|
35800
|
-
|
|
35801
|
-
export interface OrderReferenceDto {
|
|
35802
|
-
orderReferenceType?: OrderReferenceTypeDto;
|
|
35803
|
-
orderNumber?: string;
|
|
35804
|
-
orderLineNumber?: number | null;
|
|
35805
|
-
}
|
|
35806
|
-
|
|
35807
|
-
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
35808
|
-
|
|
35809
|
-
export interface ListProductionOrdersRequest {
|
|
35810
|
-
search: string;
|
|
35811
|
-
searchType: SearchTypeDto;
|
|
35812
|
-
maxResults?: number | null;
|
|
35813
|
-
}
|
|
35814
|
-
|
|
35815
35811
|
export interface ProductionOrderDto {
|
|
35816
35812
|
id: string;
|
|
35817
35813
|
companyId: string;
|
|
@@ -36465,17 +36461,14 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
36465
36461
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
36466
36462
|
}
|
|
36467
36463
|
|
|
36468
|
-
export interface
|
|
36469
|
-
}
|
|
36470
|
-
|
|
36471
|
-
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
36464
|
+
export interface ImaCertificateTypeManufacturerRequirementsDto {
|
|
36472
36465
|
manufacturer?: boolean;
|
|
36473
36466
|
address?: boolean;
|
|
36474
36467
|
contact?: boolean;
|
|
36475
36468
|
steelPlant?: boolean;
|
|
36476
36469
|
}
|
|
36477
36470
|
|
|
36478
|
-
export interface ImaCertificateTypeSignatureRequirementsDto
|
|
36471
|
+
export interface ImaCertificateTypeSignatureRequirementsDto {
|
|
36479
36472
|
certifiedBy?: boolean;
|
|
36480
36473
|
position?: boolean;
|
|
36481
36474
|
signature?: boolean;
|
|
@@ -36483,7 +36476,7 @@ export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntity
|
|
|
36483
36476
|
stamp?: boolean;
|
|
36484
36477
|
}
|
|
36485
36478
|
|
|
36486
|
-
export interface ImaCertificateTypeThirdPartyRequirementsDto
|
|
36479
|
+
export interface ImaCertificateTypeThirdPartyRequirementsDto {
|
|
36487
36480
|
inspectionBody?: boolean;
|
|
36488
36481
|
inspectorName?: boolean;
|
|
36489
36482
|
position?: boolean;
|
|
@@ -36493,13 +36486,13 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
36493
36486
|
stamp?: boolean;
|
|
36494
36487
|
}
|
|
36495
36488
|
|
|
36496
|
-
export interface ImaCertificateTypeCertificationRequirementsDto
|
|
36489
|
+
export interface ImaCertificateTypeCertificationRequirementsDto {
|
|
36497
36490
|
certificateType?: boolean;
|
|
36498
36491
|
certificateOfCompliance?: boolean;
|
|
36499
36492
|
inspectionCertificate?: boolean;
|
|
36500
36493
|
}
|
|
36501
36494
|
|
|
36502
|
-
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto
|
|
36495
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto {
|
|
36503
36496
|
productDescription?: boolean;
|
|
36504
36497
|
materialGrade?: boolean;
|
|
36505
36498
|
customer?: boolean;
|
|
@@ -36511,11 +36504,11 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
36511
36504
|
steelMaking?: boolean;
|
|
36512
36505
|
}
|
|
36513
36506
|
|
|
36514
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto
|
|
36507
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto {
|
|
36515
36508
|
usedStandards?: boolean;
|
|
36516
36509
|
}
|
|
36517
36510
|
|
|
36518
|
-
export interface ImaCertificateTypeTestResultsRequirementsDto
|
|
36511
|
+
export interface ImaCertificateTypeTestResultsRequirementsDto {
|
|
36519
36512
|
tensileTests?: boolean;
|
|
36520
36513
|
hardnessTests?: boolean;
|
|
36521
36514
|
impactTests?: boolean;
|
|
@@ -36649,7 +36642,7 @@ export interface ImaMaterialCheckDto {
|
|
|
36649
36642
|
purchaseOrderPartRevision?: string | null;
|
|
36650
36643
|
purchaseOrderDrawing?: string | null;
|
|
36651
36644
|
purchaseOrderDrawingRevision?: string | null;
|
|
36652
|
-
|
|
36645
|
+
heatNumbers?: string[] | null;
|
|
36653
36646
|
status: ImaMaterialCheckStatusDto;
|
|
36654
36647
|
created: Date;
|
|
36655
36648
|
createdBy: string;
|
|
@@ -36671,7 +36664,7 @@ export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Reje
|
|
|
36671
36664
|
|
|
36672
36665
|
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
36673
36666
|
|
|
36674
|
-
export interface ImaCertificateTypeResultsDto
|
|
36667
|
+
export interface ImaCertificateTypeResultsDto {
|
|
36675
36668
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
36676
36669
|
signature: ImaCertificateTypeSignatureResultsDto;
|
|
36677
36670
|
thirdParty: ImaCertificateTypeThirdPartyResultsDto;
|
|
@@ -36680,20 +36673,20 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
36680
36673
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
36681
36674
|
}
|
|
36682
36675
|
|
|
36683
|
-
export interface ImaCertificateTypeManufacturerResultsDto
|
|
36676
|
+
export interface ImaCertificateTypeManufacturerResultsDto {
|
|
36684
36677
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
36685
36678
|
address?: ImaCertificateTypeResultLine | null;
|
|
36686
36679
|
contact?: ImaCertificateTypeResultLine | null;
|
|
36687
36680
|
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
36688
36681
|
}
|
|
36689
36682
|
|
|
36690
|
-
export interface ImaCertificateTypeResultLine
|
|
36683
|
+
export interface ImaCertificateTypeResultLine {
|
|
36691
36684
|
found?: boolean;
|
|
36692
36685
|
readValue?: string | null;
|
|
36693
36686
|
override?: ImaResultLineOverrideDto | null;
|
|
36694
36687
|
}
|
|
36695
36688
|
|
|
36696
|
-
export interface ImaResultLineOverrideDto
|
|
36689
|
+
export interface ImaResultLineOverrideDto {
|
|
36697
36690
|
approved?: boolean | null;
|
|
36698
36691
|
comment?: string | null;
|
|
36699
36692
|
updated: Date;
|
|
@@ -36702,7 +36695,7 @@ export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
|
|
|
36702
36695
|
updatedByName?: string | null;
|
|
36703
36696
|
}
|
|
36704
36697
|
|
|
36705
|
-
export interface ImaCertificateTypeSignatureResultsDto
|
|
36698
|
+
export interface ImaCertificateTypeSignatureResultsDto {
|
|
36706
36699
|
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
36707
36700
|
position?: ImaCertificateTypeResultLine | null;
|
|
36708
36701
|
signature?: ImaCertificateTypeResultLine | null;
|
|
@@ -36710,7 +36703,7 @@ export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadB
|
|
|
36710
36703
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
36711
36704
|
}
|
|
36712
36705
|
|
|
36713
|
-
export interface ImaCertificateTypeThirdPartyResultsDto
|
|
36706
|
+
export interface ImaCertificateTypeThirdPartyResultsDto {
|
|
36714
36707
|
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
36715
36708
|
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
36716
36709
|
position?: ImaCertificateTypeResultLine | null;
|
|
@@ -36720,13 +36713,13 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
36720
36713
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
36721
36714
|
}
|
|
36722
36715
|
|
|
36723
|
-
export interface ImaCertificateTypeCertificationResultsDto
|
|
36716
|
+
export interface ImaCertificateTypeCertificationResultsDto {
|
|
36724
36717
|
certificateType?: ImaCertificateTypeResultLine | null;
|
|
36725
36718
|
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
36726
36719
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
36727
36720
|
}
|
|
36728
36721
|
|
|
36729
|
-
export interface ImaSupplementaryCheckResultDto
|
|
36722
|
+
export interface ImaSupplementaryCheckResultDto {
|
|
36730
36723
|
status?: string | null;
|
|
36731
36724
|
documentId?: string | null;
|
|
36732
36725
|
acceptable?: boolean | null;
|
|
@@ -36735,7 +36728,7 @@ export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
|
36735
36728
|
override?: ImaResultLineOverrideDto | null;
|
|
36736
36729
|
}
|
|
36737
36730
|
|
|
36738
|
-
export interface ImaCertificateTypeProductAndOrderInformationResultsDto
|
|
36731
|
+
export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
|
|
36739
36732
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
36740
36733
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
36741
36734
|
customer?: ImaCertificateTypeResultLine | null;
|
|
@@ -36747,20 +36740,17 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
36747
36740
|
steelMaking: ImaSteelMakingResultDto;
|
|
36748
36741
|
}
|
|
36749
36742
|
|
|
36750
|
-
export interface ImaSteelMakingResultDto
|
|
36743
|
+
export interface ImaSteelMakingResultDto {
|
|
36751
36744
|
raw?: string[] | null;
|
|
36752
36745
|
chain?: string[] | null;
|
|
36753
36746
|
unmatched?: string[] | null;
|
|
36754
36747
|
}
|
|
36755
36748
|
|
|
36756
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto
|
|
36749
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
36757
36750
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
36758
36751
|
}
|
|
36759
36752
|
|
|
36760
|
-
export interface ImaSpecificationResultsDto
|
|
36761
|
-
chemistry: ImaSpecificationChemistryResultsDto;
|
|
36762
|
-
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
36763
|
-
ferrite: ImaSpecificationFerriteResultsDto;
|
|
36753
|
+
export interface ImaSpecificationResultsDto {
|
|
36764
36754
|
chemicalAnalysis: ImaChemicalAnalysisResultDto[];
|
|
36765
36755
|
tensileTests: ImaTensileTestResultDto[];
|
|
36766
36756
|
hardnessTests: ImaHardnessTestResultDto[];
|
|
@@ -36771,7 +36761,16 @@ export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
|
36771
36761
|
documentTypes: ImaDocumentTypesResultsDto;
|
|
36772
36762
|
}
|
|
36773
36763
|
|
|
36774
|
-
export interface
|
|
36764
|
+
export interface ImaChemicalAnalysisResultDto {
|
|
36765
|
+
heatNumber?: string | null;
|
|
36766
|
+
sampleReference?: string | null;
|
|
36767
|
+
analysisType?: string | null;
|
|
36768
|
+
elements: ImaChemicalAnalysisElementsResultDto;
|
|
36769
|
+
indices: ImaChemicalIndexResultDto[];
|
|
36770
|
+
testStandards: string[];
|
|
36771
|
+
}
|
|
36772
|
+
|
|
36773
|
+
export interface ImaChemicalAnalysisElementsResultDto {
|
|
36775
36774
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
36776
36775
|
manganese?: ImaSpecificationResultLineDto | null;
|
|
36777
36776
|
silicon?: ImaSpecificationResultLineDto | null;
|
|
@@ -36783,10 +36782,27 @@ export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBas
|
|
|
36783
36782
|
copper?: ImaSpecificationResultLineDto | null;
|
|
36784
36783
|
nitrogen?: ImaSpecificationResultLineDto | null;
|
|
36785
36784
|
wolfram?: ImaSpecificationResultLineDto | null;
|
|
36785
|
+
titanium?: ImaSpecificationResultLineDto | null;
|
|
36786
|
+
aluminum?: ImaSpecificationResultLineDto | null;
|
|
36787
|
+
niobium?: ImaSpecificationResultLineDto | null;
|
|
36788
|
+
tantalum?: ImaSpecificationResultLineDto | null;
|
|
36789
|
+
cobalt?: ImaSpecificationResultLineDto | null;
|
|
36790
|
+
boron?: ImaSpecificationResultLineDto | null;
|
|
36791
|
+
lead?: ImaSpecificationResultLineDto | null;
|
|
36792
|
+
selenium?: ImaSpecificationResultLineDto | null;
|
|
36793
|
+
bismuth?: ImaSpecificationResultLineDto | null;
|
|
36786
36794
|
iron?: ImaSpecificationResultLineDto | null;
|
|
36795
|
+
vanadium?: ImaSpecificationResultLineDto | null;
|
|
36796
|
+
oxygen?: ImaSpecificationResultLineDto | null;
|
|
36797
|
+
calcium?: ImaSpecificationResultLineDto | null;
|
|
36798
|
+
arsenic?: ImaSpecificationResultLineDto | null;
|
|
36799
|
+
tin?: ImaSpecificationResultLineDto | null;
|
|
36800
|
+
antimony?: ImaSpecificationResultLineDto | null;
|
|
36801
|
+
hydrogen?: ImaSpecificationResultLineDto | null;
|
|
36802
|
+
zirconium?: ImaSpecificationResultLineDto | null;
|
|
36787
36803
|
}
|
|
36788
36804
|
|
|
36789
|
-
export interface ImaSpecificationResultLineDto
|
|
36805
|
+
export interface ImaSpecificationResultLineDto {
|
|
36790
36806
|
specificationMin?: number | null;
|
|
36791
36807
|
specificationMax?: number | null;
|
|
36792
36808
|
readValue?: string | null;
|
|
@@ -36796,55 +36812,14 @@ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
|
36796
36812
|
|
|
36797
36813
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
36798
36814
|
|
|
36799
|
-
export interface
|
|
36800
|
-
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
36801
|
-
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
36802
|
-
elongation?: ImaSpecificationResultLineDto | null;
|
|
36803
|
-
reductionOfArea?: ImaSpecificationResultLineDto | null;
|
|
36804
|
-
impactEnergy?: ImaSpecificationResultLineDto | null;
|
|
36805
|
-
hardness?: ImaSpecificationResultLineDto | null;
|
|
36806
|
-
}
|
|
36807
|
-
|
|
36808
|
-
export interface ImaSpecificationFerriteResultsDto extends ImaCdfEntityReadBase {
|
|
36809
|
-
ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
|
|
36810
|
-
}
|
|
36811
|
-
|
|
36812
|
-
export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBase {
|
|
36813
|
-
specificationMin?: number | null;
|
|
36814
|
-
specificationMax?: number | null;
|
|
36815
|
-
readValue?: string | null;
|
|
36816
|
-
status: ImaSpecificationResultLineStatusDto;
|
|
36817
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36818
|
-
measurementMethod?: string | null;
|
|
36819
|
-
}
|
|
36820
|
-
|
|
36821
|
-
export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
|
|
36822
|
-
sampleReference?: string | null;
|
|
36823
|
-
analysisType?: string | null;
|
|
36824
|
-
elements: ImaChemicalElementResultDto[];
|
|
36825
|
-
indices: ImaChemicalIndexResultDto[];
|
|
36826
|
-
testStandards: string[];
|
|
36827
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36828
|
-
}
|
|
36829
|
-
|
|
36830
|
-
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
36831
|
-
symbol?: string | null;
|
|
36832
|
-
value?: ImaResultValueDto | null;
|
|
36833
|
-
}
|
|
36834
|
-
|
|
36835
|
-
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
36836
|
-
readValue?: string | null;
|
|
36837
|
-
value?: number | null;
|
|
36838
|
-
unit?: string | null;
|
|
36839
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36840
|
-
}
|
|
36841
|
-
|
|
36842
|
-
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
36815
|
+
export interface ImaChemicalIndexResultDto {
|
|
36843
36816
|
name?: string | null;
|
|
36844
36817
|
value?: number | null;
|
|
36818
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36845
36819
|
}
|
|
36846
36820
|
|
|
36847
|
-
export interface ImaTensileTestResultDto
|
|
36821
|
+
export interface ImaTensileTestResultDto {
|
|
36822
|
+
heatNumber?: string | null;
|
|
36848
36823
|
sampleReference?: string | null;
|
|
36849
36824
|
orientation?: string | null;
|
|
36850
36825
|
testLocation?: string | null;
|
|
@@ -36859,17 +36834,24 @@ export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
|
36859
36834
|
override?: ImaResultLineOverrideDto | null;
|
|
36860
36835
|
}
|
|
36861
36836
|
|
|
36862
|
-
export interface
|
|
36837
|
+
export interface ImaResultValueDto {
|
|
36838
|
+
readValue?: string | null;
|
|
36839
|
+
unit?: string | null;
|
|
36840
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36841
|
+
}
|
|
36842
|
+
|
|
36843
|
+
export interface ImaYieldStrengthResultDto {
|
|
36863
36844
|
label?: string | null;
|
|
36864
36845
|
value?: ImaResultValueDto | null;
|
|
36865
36846
|
}
|
|
36866
36847
|
|
|
36867
|
-
export interface ImaElongationResultDto
|
|
36848
|
+
export interface ImaElongationResultDto {
|
|
36868
36849
|
gauge?: string | null;
|
|
36869
36850
|
value?: ImaResultValueDto | null;
|
|
36870
36851
|
}
|
|
36871
36852
|
|
|
36872
|
-
export interface ImaHardnessTestResultDto
|
|
36853
|
+
export interface ImaHardnessTestResultDto {
|
|
36854
|
+
heatNumber?: string | null;
|
|
36873
36855
|
sampleReference?: string | null;
|
|
36874
36856
|
orientation?: string | null;
|
|
36875
36857
|
testLocation?: string | null;
|
|
@@ -36878,13 +36860,14 @@ export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
|
36878
36860
|
override?: ImaResultLineOverrideDto | null;
|
|
36879
36861
|
}
|
|
36880
36862
|
|
|
36881
|
-
export interface ImaHardnessReadingResultDto
|
|
36863
|
+
export interface ImaHardnessReadingResultDto {
|
|
36882
36864
|
label?: string | null;
|
|
36883
36865
|
scale?: string | null;
|
|
36884
36866
|
value?: number | null;
|
|
36885
36867
|
}
|
|
36886
36868
|
|
|
36887
|
-
export interface ImaImpactTestResultDto
|
|
36869
|
+
export interface ImaImpactTestResultDto {
|
|
36870
|
+
heatNumber?: string | null;
|
|
36888
36871
|
sampleReference?: string | null;
|
|
36889
36872
|
orientation?: string | null;
|
|
36890
36873
|
testLocation?: string | null;
|
|
@@ -36900,7 +36883,8 @@ export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
|
36900
36883
|
override?: ImaResultLineOverrideDto | null;
|
|
36901
36884
|
}
|
|
36902
36885
|
|
|
36903
|
-
export interface ImaCorrosionTestResultDto
|
|
36886
|
+
export interface ImaCorrosionTestResultDto {
|
|
36887
|
+
heatNumber?: string | null;
|
|
36904
36888
|
sampleReference?: string | null;
|
|
36905
36889
|
testLocation?: string | null;
|
|
36906
36890
|
testMethod?: string | null;
|
|
@@ -36913,7 +36897,8 @@ export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
|
36913
36897
|
override?: ImaResultLineOverrideDto | null;
|
|
36914
36898
|
}
|
|
36915
36899
|
|
|
36916
|
-
export interface ImaFerriteResultDto
|
|
36900
|
+
export interface ImaFerriteResultDto {
|
|
36901
|
+
heatNumber?: string | null;
|
|
36917
36902
|
sampleReference?: string | null;
|
|
36918
36903
|
testLocation?: string | null;
|
|
36919
36904
|
ferrite?: ImaResultValueDto | null;
|
|
@@ -36925,7 +36910,8 @@ export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
|
36925
36910
|
override?: ImaResultLineOverrideDto | null;
|
|
36926
36911
|
}
|
|
36927
36912
|
|
|
36928
|
-
export interface ImaHeatTreatmentResultDto
|
|
36913
|
+
export interface ImaHeatTreatmentResultDto {
|
|
36914
|
+
heatNumber?: string | null;
|
|
36929
36915
|
stepType?: string | null;
|
|
36930
36916
|
treatmentName?: string | null;
|
|
36931
36917
|
temperature?: ImaResultValueDto | null;
|
|
@@ -36937,7 +36923,7 @@ export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
|
36937
36923
|
override?: ImaResultLineOverrideDto | null;
|
|
36938
36924
|
}
|
|
36939
36925
|
|
|
36940
|
-
export interface ImaDocumentTypesResultsDto
|
|
36926
|
+
export interface ImaDocumentTypesResultsDto {
|
|
36941
36927
|
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
36942
36928
|
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
36943
36929
|
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
@@ -37069,7 +37055,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
37069
37055
|
purchaseOrderPartRevision?: string | null;
|
|
37070
37056
|
purchaseOrderDrawing?: string | null;
|
|
37071
37057
|
purchaseOrderDrawingRevision?: string | null;
|
|
37072
|
-
|
|
37058
|
+
heatNumbers?: string[] | null;
|
|
37073
37059
|
status: ImaMaterialCheckStatusDto;
|
|
37074
37060
|
created: Date;
|
|
37075
37061
|
createdBy: string;
|
|
@@ -37279,10 +37265,27 @@ export interface ImaChemistrySpecificationDto {
|
|
|
37279
37265
|
copper?: ImaSpecificationLineDto | null;
|
|
37280
37266
|
nitrogen?: ImaSpecificationLineDto | null;
|
|
37281
37267
|
wolfram?: ImaSpecificationLineDto | null;
|
|
37268
|
+
titanium?: ImaSpecificationLineDto | null;
|
|
37269
|
+
aluminum?: ImaSpecificationLineDto | null;
|
|
37270
|
+
niobium?: ImaSpecificationLineDto | null;
|
|
37271
|
+
tantalum?: ImaSpecificationLineDto | null;
|
|
37272
|
+
cobalt?: ImaSpecificationLineDto | null;
|
|
37273
|
+
boron?: ImaSpecificationLineDto | null;
|
|
37274
|
+
lead?: ImaSpecificationLineDto | null;
|
|
37275
|
+
selenium?: ImaSpecificationLineDto | null;
|
|
37276
|
+
bismuth?: ImaSpecificationLineDto | null;
|
|
37282
37277
|
iron?: ImaSpecificationLineDto | null;
|
|
37278
|
+
vanadium?: ImaSpecificationLineDto | null;
|
|
37279
|
+
oxygen?: ImaSpecificationLineDto | null;
|
|
37280
|
+
calcium?: ImaSpecificationLineDto | null;
|
|
37281
|
+
arsenic?: ImaSpecificationLineDto | null;
|
|
37282
|
+
tin?: ImaSpecificationLineDto | null;
|
|
37283
|
+
antimony?: ImaSpecificationLineDto | null;
|
|
37284
|
+
hydrogen?: ImaSpecificationLineDto | null;
|
|
37285
|
+
zirconium?: ImaSpecificationLineDto | null;
|
|
37283
37286
|
}
|
|
37284
37287
|
|
|
37285
|
-
export interface ImaSpecificationLineDto
|
|
37288
|
+
export interface ImaSpecificationLineDto {
|
|
37286
37289
|
min?: number | null;
|
|
37287
37290
|
max?: number | null;
|
|
37288
37291
|
}
|