1
|
|
|
/** |
2
|
|
|
* PAYONE Magento 2 Connector is free software: you can redistribute it and/or modify |
3
|
|
|
* it under the terms of the GNU Lesser General Public License as published by |
4
|
|
|
* the Free Software Foundation, either version 3 of the License, or |
5
|
|
|
* (at your option) any later version. |
6
|
|
|
* |
7
|
|
|
* PAYONE Magento 2 Connector is distributed in the hope that it will be useful, |
8
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
9
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
10
|
|
|
* GNU Lesser General Public License for more details. |
11
|
|
|
* |
12
|
|
|
* You should have received a copy of the GNU Lesser General Public License |
13
|
|
|
* along with PAYONE Magento 2 Connector. If not, see <http://www.gnu.org/licenses/>. |
14
|
|
|
* |
15
|
|
|
* PHP version 5 |
16
|
|
|
* |
17
|
|
|
* @category Payone |
18
|
|
|
* @package Payone_Magento2_Plugin |
19
|
|
|
* @author FATCHIP GmbH <[email protected]> |
20
|
|
|
* @copyright 2003 - 2018 Payone GmbH |
21
|
|
|
* @license <http://www.gnu.org/licenses/> GNU Lesser General Public License |
22
|
|
|
* @link http://www.payone.de |
23
|
|
|
*/ |
24
|
|
|
/*jshint browser:true jquery:true*/ |
25
|
|
|
/*global alert*/ |
26
|
|
|
define([ |
27
|
|
|
'jquery', |
28
|
|
|
'Magento_Checkout/js/model/url-builder', |
29
|
|
|
'mage/storage', |
30
|
|
|
'Magento_Checkout/js/model/full-screen-loader' |
31
|
|
|
], function ($, urlBuilder, storage, fullScreenLoader) { |
32
|
|
|
'use strict'; |
33
|
|
|
|
34
|
|
|
return function (addressData) { |
35
|
|
|
var serviceUrl = urlBuilder.createUrl('/carts/mine/payone-editAddress', {}); |
36
|
|
|
var request = { |
37
|
|
|
addressData: addressData |
38
|
|
|
}; |
39
|
|
|
|
40
|
|
|
fullScreenLoader.startLoader(); |
41
|
|
|
|
42
|
|
|
return storage.post( |
43
|
|
|
serviceUrl, |
44
|
|
|
JSON.stringify(request) |
45
|
|
|
).done( |
46
|
|
|
function (response) { |
|
|
|
|
47
|
|
|
fullScreenLoader.stopLoader(); |
48
|
|
|
} |
49
|
|
|
).fail( |
50
|
|
|
function (response) { |
|
|
|
|
51
|
|
|
fullScreenLoader.stopLoader(); |
52
|
|
|
} |
53
|
|
|
); |
54
|
|
|
}; |
55
|
|
|
}); |
56
|
|
|
|
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.