forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSalesCommissionTypes.php
230 lines (199 loc) · 8.17 KB
/
SalesCommissionTypes.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
<?php
include ('includes/session.php');
$Title = _('Sales Commission Calculation Methods');
$ViewTopic= 'SalesCommission';
$BookMark = 'SalesCommission';
include ('includes/header.php');
echo '<p class="page_title_text">
<img src="', $RootPath, '/css/', $_SESSION['Theme'], '/images/magnifier.png" title="', _('Search'), '" alt="" />', ' ', $Title, '
</p>';
if (isset($_GET['SelectedTypeID'])) {
$SelectedTypeID = $_GET['SelectedTypeID'];
} elseif (isset($_POST['SelectedTypeID'])) {
$SelectedTypeID = $_POST['SelectedTypeID'];
}
if (isset($_POST['Submit'])) {
//initialise no input errors assumed initially before we test
$InputError = 0;
/* 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
if (trim($_POST['CommissionTypeName']) == '') {
$InputError = 1;
prnMsg(_('The commission type name may not be empty'), 'error');
}
if (isset($_POST['SelectedTypeID']) and $_POST['SelectedTypeID'] != '' and $InputError != 1) {
/*SelectedTypeID 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*/
// Check the name does not clash
$SQL = "SELECT count(*) FROM salescommissiontypes
WHERE commissiontypeid <> '" . $SelectedTypeID . "'
AND commissiontypename='" . $_POST['CommissionTypeName'] . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_row($Result);
if ($MyRow[0] > 0) {
$InputError = 1;
prnMsg(_('The commission type can not be renamed because another with the same name already exist.'), 'error');
} else {
// Get the old name and check that the record still exist neet to be very carefull here
// idealy this is one of those sets that should be in a stored procedure simce even the checks are
// relavant
$SQL = "SELECT commissiontypename FROM salescommissiontypes
WHERE commissiontypeid = '" . $SelectedTypeID . "'";
$Result = DB_query($SQL);
if (DB_num_rows($Result) != 0) {
// This is probably the safest way there is
$MyRow = DB_fetch_row($Result);
$OldCommissionTypeName = $MyRow[0];
$SQL = array();
$SQL[] = "UPDATE salescommissiontypes
SET commissiontypename='" . $_POST['CommissionTypeName'] . "'
WHERE commissiontypename='" . DB_escape_string($OldCommissionTypeName) . "'";
} else {
$InputError = 1;
prnMsg(_('The commission type no longer exist.'), 'error');
}
}
$Msg = _('Commision Type changed');
} elseif ($InputError != 1) {
/*SelectedTypeID is null cos no item selected on first time round so must be adding a record*/
$SQL = "SELECT count(*) FROM salescommissiontypes
WHERE commissiontypename='" . $_POST['CommissionTypeName'] . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_row($Result);
if ($MyRow[0] > 0) {
$InputError = 1;
prnMsg(_('The commission type can not be created because another with the same name already exists.'), 'error');
} else {
$SQL = "INSERT INTO salescommissiontypes (commissiontypename )
VALUES ('" . $_POST['CommissionTypeName'] . "')";
}
$Msg = _('New sales commission type added');
}
if ($InputError != 1) {
//run the SQL from either of the above possibilites
if (is_array($SQL)) {
DB_Txn_Begin();
$DbErr = _('Could not update sales commission type');
$DbDbg = _('The sql that failed was') . ':';
foreach ($SQL as $Statement) {
$Result = DB_query($Statement, $DbErr, $DbDbg, true);
if (!$Result) {
$InputError = 1;
break;
}
}
if ($InputError != 1) {
DB_Txn_Commit();
} else {
DB_Txn_Rollback();
}
} else {
$Result = DB_query($SQL);
}
prnMsg($Msg, 'success');
}
unset($SelectedTypeID);
unset($_POST['SelectedTypeID']);
unset($_POST['CommissionTypeName']);
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
// PREVENT DELETES IF DEPENDENT RECORDS IN 'salesman'
$SQL = "SELECT commissiontypename FROM salescommissiontypes
WHERE commissiontypeid= '" . $SelectedTypeID . "'";
$Result = DB_query($SQL);
if (DB_num_rows($Result) == 0) {
// This is probably the safest way there is
prnMsg(_('Cannot delete this sales commission calculation method because it no longer exist'), 'warn');
} else {
$MyRow = DB_fetch_row($Result);
$OldTypeName = $MyRow[0];
$SQL = "SELECT COUNT(*) FROM salesman WHERE commissiontypeid='" . $_GET['SelectedTypeID'] . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_row($Result);
if ($MyRow[0] > 0) {
prnMsg(_('Cannot delete this sales commission type because sales people items have been created using this type'), 'warn');
echo '<br />' . _('There are') . ' ' . $MyRow[0] . ' ' . _('sales people that use this commission type') . '</font>';
} else {
$SQL = "DELETE FROM salescommissiontypes WHERE commissiontypeid= '" . $SelectedTypeID . "'";
$Result = DB_query($SQL);
prnMsg($OldTypeName . ' ' . _('commision type has been deleted') . '!', 'success');
}
} //end if account group used in GL accounts
unset($SelectedTypeID);
unset($_GET['SelectedTypeID']);
unset($_GET['delete']);
unset($_POST['SelectedTypeID']);
unset($_POST['CommissionTypeID']);
unset($_POST['CommissionTypeName']);
}
if (!isset($SelectedTypeID)) {
$SQL = "SELECT commissiontypeid,
commissiontypename
FROM salescommissiontypes
ORDER BY commissiontypeid";
$ErrMsg = _('Could not get commission types because');
$Result = DB_query($SQL, $ErrMsg);
if (DB_num_rows($Result) > 0) {
echo '<table>
<thead>
<tr>
<th class="SortedColumn">', _('Calculation Method'), '</th>
<th colspan="2"></th>
</tr>
</thead>';
echo '<tbody>';
while ($MyRow = DB_fetch_row($Result)) {
echo '<tr class="striped_row">
<td>', $MyRow[1], '</td>
<td><a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedTypeID=', urlencode($MyRow[0]), '">', _('Edit'), '</a></td>
<td><a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedTypeID=', urlencode($MyRow[0]), '&delete=1" onclick="return MakeConfirm(\'', _('Are you sure you wish to delete this calculation method?'), '\', \'Confirm Delete\', this);">', _('Delete'), '</a></td>
</tr>';
} //END WHILE LIST LOOP
echo '</tbody>';
echo '</table>';
}
} //end of ifs and buts!
if (isset($SelectedTypeID)) {
echo '<div class="centre">
<a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '">', _('Review Commission Calculation Methods'), '</a>
</div>';
}
if (!isset($_GET['delete'])) {
echo '<form method="post" action="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '">';
echo '<input type="hidden" name="FormID" value="', $_SESSION['FormID'], '" />';
if (isset($SelectedTypeID)) {
//editing an existing section
$SQL = "SELECT commissiontypeid,
commissiontypename
FROM salescommissiontypes
WHERE commissiontypeid='" . $SelectedTypeID . "'";
$Result = DB_query($SQL);
if (DB_num_rows($Result) == 0) {
prnMsg(_('Could not retrieve the requested commission type, please try again.'), 'warn');
unset($SelectedTypeID);
} else {
$MyRow = DB_fetch_array($Result);
$_POST['CommissionTypeID'] = $MyRow['commissiontypeid'];
$_POST['CommissionTypeName'] = $MyRow['commissiontypename'];
echo '<input type="hidden" name="SelectedTypeID" value="', $_POST['CommissionTypeID'], '" />';
echo '<fieldset>
<legend>', _('Edit Calculation Method'), ' - ', $_POST['CommissionTypeName'], '</legend>';
}
} else {
$_POST['CommissionTypeName'] = '';
echo '<fieldset>
<legend>', _('Create New Calculation Method'), '</legend>';
}
echo '<field>
<label for="CommissionTypeName">', _('Commission Calculation Method'), ':</label>
<input type="text" name="CommissionTypeName" size="35" required="required" autofocus="autofocus" maxlength="55" value="', $_POST['CommissionTypeName'], '" />
<fieldhelp>', _('The name of the commission calculation algorithm'), '</fieldhelp>
</field>';
echo '</fieldset>';
echo '<div class="centre">
<input type="submit" name="Submit" value="', _('Enter Information'), '" />
</div>';
echo '</form>';
} //end if record deleted no point displaying form to add record
include ('includes/footer.php');
?>