forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZ_GLAccountUsersCopyAuthority.php
97 lines (79 loc) · 3.71 KB
/
Z_GLAccountUsersCopyAuthority.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
<?php
// Z_GLAccountUsersCopyAuthority.php
// Utility to copy authority of GL accounts from one user to another.
include('includes/session.php');
$Title = _('GLAccount - Users Authority Copy Authority');
$ViewTopic = 'SpecialUtilities';
$BookMark = 'Z_GLAccountUsersCopyAuthority';
include('includes/header.php');
echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/maintenance.png" title="',// Icon image.
_('Copy Authority of GL Accounts from one user to another'), '" /> ',// Icon title.
_('Copy Authority of GL Accounts from one user to another'), '</p>';// Page title.
include('includes/SQL_CommonFunctions.inc');
if(isset($_POST['ProcessCopyAuthority'])) {
$InputError =0;
if($_POST['FromUserID']==$_POST['ToUserID']) {
prnMsg(_('User FROM must be different from user TO'),'error');
$InputError =1;
}
if($InputError ==0) {// no input errors
DB_Txn_Begin();
echo '<br />' . _('Deleting the current authority to view / update the GL Accounts of user') . ' ' . $_POST['ToUserID'];
$SQL = "DELETE FROM glaccountusers WHERE userid = '" . $_POST['ToUserID'] . "'";
$DbgMsg = _('The SQL statement that failed was');
$ErrMsg =_('The SQL to delete the auhority in glaccountusers record failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
echo ' ... ' . _('completed');
echo '<br />' . _('Copying the authority to view / update the GL Accounts from user') . ' ' . $_POST['FromUserID'] . ' ' . _('to') . ' ' . $_POST['ToUserID'];
$SQL = "INSERT INTO glaccountusers (userid, accountcode, canview, canupd)
SELECT '" . $_POST['ToUserID'] . "', accountcode, canview, canupd
FROM glaccountusers
WHERE userid = '" . $_POST['FromUserID'] . "'";
$DbgMsg = _('The SQL statement that failed was');
$ErrMsg =_('The SQL to insert the auhority in glaccountusers record failed');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
echo ' ... ' . _('completed');
echo '<br />';
DB_Txn_Commit();
}//only do the stuff above if $InputError==0
}
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>', _('Copy Authorities'), '</legend>';
echo ' <field>
<label>' . _('Select User to copy the Authority FROM') . ':</label>
<select name="FromUserID">';
$Result = DB_query("SELECT userid,
realname
FROM www_users
ORDER BY userid");
echo '<option selected value="">' . _('Not Yet Selected') . '</option>';
while ($MyRow = DB_fetch_array($Result)) {
echo '<option value="';
echo $MyRow['userid'] . '">' . $MyRow['userid'] . ' - ' . $MyRow['realname'] . '</option>';
} //end while loop
echo '</select>
</field>';
echo ' <field>
<label>' . _('Select User to copy the Authority TO') . ':</label>
<select name="ToUserID">';
$Result = DB_query("SELECT userid,
realname
FROM www_users
ORDER BY userid");
echo '<option selected value="">' . _('Not Yet Selected') . '</option>';
while ($MyRow = DB_fetch_array($Result)) {
echo '<option value="';
echo $MyRow['userid'] . '">' . $MyRow['userid'] . ' - ' . $MyRow['realname'] . '</option>';
} //end while loop
echo '</select>
</field>';
echo '</fieldset>
<div class="centre">
<button name="ProcessCopyAuthority" type="submit" value="', _('Process Copy of Authority'), '"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/tick.svg" /> ', _('Process'), '</button>', // "Process Copy of Authority" button.
'<button formaction="index.php?Application=Utilities" type="submit"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/return.svg" /> ', _('Return'), '</button>', // "Return" button.
'</div>
</form>';
include('includes/footer.php');
?>