php 8. strpos(): Passing null to parameter #1 ($haystack) of type string is deprecate...
[fa-stable.git] / reporting / rep302.php
index cdfd0e9a21e89d81a92422c3d063453f77f6d2ae..2234426683f990c21b5dbd42b9f06c6de597b341 100644 (file)
@@ -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,12 +113,11 @@ function print_inventory_planning()
 
        $cols = array(0, 50, 150, 180, 210, 240, 270, 300, 330, 390, 435, 480, 525);
 
-       $per0 = strftime('%b',mktime(0,0,0,date('m'),1,date('Y')));
-       $per1 = strftime('%b',mktime(0,0,0,date('m')-1,1,date('Y')));
-       $per2 = strftime('%b',mktime(0,0,0,date('m')-2,1,date('Y')));
-       $per3 = strftime('%b',mktime(0,0,0,date('m')-3,1,date('Y')));
-       $per4 = strftime('%b',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'));