X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep302.php;h=2234426683f990c21b5dbd42b9f06c6de597b341;hb=e4cef39a7672370a7ae2e61c94e5267825fd1c5c;hp=417e44b7c99483495f12cccae2ffb0b2e92b8bf3;hpb=a892678b33105b508b115ec20671c5a0f0c8891f;p=fa-stable.git diff --git a/reporting/rep302.php b/reporting/rep302.php index 417e44b7..22344266 100644 --- a/reporting/rep302.php +++ b/reporting/rep302.php @@ -84,7 +84,7 @@ function getPeriods($stockid, $location) function print_inventory_planning() { - global $path_to_root; + global $path_to_root, $tmonths; $category = $_POST['PARAM_0']; $location = $_POST['PARAM_1']; @@ -112,11 +112,12 @@ function print_inventory_planning() $loc = get_location_name($location); $cols = array(0, 50, 150, 180, 210, 240, 270, 300, 330, 390, 435, 480, 525); - $per0 = date('M',mktime(0,0,0,date('m'),1,date('Y'))); - $per1 = date('M',mktime(0,0,0,date('m')-1,1,date('Y'))); - $per2 = date('M',mktime(0,0,0,date('m')-2,1,date('Y'))); - $per3 = date('M',mktime(0,0,0,date('m')-3,1,date('Y'))); - $per4 = date('M',mktime(0,0,0,date('m')-4,1,date('Y'))); + + $per0 = $tmonths[date('n',mktime(0,0,0,date('m'),1,date('Y')))]; + $per1 = $tmonths[date('n',mktime(0,0,0,date('m')-1,1,date('Y')))]; + $per2 = $tmonths[date('n',mktime(0,0,0,date('m')-2,1,date('Y')))]; + $per3 = $tmonths[date('n',mktime(0,0,0,date('m')-3,1,date('Y')))]; + $per4 = $tmonths[date('n',mktime(0,0,0,date('m')-4,1,date('Y')))]; $headers = array(_('Category'), '', $per4, $per3, $per2, $per1, $per0, '3*M', _('QOH'), _('Cust Ord'), _('Supp Ord'), _('Sugg Ord'));