forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZ_ChangeCustomerCode.php
253 lines (216 loc) · 8.47 KB
/
Z_ChangeCustomerCode.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
<?php
/* This script is an utility to change a customer code. */
include ('includes/session.php');
$Title = _('UTILITY PAGE To Changes A Customer Code In All Tables');// Screen identificator.
$ViewTopic = 'SpecialUtilities'; // Filename's id in ManualContents.php's TOC.
$BookMark = 'Z_ChangeCustomerCode'; // Anchor's id in the manual's html document.
include('includes/header.php');
echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/customer.png" title="' .
_('Change A Customer Code') . '" /> ' .// Icon title.
_('Change A Customer Code') . '</p>';// Page title.
if (isset($_POST['ProcessCustomerChange'])){
/*First check the customer code exists */
$Result=DB_query("SELECT debtorno FROM debtorsmaster WHERE debtorno='" . $_POST['OldDebtorNo'] . "'");
if (DB_num_rows($Result)==0){
prnMsg ('<br /><br />' . _('The customer code') . ': ' . $_POST['OldDebtorNo'] . ' ' . _('does not currently exist as a customer code in the system'),'error');
include('includes/footer.php');
exit;
}
if ($_POST['NewDebtorNo']==''){
prnMsg(_('The new customer code to change the old code to must be entered as well'),'error');
include('includes/footer.php');
exit;
}
/*Now check that the new code doesn't already exist */
$Result=DB_query("SELECT debtorno FROM debtorsmaster WHERE debtorno='" . $_POST['NewDebtorNo'] . "'");
if (DB_num_rows($Result)!=0){
prnMsg(_('The replacement customer code') .': ' . $_POST['NewDebtorNo'] . ' ' . _('already exists as a customer code in the system') . ' - ' . _('a unique customer code must be entered for the new code'),'error');
include('includes/footer.php');
exit;
}
DB_Txn_Begin();
prnMsg(_('Inserting the new debtors master record'),'info');
$SQL = "INSERT INTO debtorsmaster (`debtorno`,
`name`,
`address1`,
`address2`,
`address3`,
`address4`,
`currcode`,
`salestype`,
`clientsince`,
`holdreason`,
`paymentterms`,
`discount`,
`discountcode`,
`pymtdiscount`,
`lastpaid`,
`lastpaiddate`,
`creditlimit`,
`invaddrbranch`,
`ediinvoices`,
`ediorders`,
`edireference`,
`editransport`,
`ediaddress`,
`ediserveruser`,
`ediserverpwd`,
`typeid`)
SELECT '" . $_POST['NewDebtorNo'] . "',
`name`,
`address1`,
`address2`,
`address3`,
`address4`,
`currcode`,
`salestype`,
`clientsince`,
`holdreason`,
`paymentterms`,
`discount`,
`discountcode`,
`pymtdiscount`,
`lastpaid`,
`lastpaiddate`,
`creditlimit`,
`invaddrbranch`,
`ediinvoices`,
`ediorders`,
`edireference`,
`editransport`,
`ediaddress`,
`ediserveruser`,
`ediserverpwd`,
`typeid`
FROM debtorsmaster
WHERE debtorno='" . $_POST['OldDebtorNo'] . "'";
$DbgMsg =_('The SQL that failed was');
$ErrMsg = _('The SQL to insert the new debtors master record failed') . ', ' . _('the SQL statement was');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
prnMsg(_('Inserting new customer branch records'),'info');
$SQL = "INSERT INTO custbranch ( `branchcode`,
`debtorno`,
`brname`,
`braddress1`,
`braddress2`,
`braddress3`,
`braddress4`,
`braddress5`,
`braddress6`,
`estdeliverydays`,
`area`,
`salesman`,
`fwddate`,
`phoneno`,
`faxno`,
`contactname`,
`email`,
`defaultlocation`,
`taxgroupid`,
`disabletrans`,
`brpostaddr1`,
`brpostaddr2`,
`brpostaddr3`,
`brpostaddr4`,
`brpostaddr5`,
`brpostaddr6`,
`defaultshipvia`,
`specialinstructions`,
`custbranchcode`)
SELECT branchcode,
'" . $_POST['NewDebtorNo'] . "',
`brname`,
`braddress1`,
`braddress2`,
`braddress3`,
`braddress4`,
`braddress5`,
`braddress6`,
`estdeliverydays`,
`area`,
`salesman`,
`fwddate`,
`phoneno`,
`faxno`,
`contactname`,
`email`,
`defaultlocation`,
`taxgroupid`,
`disabletrans`,
`brpostaddr1`,
`brpostaddr2`,
`brpostaddr3`,
`brpostaddr4`,
`brpostaddr5`,
`brpostaddr6`,
`defaultshipvia`,
'',
`custbranchcode`
FROM custbranch
WHERE debtorno='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to insert new customer branch records failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
prnMsg(_('Changing debtor transaction records'),'info');
$SQL = "UPDATE debtortrans SET debtorNo='" . $_POST['NewDebtorNo'] . "' WHERE debtorno='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to update debtor transaction records failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
prnMsg(_('Changing sales analysis records'),'info');
$SQL = "UPDATE salesanalysis SET cust='" . $_POST['NewDebtorNo'] . "' WHERE cust='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to update Sales Analysis records failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
prnMsg (_('Changing order delivery differences records'),'info');
$SQL = "UPDATE orderdeliverydifferenceslog SET debtorno='" . $_POST['NewDebtorNo'] . "' WHERE debtorno='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to update order delivery differences records failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
prnMsg(_('Changing pricing records'),'info');
$SQL = "UPDATE prices SET debtorno='" . $_POST['NewDebtorNo'] . "' WHERE debtorno='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to update the pricing records failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
prnMsg(_('Changing sales orders records'),'info');
$SQL = "UPDATE salesorders SET debtorno='" . $_POST['NewDebtorNo'] . "' WHERE debtorno='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to update the sales order header records failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
prnMsg( _('Changing stock movement records'),'info');
$SQL = "UPDATE stockmoves SET debtorno='" . $_POST['NewDebtorNo'] . "' WHERE debtorno='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to update the sales order header records failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
prnMsg(_('Changing user default customer records'),'info');
$SQL = "UPDATE www_users SET customerid='" . $_POST['NewDebtorNo'] . "' WHERE customerid='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to update the user records failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
prnMsg(_('Changing the customer code in contract header records'),'info');
$SQL = "UPDATE contracts SET debtorno='" . $_POST['NewDebtorNo'] . "' WHERE debtorno='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to update contract header records failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
$Result = DB_IgnoreForeignKeys();
prnMsg(_('Deleting the old customer branch records from the CustBranch table'),'info');
$SQL = "DELETE FROM custbranch WHERE debtorno='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to delete the old CustBranch records for the old debtor record failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
prnMsg(_('Deleting the customer code from the DebtorsMaster table'),'info');
$SQL = "DELETE FROM debtorsmaster WHERE debtorno='" . $_POST['OldDebtorNo'] . "'";
$ErrMsg = _('The SQL to delete the old debtor record failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
DB_Txn_Commit();
$Result = DB_ReinstateForeignKeys();
}
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<fieldset>
<legend>', _('Customer to Change'), '</legend>
<field>
<label>' . _('Existing Debtor Code') . ':</label>
<input type="text" name="OldDebtorNo" size="20" maxlength="20" />
</field>
<field>
<label> ' . _('New Debtor Code') . ':</label>
<input type="text" name="NewDebtorNo" size="20" maxlength="20" /><
</field>
</fieldset>
<div class="centre">
<input type="submit" name="ProcessCustomerChange" value="' . _('Process') . '" />
</div>
</form>';
include('includes/footer.php');
?>