How can I add a new field to the patients table? the patiens need to renew every year their membership card with us. How can I generate a report displaying only the patiens who need to renew their membership card?
From ‘Administration->Layouts->Demographics’, a new field to the demographics layout can be added. We suppose, you would like to add a new field ‘membership expiration date’.
For Reporting, create a new report which extracts patient details from patient_data table (has to be coded). Then based on the ‘membership expiration date’ list the patients whose membership is getting expired in another 15/30 days.
Not at all. Just pick a report as a template (that is the closest to what you need) and just change the sql query to capture missing variables. Add the corresponding <td> columns and display the data. Just glance through the source code and you’ll be able to figure it out yourself.
To access the newly created report from the Navigation Tree, you need to inline the reference/link in the interface/main/left_nav.php file. For instance, to bring the new report under Reports->Clients, approx at line 1010 introduce a new list.
Also, to edit/add navigation links, edit content, just right click and view page info (sometimes Frame info) in Firefox. It will show the link location like /interface/reports/abc.php.
You can go to that location in the web server folder and edit the corresponding lines or do a search for the text as needed and make your edits.