forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FTP_RadioBeacon.php
293 lines (248 loc) · 11.6 KB
/
FTP_RadioBeacon.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<?php
/*Variables required to configure this script must be set in config.php */
include('includes/session.php');
$Title=_('FTP order to Radio Beacon');
include('includes/header.php');
include('includes/SQL_CommonFunctions.inc');
/*Logic should allow entry of an order number which returns
some details of the order for confirming before producing the file for ftp */
$SQL = "SELECT salesorders.orderno,
debtorsmaster.name,
custbranch.brname,
salesorders.customerref,
salesorders.orddate,
salesorders.deliverto,
salesorders.deliverydate,
sum(salesorderdetails.unitprice*salesorderdetails.quantity*(1-salesorderdetails.discountpercent)) as ordervalue,
datepackingslipprinted,
printedpackingslip
FROM salesorders,
salesorderdetails,
debtorsmaster,
custbranch
WHERE salesorders.orderno = salesorderdetails.orderno
AND salesorders.debtorno = debtorsmaster.debtorno
AND debtorsmaster.debtorno = custbranch.debtorno
AND salesorderdetails.completed=0
AND salesorders.fromstkloc = '". $_SESSION['RadioBeaconStockLocation'] . "'
GROUP BY salesorders.orderno,
salesorders.debtorno,
salesorders.branchcode,
salesorders.customerref,
salesorders.orddate,
salesorders.deliverto";
$ErrMsg = _('No orders were returned because');
$SalesOrdersResult = DB_query($SQL,$ErrMsg);
/*show a table of the orders returned by the SQL */
echo '<table cellpadding="2" width="100%">';
$TableHeader = '<tr>
<td class="tableheader">' . _('Modify') . '</td>
<td class="tableheader">' . _('Send to') . '<br />' . _('Radio Beacon') . '</td>
<td class="tableheader">' . _('Customer') . '</td>
<td class="tableheader">' . _('Branch') . '</td>
<td class="tableheader">' . _('Cust Order') . ' #</td>
<td class="tableheader">' . _('Order Date') . '</td>
<td class="tableheader">' . _('Req Del Date') . '</td>
<td class="tableheader">' . _('Delivery To') . '</td>
<td class="tableheader">' . _('Order Total') . '</td>
<td class="tableheader">' . _('Last Send') . '</td>
</tr>';
echo $TableHeader;
$j = 1;
while ($myrow=DB_fetch_array($SalesOrdersResult)) {
$FTPDispatchNote = htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?OrderNo=' . $myrow['orderno'];
$FormatedDelDate = ConvertSQLDate($myrow['deliverydate']);
$FormatedOrderDate = ConvertSQLDate($myrow['orddate']);
$FormatedOrderValue = locale_number_format($myrow['ordervalue'],2);
$FormatedDateLastSent = ConvertSQLDate($myrow['datepackingslipprinted']);
$ModifyPage = $RootPath . 'SelectOrderItems.php?ModifyOrderNumber=' . $myrow['orderno'];
if ($myrow['printedpackingslip'] ==1){
printf('<tr class="striped_row">
<td><font size="2"><a href="%s">%s</a></font></td>
<td><font color=RED size="2">' . _('Already') . '<br />' . _('Sent') . '</font></td>
<td><font size="2">%s</font></td>
<td><font size="2">%s</font></td>
<td><font size="2">%s</font></td>
<td><font size="2">%s</font></td>
<td><font size="2">%s</font></td>
<td><font size="2">%s</font></td>
<td class="number"><font size="2">%s</font></td>
<td><font size="2">%s</font></td></tr>',
$ModifyPage,
$myrow['orderno'],
$myrow['name'],
$myrow['brname'],
$myrow['customerref'],
$FormatedOrderDate,
$FormatedDelDate,
$myrow['deliverto'],
$FormatedOrderValue,
$FormatedDateLastSent);
} else {
printf('<tr class="striped_row">
<td><font size="2"><a href="%s">%s</a></font></td>
<td><font size="2"><a href="%s">' . _('Send') . '</a></font></td>
<td><font size="2">%s</font></td>
<td><font size="2">%s</font></td>
<td><font size="2">%s</font></td>
<td><font size="2">%s</font></td>
<td><font size="2">%s</font></td>
<td><font size="2">%s</font></td>
<td class="number"><font size="2">%s</font></td>
<td><font size="2">%s</font></td></tr>',
$ModifyPage,
$myrow['orderno'],
$FTPDispatchNote,
$myrow['name'],
$myrow['brname'],
$myrow['customerref'],
$FormatedOrderDate,
$FormatedDelDate,
$myrow['deliverto'],
$FormatedOrderValue,
$FormatedDateLastSent);
}
$j++;
if ($j == 12){
$j=1;
echo $TableHeader;
}
//end of page full new headings if
}
//end of while loop
echo '</table>';
if (isset($_GET['OrderNo'])){ /*An order has been selected for sending */
if ($_SESSION['CompanyRecord']==0){
/*CompanyRecord will be 0 if the company information could not be retrieved */
prnMsg(_('There was a problem retrieving the company information ensure that the company record is correctly set up'),'error');
include('includes/footer.php');
exit;
}
/*Now get the order header info */
$sql = "SELECT salesorders.debtorno,
customerref,
comments,
orddate,
deliverydate,
deliverto,
deladd1,
deladd2,
deladd3,
deladd4,
deladd5,
deladd6,
contactphone,
contactemail,
name,
address1,
address2,
address3,
address4,
address5,
address6,
printedpackingslip,
datepackingslipprinted
FROM salesorders,
debtorsmaster
WHERE salesorders.debtorno=debtorsmaster.debtorno
AND salesorders.fromstkloc = '". $_SESSION['RadioBeaconStockLocation'] . "'
AND salesorders.orderno='" . $_GET['OrderNo'] . "'";
$ErrMsg = _('There was a problem retrieving the order header details for Order Number') . ' ' . $_GET['OrderNo'] . ' ' . _('from the database');
$result=DB_query($sql,$ErrMsg);
if (DB_num_rows($result)==1){ /*There is ony one order header returned */
$myrow = DB_fetch_array($result);
if ($myrow['printedpackingslip']==1){
prnMsg(_('Order Number') . ' ' . $_GET['OrderNo'] . ' ' . _('has previously been sent to Radio Beacon') . '. ' . _('It was sent on') . ' ' . ConvertSQLDate($myrow['datepackingslipprinted']) . '<br />' . _('To re-send the order with the balance not previously dispatched and invoiced the order must be modified to allow a reprint (or re-send)') . '.<br />' . _('This check is there to ensure that duplication of dispatches to the customer are avoided'),'warn');
echo '<p><a href="' . $RootPath . '/SelectOrderItems.php?ModifyOrderNumber=' . $_GET['OrderNo'] . '">' . _('Modify the order to allow a re-send or reprint') . ' (' . _('Select Delivery Details') . ')' . '</a>';
echo '<p><a href="' . $RootPath/index.php . '">' . _('Back to the menu') . '</a>';
include('includes/footer.php');
exit;
}
/*Now get the line items */
$sql = "SELECT stkcode,
description,
quantity,
units,
qtyinvoiced,
unitprice
FROM salesorderdetails,
stockmaster
WHERE salesorderdetails.stkcode=stockmaster.stockid
AND salesorderdetails.orderno=" . $_GET['OrderNo'];
$ErrMsg = _('There was a problem retrieving the line details for order number') . ' ' . $_GET['OrderNo'] . ' ' . _('from the database because');
$result=DB_query($sql, $ErrMsg);
if (DB_num_rows($result)>0){
/*Yes there are line items to start the ball rolling creating the Header record - the PHRecord*/
/*First get the unique send id for the file name held in a separate file */
/*Now get the file information inorder to create the Radio Beacon format file */
if (file_exists($FileCounter)){
$fCounter = file($FileCounter);
$FileNumber = intval($fCounter[0]);
if ($FileNumber < 999){
$FileNumber++;
} else {
$FileNumber =1;
}
} else {
$FileNumber=1;
}
$fp = fopen($FileCounter,'w');
fwrite($fp, $FileNumber);
fclose ($fp);
$PHRecord = 'PH^^^' . $myrow['debtorno'] . '^' . $_GET['OrderNo'] . '^' . $FileNumber . '^' . $myrow['customerref'] . '^^^^^';
$PHRecord = $PHRecord . $myrow['deliverto'] . '^' . $myrow['deladd1'] . '^' . $myrow['deladd2'] . '^' . $myrow['deladd3'] . '^' . $myrow['deladd4'] . '^' . $myrow['deladd5'] . '^' . $myrow['deladd6'] . '^^^^';
$PHRecord = $PHRecord . $myrow['contactphone'] . '^' . $myrow['name'] . '^' . $myrow['address1'] . '^' . $myrow['address2'] . '^' .$myrow['address3'] . '^' .$myrow['address4'] . '^' .$myrow['address5'] . '^' .$myrow['address6'] . '^^^';
$PHRecord = $PHRecord . $myrow['deliverydate'] . '^^^^^^^' . $myrow['orddate'] . '^^^^^^DX^^^^^^^^^^^^^' . $_SESSION['CompanyRecord']['coyname'] . '^' . $_SESSION['CompanyRecord']['regoffice1'] . '^' . $_SESSION['CompanyRecord']['regoffice2'] . '^';
$PHRecord = $PHRecord . $_SESSION['CompanyRecord']['regoffice3'] . '^' . $_SESSION['CompanyRecord']['regoffice4'] . '^' . $_SESSION['CompanyRecord']['regoffice5'] . '^' . $_SESSION['CompanyRecord']['regoffice6'] . '^';
$PHRecord = $PHRecord . '^^^^^^^N^N^^H^^^^^^' . $myrow['deliverydate'] . '^^^^^^^' . $myrow['contactphone'] . '^' . $myrow['contactemail'] . '^^^^^^^^^^^^^^^^^^^^^^^^^^\n';
$PDRec = array();
$LineCounter =0;
while ($myrow2=DB_fetch_array($result)){
$PickQty = $myrow2['quantity']- $myrow2['qtyinvoiced'];
$PDRec[$LineCounter] = 'PD^^^' . $myrow['debtorno'] . '^' . $_GET['OrderNo'] . '^' . $FileNumber . '^^^^^^^' . $myrow2['stkcode'] . '^^' . $myrow2['description'] . '^1^^^' . $myrow2['quantity'] . '^' . $PickQty . '^^^^^^^^^^^^^^DX^^^^^^^^^^^^^^1000000000^' . $myrow['customerref'] . '^^^^^^^^^^^^^^^^^^^^^^';
$LineCounter++;
}
/*the file number is used as an integer to uniquely identify multiple sendings of the order
for back orders dispatched later */
if ($FileNumber<10){
$FileNumber = '00' . $FileNumber;
} elseif ($FileNumber <100){
$FileNumber = '0' . $FileNumber;
}
$FileName = $_SESSION['RadioBeaconHomeDir'] . '/' . $FilePrefix . $FileNumber . '.txt';
$fp = fopen($FileName, 'w');
fwrite($fp, $PHRecord);
foreach ($PDRec AS $PD) {
fwrite($fp, $PD);
}
fclose($fp);
echo '<p>' . _('FTP Connection progress') . ' .....';
// set up basic connection
$conn_id = ftp_connect($_SESSION['RadioBeaconFTP_server']); // login with username and password
$login_result = ftp_login($conn_id, $_SESSION['RadioBeaconFTP_user_name'], $_SESSION['RadioBeaconFTP_user_pass']); // check connection
if ((!$conn_id) || (!$login_result)) {
echo '<br />' . _('Ftp connection has failed');
echo '<br />' . _('Attempted to connect to') . ' ' . $_SESSION['RadioBeaconFTP_server'] . ' ' . _('for user') . ' ' . $_SESSION['RadioBeaconFTP_user_name'];
die;
} else {
echo '<br />' . _('Connected to Radio Beacon FTP server at') . ' ' . $_SESSION['RadioBeaconFTP_server'] . ' ' . _('with user name') . ' ' . $_SESSION['RadioBeaconFTP_user_name'];
} // upload the file
$upload = ftp_put($conn_id, $FilePrefix . $FileNumber . '.txt', $FileName, FTP_ASCII); // check upload status
if (!$upload) {
prnMsg(_('FTP upload has failed'),'success');
exit;
} else {
echo '<br />' . _('Uploaded') . ' ' . $FileName . ' ' . _('to') . ' ' . $_SESSION['RadioBeaconFTP_server'];
} // close the FTP stream
ftp_quit($conn_id);
/* Update the order printed flag to prevent double sendings */
$sql = "UPDATE salesorders SET printedpackingslip=1, datepackingslipprinted='" . Date('Y-m-d') . "' WHERE salesorders.orderno=" . $_GET['OrderNo'];
$result = DB_query($sql);
echo '<p>' . _('Order Number') . ' ' . $_GET['OrderNo'] . ' ' . _('has been sent via FTP to Radio Beacon a copy of the file that was sent is held on the server at') . '<br />' . $FileName;
} else { /*perhaps several order headers returned or none (more likely) */
echo '<p>' . _('The order') . ' ' . $_GET['OrderNo'] . ' ' . _('for dispatch via Radio Beacon could not be retrieved') . '. ' . _('Perhaps it is set to be dispatched from a different stock location');
}
} /*there are line items outstanding for dispatch */
} /*end of if page called with a OrderNo - OrderNo*/
include('includes/footer.php');
?>