forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SalesGLPostings.php
420 lines (336 loc) · 12.2 KB
/
SalesGLPostings.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
<?php
include('includes/session.php');
$Title = _('Sales GL Postings Set Up');
$ViewTopic= 'CreatingNewSystem';
$BookMark = 'SalesGLPostings';
include('includes/header.php');
if (isset($_GET['SelectedSalesPostingID'])){
$SelectedSalesPostingID =$_GET['SelectedSalesPostingID'];
} elseif (isset($_POST['SelectedSalesPostingID'])){
$SelectedSalesPostingID =$_POST['SelectedSalesPostingID'];
}
$InputError=false;
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/customer.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title . '</p>';
if (isset($_POST['submit'])) {
/* actions to take once the user has clicked the submit button
ie the page has called itself with some user input */
if (isset($SelectedSalesPostingID)) {
/*SelectedSalesPostingID 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*/
$sql = "UPDATE salesglpostings SET salesglcode = '" . $_POST['SalesGLCode'] . "',
discountglcode = '" . $_POST['DiscountGLCode'] . "',
area = '" . $_POST['Area'] . "',
stkcat = '" . $_POST['StkCat'] . "',
salestype = '" . $_POST['SalesType'] . "'
WHERE salesglpostings.id = '".$SelectedSalesPostingID."'";
$msg = _('The sales GL posting record has been updated');
} else {
/*Selected Sales GL Posting is null cos no item selected on first time round so must be adding a record must be submitting new entries in the new SalesGLPosting form */
/* Verify if item doesn't exists to insert it, otherwise just refreshes the page. */
$sql = "SELECT count(*) FROM salesglpostings
WHERE area='" . $_POST['Area'] . "'
AND stkcat='" . $_POST['StkCat'] . "'
AND salestype='" . $_POST['SalesType'] . "'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
if ($myrow[0] == 0) {
$sql = "INSERT INTO salesglpostings (
salesglcode,
discountglcode,
area,
stkcat,
salestype)
VALUES (
'" . $_POST['SalesGLCode'] . "',
'" . $_POST['DiscountGLCode'] . "',
'" . $_POST['Area'] . "',
'" . $_POST['StkCat'] . "',
'" . $_POST['SalesType'] . "'
)";
$msg = _('The new sales GL posting record has been inserted');
} else {
prnMsg (_('A sales gl posting account already exists for the selected area, stock category, salestype'),'warn');
$InputError = true;
}
}
//run the SQL from either of the above possibilites
$result = DB_query($sql);
if ($InputError==false){
prnMsg($msg,'success');
}
unset ($SelectedSalesPostingID);
unset($_POST['SalesGLCode']);
unset($_POST['DiscountGLCode']);
unset($_POST['Area']);
unset($_POST['StkCat']);
unset($_POST['SalesType']);
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
$sql="DELETE FROM salesglpostings WHERE id='".$SelectedSalesPostingID."'";
$result = DB_query($sql);
prnMsg( _('Sales posting record has been deleted'),'success');
}
if (!isset($SelectedSalesPostingID)) {
$ShowLivePostingRecords = true;
$SQL = "SELECT salesglpostings.id,
salesglpostings.area,
salesglpostings.stkcat,
salesglpostings.salestype,
salesglpostings.salesglcode,
salesglpostings.discountglcode
FROM salesglpostings LEFT JOIN chartmaster
ON salesglpostings.salesglcode = chartmaster.accountcode
WHERE chartmaster.accountcode IS NULL
ORDER BY salesglpostings.area,
salesglpostings.stkcat,
salesglpostings.salestype";
$result = DB_query($SQL);
if (DB_num_rows($result)>0){
$ShowLivePostingRecords = false;
prnMsg (_('The following posting records that do not have valid general ledger code specified - these records must be amended.'),'error');
echo '<table class="selection">';
echo '<tr><th>' . _('Area') . '</th>
<th>' . _('Stock Category') . '</th>
<th>' . _('Sales Type') . '</th>
<th>' . _('Sales Account') . '</th>
<th>' . _('Discount Account') . '</th>
</tr>';
while ($myrow = DB_fetch_row($result)) {
printf('<tr class="striped_row">
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td><a href="%sSelectedSalesPostingID=%s">' . _('Edit') . '</a></td>
<td><a href="%sSelectedSalesPostingID=%s&delete=yes" onclick="return confirm(\'' . _('Are you sure you wish to delete this sales GL posting record?') . '\');">' . _('Delete') . '</a></td></tr>',
$myrow[1],
$myrow[2],
$myrow[3],
htmlspecialchars($myrow[4],ENT_QUOTES,'UTF-8'),
$myrow[5],
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?',
$myrow[0],
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8'). '?',
$myrow[0]);
}
}
$SQL = "SELECT salesglpostings.id,
salesglpostings.area,
salesglpostings.stkcat,
salesglpostings.salestype
FROM salesglpostings";
$result = DB_query($SQL);
if (DB_num_rows($result)==0){
/* there is no default set up so need to check that account 1 is not already used */
/* First Check if we have at least a group_ caled Sales */
$SQL = "SELECT groupname FROM accountgroups WHERE groupname = 'Sales'";
$result = DB_query($SQL);
if (DB_num_rows($result)==0){
/* The required group does not seem to exist so we create it */
$SQL = "INSERT INTO accountgroups (
groupname,
sectioninaccounts,
pandl,
sequenceintb,
parentgroupname
) VALUES (
'Sales',
1,
1,
10,
' ')";
$result = DB_query($SQL);
}
$SQL = "SELECT accountcode FROM chartmaster WHERE accountcode ='1'";
$result = DB_query($SQL);
if (DB_num_rows($result)==0){
/* account number 1 is not used, so insert a new account */
$SQL = "INSERT INTO chartmaster (
accountcode,
accountname,
group_)
VALUES (
1,
'Default Sales/Discounts',
'Sales'
)";
$result = DB_query($SQL);
}
$SQL = "INSERT INTO salesglpostings (
area,
stkcat,
salestype,
salesglcode,
discountglcode)
VALUES ('AN',
'ANY',
'AN',
1,
1)";
$result = DB_query($SQL);
}
if ($ShowLivePostingRecords){
$SQL = "SELECT salesglpostings.id,
salesglpostings.area,
salesglpostings.stkcat,
salesglpostings.salestype,
chart1.accountname,
chart2.accountname
FROM salesglpostings,
chartmaster as chart1,
chartmaster as chart2
WHERE salesglpostings.salesglcode = chart1.accountcode
AND salesglpostings.discountglcode = chart2.accountcode
ORDER BY salesglpostings.area,
salesglpostings.stkcat,
salesglpostings.salestype";
$result = DB_query($SQL);
echo '<table class="selection">
<tr>
<th>' . _('Area') . '</th>
<th>' . _('Stock Category') . '</th>
<th>' . _('Sales Type') . '</th>
<th>' . _('Sales Account') . '</th>
<th>' . _('Discount Account') . '</th>
</tr>';
while ($myrow = DB_fetch_row($result)) {
printf('<tr class="striped_row">
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td><a href="%sSelectedSalesPostingID=%s">' . _('Edit') . '</a></td>
<td><a href="%sSelectedSalesPostingID=%s&delete=yes" onclick="return confirm(\'' . _('Are you sure you wish to delete this sales GL posting record?') . '\');">' . _('Delete') . '</a></td></tr>',
$myrow[1],
$myrow[2],
$myrow[3],
htmlspecialchars($myrow[4],ENT_QUOTES,'UTF-8'),
$myrow[5],
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>';
}
}
//end of ifs and buts!
if (isset($SelectedSalesPostingID)) {
echo '<div class="centre"><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">' . _('Show All Sales Posting Codes Defined') . '</a></div>';
}
if (!isset($_GET['delete'])) {
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($SelectedSalesPostingID)) {
//editing an existing sales posting record
$sql = "SELECT salesglpostings.stkcat,
salesglpostings.salesglcode,
salesglpostings.discountglcode,
salesglpostings.area,
salesglpostings.salestype
FROM salesglpostings
WHERE salesglpostings.id='".$SelectedSalesPostingID."'";
$result = DB_query($sql);
$myrow = DB_fetch_array($result);
$_POST['SalesGLCode']= $myrow['salesglcode'];
$_POST['DiscountGLCode']= $myrow['discountglcode'];
$_POST['Area']=$myrow['area'];
$_POST['StkCat']=$myrow['stkcat'];
$_POST['SalesType']=$myrow['salestype'];
DB_free_result($result);
echo '<input type="hidden" name="SelectedSalesPostingID" value="' . $SelectedSalesPostingID . '" />';
}
/*end of if $SelectedSalesPostingID only do the else when a new record is being entered */
$SQL = "SELECT areacode,
areadescription FROM areas";
$result = DB_query($SQL);
echo '<br /><table class="selection">
<tr>
<td>' . _('Area') . ':</td>
<td><select name="Area">
<option value="AN">' . _('Any Other') . '</option>';
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['Area']) and $myrow['areacode']==$_POST['Area']) {
echo '<option selected="selected" value="';
} else {
echo '<option value="';
}
echo $myrow['areacode'] . '">' . $myrow['areadescription'] . '</option>';
} //end while loop
DB_free_result($result);
$SQL = "SELECT categoryid, categorydescription FROM stockcategory";
$result = DB_query($SQL);
echo '</select></td></tr>';
echo '<tr><td>' . _('Stock Category') . ':</td>
<td><select name="StkCat">
<option value="ANY">' . _('Any Other') . '</option>';
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['StkCat']) and $myrow['categoryid']==$_POST['StkCat']) {
echo '<option selected="selected" value="';
} else {
echo '<option value="';
}
echo $myrow['categoryid'] . '">' . $myrow['categorydescription'] . '</option>';
} //end while loop
echo '</select></td></tr>';
DB_free_result($result);
$SQL = "SELECT typeabbrev,
sales_type
FROM salestypes";
$result = DB_query($SQL);
echo '<tr><td>' . _('Sales Type') . ' / ' . _('Price List') . ':</td>
<td><select name="SalesType">';
echo '<option value="AN">' . _('Any Other') . '</option>';
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['SalesType']) and $myrow['typeabbrev']==$_POST['SalesType']) {
echo '<option selected="selected" value="';
} else {
echo '<option value="';
}
echo $myrow['typeabbrev'] . '">' . $myrow['sales_type'] . '</option>';
} //end while loop
echo '</select></td></tr>';
echo '<tr><td>' . _('Post Sales to GL Account') . ':</td>
<td><select name="SalesGLCode">';
DB_free_result($result);
$SQL = "SELECT chartmaster.accountcode,
chartmaster.accountname
FROM chartmaster,
accountgroups
WHERE chartmaster.group_=accountgroups.groupname
AND accountgroups.pandl='1'
ORDER BY accountgroups.sequenceintb,
chartmaster.accountcode";
$result = DB_query($SQL);
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['SalesGLCode']) and $myrow['accountcode']==$_POST['SalesGLCode']) {
echo '<option selected="selected" value="';
} else {
echo '<option value="';
}
echo $myrow['accountcode'] . '">' . $myrow['accountcode'] . ' - ' . htmlspecialchars($myrow['accountname'], ENT_QUOTES, 'UTF-8', false) . '</option>';
} //end while loop
DB_data_seek($result,0);
echo '</select></td></tr>
<tr><td>' . _('Post Discount to GL Account') . ':</td>
<td><select name="DiscountGLCode">';
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['DiscountGLCode']) and $myrow['accountcode']==$_POST['DiscountGLCode']) {
echo '<option selected="selected" value="';
} else {
echo '<option value="';
}
echo $myrow['accountcode'] . '">' . $myrow['accountcode'] . ' - ' . htmlspecialchars($myrow['accountname'], ENT_QUOTES, 'UTF-8', false) . '</option>';
} //end while loop
echo'</select></td>
</tr>
</table>';
echo '<br /><div class="centre"><input type="submit" name="submit" value="' . _('Enter Information') . '" /></div>';
echo '</div>
</form>';
} //end if record deleted no point displaying form to add record
include('includes/footer.php');
?>