Skip to content
This repository has been archived by the owner on Dec 23, 2019. It is now read-only.

Commit

Permalink
fix(portability): fix missing parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Jérémy DE CESARE committed Jul 24, 2018
1 parent 2be6abd commit 818aa47
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ angular.module('managerApp').controller('TelecomTelephonyAliasPortabilityOrderCt
params.specialNumberCategory = self.order.specialNumberCategory.replace('fr_', '');
}

if (params.country === 'france') {
params.fiabilisation = self.order.sdatype === 'all';
}

params.callNumber = self.normalizeNumber(params.callNumber);
params.contactNumber = self.normalizeNumber(params.contactNumber);
params.desireDate = moment(params.desireDate).format('Y-MM-DD');
Expand Down

0 comments on commit 818aa47

Please sign in to comment.