How to implement certain users can view certain clients.

Known bugs reported by PacsOne users
Post Reply
Pacs
How to implement certain users can view certain clients.

Post by Pacs » Tue Aug 09, 2005 5:38 pm

Hi All,

I just got this question from one of the marketing guys. I wonder how can I implement this.

1. if Hospital A has one pacs server and it wants to put all the images on there and used by several doctors and departments. Of course, doctor B/Department C can't not view images or documents from others doctors/Department and vice versa. How can I implement this feature on Pacs.

thanks,
Pacs.

PS: also, when I try to launch the http://ip_address/pacsone/pacsone.php I got the Unauthorized log in message. What causes this? I checked the security.php file but got no clue. Please help

pacsone
Site Admin
Posts:3149
Joined:Tue Sep 30, 2003 2:47 am

Post by pacsone » Tue Aug 09, 2005 6:15 pm

In PacsOne Server, we use different privilege levels and patient/study privacy attribute to control which patients/studies a user can view/see:

1. All patients/studies are private by default.

2. The Administrator or users with Modify privilege can change the privacy attribute of patients/studies to public/private.

3. The Administrator or users with View privilege can view all patients/studies including those that are private.

4. Users without the View privilege can view any public patients/studies, but can only view those private patients/studies for which the logged-in user is either the Referring Physician or the Reading Physician.

The reason why you got the "Unauthorized" error message is because you need to login to PacsOne first, before you can view any patients/studies. i.e., you need to enter a valid username/password plus the anti-spam code to pass the security checks, before you can access any page in PacsOne Server.

For more details, please check out the PacsOne Server Premium Edition User's Manual online:

http://www.rainbowfishsoftware.com/manual.pdf

Pacs

Post by Pacs » Tue Aug 09, 2005 6:37 pm

Thanks very much for your fast reply.

I will check out the View thing.

About the Unauthorized Message at the very first GUI (login gui). if I am not logging in, how can I view the studies.. I am just curious.

So, that message is always there when I launch:
"http://ip-address/pacsone/pacsone.php ?

Best regards,
Pacs

pacsone
Site Admin
Posts:3149
Joined:Tue Sep 30, 2003 2:47 am

Post by pacsone » Tue Aug 09, 2005 7:33 pm

You need to login as Administrator (root) first, create new users from the User Administration page, then the new users can login using the given username/password.

tburba
Posts:50
Joined:Fri Apr 23, 2010 5:02 pm
Contact:

Post by tburba » Thu Oct 24, 2013 10:30 am

pacsone wrote:1. All patients/studies are private by default.

2. The Administrator or users with Modify privilege can change the privacy attribute of patients/studies to public/private.

3. The Administrator or users with View privilege can view all patients/studies including those that are private.

4. Users without the View privilege can view any public patients/studies, but can only view those private patients/studies for which the logged-in user is either the Referring Physician or the Reading Physician.
Is it possible to make patients/studies public by default?

Some customers of ours are very small clinics with few doctors, they would prefer to do the opposite (only special patients would be made "private").

pacsone
Site Admin
Posts:3149
Joined:Tue Sep 30, 2003 2:47 am

Post by pacsone » Thu Oct 24, 2013 3:49 pm

Yes, you can make the newly received patients/studies Public by default, by running the following SQL queries after logging into the PacsOne Server database from a local command shell:

Code: Select all

mysql> alter table patient modify private BOOL DEFAULT 0;
mysql> alter table study modify private BOOL DEFAULT 0;
After that, all newly received patients/studies will be Public by default.

Post Reply