forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrices.php
442 lines (379 loc) · 17.6 KB
/
Prices.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
<?php
include('includes/session.php');
if (isset($_POST['StartDate'])){$_POST['StartDate'] = ConvertSQLDate($_POST['StartDate']);};
if (isset($_POST['EndDate'])){$_POST['EndDate'] = ConvertSQLDate($_POST['EndDate']);};
$Title = _('Item Prices');
$ViewTopic = 'Prices';
/*$BookMark = '';// Anchor's id in the manual's html document.*/
include('includes/header.php');
/* Check at least one sales type exists */
$SQL = "SELECT typeabbrev, sales_type FROM salestypes";
$TypeResult = DB_query($SQL);
if (DB_num_rows($TypeResult) == 0) {
prnMsg( _('There are no sales types setup. Click') . '<a href="' . $RootPath . '/SelectProduct.php" target="_blank">' . ' ' . _('here') . ' ' . '</a>' . _('to create them'), 'warn');
include('includes/footer.php');
exit;
}
echo '<p class="page_title_text"><img alt="" src="' . $RootPath . '/css/' . $Theme .
'/images/money_add.png" title="' .
_('Search') . '" />' . ' ' .
$Title . '</p>';
echo '<a href="' . $RootPath . '/SelectProduct.php">' . _('Back to Items') . '</a><br />';
include('includes/SQL_CommonFunctions.inc');
//initialise no input errors assumed initially before we test
$InputError = 0;
if (isset($_GET['Item'])) {
$Item = trim(mb_strtoupper($_GET['Item']));
} elseif (isset($_POST['Item'])) {
$Item = trim(mb_strtoupper($_POST['Item']));
}
if (!isset($_POST['TypeAbbrev']) OR $_POST['TypeAbbrev']=='') {
$_POST['TypeAbbrev'] = $_SESSION['DefaultPriceList'];
}
if (!isset($_POST['CurrAbrev'])) {
$_POST['CurrAbrev'] = $_SESSION['CompanyRecord']['currencydefault'];
}
$Result = DB_query("SELECT stockmaster.description,
stockmaster.mbflag
FROM stockmaster
WHERE stockmaster.stockid='".$Item."'");
$MyRow = DB_fetch_row($Result);
if (DB_num_rows($Result)==0) {
prnMsg( _('The part code entered does not exist in the database') . '. ' . _('Only valid parts can have prices entered against them'),'error');
$InputError=1;
}
if (!isset($Item)) {
echo '<p>';
prnMsg (_('An item must first be selected before this page is called') . '. ' . _('The product selection page should call this page with a valid product code'),'error');
include('includes/footer.php');
exit;
}
$PartDescription = $MyRow[0];
if ($MyRow[1]=='K') {
prnMsg(_('The part selected is a kit set item') .', ' . _('these items explode into their components when selected on an order') . ', ' . _('prices must be set up for the components and no price can be set for the whole kit'),'error');
exit;
}
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 */
//first off validate inputs sensible
// This gives some date in 1999?? $ZeroDate = Date($_SESSION['DefaultDateFormat'],Mktime(0,0,0,0,0,0));
if (!is_numeric(filter_number_format($_POST['Price'])) OR $_POST['Price']=='') {
$InputError = 1;
prnMsg( _('The price entered must be numeric'),'error');
}
if (! Is_Date($_POST['StartDate'])){
$InputError =1;
prnMsg (_('The date this price is to take effect from must be entered in the format') . ' ' . $_SESSION['DefaultDateFormat'],'error');
}
if ($_POST['EndDate']!='') {
if (FormatDateForSQL($_POST['EndDate'])!='9999-12-31'){
if (! Is_Date($_POST['EndDate']) AND $_POST['EndDate']!=''){
$InputError =1;
prnMsg (_('The date this price is be in effect to must be entered in the format') . ' ' . $_SESSION['DefaultDateFormat'],'error');
}
if (Date1GreaterThanDate2($_POST['StartDate'],$_POST['EndDate']) AND $_POST['EndDate']!='' AND FormatDateForSQL($_POST['EndDate'])!='9999-12-31'){
$InputError =1;
prnMsg (_('The end date is expected to be after the start date, enter an end date after the start date for this price'),'error');
}
if (Date1GreaterThanDate2(Date($_SESSION['DefaultDateFormat']),$_POST['EndDate']) AND $_POST['EndDate']!='' AND FormatDateForSQL($_POST['EndDate'])!='9999-12-31'){
$InputError =1;
prnMsg(_('The end date is expected to be after today. There is no point entering a new price where the effective date is before today!'),'error');
}
}
}
if (Is_Date($_POST['EndDate'])){
$SQLEndDate = FormatDateForSQL($_POST['EndDate']);
} else {
$SQLEndDate = '9999-12-31';
}
$SQL = "SELECT COUNT(typeabbrev)
FROM prices
WHERE prices.stockid='".$Item."'
AND startdate='" .FormatDateForSQL($_POST['StartDate']) . "'
AND enddate ='" . $SQLEndDate . "'
AND prices.typeabbrev='" . $_POST['TypeAbbrev'] . "'
AND prices.currabrev='" . $_POST['CurrAbrev'] . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_row($Result);
if ($MyRow[0]!=0 AND !isset($_POST['OldTypeAbbrev']) AND !isset($_POST['OldCurrAbrev'])) {
prnMsg( _('This price has already been entered. To change it you should edit it') , 'warn');
$InputError =1;
}
if (isset($_POST['OldTypeAbbrev']) AND isset($_POST['OldCurrAbrev']) AND mb_strlen($Item)>1 AND $InputError !=1) {
/* Need to see if there is also a price entered that has an end date after the start date of this price and if so we will need to update it so there is no ambiguity as to which price will be used*/
//editing an existing price
$SQL = "UPDATE prices SET
typeabbrev='" . $_POST['TypeAbbrev'] . "',
currabrev='" . $_POST['CurrAbrev'] . "',
price='" . filter_number_format($_POST['Price']) . "',
startdate='" . FormatDateForSQL($_POST['StartDate']) . "',
enddate='" . $SQLEndDate . "'
WHERE prices.stockid='".$Item."'
AND startdate='" .$_POST['OldStartDate'] . "'
AND enddate ='" . $_POST['OldEndDate'] . "'
AND prices.typeabbrev='" . $_POST['OldTypeAbbrev'] . "'
AND prices.currabrev='" . $_POST['OldCurrAbrev'] . "'
AND prices.debtorno=''";
$ErrMsg = _('Could not be update the existing prices');
$Result = DB_query($SQL,$ErrMsg);
ReSequenceEffectiveDates ($Item, $_POST['TypeAbbrev'], $_POST['CurrAbrev']) ;
prnMsg(_('The price has been updated'),'success');
} elseif ($InputError !=1) {
/*Selected price is null cos no item selected on first time round so must be adding a record must be submitting new entries in the new price form */
$SQL = "INSERT INTO prices (stockid,
typeabbrev,
currabrev,
startdate,
enddate,
price)
VALUES ('" . $Item . "',
'" . $_POST['TypeAbbrev'] . "',
'" . $_POST['CurrAbrev'] . "',
'" . FormatDateForSQL($_POST['StartDate']) . "',
'" . $SQLEndDate. "',
'" . filter_number_format($_POST['Price']) . "')";
$ErrMsg = _('The new price could not be added');
$Result = DB_query($SQL,$ErrMsg);
ReSequenceEffectiveDates ($Item, $_POST['TypeAbbrev'], $_POST['CurrAbrev']) ;
prnMsg(_('The new price has been inserted'),'success');
}
unset($_POST['Price']);
unset($_POST['StartDate']);
unset($_POST['EndDate']);
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
$SQL="DELETE FROM prices
WHERE prices.stockid = '". $Item ."'
AND prices.typeabbrev='". $_GET['TypeAbbrev'] ."'
AND prices.currabrev ='". $_GET['CurrAbrev'] ."'
AND prices.startdate = '" .$_GET['StartDate'] . "'
AND prices.enddate = '" . $_GET['EndDate'] . "'
AND prices.debtorno=''";
$ErrMsg = _('Could not delete this price');
$Result = DB_query($SQL,$ErrMsg);
prnMsg( _('The selected price has been deleted'),'success');
}
//Always do this stuff
$SQL = "SELECT
currencies.currency,
salestypes.sales_type,
prices.price,
prices.stockid,
prices.typeabbrev,
prices.currabrev,
prices.startdate,
prices.enddate,
currencies.decimalplaces AS currdecimalplaces
FROM prices
INNER JOIN salestypes
ON prices.typeabbrev = salestypes.typeabbrev
INNER JOIN currencies
ON prices.currabrev=currencies.currabrev
WHERE prices.stockid='".$Item."'
AND prices.debtorno=''
ORDER BY prices.currabrev,
prices.typeabbrev,
prices.startdate";
$Result = DB_query($SQL);
require_once('includes/CurrenciesArray.php');
if (DB_num_rows($Result) > 0) {
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">
<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />
<table class="selection">
<thead>
<tr>
<th colspan="7">' .
_('Pricing for part') . ':
<input type="text" required="required" autofocus="autofocus" name="Item" size="22" value="' . $Item . '" maxlength="20" />
<input type="submit" name="NewPart" value="' . _('Review Prices') . '" /></th>
</tr>
<tr><th class="SortedColumn">' . _('Currency') . '</th>
<th class="SortedColumn">' . _('Sales Type') . '</th>
<th class="SortedColumn">' . _('Price') . '</th>
<th class="SortedColumn">' . _('Start Date') . ' </th>
<th class="SortedColumn">' . _('End Date') . '</th>';
if (in_array(5, $_SESSION['AllowedPageSecurityTokens'])) { // If is allow to modify prices.
echo '<th colspan="2">' . _('Maintenance') . '</th>';
}
echo '</tr>
</thead>
<tbody>';
while ($MyRow = DB_fetch_array($Result)) {
if ($MyRow['enddate']=='9999-12-31'){
$EndDateDisplay = _('No End Date');
} else {
$EndDateDisplay = ConvertSQLDate($MyRow['enddate']);
}
echo '<tr class="striped_row">
<td>' . $CurrencyName[$MyRow['currabrev']] . '</td>
<td>' . $MyRow['sales_type'] . '</td>
<td class="number">' . locale_number_format($MyRow['price'], $MyRow['currdecimalplaces']+2) . '</td>
<td>' . ConvertSQLDate($MyRow['startdate']) . '</td>
<td>' . $EndDateDisplay . '</td>';
/*Only allow access to modify prices if securiy token 5 is allowed */
if (in_array(5, $_SESSION['AllowedPageSecurityTokens'])) {
echo '<td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?Item=' . $MyRow['stockid'] . '&TypeAbbrev=' . $MyRow['typeabbrev'] . '&CurrAbrev=' . $MyRow['currabrev'] . '&Price=' . locale_number_format($MyRow['price'],$MyRow['currdecimalplaces']) . '&StartDate=' . $MyRow['startdate'] . '&EndDate=' . $MyRow['enddate'] . '&Edit=1">' . _('Edit') . '</a></td>
<td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?Item=' . $MyRow['stockid'] . '&TypeAbbrev=' . $MyRow['typeabbrev'] . '&CurrAbrev=' . $MyRow['currabrev'] . '&StartDate=' . $MyRow['startdate'] . '&EndDate=' . $MyRow['enddate'] . '&delete=yes" onclick="return confirm(\'' . _('Are you sure you wish to delete this price?') . '\');">' . _('Delete') . '</a></td>';
}
echo '</tr>';
}
//END WHILE LIST LOOP
echo '</tbody>
</table><br />
</div>
</form>';
} else {
prnMsg(_('There are no prices set up for this part'),'warn');
}
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($_GET['Edit'])){
echo '<input type="hidden" name="OldTypeAbbrev" value="' . $_GET['TypeAbbrev'] .'" />';
echo '<input type="hidden" name="OldCurrAbrev" value="' . $_GET['CurrAbrev'] . '" />';
echo '<input type="hidden" name="OldStartDate" value="' . $_GET['StartDate'] . '" />';
echo '<input type="hidden" name="OldEndDate" value="' . $_GET['EndDate'] . '" />';
$_POST['CurrAbrev'] = $_GET['CurrAbrev'];
$_POST['TypeAbbrev'] = $_GET['TypeAbbrev'];
/*the price sent with the get is sql format price so no need to filter */
$_POST['Price'] = $_GET['Price'];
$_POST['StartDate'] = ConvertSQLDate($_GET['StartDate']);
if ($_GET['EndDate']=='' OR $_GET['EndDate']=='9999-12-31'){
$_POST['EndDate'] = '';
} else {
$_POST['EndDate'] = ConvertSQLDate($_GET['EndDate']);
}
}
$SQL = "SELECT currabrev FROM currencies";
$Result = DB_query($SQL);
echo '<fieldset>';
echo '<legend>' . $Item . ' - ' . $PartDescription . '</legend>';
echo '<field>
<label for="CurrAbrev">' . _('Currency') . ':</label>
<select name="CurrAbrev">';
while ($MyRow = DB_fetch_array($Result)) {
echo '<option ';
if ($MyRow['currabrev']==$_POST['CurrAbrev']) {
echo 'selected="selected" ';
}
echo 'value="' . $MyRow['currabrev'] . '">' . $CurrencyName[$MyRow['currabrev']] . '</option>';
}// End while loop
echo '</select>
</field>';
DB_free_result($Result);
echo '<field>
<label for="TypeAbbrev">' . _('Sales Type Price List') . ':</label>
<select name="TypeAbbrev">';
while ($MyRow = DB_fetch_array($TypeResult)) {
echo '<option ';
if ($MyRow['typeabbrev']==$_POST['TypeAbbrev']) {
echo 'selected="selected" ';
}
echo 'value="' . $MyRow['typeabbrev'] . '">' . $MyRow['sales_type'] . '</option>';
}// End while loop
echo '</select>
</field>';
DB_free_result($Result);
if (!isset($_POST['StartDate'])){
$_POST['StartDate'] = Date($_SESSION['DefaultDateFormat']);
}
if (!isset($_POST['EndDate'])){
$_POST['EndDate'] = Date($_SESSION['DefaultDateFormat']);
}
echo '<field>
<label for="StartDate">' . _('Price Effective From Date') . ':</label>
<input type="date" name="StartDate" required="required" size="10" maxlength="10" title="" value="' . FormatDateForSQL($_POST['StartDate']) . '" />
<fieldhelp>' . _('Enter the date from which this price should take effect.') . '</fieldhelp>
</field>';
echo '<field>
<label for="EndDate">' . _('Price Effective To Date') . ':</label>
<input type="date" name="EndDate" size="10" maxlength="10" title="" value="' . FormatDateForSQL($_POST['EndDate']) . '" />
<fieldhelp>' . _('Enter the date to which this price should be in effect to, or leave empty if the price should continue indefinitely') . '</fieldhelp>
<input type="hidden" name="Item" value="' . $Item.'" />
</field>';
echo '<field>
<label for="Price">' . _('Price') . ':</label>
<input type="text" class="number" required="required" name="Price" size="12" maxlength="11" value="';
if (isset($_POST['Price'])) {
echo $_POST['Price'];
}
echo '" />
</field>
</fieldset>
<div class="centre">
<input type="submit" name="submit" value="' . _('Enter') . '/' . _('Amend Price') . '" />
</div>';
echo '</div>
</form>';
include('includes/footer.php');
function ReSequenceEffectiveDates ($Item, $PriceList, $CurrAbbrev) {
/*This is quite complicated - the idea is that prices set up should be unique and there is no way two prices could be returned as valid - when getting a price in includes/GetPrice.inc the logic is to first look for a price of the salestype/currency within the effective start and end dates - then if not get the price with a start date prior but a blank end date (the default price). We would not want two prices where one price falls inside another effective date range except in the case of a blank end date - ie no end date - the default price for the currency/salestype.
I first thought that we would need to update the previous default price (blank end date), when a new default price is entered, to have an end date of the startdate of this new default price less 1 day - but this is converting a default price into a special price which could result in having two special prices over the same date range - best to leave it unchanged and use logic in the GetPrice.inc to ensure the correct default price is returned
*
* After further discussion (Ricard) if the new price has a blank end date - i.e. no end then the pre-existing price with no end date should be changed to have an end date just prior to the new default (no end date) price commencing
*/
//this is just the case where debtorno='' - see the Prices_Customer.php script for customer special prices
$SQL = "SELECT price,
startdate,
enddate
FROM prices
WHERE debtorno=''
AND stockid='" . $Item . "'
AND currabrev='" . $CurrAbbrev . "'
AND typeabbrev='" . $PriceList . "'
AND enddate <>'9999-12-31'
ORDER BY startdate, enddate";
$Result = DB_query($SQL);
while ($MyRow = DB_fetch_array($Result)){
if (isset($NextStartDate)){
if (Date1GreaterThanDate2(ConvertSQLDate($MyRow['startdate']),$NextStartDate)){
$NextStartDate = ConvertSQLDate($MyRow['startdate']);
//Only if the previous enddate is after the new start date do we need to look at updates
if (Date1GreaterThanDate2(ConvertSQLDate($EndDate),ConvertSQLDate($MyRow['startdate']))) {
/*Need to make the end date the new start date less 1 day */
$SQL = "UPDATE prices SET enddate = '" . FormatDateForSQL(DateAdd($NextStartDate,'d',-1)) . "'
WHERE stockid ='" .$Item . "'
AND currabrev='" . $CurrAbbrev . "'
AND typeabbrev='" . $PriceList . "'
AND startdate ='" . $StartDate . "'
AND enddate = '" . $EndDate . "'
AND debtorno =''";
$UpdateResult = DB_query($SQL);
}
} //end of if startdate after NextStartDate - we have a new NextStartDate
} //end of if set NextStartDate
else {
$NextStartDate = ConvertSQLDate($MyRow['startdate']);
}
$StartDate = $MyRow['startdate'];
$EndDate = $MyRow['enddate'];
} // end of loop around all prices
//Now look for duplicate prices with no end
$SQL = "SELECT price,
startdate,
enddate
FROM prices
WHERE debtorno=''
AND stockid='" . $Item . "'
AND currabrev='" . $CurrAbbrev . "'
AND typeabbrev='" . $PriceList . "'
AND enddate ='9999-12-31'
ORDER BY startdate";
$Result = DB_query($SQL);
while ($MyRow = DB_fetch_array($Result)) {
if (isset($OldStartDate)){
/*Need to make the end date the new start date less 1 day */
$NewEndDate = FormatDateForSQL(DateAdd(ConvertSQLDate($MyRow['startdate']),'d',-1));
$SQL = "UPDATE prices SET enddate = '" . $NewEndDate . "'
WHERE stockid ='" .$Item . "'
AND currabrev='" . $CurrAbbrev . "'
AND typeabbrev='" . $PriceList . "'
AND startdate ='" . $OldStartDate . "'
AND enddate = '9999-12-31'
AND debtorno =''";
$UpdateResult = DB_query($SQL);
}
$OldStartDate = $MyRow['startdate'];
} // end of loop around duplicate no end date prices
} // end function ReSequenceEffectiveDates
?>