@ignos/api-client 20260727.193.1 → 20260727.195.1-alpha
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 +160 -190
- package/lib/ignosportal-api.js +39 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +211 -206
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 IMesProductionOrderAttachmentClient {
|
|
2474
2477
|
/**
|
|
@@ -7349,6 +7352,37 @@ export interface LabelId {
|
|
|
7349
7352
|
parcelId: string;
|
|
7350
7353
|
trackingId?: string | null;
|
|
7351
7354
|
}
|
|
7355
|
+
export interface ProductionOrderListDto {
|
|
7356
|
+
id: string;
|
|
7357
|
+
companyId?: string | null;
|
|
7358
|
+
part?: PartDto | null;
|
|
7359
|
+
quantity: number;
|
|
7360
|
+
unit?: string | null;
|
|
7361
|
+
status: WorkorderStatus;
|
|
7362
|
+
plannedStart?: Date | null;
|
|
7363
|
+
plannedEnd?: Date | null;
|
|
7364
|
+
producedQuantity: number;
|
|
7365
|
+
scrappedQuantity: number;
|
|
7366
|
+
deliveryLocation?: WarehouseLocationDto | null;
|
|
7367
|
+
project?: WorkOrderProjectDto | null;
|
|
7368
|
+
startDate?: Date | null;
|
|
7369
|
+
endDate?: Date | null;
|
|
7370
|
+
deliveryDate?: Date | null;
|
|
7371
|
+
bomPosition?: string | null;
|
|
7372
|
+
orderReference?: OrderReferenceDto | null;
|
|
7373
|
+
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
7374
|
+
}
|
|
7375
|
+
export interface OrderReferenceDto {
|
|
7376
|
+
orderReferenceType?: OrderReferenceTypeDto;
|
|
7377
|
+
orderNumber?: string;
|
|
7378
|
+
orderLineNumber?: number | null;
|
|
7379
|
+
}
|
|
7380
|
+
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
7381
|
+
export interface ListProductionOrdersRequest {
|
|
7382
|
+
search: string;
|
|
7383
|
+
searchType: SearchTypeDto;
|
|
7384
|
+
maxResults?: number | null;
|
|
7385
|
+
}
|
|
7352
7386
|
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
7353
7387
|
export interface WorkOrderAttachmentDto {
|
|
7354
7388
|
createdBy?: UserDto | null;
|
|
@@ -7430,12 +7464,6 @@ export interface DrawingFileDto {
|
|
|
7430
7464
|
name: string;
|
|
7431
7465
|
comment?: string;
|
|
7432
7466
|
}
|
|
7433
|
-
export interface OrderReferenceDto {
|
|
7434
|
-
orderReferenceType?: OrderReferenceTypeDto;
|
|
7435
|
-
orderNumber?: string;
|
|
7436
|
-
orderLineNumber?: number | null;
|
|
7437
|
-
}
|
|
7438
|
-
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
7439
7467
|
export interface ProductionOrderBomDto {
|
|
7440
7468
|
position: string;
|
|
7441
7469
|
lineNumber: number;
|
|
@@ -7955,6 +7983,7 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
7955
7983
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
7956
7984
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
7957
7985
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7986
|
+
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7958
7987
|
}
|
|
7959
7988
|
export interface ImaCdfEntityReadBase {
|
|
7960
7989
|
}
|
|
@@ -7962,7 +7991,6 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
|
|
|
7962
7991
|
manufacturer?: boolean;
|
|
7963
7992
|
address?: boolean;
|
|
7964
7993
|
contact?: boolean;
|
|
7965
|
-
steelPlant?: boolean;
|
|
7966
7994
|
}
|
|
7967
7995
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
7968
7996
|
certifiedBy?: boolean;
|
|
@@ -7981,7 +8009,6 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
7981
8009
|
stamp?: boolean;
|
|
7982
8010
|
}
|
|
7983
8011
|
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
7984
|
-
certificateType?: boolean;
|
|
7985
8012
|
certificateOfCompliance?: boolean;
|
|
7986
8013
|
inspectionCertificate?: boolean;
|
|
7987
8014
|
}
|
|
@@ -7993,20 +8020,32 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
7993
8020
|
dimensionsOrWeight?: boolean;
|
|
7994
8021
|
batchNumber?: boolean;
|
|
7995
8022
|
heatNumber?: boolean;
|
|
7996
|
-
|
|
7997
|
-
steelMaking?: boolean;
|
|
8023
|
+
relatedStandards?: boolean;
|
|
7998
8024
|
}
|
|
7999
8025
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8000
8026
|
usedStandards?: boolean;
|
|
8001
8027
|
}
|
|
8002
8028
|
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
8003
|
-
|
|
8004
|
-
hardnessTests?: boolean;
|
|
8005
|
-
impactTests?: boolean;
|
|
8029
|
+
mechanicalProperties?: boolean;
|
|
8006
8030
|
chemicalAnalysis?: boolean;
|
|
8031
|
+
impactTests?: boolean;
|
|
8007
8032
|
corrosionTests?: boolean;
|
|
8008
8033
|
ferriteContentAndMicrostructure?: boolean;
|
|
8009
8034
|
}
|
|
8035
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8036
|
+
heatTreatmentCertificate?: boolean;
|
|
8037
|
+
ultrasonicControlCertificate?: boolean;
|
|
8038
|
+
liquidPenetrantCertificate?: boolean;
|
|
8039
|
+
testReport?: boolean;
|
|
8040
|
+
dimensionalReport?: boolean;
|
|
8041
|
+
dyePenetrantReport?: boolean;
|
|
8042
|
+
visualReport?: boolean;
|
|
8043
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
8044
|
+
certificateOfTest?: boolean;
|
|
8045
|
+
technicalReport?: boolean;
|
|
8046
|
+
microExaminationReport?: boolean;
|
|
8047
|
+
radiologicalReport?: boolean;
|
|
8048
|
+
}
|
|
8010
8049
|
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
8011
8050
|
name: string;
|
|
8012
8051
|
revision: string;
|
|
@@ -8027,12 +8066,12 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
|
8027
8066
|
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
8028
8067
|
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
8029
8068
|
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
8069
|
+
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
8030
8070
|
}
|
|
8031
8071
|
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
8032
8072
|
manufacturer?: boolean | null;
|
|
8033
8073
|
address?: boolean | null;
|
|
8034
8074
|
contact?: boolean | null;
|
|
8035
|
-
steelPlant?: boolean | null;
|
|
8036
8075
|
}
|
|
8037
8076
|
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
8038
8077
|
certifiedBy?: boolean | null;
|
|
@@ -8051,7 +8090,6 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
|
8051
8090
|
stamp?: boolean | null;
|
|
8052
8091
|
}
|
|
8053
8092
|
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
8054
|
-
certificateType?: boolean | null;
|
|
8055
8093
|
certificateOfCompliance?: boolean | null;
|
|
8056
8094
|
inspectionCertificate?: boolean | null;
|
|
8057
8095
|
}
|
|
@@ -8063,20 +8101,32 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
|
|
|
8063
8101
|
dimensionsOrWeight?: boolean | null;
|
|
8064
8102
|
batchNumber?: boolean | null;
|
|
8065
8103
|
heatNumber?: boolean | null;
|
|
8066
|
-
|
|
8067
|
-
steelMaking?: boolean | null;
|
|
8104
|
+
relatedStandards?: boolean | null;
|
|
8068
8105
|
}
|
|
8069
8106
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
8070
8107
|
usedStandards?: boolean | null;
|
|
8071
8108
|
}
|
|
8072
8109
|
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
8073
|
-
|
|
8074
|
-
hardnessTests?: boolean | null;
|
|
8075
|
-
impactTests?: boolean | null;
|
|
8110
|
+
mechanicalProperties?: boolean | null;
|
|
8076
8111
|
chemicalAnalysis?: boolean | null;
|
|
8112
|
+
impactTests?: boolean | null;
|
|
8077
8113
|
corrosionTests?: boolean | null;
|
|
8078
8114
|
ferriteContentAndMicrostructure?: boolean | null;
|
|
8079
8115
|
}
|
|
8116
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
8117
|
+
heatTreatmentCertificate?: boolean | null;
|
|
8118
|
+
ultrasonicControlCertificate?: boolean | null;
|
|
8119
|
+
liquidPenetrantCertificate?: boolean | null;
|
|
8120
|
+
testReport?: boolean | null;
|
|
8121
|
+
dimensionalReport?: boolean | null;
|
|
8122
|
+
dyePenetrantReport?: boolean | null;
|
|
8123
|
+
visualReport?: boolean | null;
|
|
8124
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
8125
|
+
certificateOfTest?: boolean | null;
|
|
8126
|
+
technicalReport?: boolean | null;
|
|
8127
|
+
microExaminationReport?: boolean | null;
|
|
8128
|
+
radiologicalReport?: boolean | null;
|
|
8129
|
+
}
|
|
8080
8130
|
export interface ImaCertificateTypeLiteDto {
|
|
8081
8131
|
certificateTypeId: string;
|
|
8082
8132
|
version: number;
|
|
@@ -8147,12 +8197,13 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
8147
8197
|
certification: ImaCertificateTypeCertificationResultsDto;
|
|
8148
8198
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
8149
8199
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
8200
|
+
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
8201
|
+
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
8150
8202
|
}
|
|
8151
8203
|
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
8152
8204
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
8153
8205
|
address?: ImaCertificateTypeResultLine | null;
|
|
8154
8206
|
contact?: ImaCertificateTypeResultLine | null;
|
|
8155
|
-
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
8156
8207
|
}
|
|
8157
8208
|
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
8158
8209
|
found?: boolean;
|
|
@@ -8184,18 +8235,9 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
8184
8235
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
8185
8236
|
}
|
|
8186
8237
|
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
8187
|
-
|
|
8188
|
-
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
8238
|
+
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
8189
8239
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
8190
8240
|
}
|
|
8191
|
-
export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
8192
|
-
status?: string | null;
|
|
8193
|
-
documentId?: string | null;
|
|
8194
|
-
acceptable?: boolean | null;
|
|
8195
|
-
standards: string[];
|
|
8196
|
-
summary?: string | null;
|
|
8197
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8198
|
-
}
|
|
8199
8241
|
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
8200
8242
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
8201
8243
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
@@ -8204,29 +8246,37 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
8204
8246
|
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
8205
8247
|
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
8206
8248
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
8207
|
-
|
|
8208
|
-
steelMaking: ImaSteelMakingResultDto;
|
|
8209
|
-
}
|
|
8210
|
-
export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
|
|
8211
|
-
raw?: string[] | null;
|
|
8212
|
-
chain?: string[] | null;
|
|
8213
|
-
unmatched?: string[] | null;
|
|
8249
|
+
relatedStandards?: ImaCertificateTypeResultLine | null;
|
|
8214
8250
|
}
|
|
8215
8251
|
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
8216
8252
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
8217
8253
|
}
|
|
8254
|
+
export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
|
|
8255
|
+
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
8256
|
+
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
8257
|
+
impactTests?: ImaCertificateTypeResultLine | null;
|
|
8258
|
+
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
8259
|
+
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
8260
|
+
}
|
|
8261
|
+
export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
8262
|
+
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
8263
|
+
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
8264
|
+
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
8265
|
+
testReport?: ImaCertificateTypeResultLine | null;
|
|
8266
|
+
dimensionalReport?: ImaCertificateTypeResultLine | null;
|
|
8267
|
+
dyePenetrantReport?: ImaCertificateTypeResultLine | null;
|
|
8268
|
+
visualReport?: ImaCertificateTypeResultLine | null;
|
|
8269
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
|
|
8270
|
+
certificateOfTest?: ImaCertificateTypeResultLine | null;
|
|
8271
|
+
technicalReport?: ImaCertificateTypeResultLine | null;
|
|
8272
|
+
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
8273
|
+
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
8274
|
+
}
|
|
8218
8275
|
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
8219
8276
|
chemistry: ImaSpecificationChemistryResultsDto;
|
|
8220
8277
|
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
8221
8278
|
ferrite: ImaSpecificationFerriteResultsDto;
|
|
8222
|
-
|
|
8223
|
-
tensileTests: ImaTensileTestResultDto[];
|
|
8224
|
-
hardnessTests: ImaHardnessTestResultDto[];
|
|
8225
|
-
impactTests: ImaImpactTestResultDto[];
|
|
8226
|
-
corrosionTests: ImaCorrosionTestResultDto[];
|
|
8227
|
-
ferriteContentAndMicrostructure: ImaFerriteResultDto[];
|
|
8228
|
-
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
8229
|
-
documentTypes: ImaDocumentTypesResultsDto;
|
|
8279
|
+
heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
8230
8280
|
}
|
|
8231
8281
|
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
8232
8282
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
@@ -8269,132 +8319,27 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8269
8319
|
override?: ImaResultLineOverrideDto | null;
|
|
8270
8320
|
measurementMethod?: string | null;
|
|
8271
8321
|
}
|
|
8272
|
-
export interface
|
|
8273
|
-
|
|
8274
|
-
|
|
8275
|
-
|
|
8276
|
-
indices: ImaChemicalIndexResultDto[];
|
|
8277
|
-
testStandards: string[];
|
|
8278
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8279
|
-
}
|
|
8280
|
-
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
8281
|
-
symbol?: string | null;
|
|
8282
|
-
value?: ImaResultValueDto | null;
|
|
8283
|
-
}
|
|
8284
|
-
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
8285
|
-
readValue?: string | null;
|
|
8286
|
-
value?: number | null;
|
|
8287
|
-
unit?: string | null;
|
|
8288
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8289
|
-
}
|
|
8290
|
-
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
8291
|
-
name?: string | null;
|
|
8292
|
-
value?: number | null;
|
|
8293
|
-
}
|
|
8294
|
-
export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
8295
|
-
sampleReference?: string | null;
|
|
8296
|
-
orientation?: string | null;
|
|
8297
|
-
testLocation?: string | null;
|
|
8298
|
-
temperature?: ImaResultValueDto | null;
|
|
8299
|
-
roomTemperature?: boolean | null;
|
|
8300
|
-
yieldStrengths: ImaYieldStrengthResultDto[];
|
|
8301
|
-
tensileStrength?: ImaResultValueDto | null;
|
|
8302
|
-
yieldTensileRatio?: number | null;
|
|
8303
|
-
elongations: ImaElongationResultDto[];
|
|
8304
|
-
reductionOfArea?: ImaResultValueDto | null;
|
|
8305
|
-
testStandards: string[];
|
|
8306
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8307
|
-
}
|
|
8308
|
-
export interface ImaYieldStrengthResultDto extends ImaCdfEntityReadBase {
|
|
8309
|
-
label?: string | null;
|
|
8310
|
-
value?: ImaResultValueDto | null;
|
|
8311
|
-
}
|
|
8312
|
-
export interface ImaElongationResultDto extends ImaCdfEntityReadBase {
|
|
8313
|
-
gauge?: string | null;
|
|
8314
|
-
value?: ImaResultValueDto | null;
|
|
8315
|
-
}
|
|
8316
|
-
export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
8317
|
-
sampleReference?: string | null;
|
|
8318
|
-
orientation?: string | null;
|
|
8319
|
-
testLocation?: string | null;
|
|
8320
|
-
readings: ImaHardnessReadingResultDto[];
|
|
8321
|
-
testStandards: string[];
|
|
8322
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8323
|
-
}
|
|
8324
|
-
export interface ImaHardnessReadingResultDto extends ImaCdfEntityReadBase {
|
|
8325
|
-
label?: string | null;
|
|
8326
|
-
scale?: string | null;
|
|
8327
|
-
value?: number | null;
|
|
8328
|
-
}
|
|
8329
|
-
export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
8330
|
-
sampleReference?: string | null;
|
|
8331
|
-
orientation?: string | null;
|
|
8332
|
-
testLocation?: string | null;
|
|
8333
|
-
temperature?: ImaResultValueDto | null;
|
|
8334
|
-
roomTemperature?: boolean | null;
|
|
8335
|
-
testLabel?: string | null;
|
|
8336
|
-
notchType?: string | null;
|
|
8337
|
-
specimenSize?: string | null;
|
|
8338
|
-
individualValues: ImaResultValueDto[];
|
|
8339
|
-
reportedAverage?: ImaResultValueDto | null;
|
|
8340
|
-
reportedMinimum?: ImaResultValueDto | null;
|
|
8341
|
-
testStandards: string[];
|
|
8342
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8343
|
-
}
|
|
8344
|
-
export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
8345
|
-
sampleReference?: string | null;
|
|
8346
|
-
testLocation?: string | null;
|
|
8347
|
-
testMethod?: string | null;
|
|
8348
|
-
testTemperature?: ImaResultValueDto | null;
|
|
8349
|
-
roomTemperature?: boolean | null;
|
|
8350
|
-
weightLoss?: ImaResultValueDto | null;
|
|
8351
|
-
pitting?: boolean | null;
|
|
8352
|
-
result?: string | null;
|
|
8353
|
-
acceptable?: boolean | null;
|
|
8354
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8355
|
-
}
|
|
8356
|
-
export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
8357
|
-
sampleReference?: string | null;
|
|
8358
|
-
testLocation?: string | null;
|
|
8359
|
-
ferrite?: ImaResultValueDto | null;
|
|
8360
|
-
ferriteTolerance?: number | null;
|
|
8361
|
-
reportedRange?: string | null;
|
|
8362
|
-
intermetallicPhases?: boolean | null;
|
|
8363
|
-
grainSize?: string | null;
|
|
8364
|
-
testStandards: string[];
|
|
8365
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8322
|
+
export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
8323
|
+
step: number;
|
|
8324
|
+
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
8325
|
+
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
8366
8326
|
}
|
|
8367
|
-
export interface
|
|
8368
|
-
|
|
8369
|
-
|
|
8370
|
-
|
|
8371
|
-
temperatureMin?: number | null;
|
|
8372
|
-
temperatureMax?: number | null;
|
|
8373
|
-
soakTime?: ImaResultValueDto | null;
|
|
8374
|
-
soakRate?: string | null;
|
|
8375
|
-
coolingMedium?: string | null;
|
|
8376
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8327
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
|
|
8328
|
+
coolingMethods?: string[] | null;
|
|
8329
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
8330
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
8377
8331
|
}
|
|
8378
|
-
export interface
|
|
8379
|
-
|
|
8380
|
-
|
|
8381
|
-
|
|
8382
|
-
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
8383
|
-
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
8384
|
-
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
8385
|
-
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
8386
|
-
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8387
|
-
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
8332
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
|
|
8333
|
+
heatingMethod?: string | null;
|
|
8334
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
8335
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
8388
8336
|
}
|
|
8389
8337
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8390
8338
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8391
|
-
|
|
8392
|
-
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8396
|
-
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8397
|
-
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
8339
|
+
chemistrySpecificationSection?: ImaOverrideSpecificationChemistryResultsDto | null;
|
|
8340
|
+
mechanicalSpecificationSection?: ImaOverrideSpecificationMechanicalResultsDto | null;
|
|
8341
|
+
ferriteSpecificationSection?: ImaOverrideSpecificationFerriteResultsDto | null;
|
|
8342
|
+
heatSpecificationSection?: ImaOverrideSpecificationHeatTreatmentResultsDto | null;
|
|
8398
8343
|
}
|
|
8399
8344
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
8400
8345
|
manufacturer?: ImaOverrideCertificateTypeManufacturerResultsDto | null;
|
|
@@ -8403,12 +8348,13 @@ export interface ImaOverrideCertificateTypeResultsDto {
|
|
|
8403
8348
|
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
8404
8349
|
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
8405
8350
|
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
8351
|
+
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
8352
|
+
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
8406
8353
|
}
|
|
8407
8354
|
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
8408
8355
|
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8409
8356
|
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8410
8357
|
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8411
|
-
steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8412
8358
|
}
|
|
8413
8359
|
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
8414
8360
|
approved?: boolean | null;
|
|
@@ -8431,7 +8377,6 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
|
8431
8377
|
stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8432
8378
|
}
|
|
8433
8379
|
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
8434
|
-
certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8435
8380
|
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8436
8381
|
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8437
8382
|
}
|
|
@@ -8443,21 +8388,59 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8443
8388
|
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8444
8389
|
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8445
8390
|
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8446
|
-
|
|
8391
|
+
relatedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8447
8392
|
}
|
|
8448
8393
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8449
8394
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8450
8395
|
}
|
|
8451
|
-
export interface
|
|
8396
|
+
export interface ImaOverrideCertificateTypeTestResultsResultsDto {
|
|
8397
|
+
mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8398
|
+
chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8399
|
+
impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8400
|
+
corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8401
|
+
ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8402
|
+
}
|
|
8403
|
+
export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
|
|
8404
|
+
heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8452
8405
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8453
|
-
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8454
8406
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8455
|
-
|
|
8456
|
-
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8457
|
-
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8458
|
-
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8407
|
+
testReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8459
8408
|
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8409
|
+
dyePenetrantReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8410
|
+
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8411
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8412
|
+
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8413
|
+
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8460
8414
|
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8415
|
+
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8416
|
+
}
|
|
8417
|
+
export interface ImaOverrideSpecificationChemistryResultsDto {
|
|
8418
|
+
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8419
|
+
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8420
|
+
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8421
|
+
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8422
|
+
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8423
|
+
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8424
|
+
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8425
|
+
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8426
|
+
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8427
|
+
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8428
|
+
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8429
|
+
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8430
|
+
}
|
|
8431
|
+
export interface ImaOverrideSpecificationMechanicalResultsDto {
|
|
8432
|
+
yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8433
|
+
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8434
|
+
elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8435
|
+
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8436
|
+
impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8437
|
+
hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8438
|
+
}
|
|
8439
|
+
export interface ImaOverrideSpecificationFerriteResultsDto {
|
|
8440
|
+
ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8441
|
+
}
|
|
8442
|
+
export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
|
|
8443
|
+
heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
|
|
8461
8444
|
}
|
|
8462
8445
|
export interface ImaUpdateMaterialCheckMetadataRequestDto {
|
|
8463
8446
|
customerOrder?: string;
|
|
@@ -8511,7 +8494,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8511
8494
|
}
|
|
8512
8495
|
export interface ImaMaterialChecksPageRequestDto {
|
|
8513
8496
|
pageSize?: number | null;
|
|
8514
|
-
orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
|
|
8497
|
+
orderBy?: ImaMaterialChecksPageOrderRequestDto[] | null;
|
|
8515
8498
|
searchQuery?: string | null;
|
|
8516
8499
|
fileNameFilter?: string | null;
|
|
8517
8500
|
specificationFilter?: string | null;
|
|
@@ -8664,7 +8647,6 @@ export interface ImaSpecificationDto {
|
|
|
8664
8647
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8665
8648
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8666
8649
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8667
|
-
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
8668
8650
|
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
8669
8651
|
}
|
|
8670
8652
|
export interface ImaSpecificationVersionDto {
|
|
@@ -8700,17 +8682,6 @@ export interface ImaMechanicalSpecificationDto {
|
|
|
8700
8682
|
export interface ImaFerriteSpecificationDto {
|
|
8701
8683
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8702
8684
|
}
|
|
8703
|
-
export interface ImaDocumentTypesSpecificationDto {
|
|
8704
|
-
ultrasonicControlCertificate?: boolean;
|
|
8705
|
-
radiologicalReport?: boolean;
|
|
8706
|
-
liquidPenetrantCertificate?: boolean;
|
|
8707
|
-
magneticParticle?: boolean;
|
|
8708
|
-
pmi?: boolean;
|
|
8709
|
-
hydrostatic?: boolean;
|
|
8710
|
-
visualReport?: boolean;
|
|
8711
|
-
dimensionalReport?: boolean;
|
|
8712
|
-
microExaminationReport?: boolean;
|
|
8713
|
-
}
|
|
8714
8685
|
export interface ImaHeatTreatmentSpecificationDto {
|
|
8715
8686
|
step: number;
|
|
8716
8687
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
@@ -8750,7 +8721,6 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8750
8721
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
8751
8722
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8752
8723
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8753
|
-
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
8754
8724
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8755
8725
|
}
|
|
8756
8726
|
export interface ImaSpecificationLiteDto {
|
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 MesProductionOrderAttachmentClient extends AuthorizedApiBase {
|
|
20557
20596
|
constructor(configuration, baseUrl, http) {
|
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 IMesProductionOrderAttachmentClient {
|
|
@@ -35200,6 +35241,41 @@ export interface LabelId {
|
|
|
35200
35241
|
trackingId?: string | null;
|
|
35201
35242
|
}
|
|
35202
35243
|
|
|
35244
|
+
export interface ProductionOrderListDto {
|
|
35245
|
+
id: string;
|
|
35246
|
+
companyId?: string | null;
|
|
35247
|
+
part?: PartDto | null;
|
|
35248
|
+
quantity: number;
|
|
35249
|
+
unit?: string | null;
|
|
35250
|
+
status: WorkorderStatus;
|
|
35251
|
+
plannedStart?: Date | null;
|
|
35252
|
+
plannedEnd?: Date | null;
|
|
35253
|
+
producedQuantity: number;
|
|
35254
|
+
scrappedQuantity: number;
|
|
35255
|
+
deliveryLocation?: WarehouseLocationDto | null;
|
|
35256
|
+
project?: WorkOrderProjectDto | null;
|
|
35257
|
+
startDate?: Date | null;
|
|
35258
|
+
endDate?: Date | null;
|
|
35259
|
+
deliveryDate?: Date | null;
|
|
35260
|
+
bomPosition?: string | null;
|
|
35261
|
+
orderReference?: OrderReferenceDto | null;
|
|
35262
|
+
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
35263
|
+
}
|
|
35264
|
+
|
|
35265
|
+
export interface OrderReferenceDto {
|
|
35266
|
+
orderReferenceType?: OrderReferenceTypeDto;
|
|
35267
|
+
orderNumber?: string;
|
|
35268
|
+
orderLineNumber?: number | null;
|
|
35269
|
+
}
|
|
35270
|
+
|
|
35271
|
+
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
35272
|
+
|
|
35273
|
+
export interface ListProductionOrdersRequest {
|
|
35274
|
+
search: string;
|
|
35275
|
+
searchType: SearchTypeDto;
|
|
35276
|
+
maxResults?: number | null;
|
|
35277
|
+
}
|
|
35278
|
+
|
|
35203
35279
|
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
35204
35280
|
|
|
35205
35281
|
export interface WorkOrderAttachmentDto {
|
|
@@ -35287,14 +35363,6 @@ export interface DrawingFileDto {
|
|
|
35287
35363
|
comment?: string;
|
|
35288
35364
|
}
|
|
35289
35365
|
|
|
35290
|
-
export interface OrderReferenceDto {
|
|
35291
|
-
orderReferenceType?: OrderReferenceTypeDto;
|
|
35292
|
-
orderNumber?: string;
|
|
35293
|
-
orderLineNumber?: number | null;
|
|
35294
|
-
}
|
|
35295
|
-
|
|
35296
|
-
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
35297
|
-
|
|
35298
35366
|
export interface ProductionOrderBomDto {
|
|
35299
35367
|
position: string;
|
|
35300
35368
|
lineNumber: number;
|
|
@@ -35872,6 +35940,7 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
35872
35940
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
35873
35941
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
35874
35942
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
35943
|
+
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
35875
35944
|
}
|
|
35876
35945
|
|
|
35877
35946
|
export interface ImaCdfEntityReadBase {
|
|
@@ -35881,7 +35950,6 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
|
|
|
35881
35950
|
manufacturer?: boolean;
|
|
35882
35951
|
address?: boolean;
|
|
35883
35952
|
contact?: boolean;
|
|
35884
|
-
steelPlant?: boolean;
|
|
35885
35953
|
}
|
|
35886
35954
|
|
|
35887
35955
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
@@ -35903,7 +35971,6 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
35903
35971
|
}
|
|
35904
35972
|
|
|
35905
35973
|
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
35906
|
-
certificateType?: boolean;
|
|
35907
35974
|
certificateOfCompliance?: boolean;
|
|
35908
35975
|
inspectionCertificate?: boolean;
|
|
35909
35976
|
}
|
|
@@ -35916,8 +35983,7 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
35916
35983
|
dimensionsOrWeight?: boolean;
|
|
35917
35984
|
batchNumber?: boolean;
|
|
35918
35985
|
heatNumber?: boolean;
|
|
35919
|
-
|
|
35920
|
-
steelMaking?: boolean;
|
|
35986
|
+
relatedStandards?: boolean;
|
|
35921
35987
|
}
|
|
35922
35988
|
|
|
35923
35989
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
@@ -35925,14 +35991,28 @@ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto exten
|
|
|
35925
35991
|
}
|
|
35926
35992
|
|
|
35927
35993
|
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
35928
|
-
|
|
35929
|
-
hardnessTests?: boolean;
|
|
35930
|
-
impactTests?: boolean;
|
|
35994
|
+
mechanicalProperties?: boolean;
|
|
35931
35995
|
chemicalAnalysis?: boolean;
|
|
35996
|
+
impactTests?: boolean;
|
|
35932
35997
|
corrosionTests?: boolean;
|
|
35933
35998
|
ferriteContentAndMicrostructure?: boolean;
|
|
35934
35999
|
}
|
|
35935
36000
|
|
|
36001
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
36002
|
+
heatTreatmentCertificate?: boolean;
|
|
36003
|
+
ultrasonicControlCertificate?: boolean;
|
|
36004
|
+
liquidPenetrantCertificate?: boolean;
|
|
36005
|
+
testReport?: boolean;
|
|
36006
|
+
dimensionalReport?: boolean;
|
|
36007
|
+
dyePenetrantReport?: boolean;
|
|
36008
|
+
visualReport?: boolean;
|
|
36009
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
36010
|
+
certificateOfTest?: boolean;
|
|
36011
|
+
technicalReport?: boolean;
|
|
36012
|
+
microExaminationReport?: boolean;
|
|
36013
|
+
radiologicalReport?: boolean;
|
|
36014
|
+
}
|
|
36015
|
+
|
|
35936
36016
|
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
35937
36017
|
name: string;
|
|
35938
36018
|
revision: string;
|
|
@@ -35955,13 +36035,13 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
|
35955
36035
|
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
35956
36036
|
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
35957
36037
|
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
36038
|
+
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
35958
36039
|
}
|
|
35959
36040
|
|
|
35960
36041
|
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
35961
36042
|
manufacturer?: boolean | null;
|
|
35962
36043
|
address?: boolean | null;
|
|
35963
36044
|
contact?: boolean | null;
|
|
35964
|
-
steelPlant?: boolean | null;
|
|
35965
36045
|
}
|
|
35966
36046
|
|
|
35967
36047
|
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
@@ -35983,7 +36063,6 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
|
35983
36063
|
}
|
|
35984
36064
|
|
|
35985
36065
|
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
35986
|
-
certificateType?: boolean | null;
|
|
35987
36066
|
certificateOfCompliance?: boolean | null;
|
|
35988
36067
|
inspectionCertificate?: boolean | null;
|
|
35989
36068
|
}
|
|
@@ -35996,8 +36075,7 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
|
|
|
35996
36075
|
dimensionsOrWeight?: boolean | null;
|
|
35997
36076
|
batchNumber?: boolean | null;
|
|
35998
36077
|
heatNumber?: boolean | null;
|
|
35999
|
-
|
|
36000
|
-
steelMaking?: boolean | null;
|
|
36078
|
+
relatedStandards?: boolean | null;
|
|
36001
36079
|
}
|
|
36002
36080
|
|
|
36003
36081
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
@@ -36005,14 +36083,28 @@ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto
|
|
|
36005
36083
|
}
|
|
36006
36084
|
|
|
36007
36085
|
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
36008
|
-
|
|
36009
|
-
hardnessTests?: boolean | null;
|
|
36010
|
-
impactTests?: boolean | null;
|
|
36086
|
+
mechanicalProperties?: boolean | null;
|
|
36011
36087
|
chemicalAnalysis?: boolean | null;
|
|
36088
|
+
impactTests?: boolean | null;
|
|
36012
36089
|
corrosionTests?: boolean | null;
|
|
36013
36090
|
ferriteContentAndMicrostructure?: boolean | null;
|
|
36014
36091
|
}
|
|
36015
36092
|
|
|
36093
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
36094
|
+
heatTreatmentCertificate?: boolean | null;
|
|
36095
|
+
ultrasonicControlCertificate?: boolean | null;
|
|
36096
|
+
liquidPenetrantCertificate?: boolean | null;
|
|
36097
|
+
testReport?: boolean | null;
|
|
36098
|
+
dimensionalReport?: boolean | null;
|
|
36099
|
+
dyePenetrantReport?: boolean | null;
|
|
36100
|
+
visualReport?: boolean | null;
|
|
36101
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
36102
|
+
certificateOfTest?: boolean | null;
|
|
36103
|
+
technicalReport?: boolean | null;
|
|
36104
|
+
microExaminationReport?: boolean | null;
|
|
36105
|
+
radiologicalReport?: boolean | null;
|
|
36106
|
+
}
|
|
36107
|
+
|
|
36016
36108
|
export interface ImaCertificateTypeLiteDto {
|
|
36017
36109
|
certificateTypeId: string;
|
|
36018
36110
|
version: number;
|
|
@@ -36087,13 +36179,14 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
36087
36179
|
certification: ImaCertificateTypeCertificationResultsDto;
|
|
36088
36180
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
36089
36181
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
36182
|
+
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
36183
|
+
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
36090
36184
|
}
|
|
36091
36185
|
|
|
36092
36186
|
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
36093
36187
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
36094
36188
|
address?: ImaCertificateTypeResultLine | null;
|
|
36095
36189
|
contact?: ImaCertificateTypeResultLine | null;
|
|
36096
|
-
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
36097
36190
|
}
|
|
36098
36191
|
|
|
36099
36192
|
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
@@ -36130,20 +36223,10 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
36130
36223
|
}
|
|
36131
36224
|
|
|
36132
36225
|
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
36133
|
-
|
|
36134
|
-
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
36226
|
+
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
36135
36227
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
36136
36228
|
}
|
|
36137
36229
|
|
|
36138
|
-
export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
36139
|
-
status?: string | null;
|
|
36140
|
-
documentId?: string | null;
|
|
36141
|
-
acceptable?: boolean | null;
|
|
36142
|
-
standards: string[];
|
|
36143
|
-
summary?: string | null;
|
|
36144
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36145
|
-
}
|
|
36146
|
-
|
|
36147
36230
|
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
36148
36231
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
36149
36232
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
@@ -36152,32 +36235,41 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
36152
36235
|
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
36153
36236
|
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
36154
36237
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
36155
|
-
|
|
36156
|
-
steelMaking: ImaSteelMakingResultDto;
|
|
36157
|
-
}
|
|
36158
|
-
|
|
36159
|
-
export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
|
|
36160
|
-
raw?: string[] | null;
|
|
36161
|
-
chain?: string[] | null;
|
|
36162
|
-
unmatched?: string[] | null;
|
|
36238
|
+
relatedStandards?: ImaCertificateTypeResultLine | null;
|
|
36163
36239
|
}
|
|
36164
36240
|
|
|
36165
36241
|
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
36166
36242
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
36167
36243
|
}
|
|
36168
36244
|
|
|
36245
|
+
export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
|
|
36246
|
+
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
36247
|
+
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
36248
|
+
impactTests?: ImaCertificateTypeResultLine | null;
|
|
36249
|
+
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
36250
|
+
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
36251
|
+
}
|
|
36252
|
+
|
|
36253
|
+
export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
36254
|
+
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
36255
|
+
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
36256
|
+
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
36257
|
+
testReport?: ImaCertificateTypeResultLine | null;
|
|
36258
|
+
dimensionalReport?: ImaCertificateTypeResultLine | null;
|
|
36259
|
+
dyePenetrantReport?: ImaCertificateTypeResultLine | null;
|
|
36260
|
+
visualReport?: ImaCertificateTypeResultLine | null;
|
|
36261
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
|
|
36262
|
+
certificateOfTest?: ImaCertificateTypeResultLine | null;
|
|
36263
|
+
technicalReport?: ImaCertificateTypeResultLine | null;
|
|
36264
|
+
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
36265
|
+
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
36266
|
+
}
|
|
36267
|
+
|
|
36169
36268
|
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
36170
36269
|
chemistry: ImaSpecificationChemistryResultsDto;
|
|
36171
36270
|
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
36172
36271
|
ferrite: ImaSpecificationFerriteResultsDto;
|
|
36173
|
-
|
|
36174
|
-
tensileTests: ImaTensileTestResultDto[];
|
|
36175
|
-
hardnessTests: ImaHardnessTestResultDto[];
|
|
36176
|
-
impactTests: ImaImpactTestResultDto[];
|
|
36177
|
-
corrosionTests: ImaCorrosionTestResultDto[];
|
|
36178
|
-
ferriteContentAndMicrostructure: ImaFerriteResultDto[];
|
|
36179
|
-
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
36180
|
-
documentTypes: ImaDocumentTypesResultsDto;
|
|
36272
|
+
heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
36181
36273
|
}
|
|
36182
36274
|
|
|
36183
36275
|
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
@@ -36227,146 +36319,30 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
36227
36319
|
measurementMethod?: string | null;
|
|
36228
36320
|
}
|
|
36229
36321
|
|
|
36230
|
-
export interface
|
|
36231
|
-
|
|
36232
|
-
|
|
36233
|
-
|
|
36234
|
-
indices: ImaChemicalIndexResultDto[];
|
|
36235
|
-
testStandards: string[];
|
|
36236
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36237
|
-
}
|
|
36238
|
-
|
|
36239
|
-
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
36240
|
-
symbol?: string | null;
|
|
36241
|
-
value?: ImaResultValueDto | null;
|
|
36242
|
-
}
|
|
36243
|
-
|
|
36244
|
-
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
36245
|
-
readValue?: string | null;
|
|
36246
|
-
value?: number | null;
|
|
36247
|
-
unit?: string | null;
|
|
36248
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36249
|
-
}
|
|
36250
|
-
|
|
36251
|
-
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
36252
|
-
name?: string | null;
|
|
36253
|
-
value?: number | null;
|
|
36254
|
-
}
|
|
36255
|
-
|
|
36256
|
-
export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
36257
|
-
sampleReference?: string | null;
|
|
36258
|
-
orientation?: string | null;
|
|
36259
|
-
testLocation?: string | null;
|
|
36260
|
-
temperature?: ImaResultValueDto | null;
|
|
36261
|
-
roomTemperature?: boolean | null;
|
|
36262
|
-
yieldStrengths: ImaYieldStrengthResultDto[];
|
|
36263
|
-
tensileStrength?: ImaResultValueDto | null;
|
|
36264
|
-
yieldTensileRatio?: number | null;
|
|
36265
|
-
elongations: ImaElongationResultDto[];
|
|
36266
|
-
reductionOfArea?: ImaResultValueDto | null;
|
|
36267
|
-
testStandards: string[];
|
|
36268
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36269
|
-
}
|
|
36270
|
-
|
|
36271
|
-
export interface ImaYieldStrengthResultDto extends ImaCdfEntityReadBase {
|
|
36272
|
-
label?: string | null;
|
|
36273
|
-
value?: ImaResultValueDto | null;
|
|
36274
|
-
}
|
|
36275
|
-
|
|
36276
|
-
export interface ImaElongationResultDto extends ImaCdfEntityReadBase {
|
|
36277
|
-
gauge?: string | null;
|
|
36278
|
-
value?: ImaResultValueDto | null;
|
|
36279
|
-
}
|
|
36280
|
-
|
|
36281
|
-
export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
36282
|
-
sampleReference?: string | null;
|
|
36283
|
-
orientation?: string | null;
|
|
36284
|
-
testLocation?: string | null;
|
|
36285
|
-
readings: ImaHardnessReadingResultDto[];
|
|
36286
|
-
testStandards: string[];
|
|
36287
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36288
|
-
}
|
|
36289
|
-
|
|
36290
|
-
export interface ImaHardnessReadingResultDto extends ImaCdfEntityReadBase {
|
|
36291
|
-
label?: string | null;
|
|
36292
|
-
scale?: string | null;
|
|
36293
|
-
value?: number | null;
|
|
36294
|
-
}
|
|
36295
|
-
|
|
36296
|
-
export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
36297
|
-
sampleReference?: string | null;
|
|
36298
|
-
orientation?: string | null;
|
|
36299
|
-
testLocation?: string | null;
|
|
36300
|
-
temperature?: ImaResultValueDto | null;
|
|
36301
|
-
roomTemperature?: boolean | null;
|
|
36302
|
-
testLabel?: string | null;
|
|
36303
|
-
notchType?: string | null;
|
|
36304
|
-
specimenSize?: string | null;
|
|
36305
|
-
individualValues: ImaResultValueDto[];
|
|
36306
|
-
reportedAverage?: ImaResultValueDto | null;
|
|
36307
|
-
reportedMinimum?: ImaResultValueDto | null;
|
|
36308
|
-
testStandards: string[];
|
|
36309
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36310
|
-
}
|
|
36311
|
-
|
|
36312
|
-
export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
36313
|
-
sampleReference?: string | null;
|
|
36314
|
-
testLocation?: string | null;
|
|
36315
|
-
testMethod?: string | null;
|
|
36316
|
-
testTemperature?: ImaResultValueDto | null;
|
|
36317
|
-
roomTemperature?: boolean | null;
|
|
36318
|
-
weightLoss?: ImaResultValueDto | null;
|
|
36319
|
-
pitting?: boolean | null;
|
|
36320
|
-
result?: string | null;
|
|
36321
|
-
acceptable?: boolean | null;
|
|
36322
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36323
|
-
}
|
|
36324
|
-
|
|
36325
|
-
export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
36326
|
-
sampleReference?: string | null;
|
|
36327
|
-
testLocation?: string | null;
|
|
36328
|
-
ferrite?: ImaResultValueDto | null;
|
|
36329
|
-
ferriteTolerance?: number | null;
|
|
36330
|
-
reportedRange?: string | null;
|
|
36331
|
-
intermetallicPhases?: boolean | null;
|
|
36332
|
-
grainSize?: string | null;
|
|
36333
|
-
testStandards: string[];
|
|
36334
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36322
|
+
export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
36323
|
+
step: number;
|
|
36324
|
+
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
36325
|
+
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
36335
36326
|
}
|
|
36336
36327
|
|
|
36337
|
-
export interface
|
|
36338
|
-
|
|
36339
|
-
|
|
36340
|
-
|
|
36341
|
-
temperatureMin?: number | null;
|
|
36342
|
-
temperatureMax?: number | null;
|
|
36343
|
-
soakTime?: ImaResultValueDto | null;
|
|
36344
|
-
soakRate?: string | null;
|
|
36345
|
-
coolingMedium?: string | null;
|
|
36346
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36328
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
|
|
36329
|
+
coolingMethods?: string[] | null;
|
|
36330
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
36331
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
36347
36332
|
}
|
|
36348
36333
|
|
|
36349
|
-
export interface
|
|
36350
|
-
|
|
36351
|
-
|
|
36352
|
-
|
|
36353
|
-
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
36354
|
-
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
36355
|
-
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
36356
|
-
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
36357
|
-
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
36358
|
-
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
36334
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
|
|
36335
|
+
heatingMethod?: string | null;
|
|
36336
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
36337
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
36359
36338
|
}
|
|
36360
36339
|
|
|
36361
36340
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
36362
36341
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
36363
|
-
|
|
36364
|
-
|
|
36365
|
-
|
|
36366
|
-
|
|
36367
|
-
corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36368
|
-
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36369
|
-
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
36342
|
+
chemistrySpecificationSection?: ImaOverrideSpecificationChemistryResultsDto | null;
|
|
36343
|
+
mechanicalSpecificationSection?: ImaOverrideSpecificationMechanicalResultsDto | null;
|
|
36344
|
+
ferriteSpecificationSection?: ImaOverrideSpecificationFerriteResultsDto | null;
|
|
36345
|
+
heatSpecificationSection?: ImaOverrideSpecificationHeatTreatmentResultsDto | null;
|
|
36370
36346
|
}
|
|
36371
36347
|
|
|
36372
36348
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
@@ -36376,13 +36352,14 @@ export interface ImaOverrideCertificateTypeResultsDto {
|
|
|
36376
36352
|
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
36377
36353
|
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
36378
36354
|
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
36355
|
+
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
36356
|
+
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
36379
36357
|
}
|
|
36380
36358
|
|
|
36381
36359
|
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
36382
36360
|
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36383
36361
|
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36384
36362
|
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36385
|
-
steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36386
36363
|
}
|
|
36387
36364
|
|
|
36388
36365
|
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
@@ -36409,7 +36386,6 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
|
36409
36386
|
}
|
|
36410
36387
|
|
|
36411
36388
|
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
36412
|
-
certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36413
36389
|
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36414
36390
|
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36415
36391
|
}
|
|
@@ -36422,23 +36398,66 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
36422
36398
|
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36423
36399
|
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36424
36400
|
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36425
|
-
|
|
36401
|
+
relatedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36426
36402
|
}
|
|
36427
36403
|
|
|
36428
36404
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
36429
36405
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36430
36406
|
}
|
|
36431
36407
|
|
|
36432
|
-
export interface
|
|
36408
|
+
export interface ImaOverrideCertificateTypeTestResultsResultsDto {
|
|
36409
|
+
mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36410
|
+
chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36411
|
+
impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36412
|
+
corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36413
|
+
ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36414
|
+
}
|
|
36415
|
+
|
|
36416
|
+
export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
|
|
36417
|
+
heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36433
36418
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36434
|
-
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36435
36419
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36436
|
-
|
|
36437
|
-
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36438
|
-
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36439
|
-
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36420
|
+
testReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36440
36421
|
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36422
|
+
dyePenetrantReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36423
|
+
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36424
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36425
|
+
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36426
|
+
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36441
36427
|
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36428
|
+
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36429
|
+
}
|
|
36430
|
+
|
|
36431
|
+
export interface ImaOverrideSpecificationChemistryResultsDto {
|
|
36432
|
+
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36433
|
+
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36434
|
+
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36435
|
+
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36436
|
+
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36437
|
+
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36438
|
+
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36439
|
+
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36440
|
+
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36441
|
+
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36442
|
+
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36443
|
+
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36444
|
+
}
|
|
36445
|
+
|
|
36446
|
+
export interface ImaOverrideSpecificationMechanicalResultsDto {
|
|
36447
|
+
yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36448
|
+
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36449
|
+
elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36450
|
+
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36451
|
+
impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36452
|
+
hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36453
|
+
}
|
|
36454
|
+
|
|
36455
|
+
export interface ImaOverrideSpecificationFerriteResultsDto {
|
|
36456
|
+
ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36457
|
+
}
|
|
36458
|
+
|
|
36459
|
+
export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
|
|
36460
|
+
heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
|
|
36442
36461
|
}
|
|
36443
36462
|
|
|
36444
36463
|
export interface ImaUpdateMaterialCheckMetadataRequestDto {
|
|
@@ -36496,7 +36515,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
36496
36515
|
|
|
36497
36516
|
export interface ImaMaterialChecksPageRequestDto {
|
|
36498
36517
|
pageSize?: number | null;
|
|
36499
|
-
orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
|
|
36518
|
+
orderBy?: ImaMaterialChecksPageOrderRequestDto[] | null;
|
|
36500
36519
|
searchQuery?: string | null;
|
|
36501
36520
|
fileNameFilter?: string | null;
|
|
36502
36521
|
specificationFilter?: string | null;
|
|
@@ -36667,7 +36686,6 @@ export interface ImaSpecificationDto {
|
|
|
36667
36686
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
36668
36687
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
36669
36688
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
36670
|
-
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
36671
36689
|
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
36672
36690
|
}
|
|
36673
36691
|
|
|
@@ -36709,18 +36727,6 @@ export interface ImaFerriteSpecificationDto {
|
|
|
36709
36727
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
36710
36728
|
}
|
|
36711
36729
|
|
|
36712
|
-
export interface ImaDocumentTypesSpecificationDto {
|
|
36713
|
-
ultrasonicControlCertificate?: boolean;
|
|
36714
|
-
radiologicalReport?: boolean;
|
|
36715
|
-
liquidPenetrantCertificate?: boolean;
|
|
36716
|
-
magneticParticle?: boolean;
|
|
36717
|
-
pmi?: boolean;
|
|
36718
|
-
hydrostatic?: boolean;
|
|
36719
|
-
visualReport?: boolean;
|
|
36720
|
-
dimensionalReport?: boolean;
|
|
36721
|
-
microExaminationReport?: boolean;
|
|
36722
|
-
}
|
|
36723
|
-
|
|
36724
36730
|
export interface ImaHeatTreatmentSpecificationDto {
|
|
36725
36731
|
step: number;
|
|
36726
36732
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
@@ -36767,7 +36773,6 @@ export interface ImaUpdateSpecificationDto {
|
|
|
36767
36773
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
36768
36774
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
36769
36775
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
36770
|
-
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
36771
36776
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
36772
36777
|
}
|
|
36773
36778
|
|