X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep302.php;h=6e0ddfd41f462cb6486598bae2ffc2f552bd6d37;hb=refs%2Fremotes%2Fgithub%2Fmaster;hp=1c821689cf6cf067b9e2321d75a1c3a2da8a502f;hpb=017f59aff3a7c74d7eb32cb93d343d5d6eb7cd20;p=fa-stable.git diff --git a/reporting/rep302.php b/reporting/rep302.php index 1c821689..6e0ddfd4 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']; @@ -113,13 +113,12 @@ function print_inventory_planning() $cols = array(0, 50, 150, 180, 210, 240, 270, 300, 330, 390, 435, 480, 525); - $per0 = substr(date('F',mktime(0,0,0,date('m'),1,date('Y'))), 0, 3); - $per1 = substr(date('F',mktime(0,0,0,date('m')-1,1,date('Y'))), 0, 3); - $per2 = substr(date('F',mktime(0,0,0,date('m')-2,1,date('Y'))), 0, 3); - $per3 = substr(date('F',mktime(0,0,0,date('m')-3,1,date('Y'))), 0, 3); - $per4 = substr(date('F',mktime(0,0,0,date('m')-4,1,date('Y'))), 0, 3); - - $headers = array(_('Category'), '', $per4, $per3, $per2, $per1, $per0, '3*M', + $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')); $aligns = array('left', 'left', 'right', 'right', 'right', 'right', 'right', 'right',