-
Notifications
You must be signed in to change notification settings - Fork 3
/
EDIProcessOrders.php
572 lines (499 loc) · 21.7 KB
/
EDIProcessOrders.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
<?php
/* $Revision: 1.20 $ */
/* $Id$*/
include ('includes/session.inc');
$title = _('Process EDI Orders');
include ('includes/header.inc');
include('includes/SQL_CommonFunctions.inc'); // need for EDITransNo
include('includes/htmlMimeMail.php'); // need for sending email attachments
include('includes/DefineCartClass.php');
/*The logic outline is this ....
Make an array of the format of the ORDER message from the table EDI_ORDERS_Segs
Get the list of files in EDI_Incoming_Orders - work through each one as follows
Read in the flat file one line at a time
Compare the SegTag in the flat file with the expected SegTag from EDI_ORDERS_Segs
parse the data in the line of text from the flat file to enable the order to be created
Create a html email to the customer service person based on the location
of the customer doing the ordering and where it would be best to pick the order from
Read the next line of the flat file ...
If the order processed ok then move the file to processed and go on to next file.
*/
/*Read in the EANCOM Order Segments for the current seg group from the segments table */
$sql = "SELECT id, segtag, maxoccur, seggroup FROM edi_orders_segs";
$OrderSeg = DB_query($sql,$db);
$i=0;
$Seg = array();
while ($SegRow=DB_fetch_array($OrderSeg)){
$Seg[$i] = array('SegTag'=>$SegRow['segtag'], 'MaxOccur'=>$SegRow['maxoccur'], 'SegGroup'=>$SegRow['seggroup']);
$i++;
}
$TotalNoOfSegments = $i-1;
/*get the list of files in the incoming orders directory - from config.php */
$dirhandle = opendir($_SERVER['DOCUMENT_ROOT'] . '/' . $rootpath . '/' . $_SESSION['EDI_Incoming_Orders']);
while (false !== ($OrderFile=readdir($dirhandle))){ /*there are files in the incoming orders dir */
$TryNextFile = False;
echo "<br />$OrderFile";
/*Counter that keeps track of the array pointer for the 1st seg in the current seg group */
$FirstSegInGrp =0;
$SegGroup =0;
$fp = fopen($_SERVER['DOCUMENT_ROOT'] .'/$rootpath/'.$_SESSION['EDI_Incoming_Orders'].'/'.$OrderFile,'r');
$SegID = 0;
$SegCounter =0;
$SegTag='';
$LastSeg = 0;
$FirstSegInGroup = 0;
$EmailText =''; /*Text of email to send to customer service person */
$CreateOrder = True; /*Assume that we are to create a sales order in the system for the message read */
$Order = new cart;
while ($LineText = fgets($fp) AND $TryNextFile != True){ /* get each line of the order file */
$LineText = StripTrailingComma($LineText);
echo "<br />".$LineText;
if ($SegTag != substr($LineText,0,3)){
$SegCounter=1;
$SegTag = substr($LineText,0,3);
} else {
$SegCounter++;
if ($SegCounter > $Seg[$SegID]['MaxOccur']){
$EmailText = $EmailText . "\n" . _('The EANCOM Standard only allows for') . ' ' . $Seg[$SegID]['MaxOccur'] . ' ' ._('occurrences of the segment') . ' ' . $Seg[$SegID]['SegTag'] . ' ' . _('this is the') . ' ' . $SegCounter . ' ' . _('occurrence') . '<br />' . _('The segment line read as follows') . ':<br />' . $LineText;
}
}
/* Go through segments in the order message array in sequence looking for matching SegTags
*/
while ($SegTag != $Seg[$SegID]['SegTag'] AND $SegID < $TotalNoOfSegments) {
$SegID++; /*Move to the next Seg in the order message */
$LastSeg = $SegID; /*Remember the last segid moved to */
echo "\n" . _('Segment Group') . ' = ' . $Seg[$SegID]['SegGroup'] . ' ' . _('Max Occurrences of Segment') . ' = ' . $Seg[$SegID]['MaxOccur'] . ' ' . _('No occurrences so far') . ' = ' . $SegCounter;
if ($Seg[$SegID]['SegGroup'] != $SegGroup AND $Seg[$SegID]['MaxOccur'] > $SegCounter){ /*moved to a new seg group but could be more segment groups*/
$SegID = $FirstSegInGroup; /*Try going back to first seg in the group */
if ($SegTag != $Seg[$SegID]['SegTag']){ /*still no match - must be into new seg group */
$SegID = $LastSeg;
$FirstSegInGroup = $SegID;
} else {
$SegGroup = $Seg[$SegID]['SegGroup'];
}
}
}
if ($SegTag != $Seg[$SegID]['SegTag']){
$EmailText .= "\n" . _('ERROR') . ': ' . _('Unable to identify segment tag') . ' ' . $SegTag . ' ' . _('from the message line') . '<br />' . $LineText . '<br /><font color=RED><b>' . _('This message processing has been aborted and separate advice will be required from the customer to obtain details of the order') . '<b></font>';
$TryNextFile = True;
}
echo '<br />' . _('The segment tag') . ' ' . $SegTag . ' ' . _('is being processed');
switch ($SegTag){
case 'UNH':
$UNH_elements = explode ('+',substr($LineText,4));
$Order->Comments .= _('Customer EDI Ref') . ': ' . $UNH_elements[0];
$EmailText .= "\n" . _('EDI Message Ref') . ': ' . $UNH_elements[0];
if (substr($UNH_elements[1],0,6)!='ORDERS'){
$EmailText .= "\n" . _('This message is not an order');
$TryNextFile = True;
}
break;
case 'BGM':
$BGM_elements = explode('+',substr($LineText,4));
$BGM_C002 = explode(':',$BGM_elements[0]);
switch ($BGM_C002[0]){
case '220':
$EmailText .= "\n" . _('This message is a standard order');
break;
case '221':
$EmailText .= "\n" . _('This message is a blanket order');
$Order->Comments .= "\n" . _('blanket order');
break;
case '224':
$EmailText .= "\n\n" . _('This order is URGENT') . "</font>";
$Order->Comments .= "\n" . _('URGENT ORDER');
break;
case '226':
$EmailText .= "\n" . _('Call off order');
$Order->Comments .= "\n" . _('Call Off Order');
break;
case '227':
$EmailText .= "\n" . _('Consignment order');
$Order->Comments .= "\n" . _('Consignment order');
break;
case '22E':
$EmailText .= "\n" . _('Manufacturer raised order');
$Order->Comments .= "\n" . _('Manufacturer raised order');
break;
case '258':
$EmailText .= "\n" . _('Standing order');
$Order->Comments .= "\n" ._('Standing order');
break;
case '237':
$EmailText .= "\n" . _('Cross docking services order');
$Order->Comments .= "\n" . _('Cross docking services order');
break;
case '400':
$EmailText .= "\n" . _('Exceptional Order');
$Order->Comments .= "\n" . _('Exceptional Order');
break;
case '401':
$EmailText .= "\n" . _('Trans-shipment order');
$Order->Comments .= "\n" . _('Trans-shipment order');
break;
case '402':
$EmailText .= "\n" . _('Cross docking order');
$Order->Comments .= "\n" . _('Cross docking order');
break;
} /*end switch for type of order */
if (isset($BGM_elements[1])){
echo '<br />echo BGM_elements[1] ' .$BGM_elements[1];
$BGM_C106 = explode(':',$BGM_elements[1]);
$Order->CustRef = $BGM_C106[0];
$EmailText .= "\n" . _('Customers order ref') . ': ' . $BGM_C106[0];
}
if (isset($BGM_elements[2])){
echo "<br />echo BGM_elements[2] " .$BGM_elements[2];
$BGM_1225 = explode(':',$BGM_elements[2]);
$MsgFunction = $BGM_1225[0];
switch ($MsgFunction){
case '5':
$EmailText .= "\n\n" . _('REPLACEMENT order') . ' - ' . _('MUST DELETE THE ORIGINAL ORDER MANUALLY');
break;
case '6':
$EmailText .= "\n" . _('Confirmation of previously sent order');
break;
case '7':
$EmailText .= "\n\n" . _('DUPLICATE order DELETE ORIGINAL ORDER MANUALLY');
break;
case '16':
$CreateOrder = False; /*Dont create order in system */
$EmailText .= "\n\n" . _('Proposed order only no order created in web-ERP');
break;
case '31':
$CreateOrder = False; /*Dont create order in system */
$EmailText .= "\n" . _('COPY order only no order will be created in web-ERP');
break;
case '42':
$CreateOrder = False; /*Dont create order in system */
$EmailText .= "\n" . _('Confirmation of order') . ' - ' . _('not created in web-ERP');
break;
case '46':
$CreateOrder = False; /*Dont create order in system */
$EmailText .= "\n" . _('Provisional order only') . ' - ' . _('not created in web-ERP');
break;
}
if (isset($BGM_1225[1])){
$ResponseCode = $BGM_1225[1];
echo '<br />' . _('Response Code') . ': ' . $ResponseCode;
switch ($ResponseCode) {
case 'AC':
$EmailText .= "\n" . _('Please acknowledge to customer with detail and changes made to the order');
break;
case 'AB':
$EmailText .= "\n" . _('Please acknowledge to customer the receipt of message');
break;
case 'AI':
$EmailText .= "\n" . _('Please acknowledge to customer any changes to the order');
break;
case 'NA':
$EmailText .= "\n" . _('No acknowledgement to customer is required');
break;
}
}
}
break;
case 'DTM':
/*explode into an arrage all items delimited by the : - only after the + */
$DTM_C507 = explode(':',substr($LineText,4));
$LocalFormatDate = ConvertEDIDate($DTM_C507[1],$DTM_C507[2]);
switch ($DTM_C507[0]){
case '2': /*Delivery date */
case '10': /*shipment date requested */
case '11': /*dispatch date */
case 'X14': /*Reguested delivery week commencing EAN code */
case '64': /*Earliest delivery date */
case '69': /*Promised delivery date */
$Order->DeliveryDate = $LocalFormatDate;
$EmailText .= "\n" . _('Requested delivery date') . ' ' . $Order->DeliveryDate;
break;
case '15': /*promotion start date */
$EmailText .= "\n" . _('Promotion start date') . ' ' . $LocalFormatDate;
break;
case '37': /*ship not before */
$EmailText .= "\n" . _('Do NOT ship before') . ' ' . $LocalFormatDate;
break;
case '38': /*ship not later than */
case '61': /*Cancel if not delivered by this date */
case '63': /*Latest delivery date */
case '393': /*Cancel if not shipped by this date */
$EmailText .= "\n" . _('Cancel order if not dispatched before') . ' ' . $LocalFormatDate;
break;
case '137': /*Order date */
$Order->Orig_OrderDate = $LocalFormatDate;
$EmailText .= "\n" . _('Order date') . ' ' . $LocalFormatDate;
break;
case '171': /*A date relating to a RFF seg */
/*This DTM segment follows a RFF seg so $RFF will be set
use the RFF seg to determine if the date refers to the
order */
$EmailText .= "\n" . _('dated') . ' ' . $LocalFormatDate;
if ($SegGroup == 1){
$Order->Comments .= ' ' . _('dated') . ' ' . $LocalFormatDate;
}
break;
case '200': /*Pickup collection date/time */
$EmailText .= "\n\n" . _('Pickup date') . ' ' . $LocalFormatDate;
$Order->DeliveryDate = $LocalFormatDate;
break;
case '263': /*Invoicing period */
$EmailText .= "\n" . _('Invoice period') . ' ' . $LocalFormatDate;
break;
case '273': /*Validity period */
$EmailText .= "\n" . _('Valid period') . ' ' . $LocalFormatDate;
break;
case '282': /*Confirmation date lead time */
$EmailText .= "\n" . _('Confirmation of date lead time') . ' ' . $LocalFormatDate;
break;
}
break;
case 'PAI':
/*explode into an array all items delimited by the : - only after the + */
$PAI_C534 = explode(':',substr($LineText,4));
if ($PAI_C534[0]=='1'){
$EmailText .= "\n" . _('Payment will be effected by a direct payment for this order');
} elseif($PAI_C534[0]=='OA'){
$EmailText .= "\n" . _('This order to be settled in accordance with the normal account trading terms');
}
if ($PAI_C534[1]=='20'){
$EmailText .= "\n" . _('The goods on this order') . ' - ' . _('once delivered') . ' - ' . _('will be held as security for the payment');
}
if ($PAI_C534[2]=='42'){
$EmailText .= "\n" . _('Payment will be effected to bank account');
} elseif ($PAI_C534[2]=='60'){
$EmailText .= "\n" . _('Payment will be effected by promissory note');
} elseif ($PAI_C534[2]=='40'){
$EmailText .= "\n" . _('Payment will be effected by a bill drawn by the creditor on the debtor');
} elseif ($PAI_C534[2]=='10E'){
$EmailText .= "\n" . _('Payment terms are defined in the Commercial Account Summary Section');
}
if (isset($PAI_C534[5])){
if ($PAI_C534[5]=='2')
$EmailText .= "\n" . _('Payment will be posted through the ordinary mail system');
}
break;
case 'ALI':
$ALI = explode('+',substr($LineText,4));
if (strlen($ALI[0])>1){
$EmailText .= "\n" . _('Goods of origin') . ' ' . $ALI[0];
}
if (strlen($ALI[1])>1){
$EmailText .= "\n" . _('Duty regime code') . ' ' . $ALI[1];
}
switch ($ALI[2]){
case '136':
$EmailText .= "\n" . _('Buying group conditions apply');
break;
case '137':
$EmailText .= "\n\n" . _('Cancel the order if complete delivery is not possible on the requested date or time');
break;
case '73E':
$EmailText .= "\n" . _('Delivery subject to final authorisation');
break;
case '142':
$EmailText .= "\n" . _('Invoiced but not replenished');
break;
case '143':
$EmailText .= "\n" . _('Replenished but not invoiced');
break;
case '144':
$EmailText .= "\n" . _('Deliver Full order');
break;
}
break;
case 'FTX':
$FTX = explode('+',substr($LineText,4));
/*agreed coded text is not catered for ... yet
only free form text */
if (strlen($FTX[3])>5){
$FTX_C108=explode(':',$FTX[3]);
$Order->Comments .= $FTX_C108[0] . " " . $FTX_C108[1] . ' ' . $FTX_C108[2] . ' ' . $FTX_C108[3] . ' ' . $FTX_C108[4];
$EmailText .= "\n" . $FTX_C108[0] . ' ' . $FTX_C108[1] . ' ' . $FTX_C108[2] . ' ' . $FTX_C108[3] . ' ' . $FTX_C108[4] . ' ';
}
break;
case 'RFF':
$RFF = explode(':',substr($LineText,4));
switch ($RFF[0]){
case 'AE':
$MsgText = "\n" . _('Authorisation for expense no') . ' ' . $RFF[1];
break;
case 'BO':
$MsgText = "\n" . _('Blanket Order') . ' # ' . $RFF[1];
break;
case 'CR':
$Order->CustRef = $RFF[1];
$MsgText = "\n" . _('Customer Ref') . ' # ' . $RFF[1];
break;
case 'CT':
$MsgText = "\n" . _('Contract'). ' # ' . $RFF[1];
break;
case 'IP':
$MsgText = "\n" . _('Import Licence') . ' # ' . $RFF[1];
break;
case 'ON':
$Order->CustRef = $RFF[1];
$MsgText = "\n" . _('Buyer order') . ' # ' . $RFF[1];
break;
case 'PD':
$MsgText = "\n" . _('Promo deal') . ' # ' . $RFF[1];
break;
case 'PL':
$MsgText = "\n" . _('Price List') . ' # ' . $RFF[1];
break;
case 'UC':
$MsgText = "\n" . _('Ultimate customer ref') . ' ' . $RFF[1];
break;
case 'VN':
$MsgText = "\n" . _('Supplier Order') . ' # ' . $RFF[1];
break;
case 'AKO':
$MsgText = "\n" . _('Action auth') . ' # ' . $RFF[1];
break;
case 'ANJ':
$MsgText = "\n" . _('Authorisation') . ' # ' . $RFF[1];
break;
}
if ($SegGroup == 1){
$Order->Comments .= $MsgText;
}
$EmailText .= $MsgText;
break;
case 'NAD':
$NAD = explode('+',substr($LineText,4));
$NAD_C082 = explode(':', $NAD[1]);
$NAD_C058 = explode(':', $NAD[2]); /*Not used according to MIG */
$NAD_C080 = explode(':', $NAD[3]);
$NAD_C059 = explode(':', $NAD[4]);
switch ($NAD[0]){
case 'IV': /* This Name and address detail is that of the party to be invoiced */
/*Look up the EAN Code given $NAD[1] for the buyer */
if ($NAD_C082[2] ==9){
/*if NAD_C082[2] must = 9 then NAD_C082[0] is the EAN Intnat Article Numbering Assocn code of the customer - look up the customer by EDIReference*/
$InvoiceeResult = DB_query("SELECT debtorno FROM debtorsmaster WHERE edireference='" . $NAD_C082[0] . "' AND ediorders=1",$db);
if (DB_num_rows($InvoiceeResult)!=1){
$EmailText .= "\n" . _('The Buyer reference was specified as an EAN International Article Numbering Association code') . '. ' . _('Unfortunately the field EDIReference of any of the customers currently set up to receive EDI orders does not match with the code') . ' ' . $NAD_C082[0] . ' ' . _('used in this message') . '. ' . _('So that is the end of the road for this message');
$TryNextFile = True; /* Look for other EDI msgs */
$CreateOrder = False; /*Dont create order in system */
} else {
$CustRow = DB_fetch_array($InvoiceeResult);
$Order->DebtorNo = $CustRow['debtorno'];
}
break;
}
if (strlen($NAD_C080[0])>0){
$Order->CustomerName = $NAD_C080[0];
}
break;
case 'SU':
/*Supplier party details. This should be our EAN IANA number if not the message is not for us!! */
if ($NAD_C082[0]!= $_SESSION['EDIReference']){
/* $_SESSION['EDIReference'] is set in config.php as our EDIReference it should be our EAN International Article Numbering Association code */
$EmailText .= "\n" . _('The supplier reference was specified as an EAN International Article Numbering Association code') . '. ' . _('Unfortunately the company EDIReference') . ' - ' . $_SESSION['EDIReference'] . ' ' . _('does not match with the code') . ' ' . $NAD_C082[0] . ' ' . _('used in this message') . '. ' . _('This implies that the EDI message is for some other supplier') . '. ' . _('No further processing will be done');
$TryNextFile = True; /* Look for other EDI msgs */
$CreateOrder = False; /*Dont create order in system */ }
break;
case 'DP':
/*Delivery Party - get the address and name etc */
/*Snag here - how do I figure out what branch to charge */
if (strlen($NAD_C080[0])>0){
$Order->DeliverTo = $NAD_C080[0];
}
if (strlen($NAD_C059[0])>0){
$Order->DelAdd1 = $NAD_C059[0];
$Order->DelAdd2 = $NAD_C059[1];
$Order->DelAdd3 = $NAD_C059[2];
$Order->DelAdd4 = $NAD_C059[4];
$Order->DelAdd5 = $NAD_C059[5];
$Order->DelAdd6 = $NAD_C059[6];
}
break;
case 'SN':
/*Store Number - get the branch details from the store number - snag here too cos need to ensure got the Customer detail first before try looking up its branches */
$BranchResult = DB_query("SELECT branchcode,
brname,
braddress1,
braddress2,
braddress3,
braddress4,
braddress5,
braddress6,
contactname,
defaultlocation,
phoneno,
email
FROM custbranch INNER JOIN debtorsmaster ON custbranch.debtorno = custbranch.debtorno WHERE custbranchcode='" . $NAD_C082[0] . "' AND custbranch.debtorno='" . $Order->DebtorNo . "' AND debtorsmaster.ediorders=1",$db);
if (DB_num_rows($BranchResult)!=1){
$EmailText .= "\n" . _('The Store number was specified as') . ' ' . $NAD_C082[0] . ' ' . _('Unfortunately there are either no branches of customer code') . ' ' . $Order->DebtorNo . ' ' ._('or several that match this store number') . '. ' . _('This order could not be processed further');
$TryNextFile = True; /* Look for other EDI msgs */
$CreateOrder = False; /*Dont create order in system */ } else {
$BranchRow = DB_fetch_array($BranchResult);
$Order->BranchCode = $BranchRow['branchcode'];
$Order->DeliverTo = $BranchRow['brname'];
$Order->DelAdd1 = $BranchRow['braddress1'];
$Order->DelAdd2 = $BranchRow['braddress2'];
$Order->DelAdd3 = $BranchRow['braddress3'];
$Order->DelAdd4 = $BranchRow['braddress4'];
$Order->DelAdd5 = $BranchRow['braddress5'];
$Order->DelAdd6 = $BranchRow['braddress6'];
$Order->PhoneNo = $BranchRow['phoneno'];
$Order->Email = $BranchRow['email'];
$Order->Location = $BranchRow['defaultlocation'];
}
break;
case 'BY':
/* The buyer details - don't think we care about this */
break;
case 'CO':
/* The coporate office details - don't think we care about this either*/
break;
case 'SR':
/* Our (the suppliers) representative - don't think we care about this either*/
break;
case 'WH':
/* The warehouse keeper details - don't think we care about this either*/
break;
}
break; /*end of NAD segment */
/* UP TO HERE NEED TESTER */
} /*end case Seg Tag*/
} /*end while get next line of message */
/*Thats the end of the message or had to abort */
if (strlen($EmailText)>10){
/*Now send the email off to the appropriate person */
$mail = new htmlMimeMail();
$mail->setText($EmailText);
$mail->setFrom($_SESSION['CompanyRecord']['coyname'] . "<" . $_SESSION['CompanyRecord']['email'] . ">");
if ($TryNextFile==True){ /*had to abort this message */
/* send the email to the sysadmin - get email address from users*/
$Result = DB_query("SELECT realname, email FROM www_users WHERE fullaccess=7 AND email <>''",$db);
if (DB_num_rows($Result)==0){ /*There are no sysadmins with email address specified */
$Recipients = array("'tim' <tim@localhost>");
} else { /*Make an array of the sysadmin recipients */
$Recipients = array();
$i=0;
while ($SysAdminsRow=DB_fetch_array($Result)){
$Recipients[$i] = "'" . $SysAdminsRow['realname'] . "' <" . $SysAdminsRow['email'] . ">";
$i++;
}
}
$TryNextFile=False; /*reset the abort to false before hit next file*/
$mail->setSubject(_('EDI Order Message Error'));
} else {
$mail->setSubject(_('EDI Order Message') . ' ' . $Order->CustRef);
$EDICustServPerson ="'tim' <tim@localhost>";
$Recipients = array($EDICustServPerson);
}
$result = $mail->send($Recipients);
echo $EmailText;
} /* nothing in the email text to send - the message file is a complete dud - maybe directory */
/*Now create the order from the $Order object and commit to the DB*/
} /*end of the loop around all the incoming order files in the incoming orders directory */
include ('includes/footer.inc');
function StripTrailingComma ($StringToStrip){
if (strrpos($StringToStrip,"'")){
Return substr($StringToStrip,0,strrpos($StringToStrip,"'"));
} else {
Return $StringToStrip;
}
}
?>