Skip to content

Commit

Permalink
Merge pull request #32 from nikos458/patch-1
Browse files Browse the repository at this point in the history
Update index.php
  • Loading branch information
evansgl authored Jan 3, 2024
2 parents 4c3f5d5 + 623e628 commit 1ea11a8
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions mydata/mydatalist/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,17 @@ function write_log($log_msg)

$mydata_type = $row["mydata_type"];

//$total = number_format($total-$taxwh,2,'.',''); //παρακράτηση μη πολλαπλών Φ.Π.Α.
$total = number_format($total,2,'.',''); //παρακράτηση πολλαπλών Φ.Π.Α.
//$forex_total = number_format($forex_total-$taxwh,2,'.',''); //παρακράτηση μη πολλαπλών Φ.Π.Α.
$forex_total = number_format($forex_total,2,'.',''); //παρακράτηση πολλαπλών Φ.Π.Α.
if(MYDATA_SUPPORT_MULTILINE == 1) {

$total = number_format($total,2,'.',''); //παρακράτηση πολλαπλών Φ.Π.Α.
$forex_total = number_format($forex_total,2,'.',''); //παρακράτηση πολλαπλών Φ.Π.Α.

} else {

$total = number_format($total-$taxwh,2,'.',''); //παρακράτηση μη πολλαπλών Φ.Π.Α.
$forex_total = number_format($forex_total-$taxwh,2,'.',''); //παρακράτηση μη πολλαπλών Φ.Π.Α.

}

$eu_countries = array("AT","BE","BG","CY","CZ","DE","DK","EE","ES","FI","FR","HU","HR","IE","IT","LT","LU","LV","MT","NL","PL","PT","RO","SE","SI","SK");
$local_country = array("GR");
Expand Down

0 comments on commit 1ea11a8

Please sign in to comment.