! -> Note
$ -> Affected files
+10-May-2009 Joe Hunt
+# Period presentation bug in tax report/inquiry
+$ /gl/inquiry/tax_inquiry.php
+ /reporting/includes/reports_classes.inc
+
07-May-2009 Joe Hunt
# Layout bug in exchange rate display
$ /includes/ui/ui_view.inc
$row = get_company_prefs();
$edate = add_months($date, -$row['tax_last']);
$edate = end_month($edate);
- $bdate = add_months($edate, -$row['tax_prd'] + 1);
- $_POST["TransFromDate"] = begin_month($bdate);
+ $bdate = begin_month($edate);
+ $bdate = add_months($bdate, -$row['tax_prd'] + 1);
+ $_POST["TransFromDate"] = $bdate;
$_POST["TransToDate"] = $edate;
}
$date = $edate;
else
{
- $bdate = add_months($edate, -$row['tax_prd'] + 1);
- $date = begin_month($bdate);
+ $bdate = begin_month($edate);
+ $bdate = add_months($bdate, -$row['tax_prd'] + 1);
+ $date = $bdate;
}
}
$name = "PARAM_$index";