Subversion Repositories wpShopGermany4

Rev

Rev 7217 | Rev 8065 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7217 Rev 7305
Line 32... Line 32...
32
    
32
    
33
    }
33
    }
34
    
34
    
35
    if ($this->getBackendTaxview() === WPSG_BRUTTO) {
35
    if ($this->getBackendTaxview() === WPSG_BRUTTO) {
36
        
36
        
37
    	$price_shipping = wpsg_ff(($arCalculation['shipping'][0]['brutto_single']??0), $this->get_option('wpsg_currency'));
37
    	$price_shipping = wpsg_ff(wpsg_getInt($arCalculation['shipping'][0]['brutto_single']), $this->get_option('wpsg_currency'));
38
		$price_payment = wpsg_ff(($arCalculation['payment'][0]['brutto_single']??0), $this->get_option('wpsg_currency'));
38
		$price_payment = wpsg_ff(wpsg_getInt($arCalculation['payment'][0]['brutto_single']), $this->get_option('wpsg_currency'));
39
    	         
39
    	         
40
        $price_suffix = ' ('.__('Brutto', 'wpsg').')';
40
        $price_suffix = ' ('.__('Brutto', 'wpsg').')';
41
        
41
        
42
    } else {
42
    } else {
43
	
43
	
44
		$price_shipping = wpsg_ff(($arCalculation['shipping'][0]['netto_single']??0), $this->get_option('wpsg_currency'));
44
		$price_shipping = wpsg_ff(wpsg_getInt($arCalculation['shipping'][0]['netto_single']), $this->get_option('wpsg_currency'));
45
		$price_payment = wpsg_ff(($arCalculation['payment'][0]['netto_single']??0), $this->get_option('wpsg_currency'));
45
		$price_payment = wpsg_ff(wpsg_getInt($arCalculation['payment'][0]['netto_single']), $this->get_option('wpsg_currency'));
46
 
46
 
47
        $price_suffix = ' ('.__('Netto', 'wpsg').')';
47
        $price_suffix = ' ('.__('Netto', 'wpsg').')';
48
        
48
        
49
    }
49
    }
50
        
50