forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZ_MakeLocUsers.php
30 lines (24 loc) · 1.01 KB
/
Z_MakeLocUsers.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
<?php
/* Script to make user locations for all users that do not have user location records set up*/
include ('includes/session.php');
$Title = _('Make locationusers Records');
$ViewTopic = 'SpecialUtilities';
$BookMark = basename(__FILE__, '.php'); ;
include('includes/header.php');
echo '<br /><br />' . _('This script makes stock location records for parts where they do not already exist');
$SQL = "INSERT INTO locationusers (userid, loccode, canview, canupd)
SELECT www_users.userid,
locations.loccode,
1,
1
FROM www_users CROSS JOIN locations
LEFT JOIN locationusers
ON www_users.userid = locationusers.userid
AND locations.loccode = locationusers.loccode
WHERE locationusers.userid IS NULL;";
$ErrMsg = _('The users/locations that need user location records created cannot be retrieved because');
$Result = DB_query($SQL,$ErrMsg);
echo '<p />';
prnMsg(_('Any users that may not have had user location records have now been given new location user records'),'info');
include('includes/footer.php');
?>