forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
1342 lines (1251 loc) · 66.4 KB
/
ChangeLog
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2008-03-17 Added sms/email reminder by Larry
- interface/globals.php - added log folder, smtp settings and sms gateway access - line 281 to 299
- added folder log/ - to store various openemr logs
- added folder modules/ - attempt for future modularity
- added folder modules/sms_email_reminder - backend scripts for sms/email reminder functionality
- modules/sms_email_reminder/cron_functions.php - general purpose functions for sms/email notification
- modules/sms_email_reminder/cron_email_notification.php - email notification script
- modules/sms_email_reminder/cron_sms_notification.php - sms notification script
- modules/sms_email_reminder/sms_clickatell.php - sms class to send via clickatell
- modules/sms_email_reminder/sms_tmb4.php - sms class to send via tmb4
- modules/sms_email_reminder/readme.txt - quick instructions on how to set the cron jobs
- library/classes/smtp/smtp.php, sasl.php, login_sasl_client.php - smtp access classes
- interface/usergroup/usergroup_navigation.php - changed batchcom label to notification - line 68 to 72
- interface/batchcom/batchcom.php - to include batch_navigation.php submenu with sms/email and setting for notifications (include the original batch com from the main menu ) - line 155 to 157
- interface/batchcom/batch_navigation.php - sub menu added with sms/email notification front end settings
- interface/batchcom/smsnotification.php - sms notification setup page
- interface/batchcom/emailnotification.php - email notification setup page
- interface/batchcom/settingsnotification.php - general purpose notification settings
- sql/database.sql:
- added in table patient_data at line 5060 - 5061 hipaa_allowsms and hipaa_allowemail
- added in table openemr_postcalendar_events at line 4927-4928 pc_sendalertsms and pc_sendalertemail
- insert in layout_options from line 4621-4622 hipaa_allowsms and hipaa_allowemail
- added at the buttom from line 5549 tables automatic_notification, notification_log, notification_settings
- sql/add_sms_email_reminder.sql - just changes to apply to upgrade db to sms/email reminder func
------------------------------------------------------------------------
2008-02-04 Changes made to OpenEMR by CHEMED
1. Each user is associated with one facility (Default Facility) in the interface
2. Calendar will not be able to schedule appointments in a facility other than default for the user.
3. When clicking on the time slot to make an appointment the popup form is populated with relevant user and his facility.
These fields are made read only.
4. When scheduling a new appointment using "Add" button the user and facility fields are editable.
5. The Calendar is redesigned.
a) All the columns are of equial width.
b) Calendar view resizes itself on the browser window resize
c) Events are presented as colored chips overlaying the calendar, so the length of event is apparent.
d) IN/OUT/LUNCH etc. events are visually different from others (do not look like chips).
e) View (day/week/year) is selected by buttons.
f) When mousing over an icon to the left of jumpdate field user is presented with a popup overlay that
allows him to select a date from a calendar or some users from a list or a facility.
g) Facility change is immediate (no need to click on "Go" button).
h) To dismiss this popup user have to mouse over the icon again.
i) When printing the calendar old template wil be used, because of the problem in Firefox, which only
prints a first page of absolutely positioned DOM elements. New interface printing does work in IE.
j) The column headers stay in place and only the events list scrolls down.
k) Appointment Status symbol is shown in a top-right corner of event chip.
6. When selecting a patient for an appointment it is possible to search by whole or part of a phone number.
7. Bug: Calendar showed '12pm' as '12am'
8. Bug: The time on the event chip was in 24 hours format, changed to am/pm format.
9. Calendar UI choice is now a per-user option (new field added to users table).
------------------------------------------------------------------------
2007-06-05 lemonsoftware Added multiple_providers option
This customization was made for Dutch version. It is controlled in globals.php
by $GLOBALS['select_multi_providers'] default set to false
------------------------------------------------------------------------
2007-05-29 ballards In config.php, changed initial setting of global
variable for the document repository from $GLOBALS['oer_config']['documents']['repository']
to $GLOBALS['oer_config']['documents']['repopath']
------------------------------------------------------------------------
2007-05-04 ballards In library/sql-ledger.inc, changed function SLConnect()
to use $GLOBALS['oer_config']['ws_accounting']['server'] as the
hostname instead of 'localhost'
------------------------------------------------------------------------
r92 | rroark | 2005-02-08 10:30:48 -0800 (Tue, 08 Feb 2005) | 1 line
fixed bug that was keeping claims from generating sql-ledger invoices
------------------------------------------------------------------------
r91 | rroark | 2005-02-07 20:56:23 -0800 (Mon, 07 Feb 2005) | 1 line
formSubmit() did not insert billing codes properly; perhaps this fix will save someone some grief
------------------------------------------------------------------------
r90 | daryam | 2005-02-07 16:13:03 -0800 (Mon, 07 Feb 2005) | 1 line
fixed db error
------------------------------------------------------------------------
r89 | james | 2005-02-07 16:06:10 -0800 (Mon, 07 Feb 2005) | 2 lines
changed weel to well
------------------------------------------------------------------------
r88 | daryam | 2005-02-07 15:44:29 -0800 (Mon, 07 Feb 2005) | 1 line
fixed some dumb errors
------------------------------------------------------------------------
r87 | daryam | 2005-02-07 08:43:55 -0800 (Mon, 07 Feb 2005) | 1 line
pulling out old unused forms and putting them in forms tree
------------------------------------------------------------------------
r86 | daryam | 2005-02-04 14:22:00 -0800 (Fri, 04 Feb 2005) | 2 lines
updated unassinged to unassigned
------------------------------------------------------------------------
r85 | daryam | 2005-02-04 13:33:10 -0800 (Fri, 04 Feb 2005) | 2 lines
added formate of date in the select screen
------------------------------------------------------------------------
r84 | daryam | 2005-02-04 13:16:13 -0800 (Fri, 04 Feb 2005) | 2 lines
updated weel_child to well_child
------------------------------------------------------------------------
r83 | daryam | 2005-02-03 12:06:35 -0800 (Thu, 03 Feb 2005) | 1 line
Changes as per Walt to add a custom superbill report allowing users to enter a date range and have all the encounters print, initial version
------------------------------------------------------------------------
r82 | daryam | 2005-02-02 15:22:51 -0800 (Wed, 02 Feb 2005) | 1 line
fixed errors in reporting
------------------------------------------------------------------------
r81 | rroark | 2005-02-02 14:05:52 -0800 (Wed, 02 Feb 2005) | 1 line
improve robustness and flexibility of parsing input dates
------------------------------------------------------------------------
r80 | daryam | 2005-02-01 14:31:11 -0800 (Tue, 01 Feb 2005) | 1 line
added proxymed as x12 partner format type
------------------------------------------------------------------------
r79 | rroark | 2005-02-01 12:38:47 -0800 (Tue, 01 Feb 2005) | 1 line
cosmetics: change yellow areas to blue, remove the gradient title image, vertically center navigation and title lines, make some frames resizable with borders
------------------------------------------------------------------------
r78 | rroark | 2005-02-01 12:34:38 -0800 (Tue, 01 Feb 2005) | 1 line
fix for garbage at end of pdf output when printing a prescription
------------------------------------------------------------------------
r77 | daryam | 2005-01-27 09:50:04 -0800 (Thu, 27 Jan 2005) | 1 line
Added as per Walt
------------------------------------------------------------------------
r76 | daryam | 2005-01-24 08:09:21 -0800 (Mon, 24 Jan 2005) | 1 line
Moved web services to false in config.php:
------------------------------------------------------------------------
r75 | daryam | 2005-01-20 17:19:46 -0800 (Thu, 20 Jan 2005) | 1 line
posting to self so you don't have to go back and forth between diagnosis to add codes
------------------------------------------------------------------------
r74 | james | 2005-01-20 16:19:48 -0800 (Thu, 20 Jan 2005) | 2 lines
there is nothing here
------------------------------------------------------------------------
r73 | daryam | 2005-01-19 11:04:48 -0800 (Wed, 19 Jan 2005) | 1 line
backing out commit
------------------------------------------------------------------------
r72 | daryam | 2005-01-19 10:59:42 -0800 (Wed, 19 Jan 2005) | 1 line
OpenEMR requires register_globals off to run properly, setting that in a .htaccess file
------------------------------------------------------------------------
r71 | daryam | 2005-01-17 10:10:59 -0800 (Mon, 17 Jan 2005) | 1 line
fixed various errors with calendaring
------------------------------------------------------------------------
r70 | daryam | 2005-01-17 10:08:18 -0800 (Mon, 17 Jan 2005) | 1 line
url escaping name
------------------------------------------------------------------------
r69 | daryam | 2005-01-17 10:00:52 -0800 (Mon, 17 Jan 2005) | 1 line
Breaking out superbill to it's own page
------------------------------------------------------------------------
r68 | daryam | 2005-01-17 09:59:39 -0800 (Mon, 17 Jan 2005) | 1 line
Added ability to set date on encounter
------------------------------------------------------------------------
r67 | daryam | 2005-01-17 09:57:44 -0800 (Mon, 17 Jan 2005) | 1 line
Added ability to assign a date to an encounter
------------------------------------------------------------------------
r66 | james | 2005-01-06 09:03:16 -0800 (Thu, 06 Jan 2005) | 2 lines
updated to work with sql ledger
------------------------------------------------------------------------
r65 | james | 2005-01-06 08:44:24 -0800 (Thu, 06 Jan 2005) | 2 lines
updated to workaround global arrray issue
------------------------------------------------------------------------
r64 | daryam | 2004-12-22 11:40:37 -0800 (Wed, 22 Dec 2004) | 1 line
new auth scheme
------------------------------------------------------------------------
r63 | daryam | 2004-12-22 11:40:09 -0800 (Wed, 22 Dec 2004) | 1 line
Code to break out superbill and seperate codes
------------------------------------------------------------------------
r62 | daryam | 2004-12-22 11:38:18 -0800 (Wed, 22 Dec 2004) | 1 line
using db sequence for encounter now
------------------------------------------------------------------------
r61 | (no author) | 2004-12-21 22:49:25 -0800 (Tue, 21 Dec 2004) | 1 line
------------------------------------------------------------------------
r60 | (no author) | 2004-12-21 22:43:28 -0800 (Tue, 21 Dec 2004) | 1 line
------------------------------------------------------------------------
r59 | (no author) | 2004-12-17 20:28:29 -0800 (Fri, 17 Dec 2004) | 1 line
------------------------------------------------------------------------
r58 | (no author) | 2004-12-17 20:27:30 -0800 (Fri, 17 Dec 2004) | 1 line
------------------------------------------------------------------------
r57 | daryam | 2004-12-16 15:54:50 -0800 (Thu, 16 Dec 2004) | 1 line
changed frameset to break out superbill
------------------------------------------------------------------------
r56 | daryam | 2004-12-16 15:54:15 -0800 (Thu, 16 Dec 2004) | 1 line
Added a back link and changed more to use self as target
------------------------------------------------------------------------
r55 | daryam | 2004-12-16 15:52:39 -0800 (Thu, 16 Dec 2004) | 1 line
Changed target of superbill to main
------------------------------------------------------------------------
r54 | daryam | 2004-12-16 15:28:50 -0800 (Thu, 16 Dec 2004) | 1 line
Can now select date of service for an encounter
------------------------------------------------------------------------
r53 | daryam | 2004-12-16 15:28:19 -0800 (Thu, 16 Dec 2004) | 1 line
added ability to pass date to addForm function
------------------------------------------------------------------------
r52 | daryam | 2004-12-16 10:49:25 -0800 (Thu, 16 Dec 2004) | 2 lines
Created branch for eHDL code line
------------------------------------------------------------------------
r51 | daryam | 2004-12-16 10:46:10 -0800 (Thu, 16 Dec 2004) | 1 line
Delete top level items, they are now in trunk
------------------------------------------------------------------------
r50 | daryam | 2004-12-16 10:41:01 -0800 (Thu, 16 Dec 2004) | 2 lines
Copy current revision into trunk, this will be the main code line now
------------------------------------------------------------------------
r49 | daryam | 2004-12-16 10:40:03 -0800 (Thu, 16 Dec 2004) | 1 line
added extra directories to track branches and main line
------------------------------------------------------------------------
r48 | daryam | 2004-11-17 13:49:42 -0800 (Wed, 17 Nov 2004) | 1 line
added state to infor passed with customer
------------------------------------------------------------------------
r47 | daryam | 2004-11-17 12:32:17 -0800 (Wed, 17 Nov 2004) | 1 line
Fixed error with ffa not carrying event title over
------------------------------------------------------------------------
r46 | daryam | 2004-11-17 09:14:31 -0800 (Wed, 17 Nov 2004) | 1 line
comment
------------------------------------------------------------------------
r45 | james | 2004-11-16 15:18:42 -0800 (Tue, 16 Nov 2004) | 2 lines
updated for findfirst dur/start hour/min
------------------------------------------------------------------------
r44 | james | 2004-11-16 15:18:04 -0800 (Tue, 16 Nov 2004) | 2 lines
pass along dur/start min/hour
------------------------------------------------------------------------
r43 | james | 2004-11-16 15:07:35 -0800 (Tue, 16 Nov 2004) | 2 lines
updated to pass dur hour/min through double book error
------------------------------------------------------------------------
r42 | james | 2004-11-16 15:07:00 -0800 (Tue, 16 Nov 2004) | 2 lines
updated so that dur min/hr get passed by double bookings
------------------------------------------------------------------------
r41 | james | 2004-11-15 10:45:44 -0800 (Mon, 15 Nov 2004) | 3 lines
find first bug fix
------------------------------------------------------------------------
r40 | daryam | 2004-11-13 11:57:31 -0800 (Sat, 13 Nov 2004) | 1 line
fixed typo in status
------------------------------------------------------------------------
r39 | daryam | 2004-11-10 11:59:29 -0800 (Wed, 10 Nov 2004) | 1 line
Added Comment function
------------------------------------------------------------------------
r38 | daryam | 2004-11-10 10:09:53 -0800 (Wed, 10 Nov 2004) | 1 line
added date of last visit
------------------------------------------------------------------------
r37 | daryam | 2004-11-09 15:44:21 -0800 (Tue, 09 Nov 2004) | 1 line
added dateoflastvisit function
------------------------------------------------------------------------
r36 | daryam | 2004-11-09 11:16:31 -0800 (Tue, 09 Nov 2004) | 1 line
added defaults
------------------------------------------------------------------------
r35 | daryam | 2004-11-08 13:34:03 -0800 (Mon, 08 Nov 2004) | 1 line
reverted to PnVar inc for time
------------------------------------------------------------------------
r34 | daryam | 2004-11-05 14:13:00 -0800 (Fri, 05 Nov 2004) | 1 line
added button to menu class
------------------------------------------------------------------------
r33 | daryam | 2004-11-05 13:55:16 -0800 (Fri, 05 Nov 2004) | 1 line
backwards logic
------------------------------------------------------------------------
r32 | daryam | 2004-11-05 13:52:43 -0800 (Fri, 05 Nov 2004) | 1 line
Fixed yet another bug in patient finder
------------------------------------------------------------------------
r31 | daryam | 2004-11-05 13:06:43 -0800 (Fri, 05 Nov 2004) | 1 line
enabled prescription faxing
------------------------------------------------------------------------
r30 | daryam | 2004-11-05 13:06:19 -0800 (Fri, 05 Nov 2004) | 1 line
Fixed patient finder bug
------------------------------------------------------------------------
r29 | daryam | 2004-11-05 12:18:01 -0800 (Fri, 05 Nov 2004) | 1 line
enabled faxing
------------------------------------------------------------------------
r28 | daryam | 2004-11-04 10:19:49 -0800 (Thu, 04 Nov 2004) | 1 line
Added signature config
------------------------------------------------------------------------
r27 | daryam | 2004-11-04 10:18:54 -0800 (Thu, 04 Nov 2004) | 1 line
added signature to printout
------------------------------------------------------------------------
r26 | daryam | 2004-11-03 18:15:04 -0800 (Wed, 03 Nov 2004) | 1 line
fixed error in FFA
------------------------------------------------------------------------
r25 | james | 2004-11-03 14:00:53 -0800 (Wed, 03 Nov 2004) | 2 lines
fixed view so that when an admin logs in the calandar view is of only thier events
------------------------------------------------------------------------
r24 | james | 2004-11-03 12:19:53 -0800 (Wed, 03 Nov 2004) | 2 lines
updated look and functionality of week view
------------------------------------------------------------------------
r23 | james | 2004-11-03 12:17:53 -0800 (Wed, 03 Nov 2004) | 2 lines
updated look and functionality of week view
------------------------------------------------------------------------
r22 | daryam | 2004-11-03 11:19:16 -0800 (Wed, 03 Nov 2004) | 1 line
changed configured back to 0
------------------------------------------------------------------------
r21 | daryam | 2004-11-03 11:15:25 -0800 (Wed, 03 Nov 2004) | 1 line
Fixed error in FFA where all needed data not carried over
------------------------------------------------------------------------
r20 | daryam | 2004-11-03 08:09:23 -0800 (Wed, 03 Nov 2004) | 1 line
removed best branch
------------------------------------------------------------------------
r19 | james | 2004-11-02 22:47:11 -0800 (Tue, 02 Nov 2004) | 2 lines
updated to really fix this time.... REALLY
------------------------------------------------------------------------
r18 | daryam | 2004-11-02 21:44:57 -0800 (Tue, 02 Nov 2004) | 1 line
tracking previous calendar page
------------------------------------------------------------------------
r17 | daryam | 2004-11-02 21:40:49 -0800 (Tue, 02 Nov 2004) | 1 line
removed branches
------------------------------------------------------------------------
r16 | daryam | 2004-11-02 21:32:21 -0800 (Tue, 02 Nov 2004) | 2 lines
import to best tree
------------------------------------------------------------------------
r15 | daryam | 2004-11-02 21:29:17 -0800 (Tue, 02 Nov 2004) | 2 lines
Import best code to tree
------------------------------------------------------------------------
r14 | daryam | 2004-11-02 21:22:05 -0800 (Tue, 02 Nov 2004) | 3 lines
Import branch from best
------------------------------------------------------------------------
r13 | daryam | 2004-11-02 21:15:19 -0800 (Tue, 02 Nov 2004) | 1 line
deleted branches
------------------------------------------------------------------------
r12 | james | 2004-11-02 21:06:58 -0800 (Tue, 02 Nov 2004) | 2 lines
updated for darya :) ... And to get the week view to work with calendar intervals
------------------------------------------------------------------------
r11 | daryam | 2004-11-02 21:05:43 -0800 (Tue, 02 Nov 2004) | 2 lines
Import of best code to our tree as branch
------------------------------------------------------------------------
r10 | daryam | 2004-11-02 20:22:33 -0800 (Tue, 02 Nov 2004) | 2 lines
Import branch
------------------------------------------------------------------------
r9 | daryam | 2004-11-02 16:54:54 -0800 (Tue, 02 Nov 2004) | 1 line
limits are tied to providers
------------------------------------------------------------------------
r8 | james | 2004-11-02 14:35:04 -0800 (Tue, 02 Nov 2004) | 2 lines
fixed edit event date so if the end day month year are 0 (no end date) changes day month year to today.
------------------------------------------------------------------------
r7 | james | 2004-11-02 14:07:05 -0800 (Tue, 02 Nov 2004) | 2 lines
updated name of day_calendar_interval to calendar_interval
------------------------------------------------------------------------
r6 | james | 2004-11-02 13:59:19 -0800 (Tue, 02 Nov 2004) | 2 lines
updated weekview to have configurable intervals and renamed the var day_calendar_interval to calendar_interval
------------------------------------------------------------------------
r5 | daryam | 2004-11-02 09:12:22 -0800 (Tue, 02 Nov 2004) | 1 line
made middlename default to ''
------------------------------------------------------------------------
r4 | daryam | 2004-11-02 08:51:53 -0800 (Tue, 02 Nov 2004) | 1 line
Tied providerid to limit
------------------------------------------------------------------------
r3 | daryam | 2004-11-01 15:06:26 -0800 (Mon, 01 Nov 2004) | 1 line
test2
------------------------------------------------------------------------
r2 | daryam | 2004-11-01 15:04:49 -0800 (Mon, 01 Nov 2004) | 1 line
test
------------------------------------------------------------------------
r1 | (no author) | 2004-11-01 14:44:02 -0800 (Mon, 01 Nov 2004) | 2 lines
Initial import of openemr to the new subversion server
------------------------------------------------------------------------
Changes from 2.7.2 until 2.7.3-rc1:
--
Working file: INSTALL
date: 2005/10/24 16:22:41; author: sunsetsystems; state: Exp; lines: +10 -7
added and revised some notes about directories
date: 2005/09/29 15:23:27; author: sunsetsystems; state: Exp; lines: +2 -2
added phpGACL setup utility
--
Working file: acl_setup.php
date: 2005/10/21 00:51:41; author: andres_paglayan; state: Exp; lines: +170 -169
batchcom authorization added for admin
date: 2005/10/20 01:22:04; author: sunsetsystems; state: Exp; lines: +2 -1
added ability (for superuser only) to delete patients, encounters, issues
date: 2005/09/29 15:23:27; author: sunsetsystems; state: Exp;
added phpGACL setup utility
--
Working file: setup.php
date: 2005/10/26 18:07:48; author: andres_paglayan; state: Exp; lines: +9 -0
some info added
date: 2005/10/05 00:08:49; author: sunsetsystems; state: Exp; lines: +33 -37
fixed a couple of silly display errors
--
Working file: Documentation/README.phpgacl
date: 2005/09/29 15:23:27; author: sunsetsystems; state: Exp; lines: +26 -42
added phpGACL setup utility
date: 2005/08/04 22:28:29; author: sunsetsystems; state: Exp; lines: +8 -4
phpgacl implementation updates
date: 2005/08/02 23:53:46; author: sunsetsystems; state: Exp;
initial checkin
--
Working file: Documentation/modifications.txt
date: 2005/06/23 05:28:00; author: drbowen; state: Exp; lines: +0 -0
Initial import.
--
Working file: accounting/README.sql-ledger
date: 2005/06/01 13:57:19; author: sunsetsystems; state: Exp;
branches: 1.1.1;
--
Working file: accounting/sql-ledger.conf
date: 2005/06/01 13:57:19; author: sunsetsystems; state: Exp;
branches: 1.1.1;
--
Working file: accounting/ws_server.pl
date: 2005/06/01 13:57:19; author: sunsetsystems; state: Exp;
branches: 1.1.1;
--
Working file: contrib/forms/assessment_intake/info.txt
date: 2005/10/22 19:23:42; author: sunsetsystems; state: Exp;
new form from jim proctor
--
Working file: contrib/forms/clinical_notes/info.txt
date: 2005/10/05 00:12:20; author: sunsetsystems; state: Exp;
initial checkin
--
Working file: contrib/forms/podiatry/info.txt
date: 2005/10/20 22:27:51; author: sunsetsystems; state: Exp;
initial checkin
--
Working file: contrib/forms/podiatry/report.php
date: 2005/10/28 05:19:12; author: sunsetsystems; state: Exp; lines: +1 -0
force just one column
date: 2005/10/20 22:27:51; author: sunsetsystems; state: Exp;
initial checkin
--
Working file: contrib/forms/soccer_injury/info.txt
date: 2005/08/02 23:51:33; author: sunsetsystems; state: Exp;
new encounter form
--
Working file: contrib/forms/specialist_notes/info.txt
date: 2005/10/05 00:12:20; author: sunsetsystems; state: Exp;
initial checkin
--
Working file: contrib/forms/sports_fitness/info.txt
date: 2005/08/02 23:51:33; author: sunsetsystems; state: Exp;
new encounter form
--
Working file: contrib/forms/well_child/FormWellChild.class.php
date: 2005/08/24 14:49:47; author: tekknogenius; state: Exp; lines: +2 -2
corrected typo and logic error
--
Working file: contrib/forms/well_child/report.php
date: 2005/08/24 14:49:47; author: tekknogenius; state: Exp; lines: +1 -1
corrected typo and logic error
--
Working file: contrib/forms/well_infant/report.php
date: 2005/08/24 14:51:33; author: tekknogenius; state: Exp; lines: +1 -1
corrected table name from form_weel_child to form_well_infant
--
Working file: contrib/util/backup_oemr.sh
date: 2005/08/29 22:20:10; author: andres_paglayan; state: Exp; lines: +5 -1
added bzip and newer-than date to the tar part of the script.
date: 2005/08/01 19:38:18; author: andres_paglayan; state: Exp; lines: +13 -15
dump for sql-ledger added
date: 2005/07/25 22:41:58; author: andres_paglayan; state: Exp;
This file is a basic script than can be cronned to backup an openemr sys to a cd
--
Working file: controllers/C_InsuranceNumbers.class.php
date: 2005/07/16 15:07:09; author: tekknogenius; state: Exp; lines: +0 -1
removed extra line at end of file, caused header info being sent
date: 2005/07/06 02:38:55; author: tekknogenius; state: Exp; lines: +112 -104
Added rendering provider number and type
--
Working file: controllers/C_Prescription.class.php
date: 2005/07/16 15:08:44; author: tekknogenius; state: Exp; lines: +8 -3
configurable paper size and margins via config.php
date: 2005/06/25 17:09:26; author: tekknogenius; state: Exp; lines: +2 -2
fixed typo elseif to else
date: 2005/06/10 16:16:40; author: andres_paglayan; state: Exp; lines: +5 -2
little logic fixed in auto send at send_action_process function
--
Working file: custom/code_types.inc.php
date: 2005/10/17 17:07:23; author: sunsetsystems; state: Exp; lines: +4 -2
added ucsmc codes for uk sports medicine
date: 2005/08/12 05:29:10; author: sunsetsystems; state: Exp; lines: +2 -1
added physiotherapy codes for sports medicine
date: 2005/06/06 18:04:01; author: sunsetsystems; state: Exp;
branches: 1.1.1;
--
Working file: custom/export_xml.php
date: 2005/08/26 17:11:35; author: sunsetsystems; state: Exp;
added xml-based patient export and import
--
Working file: custom/import_xml.php
date: 2005/09/01 16:51:25; author: sunsetsystems; state: Exp; lines: +3 -0
implemented squads as access control objects
date: 2005/08/26 17:11:35; author: sunsetsystems; state: Exp;
added xml-based patient export and import
--
Working file: images/space.gif
date: 2005/10/23 01:17:58; author: sunsetsystems; state: Exp;
from jim proctor for assessment_intake form
--
Working file: includes/config.php
date: 2005/08/10 06:19:34; author: sunsetsystems; state: Exp; lines: +4 -4
more sensible default settings
date: 2005/07/16 15:08:45; author: tekknogenius; state: Exp; lines: +17 -3
configurable paper size and margins via config.php
date: 2005/06/25 20:32:42; author: tekknogenius; state: Exp; lines: +3 -1
Added option to use signature graphic or not instead of testing if the signature graphic existed
--
Working file: interface/globals.php
date: 2005/07/08 15:10:18; author: sunsetsystems; state: Exp; lines: +4 -5
adding appointment status and option to include appt title in calendar display
date: 2005/07/03 07:19:52; author: sunsetsystems; state: Exp; lines: +2 -2
version bump to 2.7.3-rc1
date: 2005/06/20 17:44:24; author: sunsetsystems; state: Exp; lines: +5 -3
updates for support of team sports medicine
date: 2005/06/14 12:20:15; author: sunsetsystems; state: Exp; lines: +5 -0
rewrote display and editing of medical problems, allergies, medications and surgeries
date: 2005/06/03 12:56:50; author: tekknogenius; state: Exp; lines: +1 -1
Removed the 'rc2' from the tag
--
Working file: interface/login_screen.php
date: 2005/09/29 15:25:38; author: sunsetsystems; state: Exp; lines: +8 -8
work around mozilla bug with onload and https
--
Working file: interface/batchcom/batchCSV.php
date: 2005/10/21 19:00:17; author: andres_paglayan; state: Exp; lines: +1 -1
other features added
date: 2005/10/21 00:54:28; author: andres_paglayan; state: Exp;
initial commit for batchcom module
--
Working file: interface/batchcom/batchEmail.php
date: 2005/10/21 19:49:59; author: andres_paglayan; state: Exp; lines: +4 -0
table registry added
date: 2005/10/21 19:00:17; author: andres_paglayan; state: Exp; lines: +51 -2
other features added
date: 2005/10/21 00:54:28; author: andres_paglayan; state: Exp;
initial commit for batchcom module
--
Working file: interface/batchcom/batchPhoneList.php
date: 2005/10/21 19:00:17; author: andres_paglayan; state: Exp; lines: +41 -1
other features added
date: 2005/10/21 00:54:28; author: andres_paglayan; state: Exp;
initial commit for batchcom module
--
Working file: interface/batchcom/batchcom.css
date: 2005/10/21 00:54:28; author: andres_paglayan; state: Exp;
initial commit for batchcom module
--
Working file: interface/batchcom/batchcom.inc.php
date: 2005/10/21 19:49:59; author: andres_paglayan; state: Exp; lines: +44 -25
table registry added
date: 2005/10/21 00:54:28; author: andres_paglayan; state: Exp;
initial commit for batchcom module
--
Working file: interface/batchcom/batchcom.php
date: 2005/10/21 19:00:17; author: andres_paglayan; state: Exp; lines: +12 -0
other features added
date: 2005/10/21 00:54:28; author: andres_paglayan; state: Exp;
initial commit for batchcom module
--
Working file: interface/billing/billing_process.php
date: 2005/10/17 17:14:27; author: sunsetsystems; state: Exp; lines: +6 -2
added ub-92 support
date: 2005/06/06 17:51:59; author: sunsetsystems; state: Exp; lines: +3 -5
ignore deleted items
--
Working file: interface/billing/billing_report.php
date: 2005/10/17 17:14:27; author: sunsetsystems; state: Exp; lines: +9 -5
added ub-92 support
date: 2005/06/06 18:04:01; author: sunsetsystems; state: Exp; lines: +3 -1
implemented customization of billing code types
--
Working file: interface/billing/sl_eob_help.php
date: 2005/06/25 17:16:46; author: sunsetsystems; state: Exp; lines: +25 -15
use insurance-done flags to track who is responsible for payment rather than relying on due dates
--
Working file: interface/billing/sl_eob_invoice.php
date: 2005/07/18 21:46:15; author: sunsetsystems; state: Exp; lines: +1 -0
added "bad check" as an adjustment reason
date: 2005/06/25 17:16:46; author: sunsetsystems; state: Exp; lines: +24 -8
use insurance-done flags to track who is responsible for payment rather than relying on due dates
date: 2005/06/20 17:41:46; author: sunsetsystems; state: Exp; lines: +103 -18
misc improvements
date: 2005/06/14 12:03:28; author: sunsetsystems; state: Exp; lines: +67 -10
improved tracking of insurance during searching and posting
date: 2005/06/06 18:04:01; author: sunsetsystems; state: Exp; lines: +66 -4
implemented customization of billing code types
--
Working file: interface/billing/sl_eob_search.php
date: 2005/06/25 17:16:46; author: sunsetsystems; state: Exp; lines: +38 -27
use insurance-done flags to track who is responsible for payment rather than relying on due dates
date: 2005/06/20 17:41:46; author: sunsetsystems; state: Exp; lines: +21 -4
misc improvements
date: 2005/06/14 12:03:28; author: sunsetsystems; state: Exp; lines: +18 -1
improved tracking of insurance during searching and posting
date: 2005/06/06 17:58:31; author: sunsetsystems; state: Exp; lines: +30 -5
enhancements for patient statements and showing everything due
--
Working file: interface/forms/ankleinjury/report.php
date: 2005/06/23 17:39:11; author: sunsetsystems; state: Exp; lines: +28 -23
fixed some display and logic bugs
--
Working file: interface/forms/fee_sheet/codes.php
date: 2005/06/06 18:04:02; author: sunsetsystems; state: Exp; lines: +12 -11
implemented customization of billing code types
--
Working file: interface/forms/fee_sheet/new.php
date: 2005/10/17 17:10:31; author: sunsetsystems; state: Exp; lines: +13 -5
added ucsmc codes for uk sports medicine; allow selection of providers not in the calendar
date: 2005/07/03 07:20:53; author: sunsetsystems; state: Exp; lines: +5 -2
allow cpt4 codes in opcs lists
date: 2005/06/06 18:04:02; author: sunsetsystems; state: Exp; lines: +60 -52
implemented customization of billing code types
--
Working file: interface/forms/fee_sheet/view.php
date: 2005/10/17 17:10:42; author: sunsetsystems; state: Exp; lines: +13 -5
added ucsmc codes for uk sports medicine; allow selection of providers not in the calendar
date: 2005/07/03 07:20:54; author: sunsetsystems; state: Exp; lines: +5 -2
allow cpt4 codes in opcs lists
date: 2005/06/06 18:04:02; author: sunsetsystems; state: Exp; lines: +60 -52
implemented customization of billing code types
--
Working file: interface/forms/newpatient/new.php
date: 2005/10/20 01:19:03; author: sunsetsystems; state: Exp; lines: +17 -0
better permissions checking
date: 2005/09/09 18:54:14; author: sunsetsystems; state: Exp; lines: +5 -0
simplified adding/removing issue types and added dental as a type
date: 2005/08/28 16:59:52; author: sunsetsystems; state: Exp; lines: +45 -11
use improved date selectors
date: 2005/08/12 05:23:57; author: sunsetsystems; state: Exp; lines: +1 -1
work around ie bug
date: 2005/07/18 21:49:05; author: sunsetsystems; state: Exp; lines: +129 -67
added ability to select related issues
--
Working file: interface/forms/newpatient/save.php
date: 2005/08/28 16:59:52; author: sunsetsystems; state: Exp; lines: +13 -8
use improved date selectors
date: 2005/07/18 21:49:43; author: sunsetsystems; state: Exp; lines: +46 -38
added ability to select related issues
--
Working file: interface/forms/newpatient/view.php
date: 2005/09/09 18:54:14; author: sunsetsystems; state: Exp; lines: +5 -0
simplified adding/removing issue types and added dental as a type
date: 2005/08/28 16:59:52; author: sunsetsystems; state: Exp; lines: +52 -18
use improved date selectors
date: 2005/08/12 05:24:12; author: sunsetsystems; state: Exp; lines: +1 -1
work around ie bug
date: 2005/07/18 21:49:15; author: sunsetsystems; state: Exp; lines: +149 -76
added ability to select related issues
date: 2005/06/06 18:01:14; author: sunsetsystems; state: Exp; lines: +5 -4
put changing of encounter dates under access control
--
Working file: interface/forms/soap/report.php
date: 2005/10/28 05:18:57; author: sunsetsystems; state: Exp; lines: +23 -22
force just one column
--
Working file: interface/main/main_navigation.php
date: 2005/09/09 18:54:14; author: sunsetsystems; state: Exp; lines: +10 -2
simplified adding/removing issue types and added dental as a type
date: 2005/08/04 22:28:29; author: sunsetsystems; state: Exp; lines: +7 -1
phpgacl implementation updates
date: 2005/06/12 20:57:33; author: sunsetsystems; state: Exp; lines: +1 -1
allow lastname,firstname in patient search
--
Working file: interface/main/main_screen.php
date: 2005/07/05 22:38:43; author: sunsetsystems; state: Exp; lines: +20 -49
new code to manage appointments and other calendar events with popup windows
date: 2005/07/03 07:27:16; author: sunsetsystems; state: Exp; lines: +19 -20
for sports team use show the player roster initially instead of the calendar
--
Working file: interface/main/authorizations/authorizations.php
date: 2005/07/05 22:38:43; author: sunsetsystems; state: Exp; lines: +2 -30
new code to manage appointments and other calendar events with popup windows
--
Working file: interface/main/calendar/add_edit_event.php
date: 2005/08/12 05:25:20; author: sunsetsystems; state: Exp; lines: +6 -4
use default durations from categories
date: 2005/07/08 15:10:18; author: sunsetsystems; state: Exp; lines: +49 -10
adding appointment status and option to include appt title in calendar display
date: 2005/07/05 22:35:51; author: sunsetsystems; state: Exp;
new code to manage appointments and other calendar events with popup windows
--
Working file: interface/main/calendar/find_appt_popup.php
date: 2005/07/05 22:35:51; author: sunsetsystems; state: Exp;
new code to manage appointments and other calendar events with popup windows
--
Working file: interface/main/calendar/find_patient.php
date: 2005/06/12 20:57:33; author: sunsetsystems; state: Exp; lines: +1 -1
allow lastname,firstname in patient search
--
Working file: interface/main/calendar/find_patient_popup.php
date: 2005/07/05 22:35:51; author: sunsetsystems; state: Exp;
new code to manage appointments and other calendar events with popup windows
--
Working file: interface/main/calendar/modules/PostCalendar/pnuser.php
date: 2005/07/01 01:36:17; author: sunsetsystems; state: Exp; lines: +212 -208
hopefully all-day events will work now
--
Working file: interface/main/calendar/modules/PostCalendar/pnuserapi.php
date: 2005/07/08 15:10:18; author: sunsetsystems; state: Exp; lines: +404 -413
adding appointment status and option to include appt title in calendar display
--
Working file: interface/main/calendar/modules/PostCalendar/pntemplates/default/views/day/default.html
date: 2005/07/08 15:10:18; author: sunsetsystems; state: Exp; lines: +8 -3
adding appointment status and option to include appt title in calendar display
date: 2005/07/05 22:37:40; author: sunsetsystems; state: Exp; lines: +27 -20
new code to manage appointments and other calendar events with popup windows
date: 2005/06/30 23:50:33; author: sunsetsystems; state: Exp; lines: +1 -1
oops, fix to last fix
date: 2005/06/30 23:30:59; author: sunsetsystems; state: Exp; lines: +5 -4
fixed time comparison bug
--
Working file: interface/main/calendar/modules/PostCalendar/pntemplates/default/views/week/default.html
date: 2005/07/08 15:10:18; author: sunsetsystems; state: Exp; lines: +8 -3
adding appointment status and option to include appt title in calendar display
date: 2005/07/05 22:37:40; author: sunsetsystems; state: Exp; lines: +27 -20
new code to manage appointments and other calendar events with popup windows
date: 2005/06/30 23:50:33; author: sunsetsystems; state: Exp; lines: +1 -1
oops, fix to last fix
date: 2005/06/30 23:30:59; author: sunsetsystems; state: Exp; lines: +5 -4
fixed time comparison bug
--
Working file: interface/main/finder/finder_navigation.php
date: 2005/06/12 20:57:33; author: sunsetsystems; state: Exp; lines: +1 -1
allow lastname,firstname in patient search
--
Working file: interface/new/new.php
date: 2005/08/26 17:10:06; author: sunsetsystems; state: Exp; lines: +73 -52
cosmetics
--
Working file: interface/new/new_patient_save.php
date: 2005/08/26 17:10:06; author: sunsetsystems; state: Exp; lines: +71 -66
cosmetics
--
Working file: interface/patient_file/deleter.php
date: 2005/10/24 18:23:09; author: sunsetsystems; state: Exp; lines: +3 -1
misc cosmetic cleanups for sports team use
date: 2005/10/20 01:22:04; author: sunsetsystems; state: Exp;
added ability (for superuser only) to delete patients, encounters, issues
--
Working file: interface/patient_file/navigation.php
date: 2005/09/29 15:28:17; author: sunsetsystems; state: Exp; lines: +1 -0
added appointments report
date: 2005/08/26 17:11:35; author: sunsetsystems; state: Exp; lines: +8 -6
added xml-based patient export and import
date: 2005/08/10 06:17:10; author: sunsetsystems; state: Exp; lines: +7 -1
access control updates
date: 2005/07/28 16:02:34; author: sunsetsystems; state: Exp; lines: +37 -40
workaround for ie formatting bug
date: 2005/07/18 21:52:31; author: sunsetsystems; state: Exp; lines: +9 -5
use modal dialog support
date: 2005/06/20 17:44:24; author: sunsetsystems; state: Exp; lines: +6 -2
updates for support of team sports medicine
--
Working file: interface/patient_file/patient_file.php
date: 2005/07/05 22:39:11; author: sunsetsystems; state: Exp; lines: +3 -3
new code to manage appointments and other calendar events with popup windows
--
Working file: interface/patient_file/problem_encounter.php
date: 2005/09/01 16:51:25; author: sunsetsystems; state: Exp; lines: +5 -2
implemented squads as access control objects
date: 2005/08/10 06:17:10; author: sunsetsystems; state: Exp; lines: +12 -1
access control updates
date: 2005/07/18 21:51:56; author: sunsetsystems; state: Exp; lines: +74 -30
simplification
date: 2005/06/14 12:20:16; author: sunsetsystems; state: Exp; lines: +3 -0
rewrote display and editing of medical problems, allergies, medications and surgeries
--
Working file: interface/patient_file/encounter/coding.php
date: 2005/07/03 07:23:10; author: sunsetsystems; state: Exp; lines: +1 -1
renamed Billing to Coding in some places for non-US sites
date: 2005/06/06 18:04:02; author: sunsetsystems; state: Exp; lines: +6 -12
implemented customization of billing code types
--
Working file: interface/patient_file/encounter/cptcm_codes.php
date: 2005/06/06 18:19:41; author: sunsetsystems; state: dead; lines: +0 -0
implemented customization of billing code types
--
Working file: interface/patient_file/encounter/diagnosis.php
date: 2005/09/01 16:51:25; author: sunsetsystems; state: Exp; lines: +5 -9
implemented squads as access control objects
date: 2005/08/04 22:28:29; author: sunsetsystems; state: Exp; lines: +21 -6
phpgacl implementation updates
date: 2005/07/03 07:23:10; author: sunsetsystems; state: Exp; lines: +1 -1
renamed Billing to Coding in some places for non-US sites
--
Working file: interface/patient_file/encounter/forms.php
date: 2005/10/24 18:23:09; author: sunsetsystems; state: Exp; lines: +9 -50
misc cosmetic cleanups for sports team use
date: 2005/10/20 01:22:04; author: sunsetsystems; state: Exp; lines: +24 -1
added ability (for superuser only) to delete patients, encounters, issues
date: 2005/09/01 16:51:25; author: sunsetsystems; state: Exp; lines: +4 -1
implemented squads as access control objects
date: 2005/08/04 22:28:29; author: sunsetsystems; state: Exp; lines: +51 -46
phpgacl implementation updates
date: 2005/06/23 17:37:17; author: sunsetsystems; state: Exp; lines: +51 -29
use the encounter form's report.php instead of an ugly generic table dump to generate its summary
--
Working file: interface/patient_file/encounter/hcpcs_codes.php
date: 2005/06/06 18:19:41; author: sunsetsystems; state: dead; lines: +0 -0
implemented customization of billing code types
--
Working file: interface/patient_file/encounter/icd9cm_codes.php
date: 2005/06/06 18:19:41; author: sunsetsystems; state: dead; lines: +0 -0
implemented customization of billing code types
--
Working file: interface/patient_file/encounter/new_form.php
date: 2005/07/03 07:23:10; author: sunsetsystems; state: Exp; lines: +5 -8
renamed Billing to Coding in some places for non-US sites
--
Working file: interface/patient_file/encounter/search_code.php
date: 2005/06/06 18:04:03; author: sunsetsystems; state: Exp;
branches: 1.1.1;
--
Working file: interface/patient_file/encounter/superbill_codes.php
date: 2005/06/06 18:04:03; author: sunsetsystems; state: Exp; lines: +38 -80
implemented customization of billing code types
--
Working file: interface/patient_file/encounter/superbill_custom_full.php
date: 2005/06/06 18:04:03; author: sunsetsystems; state: Exp; lines: +36 -41
implemented customization of billing code types
--
Working file: interface/patient_file/history/encounters.php
date: 2005/10/28 05:16:05; author: sunsetsystems; state: Exp; lines: +51 -30
add user column and encounter form info
date: 2005/10/20 01:22:04; author: sunsetsystems; state: Exp; lines: +20 -12
added ability (for superuser only) to delete patients, encounters, issues
date: 2005/09/09 18:54:14; author: sunsetsystems; state: Exp; lines: +6 -25
simplified adding/removing issue types and added dental as a type
date: 2005/09/01 16:51:25; author: sunsetsystems; state: Exp; lines: +4 -0
implemented squads as access control objects
date: 2005/08/12 05:26:32; author: sunsetsystems; state: Exp; lines: +4 -4
always show encounter reason
date: 2005/08/10 06:17:10; author: sunsetsystems; state: Exp; lines: +15 -8
access control updates
date: 2005/08/04 22:28:29; author: sunsetsystems; state: Exp; lines: +59 -32
phpgacl implementation updates
date: 2005/07/18 21:56:00; author: sunsetsystems; state: Exp; lines: +87 -50
added an issues column
date: 2005/07/03 07:23:10; author: sunsetsystems; state: Exp; lines: +1 -1
renamed Billing to Coding in some places for non-US sites
--
Working file: interface/patient_file/history/encounters_full.php
date: 2005/10/28 05:16:15; author: sunsetsystems; state: Exp; lines: +97 -26
add user column and encounter form info
date: 2005/10/20 01:20:43; author: sunsetsystems; state: Exp; lines: +21 -13
better permissions checking
date: 2005/09/01 16:51:25; author: sunsetsystems; state: Exp; lines: +4 -0
implemented squads as access control objects
date: 2005/08/12 05:26:41; author: sunsetsystems; state: Exp; lines: +4 -4
always show encounter reason
date: 2005/08/10 06:17:10; author: sunsetsystems; state: Exp; lines: +8 -1
access control updates
date: 2005/08/04 22:28:29; author: sunsetsystems; state: Exp; lines: +57 -38
phpgacl implementation updates
--
Working file: interface/patient_file/history/history.inc.php
date: 2005/07/03 07:18:03; author: sunsetsystems; state: Exp;
new and improved history data
--
Working file: interface/patient_file/history/history.php
date: 2005/09/01 16:51:25; author: sunsetsystems; state: Exp; lines: +5 -0
implemented squads as access control objects
date: 2005/08/04 22:28:29; author: sunsetsystems; state: Exp; lines: +18 -8
phpgacl implementation updates
date: 2005/07/03 07:18:03; author: sunsetsystems; state: Exp; lines: +74 -99
new and improved history data
--
Working file: interface/patient_file/history/history_full.php
date: 2005/09/01 16:51:25; author: sunsetsystems; state: Exp; lines: +5 -0
implemented squads as access control objects
date: 2005/08/04 22:28:29; author: sunsetsystems; state: Exp; lines: +9 -3
phpgacl implementation updates
date: 2005/07/03 07:18:03; author: sunsetsystems; state: Exp; lines: +112 -126
new and improved history data
--
Working file: interface/patient_file/history/history_save.php
date: 2005/09/01 16:51:25; author: sunsetsystems; state: Exp; lines: +5 -0
implemented squads as access control objects
date: 2005/08/04 22:28:29; author: sunsetsystems; state: Exp; lines: +9 -3
phpgacl implementation updates
date: 2005/07/03 07:18:03; author: sunsetsystems; state: Exp; lines: +17 -5
new and improved history data
--
Working file: interface/patient_file/report/custom_report.php
date: 2005/10/21 20:42:01; author: andres_paglayan; state: Exp; lines: +1 -1
*** empty log message ***
date: 2005/10/21 20:41:23; author: andres_paglayan; state: Exp; lines: +10 -0
batchcom added
date: 2005/08/02 23:46:54; author: sunsetsystems; state: Exp; lines: +249 -204
improved layout and ordering
--
Working file: interface/patient_file/report/full_report.php
date: 2005/10/21 22:30:19; author: andres_paglayan; state: Exp; lines: +10 -1
batchom support
--
Working file: interface/patient_file/report/patient_report.php
date: 2005/10/21 20:41:23; author: andres_paglayan; state: Exp; lines: +1 -0
batchcom added
date: 2005/09/09 18:54:14; author: sunsetsystems; state: Exp; lines: +6 -0
simplified adding/removing issue types and added dental as a type
date: 2005/08/02 23:46:54; author: sunsetsystems; state: Exp; lines: +163 -77
improved layout and ordering
--
Working file: interface/patient_file/report/print_custom_report.php
date: 2005/10/16 11:34:50; author: tekknogenius; state: Exp; lines: +2 -2
undoe the === to == (realized they were correct in php)
date: 2005/10/16 11:20:11; author: tekknogenius; state: Exp; lines: +2 -2
corrected === to == in two if statements
date: 2005/08/02 23:46:54; author: sunsetsystems; state: Exp; lines: +266 -209
improved layout and ordering
--
Working file: interface/patient_file/summary/add_edit_issue.php
date: 2005/10/20 01:22:04; author: sunsetsystems; state: Exp; lines: +19 -0
added ability (for superuser only) to delete patients, encounters, issues
date: 2005/10/17 17:08:15; author: sunsetsystems; state: Exp; lines: +2 -1
added ucsmc codes for uk sports medicine
date: 2005/09/09 18:54:14; author: sunsetsystems; state: Exp; lines: +6 -13
simplified adding/removing issue types and added dental as a type
date: 2005/09/01 16:51:25; author: sunsetsystems; state: Exp; lines: +4 -0
implemented squads as access control objects
date: 2005/08/04 22:28:29; author: sunsetsystems; state: Exp; lines: +5 -0
phpgacl implementation updates
date: 2005/07/18 21:57:16; author: sunsetsystems; state: Exp; lines: +50 -9
added diagnosis selection
date: 2005/06/14 12:20:16; author: sunsetsystems; state: Exp;
branches: 1.1.1;
--
Working file: interface/patient_file/summary/allergies.php
date: 2005/06/14 12:20:16; author: sunsetsystems; state: dead; lines: +0 -0
rewrote display and editing of medical problems, allergies, medications and surgeries
--
Working file: interface/patient_file/summary/clickoptions1.php
date: 2005/06/14 12:20:16; author: sunsetsystems; state: dead; lines: +0 -0
rewrote display and editing of medical problems, allergies, medications and surgeries
--
Working file: interface/patient_file/summary/clickoptions2.php
date: 2005/06/14 12:20:16; author: sunsetsystems; state: dead; lines: +0 -0
rewrote display and editing of medical problems, allergies, medications and surgeries
--
Working file: interface/patient_file/summary/demographics.php
date: 2005/10/24 18:23:09; author: sunsetsystems; state: Exp; lines: +3 -1
misc cosmetic cleanups for sports team use
date: 2005/10/20 01:22:04; author: sunsetsystems; state: Exp; lines: +20 -1