File tree 2 files changed +2
-7
lines changed
view/frontend/web/template/payment
2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 13
13
use CM \Payments \Client \Model \Response \OrderListItem ;
14
14
use CM \Payments \Client \Model \Response \PaymentMethod ;
15
15
use CM \Payments \Client \Request \OrderCreateRequest ;
16
- use CM \Payments \Client \Request \OrderGetMethodsRequest ;
17
16
use GuzzleHttp \Exception \RequestException ;
18
17
19
18
interface OrderInterface
20
19
{
21
20
/**
22
21
* @param string $date
23
22
* @return OrderListItem[]
24
- *
25
23
* @throws RequestException
26
24
*/
27
25
public function getList (string $ date ): array ;
28
26
29
27
/**
30
28
* @param string $orderKey
31
29
* @return OrderDetail
32
- *
33
30
* @throws RequestException
34
31
*/
35
32
public function getDetail (string $ orderKey ): OrderDetail ;
36
33
37
34
/**
38
35
* @param string $orderKey
39
36
* @return PaymentMethod[]
40
- *
41
37
* @throws RequestException
42
38
*/
43
39
public function getMethods (string $ orderKey ): array ;
44
40
45
41
/**
46
42
* @param OrderCreateRequest $orderCreateRequest
47
43
* @return OrderCreate
48
- *
49
44
* @throws RequestException
50
45
*/
51
46
public function create (OrderCreateRequest $ orderCreateRequest ): OrderCreate ;
Original file line number Diff line number Diff line change 25
25
< div class ="payment-method-iban ">
26
26
< form class ="form " data-bind ="attr: {'id': getCode() + '-form'} ">
27
27
< div class ="field field-from ">
28
- < label data-bind ="attr: {for: elv-iban} " class ="label ">
28
+ < label data-bind ="attr: {for: ' elv-iban' } " class ="label ">
29
29
< span data-bind ="i18n: 'IBAN:' "> </ span >
30
30
</ label >
31
31
< div class ="control ">
32
32
< input type ="text "
33
33
class ="input-text "
34
- data-bind ="value: iban, attr: {id: elv-iban} " data-validate ="{required:true} ">
34
+ data-bind ="value: iban, attr: {id: ' elv-iban' } " data-validate ="{required:true} ">
35
35
</ div >
36
36
</ div >
37
37
</ form >
You can’t perform that action at this time.
0 commit comments