diff options
author | Alexey Sandler <alexey.sandler@intl.att.com> | 2020-04-18 14:45:11 +0300 |
---|---|---|
committer | Alexey Sandler <alexey.sandler@intl.att.com> | 2020-04-19 16:51:09 +0300 |
commit | 01f85c23e21cacd236d365d689788275d2046211 (patch) | |
tree | b1a31f00658cd3d4bcc2e0385e8bf2de694b7a90 /vid-app-common | |
parent | 98353ac591a001812ae0c331611e9a8dfc7288ed (diff) |
empty lineOfBusiness value when create new network (old screens) - fix
Issue-ID: VID-808
Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
Change-Id: I9f77e449411afdf1553f890c1c6a94eaa34afc7e
Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
Diffstat (limited to 'vid-app-common')
-rwxr-xr-x | vid-app-common/src/main/webapp/app/vid/scripts/services/creationService.js | 32 |
1 files changed, 5 insertions, 27 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/services/creationService.js b/vid-app-common/src/main/webapp/app/vid/scripts/services/creationService.js index 15ba51941..242a3dc8a 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/services/creationService.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/services/creationService.js @@ -714,45 +714,23 @@ var CreationService = function($log, AaiService, AsdcService, DataService,VIDCON break; case COMPONENT.VNF: - - requestDetails.requestInfo.productFamilyId = getValueFromList( - FIELD.ID.PRODUCT_FAMILY, parameterList); - - var lineOfBusiness = getValueFromList(FIELD.ID.LINE_OF_BUSINESS, parameterList); - - if(lineOfBusiness) { - requestDetails.lineOfBusiness = { - lineOfBusinessName: lineOfBusiness - }; - } - - requestDetails.platform = { - platformName: getValueFromList(FIELD.ID.PLATFORM, parameterList) - }; - - break; case COMPONENT.NETWORK: requestDetails.requestInfo.productFamilyId = getValueFromList( FIELD.ID.PRODUCT_FAMILY, parameterList); var lineOfBusiness = getValueFromList(FIELD.ID.LINE_OF_BUSINESS, parameterList); - if(lineOfBusiness) { - var lineOfBusinessNamesString = _.map(lineOfBusiness, "name").join(", "); - requestDetails.lineOfBusiness = { - lineOfBusinessName: lineOfBusinessNamesString + lineOfBusinessName: lineOfBusiness }; } var platform = getValueFromList(FIELD.ID.PLATFORM, parameterList); - if(platform !== null && platform !== ""){ - requestDetails.platform = { - platformName: platform - }; + if (platform !== null && platform !== "") { + requestDetails.platform = { + platformName: platform + }; } - - break; case COMPONENT.VF_MODULE: requestDetails.requestParameters.usePreload = getValueFromList( |