File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed
CatalogSearch/view/frontend/templates/advanced
Sales/Controller/Adminhtml/Order/Invoice Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,11 @@ $catalogSearchHelper = $block->getData('catalogSearchHelper'); ?>
76
76
class="input-text"
77
77
type="text"
78
78
maxlength="<?= $ block ->escapeHtmlAttr ($ maxQueryLength ) ?> "
79
- data-validate="{number:true, 'validate-not-negative-number':true, 'less-than-equals-to':'#<?= $ block ->escapeHtmlAttr ($ _code ) ?> _to'}" />
79
+ data-validate="{
80
+ number:true,
81
+ 'validate-not-negative-number':true,
82
+ 'less-than-equals-to':'#<?= $ block ->escapeHtmlAttr ($ _code ) ?> _to'
83
+ }" />
80
84
</div>
81
85
</div>
82
86
<div class="field with-addon no-label">
@@ -89,7 +93,11 @@ $catalogSearchHelper = $block->getData('catalogSearchHelper'); ?>
89
93
class="input-text"
90
94
type="text"
91
95
maxlength="<?= $ block ->escapeHtmlAttr ($ maxQueryLength ) ?> "
92
- data-validate="{number:true, 'validate-not-negative-number':true, 'greater-than-equals-to':'#<?= $ block ->escapeHtmlAttr ($ _code ) ?> '}" />
96
+ data-validate="{
97
+ number:true,
98
+ 'validate-not-negative-number':true,
99
+ 'greater-than-equals-to':'#<?= $ block ->escapeHtmlAttr ($ _code ) ?> '
100
+ }" />
93
101
<label class="addafter"
94
102
for="<?= $ block ->escapeHtmlAttr ($ _code ) ?> _to">
95
103
<?= $ block ->escapeHtml ($ block ->getCurrency ($ _attribute )) ?>
Original file line number Diff line number Diff line change @@ -19,12 +19,14 @@ class MethodList
19
19
{
20
20
/**
21
21
* @var \Magento\Payment\Helper\Data
22
+ * @see MAGETWO-71174
22
23
* @deprecated 100.1.0 Do not use this property in case of inheritance.
23
24
*/
24
25
protected $ paymentHelper ;
25
26
26
27
/**
27
28
* @var \Magento\Payment\Model\Checks\SpecificationFactory
29
+ * @see MAGETWO-71174
28
30
* @deprecated 100.2.0 Do not use this property in case of inheritance.
29
31
*/
30
32
protected $ methodSpecificationFactory ;
@@ -62,7 +64,7 @@ public function __construct(
62
64
/**
63
65
* Returns all available payment methods for the given quote.
64
66
*
65
- * @param \Magento\Quote\Api\Data\CartInterface $quote|null
67
+ * @param \Magento\Quote\Api\Data\CartInterface $quote
66
68
* @return \Magento\Payment\Model\MethodInterface[]
67
69
*/
68
70
public function getAvailableMethods (\Magento \Quote \Api \Data \CartInterface $ quote = null )
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ class Save extends \Magento\Backend\App\Action implements HttpPostActionInterfac
30
30
*
31
31
* @see _isAllowed()
32
32
*/
33
- public const ADMIN_RESOURCE = 'Magento_Sales::sales_invoice ' ;
33
+ public const ADMIN_RESOURCE = 'Magento_Sales::sales_invoice ' ;
34
34
35
35
/**
36
36
* @var InvoiceSender
You can’t perform that action at this time.
0 commit comments