|
|
@ -1211,7 +1211,6 @@ define(['angular', 'decimal', 'static/commons/commons', 'uiBootstrap', 'uiRouter
|
|
|
|
if($scope.extParams != null){
|
|
|
|
if($scope.extParams != null){
|
|
|
|
for(var key in $scope.extParams){
|
|
|
|
for(var key in $scope.extParams){
|
|
|
|
var obj = {}
|
|
|
|
var obj = {}
|
|
|
|
console.log(1)
|
|
|
|
|
|
|
|
if(typeof $scope.extParams[key] != 'boolean'){
|
|
|
|
if(typeof $scope.extParams[key] != 'boolean'){
|
|
|
|
obj.name = key;
|
|
|
|
obj.name = key;
|
|
|
|
obj.value = $scope.extParams[key];
|
|
|
|
obj.value = $scope.extParams[key];
|
|
|
@ -1231,7 +1230,6 @@ define(['angular', 'decimal', 'static/commons/commons', 'uiBootstrap', 'uiRouter
|
|
|
|
$scope.reloadQRCode = function () {
|
|
|
|
$scope.reloadQRCode = function () {
|
|
|
|
$http.get('/sys/partners/' + $scope.partner.client_moniker + '/qrcode', {params: $scope.qrConfig}).then(function (resp) {
|
|
|
|
$http.get('/sys/partners/' + $scope.partner.client_moniker + '/qrcode', {params: $scope.qrConfig}).then(function (resp) {
|
|
|
|
$scope.qrcode = resp.data;
|
|
|
|
$scope.qrcode = resp.data;
|
|
|
|
console.log($scope.qrcode.url)
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
$scope.reloadQRCode();
|
|
|
|
$scope.reloadQRCode();
|
|
|
|