File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
Multishipping/view/frontend/templates/checkout Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 62
62
name="ship[<?= $ block ->escapeHtml ($ _index ) ?> ][<?= $ block ->escapeHtml ($ _item ->getQuoteItemId ()) ?> ][qty]"
63
63
value="<?= $ block ->escapeHtml ($ _item ->getQty ()) ?> "
64
64
size="2"
65
- class="input-text qty"
66
- data-validate="{number: true}"/>
65
+ class="input-text qty required-entry "
66
+ data-validate="{number: true, required:true }"/>
67
67
</div>
68
68
</div>
69
69
</td>
Original file line number Diff line number Diff line change 13
13
<?php $ _formatedOptionValue = $ block ->getFormatedOptionValue ($ _option ) ?>
14
14
<dt><?= $ block ->escapeHtml ($ _option ['label ' ]) ?> </dt>
15
15
<dd<?= (isset ($ _formatedOptionValue ['full_view ' ]) ? ' class="tooltip wrapper" ' : '' ) ?> >
16
- <?= $ block ->escapeHtml ($ _formatedOptionValue ['value ' ]) ?>
16
+ <?= $ block ->escapeHtml ($ _formatedOptionValue ['value ' ], [ ' span ' ] ) ?>
17
17
<?php if (isset ($ _formatedOptionValue ['full_view ' ])) : ?>
18
18
<dl class="item options tooltip content">
19
19
<dt><?= $ block ->escapeHtml ($ _option ['label ' ]) ?> </dt>
20
- <dd><?= $ block ->escapeHtml ($ _formatedOptionValue ['full_view ' ]) ?> </dd>
20
+ <dd><?= $ block ->escapeHtml ($ _formatedOptionValue ['full_view ' ], [ ' span ' ] ) ?> </dd>
21
21
</dl>
22
22
<?php endif ; ?>
23
23
</dd>
Original file line number Diff line number Diff line change @@ -1347,7 +1347,7 @@ protected function _formShipmentRequest(\Magento\Framework\DataObject $request)
1347
1347
$ shipperPart ->addChild ('PhoneNumber ' , $ request ->getShipperContactPhoneNumber ());
1348
1348
1349
1349
$ addressPart = $ shipperPart ->addChild ('Address ' );
1350
- $ addressPart ->addChild ('AddressLine1 ' , $ request ->getShipperAddressStreet ());
1350
+ $ addressPart ->addChild ('AddressLine1 ' , $ request ->getShipperAddressStreet1 ());
1351
1351
$ addressPart ->addChild ('AddressLine2 ' , $ request ->getShipperAddressStreet2 ());
1352
1352
$ addressPart ->addChild ('City ' , $ request ->getShipperAddressCity ());
1353
1353
$ addressPart ->addChild ('CountryCode ' , $ request ->getShipperAddressCountryCode ());
Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ define([
23
23
reader . onload = function ( ) {
24
24
var bytes , length , index ;
25
25
26
+ /* eslint-disable no-undef */
26
27
bytes = new Uint8Array ( reader . result ) ;
28
+ /* eslint-enable */
27
29
length = bytes . length ;
28
30
29
31
for ( index = 0 ; index < length ; index ++ ) {
You can’t perform that action at this time.
0 commit comments