forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Shippers.php
203 lines (161 loc) · 6.79 KB
/
Shippers.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
<?php
include('includes/session.php');
$Title = _('Shipping Company Maintenance');
include('includes/header.php');
if (isset($_GET['SelectedShipper'])){
$SelectedShipper = $_GET['SelectedShipper'];
} else if (isset($_POST['SelectedShipper'])){
$SelectedShipper = $_POST['SelectedShipper'];
}
if (isset($Errors)) {
unset($Errors);
}
$Errors = array();
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
$i=1;
if (mb_strlen($_POST['ShipperName']) >40) {
$InputError = 1;
prnMsg( _('The shipper\'s name must be forty characters or less long'), 'error');
$Errors[$i] = 'ShipperName';
$i++;
} elseif( trim($_POST['ShipperName']) == '' ) {
$InputError = 1;
prnMsg( _('The shipper\'s name may not be empty'), 'error');
$Errors[$i] = 'ShipperName';
$i++;
}
if (isset($SelectedShipper) AND $InputError !=1) {
/*SelectedShipper 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 shippers SET shippername='" . $_POST['ShipperName'] . "'
WHERE shipper_id = '".$SelectedShipper."'";
$msg = _('The shipper record has been updated');
} elseif ($InputError !=1) {
/*SelectedShipper is null cos no item selected on first time round so must be adding a record must be submitting new entries in the new Shipper form */
$sql = "INSERT INTO shippers (shippername) VALUES ('" . $_POST['ShipperName'] . "')";
$msg = _('The shipper record has been added');
}
//run the SQL from either of the above possibilites
if ($InputError !=1) {
$result = DB_query($sql);
echo '<br />';
prnMsg($msg, 'success');
unset($SelectedShipper);
unset($_POST['ShipperName']);
unset($_POST['Shipper_ID']);
}
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
// PREVENT DELETES IF DEPENDENT RECORDS IN 'SalesOrders'
$sql= "SELECT COUNT(*) FROM salesorders WHERE salesorders.shipvia='".$SelectedShipper."'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
echo '<br />';
prnMsg( _('Cannot delete this shipper because sales orders have been created using this shipper') . '. ' . _('There are'). ' '.
$myrow[0] . ' '. _('sales orders using this shipper code'), 'error');
} else {
// PREVENT DELETES IF DEPENDENT RECORDS IN 'DebtorTrans'
$sql= "SELECT COUNT(*) FROM debtortrans WHERE debtortrans.shipvia='".$SelectedShipper."'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
echo '<br />';
prnMsg( _('Cannot delete this shipper because invoices have been created using this shipping company') . '. ' . _('There are'). ' ' .
$myrow[0] . ' ' . _('invoices created using this shipping company'), 'error');
} else {
// Prevent deletion if the selected shipping company is the current default shipping company in config.php !!
if ($_SESSION['Default_Shipper']==$SelectedShipper) {
$CancelDelete = 1;
echo '<br />';
prnMsg( _('Cannot delete this shipper because it is defined as the default shipping company in the configuration file'), 'error');
} else {
$sql="DELETE FROM shippers WHERE shipper_id='".$SelectedShipper."'";
$result = DB_query($sql);
echo '<br />';
prnMsg( _('The shipper record has been deleted'), 'success');;
}
}
}
unset($SelectedShipper);
unset($_GET['delete']);
}
if (!isset($SelectedShipper)) {
/* It could still be the second time the page has been run and a record has been selected for modification - SelectedShipper will exist because it was sent with the new call. If its the first time the page has been displayed with no parameters
then none of the above are true and the list of Shippers 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*/
echo '<p class="page_title_text">
<img src="'.$RootPath.'/css/'.$Theme.'/images/supplier.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title .
'</p>';
$sql = "SELECT * FROM shippers ORDER BY shipper_id";
$result = DB_query($sql);
echo '<table class="selection">
<tr><th>' . _('Shipper ID'). '</th><th>' . _('Shipper Name'). '</th></tr>';
while ($myrow = DB_fetch_array($result)) {
printf('<tr class="striped_row">
<td>%s</td>
<td>%s</td>
<td><a href="%sSelectedShipper=%s">' . _('Edit') . '</a></td>
<td><a href="%sSelectedShipper=%s&delete=1" onclick="return confirm(\'' . _('Are you sure you wish to delete this shipper?') . '\');">' . _('Delete'). '</a></td>
</tr>',
$myrow[0],
$myrow[1],
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>';
}
if (isset($SelectedShipper)) {
echo '<p class="page_title_text">
<img src="'.$RootPath.'/css/'.$Theme.'/images/supplier.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title .
'</p>';
echo '<div class="centre"><a href="'.htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">' . _('REVIEW RECORDS') . '</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($SelectedShipper)) {
//editing an existing Shipper
$sql = "SELECT shipper_id, shippername FROM shippers WHERE shipper_id='".$SelectedShipper."'";
$result = DB_query($sql);
$myrow = DB_fetch_array($result);
$_POST['Shipper_ID'] = $myrow['shipper_id'];
$_POST['ShipperName'] = $myrow['shippername'];
echo '<input type="hidden" name="SelectedShipper" value="'. $SelectedShipper .'" />';
echo '<input type="hidden" name="Shipper_ID" value="' . $_POST['Shipper_ID'] . '" />';
echo '<br /><table class="selection"><tr><td>' . _('Shipper Code').':</td><td>' . $_POST['Shipper_ID'] . '</td></tr>';
} else {
echo '<br />
<table class="selection">';
}
if (!isset($_POST['ShipperName'])) {
$_POST['ShipperName']='';
}
echo '<tr><td>' . _('Shipper Name') .':</td>
<td>
<input type="text" name="ShipperName"'. (in_array('ShipperName',$Errors) ? 'class="inputerror"' : '' ) . ' value="'. $_POST['ShipperName'] .'" size="35" maxlength="40" />
</td>
</tr>
</table>
<br />
<div class="centre">
<input type="submit" name="submit" value="'. _('Enter Information').'" />
</div>
</div>
</form>';
} //end if record deleted no point displaying form to add record
include('includes/footer.php');
?>