-
Notifications
You must be signed in to change notification settings - Fork 3
/
EDIMessageFormat.php
254 lines (203 loc) · 8.05 KB
/
EDIMessageFormat.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
<?php
/* $Id$*/
include('includes/session.inc');
$title = _('EDI Message Format');
include('includes/header.inc');
if (isset($_GET['PartnerCode'])){
$PartnerCode = $_GET['PartnerCode'];
} elseif (isset($_POST['PartnerCode'])){
$PartnerCode = $_POST['PartnerCode'];
}
if (isset($_GET['MessageType'])){
$MessageType = $_GET['MessageType'];
} elseif (isset($_POST['MessageType'])){
$MessageType = $_POST['MessageType'];
}
if (isset($_GET['SelectedMessageLine'])){
$SelectedMessageLine = $_GET['SelectedMessageLine'];
}elseif (isset($_POST['SelectedMessageLine'])){
$SelectedMessageLine = $_POST['SelectedMessageLine'];
}
if (isset($_POST['NewEDIInvMsg'])){
$sql = "INSERT INTO edimessageformat (partnercode,
messagetype,
sequenceno,
section,
linetext)
SELECT '".$PartnerCode."',
'INVOIC',
sequenceno,
section,
linetext
FROM edimessageformat
WHERE partnercode='DEFAULT'
AND messagetype='INVOIC'";
$ErrMsg = _('There was an error inserting the default template invoice message records for') . ' ' . $PartnerCode . ' ' . _('because');
$result = DB_query($sql,$db,$ErrMsg);
}
$InputError = 0;
if ($InputError !=1 and isset($_POST['update'])) {
/*SelectedMessageLine could also exist if submit had not been clicked this code would not run in this case cos submit is false of course see the delete code below*/
if (!isset($SelectedMessageLine)) {
$SelectedMessageLine='';
}
$sql = "UPDATE edimessageformat
SET partnercode='" . $PartnerCode . "',
messagetype='" . $MessageType . "',
section='" . $_POST['Section'] . "',
sequenceno='" . $_POST['SequenceNo'] . "',
linetext='" . $_POST['LineText'] . "'
WHERE id = '" . $SelectedMessageLine . "'";
$result = DB_query($sql,$db);
$msg = _('Message line updated');
unset ($SelectedMessageLine);
} elseif ($InputError !=1 and isset($_POST['submit'])) {
/*Selected group is null cos no item selected on first time round so must be adding a record must be submitting new entries in the new message line form */
$sql = "INSERT INTO edimessageformat (
partnercode,
messagetype,
section,
sequenceno,
linetext)
VALUES (
'" . $PartnerCode . "',
'" . $MessageType . "',
'" . $_POST['Section'] . "',
'" . $_POST['SequenceNo'] . "',
'" . $_POST['LineText'] . "'
)";
$msg = _('Message line added');
//run the SQL from either of the above possibilites
$result = DB_query($sql,$db);
unset ($SelectedMessageLine);
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
$sql="DELETE FROM edimessageformat WHERE id='" . $_GET['delete']."'";
$result = DB_query($sql,$db);
$msg=_('The selected message line has been deleted');
}
if (isset($msg)) {
prnMsg($msg,'success');
}
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<br /><table border=0 width=100%>
<p class="page_title_text">
<img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . $title.'</p>';
if (!isset($SelectedMessageLine)) {
/* A message line could be posted when one has been edited and is being updated or GOT when selected for modification SelectedMessageLine will exist because it was sent with the page in a GET .
If its the first time the page has been displayed with no parameters
then none of the above are true and the list of message lines will be displayed with
links to delete or edit each. These will call the same page again and allow update/input
or deletion of the records*/
$sql = "SELECT id,
section,
sequenceno,
linetext
FROM edimessageformat
WHERE partnercode='" . $PartnerCode . "'
AND messagetype='" . $MessageType . "'
ORDER BY sequenceno";
$result = DB_query($sql,$db);
echo '<table class="selection">';
echo '<tr><th colspan="5"><font size="3">' . _('Definition of') . ' ' . $MessageType . ' ' . _('for') . ' ' . $PartnerCode.'</font></th></tr>';
$TableHeader = '<tr>
<th>' . _('Section') . '</th>
<th>' . _('Sequence') . '</th>
<th>' . _('Format String') . '</th>
</tr>';
echo $TableHeader;
$k=0; //row colour counter
while ($myrow = DB_fetch_row($result)) {
if ($k==1){
echo '<tr class="EvenTableRows">';
$k=0;
} else {
echo '<tr class="OddTableRows">';
$k++;
}
printf('<td>%s</td>
<td class="number">%s</td>
<td>%s</td>
<td><a href="%sSelectedMessageLine=%s">' . _('Edit') . '</a></td>
<td><a href="%sdelete=%s">' . _('Delete') . '</a></td>
</tr>',
$myrow[1],
$myrow[2],
$myrow[3],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?',
$myrow[0],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?',
$myrow[0]);
} //END WHILE LIST LOOP
echo '</table><br />';
if (DB_num_rows($result)==0){
echo '<div class="centre">
<button tabindex="1" type="submit" name="NewEDIInvMsg">' . _('Create New EDI Invoice Message From Default Template') . '</button>
</div><br />';
}
} //end of ifs SelectedLine is not set
if (isset($SelectedMessageLine)) {
//editing an existing message line
$sql = "SELECT messagetype,
partnercode,
section,
sequenceno,
linetext
FROM edimessageformat
WHERE id='" . $SelectedMessageLine . "'";
$result = DB_query($sql, $db);
$myrow = DB_fetch_array($result);
$_POST['Section'] = $myrow['section'];
$_POST['SequenceNo'] = $myrow['sequenceno'];
$_POST['LineText'] = $myrow['linetext'];
echo '<div class="centre"><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?MessageType=INVOIC&PartnerCode=' . $myrow['partnercode'] . '">' . _('Review Message Lines') . '</a></div>';
echo '<input type="hidden" name="SelectedMessageLine" value="' . $SelectedMessageLine . '" />';
echo '<input type="hidden" name="MessageType" value="' . $myrow['messagetype'] . '" />';
echo '<input type="hidden" name="PartnerCode" value="' . $myrow['partnercode'] . '" />';
} else { //end of if $SelectedMessageLine only do the else when a new record is being entered
echo '<input type="hidden" name="MessageType" value="' . $MessageType . '" />';
echo '<input type="hidden" name="PartnerCode" value="' . $PartnerCode . '" />';
}
echo '<table class="selection">';
if ($myrow['messagetype']!='') {
echo '<tr><th colspan="2"><font size="3">' . _('Definition of') . ' ' . $myrow['messagetype'] . ' ' . _('for') . ' ' . $myrow['partnercode'].'</font></th></tr>';
}
echo '<tr><td>' . _('Section') . ':</td>';
echo '<td>';
echo '<select tabindex="2" name="Section">';
if ($_POST['Section']=='Heading') {
echo '<option selected="True" value="Heading">' . _('Heading') . '</option>';
} else {
echo '<option value="Heading">' . _('Heading') . '</option>';
}
if (isset($_POST['Section']) and $_POST['Section']=='Detail') {
echo '<option selected="True" value="Detail">' . _('Detail') . '</option>';
} else {
echo '<option value="Detail">' . _('Detail') . '</option>';
}
if (isset($_POST['Section']) and $_POST['Section']=='Summary') {
echo '<option selected="True" value="Summary">' . _('Summary') . '</option>';
} else {
echo '<option value="Summary">' . _('Summary') . '</option>';
}
echo '</select>';
if (!isset($_POST['SequenceNo'])) {$_POST['SequenceNo']='';}
if (!isset($_POST['LineText'])) {$_POST['LineText']='';}
echo '</td></tr>';
echo '<tr><td>Sequence Number:</td>';
echo '<td><input tabindex="3" type="text" name="SequenceNo" size="3" maxlength="3" value="'.$_POST['SequenceNo'].'" />';
echo '</td></tr>';
echo '<tr><td>' . _('Line Text') . ':' .'</td>';
echo '<td>';
echo '<input tabindex="4" type="text" name="LineText" size="50" maxlength="50" value="'.$_POST['LineText'] .'" />';
echo '</td></tr>';
echo '</table><br />';
if (isset($_GET['SelectedMessageLine'])) {
echo '<div class="centre"><button tabindex="5" type="submit" name="update">'. _('Update Information'). '</button></div><br />';
} else {
echo '<div class="centre"><button tabindex="5" type="submit" name="submit">'. _('Enter Information'). '</button></div><br />';
}
echo '</form>';
include('includes/footer.inc');
?>