Notes |
|
|
Please look at the underlying database record..
Is it marked private? Is the Contact attached to a Company or Project the User doesn't have access to?
(Also, moving this to v2.3 as that release is a few days away..) |
|
|
|
That is the problem, the Contact was created by a user belonging to company 1, but there is not a way to specify who the Contact belongs to, so it's saved to the database thusly: contact_company=0.
Wouldn't it make more sense if the contact created by a user stays within the same company as that user? |
|
|
|
Two choices:
Either give the user Access/View to the Companies module and they'll be able to see everything not associated with a Company OR
Open modules/contacts/addedit.php and replace this line:
$company_id = (int) w2PgetParam($_GET, 'company_id', 0);
with this line:
$company_id = (int) w2PgetParam($_GET, 'company_id', $AppUI->user_company); |
|
|
|
Oh.. and the second fix will be in the release next week. |
|
|
|
Closed in preparation for v2.3 |
|