forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStockUsageGraph.php
167 lines (153 loc) · 6.64 KB
/
StockUsageGraph.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?php
include('includes/session.php');
$Result = DB_query("SELECT description FROM stockmaster WHERE stockid='" . trim(mb_strtoupper($_GET['StockID'])) . "'");
$MyRow = DB_fetch_row($Result);
include('includes/phplot/phplot.php');
$graph = new PHPlot(1000, 500);
$graph->SetTitle($MyRow[0] . ' ' . _('Usage'));
$graph->SetXTitle(_('Month'));
$graph->SetYTitle(_('Quantity'));
$graph->SetBackgroundColor("wheat");
$graph->SetTitleColor("blue");
$graph->SetPlotType('bars');
$graph->SetShading(5);
$graph->SetDrawYGrid(TRUE);
$graph->SetMarginsPixels(60, 40, 40, 40);
$graph->SetDataType('text-data');
if($_GET['StockLocation'] == 'All') {
if (!empty($_SESSION['StockUsageShowZeroWithinPeriodRange'])) {
$CurrentPeriod = GetPeriod(Date($_SESSION['DefaultDateFormat']));
$SQL = "SELECT periods.periodno,
periods.lastdate_in_period,
SUM(CASE WHEN stockmoves.type IN (10, 11, 28)
AND stockmoves.hidemovt = 0
AND stockmoves.stockid = '" . $_GET['StockID'] . "'
THEN -stockmoves.qty ELSE 0 END) AS qtyused
FROM periods
LEFT JOIN stockmoves ON periods.periodno = stockmoves.prd
LEFT JOIN locationusers ON locationusers.loccode = stockmoves.loccode
AND locationusers.userid = '" . $_SESSION['UserID'] . "'
AND locationusers.canview = 1
WHERE periods.periodno > '" . ($CurrentPeriod - 24) . "'
GROUP BY periods.periodno,
periods.lastdate_in_period
ORDER BY periodno ASC
LIMIT 24";
} else {
$SQL = "SELECT periods.periodno,
periods.lastdate_in_period,
SUM(-stockmoves.qty) AS qtyused
FROM stockmoves
INNER JOIN periods ON stockmoves.prd = periods.periodno
INNER JOIN locationusers ON locationusers.loccode = stockmoves.loccode
AND locationusers.userid = '" . $_SESSION['UserID'] . "'
AND locationusers.canview = 1
WHERE stockmoves.type IN (10, 11, 28)
AND stockmoves.hidemovt = 0
AND stockmoves.stockid = '" . trim(mb_strtoupper($_GET['StockID'])) . "'
GROUP BY periods.periodno,
periods.lastdate_in_period
ORDER BY periodno
LIMIT 24";
}
} else {
if (!empty($_SESSION['StockUsageShowZeroWithinPeriodRange'])) {
$CurrentPeriod = GetPeriod(Date($_SESSION['DefaultDateFormat']));
$SQL = "SELECT periods.periodno,
periods.lastdate_in_period,
SUM(CASE WHEN stockmoves.type IN (10, 11, 28)
AND stockmoves.hidemovt = 0
AND stockmoves.loccode = '" . $_GET['StockLocation'] . "'
AND stockmoves.stockid = '" . $_GET['StockID'] . "'
THEN -stockmoves.qty ELSE 0 END) AS qtyused
FROM periods
LEFT JOIN stockmoves ON periods.periodno = stockmoves.prd
LEFT JOIN locationusers ON locationusers.loccode = stockmoves.loccode
AND locationusers.userid = '" . $_SESSION['UserID'] . "'
AND locationusers.canview = 1
WHERE periods.periodno > '" . ($CurrentPeriod - 24) . "'
GROUP BY periods.periodno,
periods.lastdate_in_period
ORDER BY periodno ASC
LIMIT 24";
} else {
$SQL = "SELECT periods.periodno,
periods.lastdate_in_period,
SUM(-stockmoves.qty) AS qtyused
FROM stockmoves
INNER JOIN periods ON stockmoves.prd = periods.periodno
INNER JOIN locationusers ON locationusers.loccode = stockmoves.loccode
AND locationusers.userid = '" . $_SESSION['UserID'] . "'
AND locationusers.canview = 1
WHERE stockmoves.type IN (10, 11, 28)
AND stockmoves.hidemovt = 0
AND stockmoves.loccode = '" . $_GET['StockLocation'] . "'
AND stockmoves.stockid = '" . trim(mb_strtoupper($_GET['StockID'])) . "'
GROUP BY periods.periodno,
periods.lastdate_in_period
ORDER BY periodno
LIMIT 24";
}
}
$MovtsResult = DB_query($SQL);
if (DB_error_no() != 0) {
$Title = _('Stock Usage Graph Problem');
include ('includes/header.php');
echo _('The stock usage for the selected criteria could not be retrieved because') . ' - ' . DB_error_msg();
if ($Debug == 1) {
echo '<br />' . _('The SQL that failed was') . $SQL;
}
include('includes/footer.php');
exit;
}
if (DB_num_rows($MovtsResult) == 0) {
$Title = _('Stock Usage Graph Problem');
include ('includes/header.php');
prnMsg(_('There are no movements of this item from the selected location to graph'),'info');
include('includes/footer.php');
exit;
}
$UsageArray = array();
$NumberOfPeriodsUsage = DB_num_rows($MovtsResult);
if ($NumberOfPeriodsUsage != 24) {
$graph->SetDataColors(
array("blue"), //Data Colors
array("black") //Border Colors
);
for ($i = 1; $i <= $NumberOfPeriodsUsage; $i++) {
$UsageRow = DB_fetch_array($MovtsResult);
if (!$UsageRow) {
break;
} else {
$UsageArray[] = array(MonthAndYearFromSQLDate($UsageRow['lastdate_in_period']),$UsageRow['qtyused']);
}
}
} else {
$graph->SetDataColors(
array("blue","red"), //Data Colors
array("black") //Border Colors
);
for ($i = 1; $i <= 12; $i++) {
$UsageRow = DB_fetch_array($MovtsResult);
if (!$UsageRow) {
break;
}
$UsageArray[] = array(MonthAndYearFromSQLDate($UsageRow['lastdate_in_period'], true), $UsageRow['qtyused']);
}
for ($i = 0; $i <= 11; $i++) {
$UsageRow = DB_fetch_array($MovtsResult);
if (!$UsageRow) {
break;
}
$UsageArray[$i][0] = MonthAndYearFromSQLDate($UsageRow['lastdate_in_period'], true);
$UsageArray[$i][2] = $UsageRow['qtyused'];
}
}
//$graph->SetDrawXGrid(TRUE);
$graph->SetDataValues($UsageArray);
$graph->SetDataColors(
array("blue","red"), //Data Colors
array("black") //Border Colors
);
//Draw it
$graph->DrawGraph();