forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStockQties_csv.php
50 lines (34 loc) · 1.61 KB
/
StockQties_csv.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
<?php
include ('includes/session.php');
$Title = _('Produce Stock Quantities CSV');
$ViewTopic = 'Inventory';
$BookMark = '';
include ('includes/header.php');
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/inventory.png" title="' . _('Inventory') .'" alt="" /><b>' . $Title. '</b></p>';
function stripcomma($str) { //because we're using comma as a delimiter
return str_replace(',', '', $str);
}
echo '<div class="centre">' . _('Making a comma separated values file of the current stock quantities') . '</div>';
$ErrMsg = _('The SQL to get the stock quantities failed with the message');
$SQL = "SELECT stockid, SUM(quantity) FROM locstock
INNER JOIN locationusers ON locationusers.loccode=locstock.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1
GROUP BY stockid HAVING SUM(quantity)<>0";
$Result = DB_query($SQL, $ErrMsg);
if (!file_exists($_SESSION['reports_dir'])){
$Result = mkdir('./' . $_SESSION['reports_dir']);
}
$FileName = $_SESSION['reports_dir'] . '/StockQties.csv';
$fp = fopen($FileName,'w');
if ($fp==FALSE){
prnMsg(_('Could not open or create the file under') . ' ' . $_SESSION['reports_dir'] . '/StockQties.csv','error');
include('includes/footer.php');
exit;
}
While ($MyRow = DB_fetch_row($Result)){
$Line = stripcomma($MyRow[0]) . ', ' . stripcomma($MyRow[1]);
fputs($fp,"\xEF\xBB\xBF" . $Line . "\n");
}
fclose($fp);
echo '<br /><div class="centre"><a href="' . $RootPath . '/' . $_SESSION['reports_dir'] . '/StockQties.csv ">' . _('click here') . '</a> ' . _('to view the file') . '</div>';
include('includes/footer.php');
?>