Skip to content

Commit

Permalink
Merge branch 'hotfix/1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
zeleng committed Oct 5, 2018
2 parents 0f9c163 + 638b424 commit 63e9558
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ public static function fiscalize($order, $params, $is_refund)
$check->addPosition($positionObj);
}

if (floatval($order['shipping_cost']) > 0) {
if (floatval($order['display_shipping_cost']) > 0.0) {
$shippingPosition = new Position("Доставка",
floatval($order['shipping_cost']),
floatval($order['display_shipping_cost']),
1,
floatval($order['shipping_cost']),
floatval($order['display_shipping_cost']),
0,
$vat);
$check->addPosition($shippingPosition);
Expand Down
2 changes: 1 addition & 1 deletion app/addons/rus_komtet_kassa/addon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<addon scheme="3.0">
<id>rus_komtet_kassa</id>
<name>KOMTET Kassa</name>
<version>1.0.1</version>
<version>1.0.2</version>
<priority>1001</priority>
<status>active</status>
<default_language>en</default_language>
Expand Down

0 comments on commit 63e9558

Please sign in to comment.