| | |
| | | StaticMethod CreateTestData ( |
| | | MacroPlan parent, |
| | | String businessType, |
| | | String orgCode |
| | | String orgCode, |
| | | String productCode |
| | | ) as MappingBOM |
| | | { |
| | | TextBody: |
| | | [* |
| | | // yypsybs Sep-18-2023 (created) |
| | | value := select( parent, MappingBOM, bom, bom.BusinessType() = businessType and bom.OrganCode() = orgCode ); |
| | | value := select( parent, MappingBOM, bom, bom.BusinessType() = businessType and bom.OrganCode() = orgCode and bom.ProductCode() = productCode ); |
| | | if( isnull( value ) ) { |
| | | value := parent.MappingBOM( relnew, |
| | | BusinessType := businessType, |
| | | OrganCode := orgCode, |
| | | ProductCode := productCode, |
| | | ProcessSection := "", |
| | | ProductCode := "", |
| | | ComponentCode := "", |
| | | AlternativeMaterialCode := "" ); |
| | | } |