Plugin Directory

Changeset 1755286


Ignore:
Timestamp:
10/30/2017 02:34:10 PM (8 years ago)
Author:
JohnnyPea
Message:

v1.6.30

Location:
woocommerce-superfaktura/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • woocommerce-superfaktura/trunk/README.txt

    r1754331 r1755286  
    55Requires at least: 4.4
    66Tested up to: 4.8.2
    7 Stable tag: 1.6.28
     7Stable tag: 1.6.30
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6464== Changelog ==
    6565
     66= 1.6.30 =
     67* Opravené počítanie dane pri nulovej hodnote
     68
    6669= 1.6.29 =
    6770* Pridaná podpora pre plugin Nastavenia SK pre WooCommerce
  • woocommerce-superfaktura/trunk/class-wc-superfaktura.php

    r1754331 r1755286  
    2424     * @var     string
    2525     */
    26     protected $version = '1.6.29';
     26    protected $version = '1.6.30';
    2727
    2828    /**
     
    525525
    526526            $item_subtotal = $order->get_item_subtotal( $item );
    527             $item_tax = $item_subtotal ? round( ( $item['line_subtotal_tax'] / max( 1, $item['qty'] ) ) / $item_subtotal * 100 ) : 0;
    528 
     527            $item_tax = ( $item_subtotal > 0 ) ? round( ( $item['line_subtotal_tax'] / max( 1, $item['qty'] ) ) / $item_subtotal * 100 ) : 0;
     528           
    529529            $item_data = array(
    530530                'name'        => html_entity_decode($item['name']),
  • woocommerce-superfaktura/trunk/wc-superfaktura.php

    r1754331 r1755286  
    1111 * Plugin URI:  http://www.platobnebrany.sk/
    1212 * Description: WooCommerce integrácia služby <a href="http://www.superfaktura.sk/api/">SuperFaktúra.sk</a> Máte s modulom technický problém? Napíšte nám na <a href="mailto:[email protected]">[email protected]</a>
    13  * Version:     1.6.29
     13 * Version:     1.6.30
    1414 * Author:      Webikon (Ján Bočínec)
    1515 * Author URI:  http://www.webikon.sk
Note: See TracChangeset for help on using the changeset viewer.