forked from elexis/elexis-3-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangelog
2156 lines (2137 loc) · 275 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
# Generated by update_changelog.rb on 2020.02.25
# similar to git log --date=iso --pretty=format:'%H %ad %an %s' release/3.0.25..release/3.1.0
397 commits between origin/3.7 (2018.12.11) and release/3.8 (2020.02.26)
------------------------------------------------------------------------
number changes by authors are
209: thomashu
115: Marco Descher
33: Niklaus Giger
23: slogic-sa
10: thomas
4: DavidGutknecht
3: d-roesch
------------------------------------------------------------------------
add6feea2b59f66e3f9db81b9aecc7de2ae0bdde 2020-02-23 20:20:31 +0100 slogic-sa [18117] Neuer Import / Edit Dialog für Dokumtente View (#211)
621460673a8656abbed6768e6f3981a0cbea9390 2020-02-20 10:34:46 +0100 Marco Descher [18243] Implement HL7FileArchive command
6c8d9c78bb17ba281923306d0d86ab3678a89cf5 2020-02-19 18:28:22 +0100 thomashu [18163] added open esr with invoice id command, removed event listener
543eb78d2b07436444a1af170b4768dd0ea240cf 2020-02-18 15:02:37 +0100 thomashu [18041] run UpdateLabItemCode once on medics import
a7396f22f0e029f151dd57b170f0b2edb477e300 2020-02-18 14:34:24 +0100 Marco Descher [18243] Make ImportFileRunable available via command
bfbc0d2022d57fe7049f48014fd460aead4e13ce 2020-02-18 12:37:18 +0100 thomashu [18242] removed medics from translations of viollier lab importer
b0a40416d466dd5a73359c8c8409299595247e2d 2020-02-17 16:42:59 +0100 thomashu [18163] added Zahlung selection filter ESR by Rechnung, load using job
a8f6b3e1c5dd3d3b057b1716c3357af7eed6e919 2020-02-11 09:58:59 +0100 thomashu [17449] add selling size impl to artikelstamm
556796b50729b1f4b0a2df60e9643aabc006db85 2020-02-10 16:53:20 +0100 thomashu [18128] update patient in tiers_garant of tarmed xml on each output
3fc6839e0c68b6b7640082faf8d212676416d9ab 2020-02-10 13:34:50 +0100 thomashu [18128] update guarantor in tiers_garant of tarmed xml on each output
84d5f2457773326466061c1fa38105814246ce47 2020-02-04 17:45:48 +0100 thomashu [18084] use tarmed IRnOutputter impl to output a reclaim document
a9fd1b810f6dcfa324305ff5b5974c6012bfee10 2020-02-04 17:43:34 +0100 thomashu [18084] added configuration if tarmed printer via properties
55e0c3c79a3df2813ad81fb596d806ec402f0416 2020-02-04 17:39:58 +0100 thomashu [14899] fixed tarmed print templates urls, removed complementary urls
c9cd11be07bc7faf07b27ff15504c0f8a4f3d5f9 2020-02-03 17:00:25 +0100 thomashu [18041] added dbcheck maintenance tool to update code of medics labitems
99f2f3b6f830830da490b7d2c3516ba5713c1111 2020-02-03 11:30:15 +0100 Marco Descher [18018] Fix test for tycho 1.6 on os x
6fdcf6667a74b516f0d114f933a55427710ed8f2 2020-02-03 11:29:47 +0100 Marco Descher [18013] tasks integration test, incoming from core
93e8caf8cb7d06e9f7bfbbf770b558a237b875b1 2020-01-31 14:37:32 +0100 thomashu [18041] changed medics v2 importer to use importer div MultiFileParser
a1a48676cfc76f55278f07c186840d25c931b930 2020-01-29 13:12:43 +0100 thomashu do not access null value of ESR5OR9 from extinfo of biller
63c205021303c15e4661c86ea5515acab371de09 2020-01-29 13:00:12 +0100 thomashu [17500] updated medietikette menu visible when extensions
cdc3478ea6ab9a1cf57425a2a8bcf676d9902816 2020-01-29 11:21:44 +0100 thomashu [17500] updated medietikette data accessor to core model interfaces
b20b82218d56198310aa46950910c88b458bbd8e 2020-01-29 10:51:07 +0100 Marco Descher [18018] Update Tycho 1.6, build test run on OS X
69a4db87a0ce192fe02230eb820b3e980761deaa 2020-01-28 10:45:29 +0100 thomashu [17465] fixed swissmedic search of selected medication, added messages
e4419eab5b7257817da36bfceb296dcfb55c924c 2020-01-24 11:17:06 +0100 thomashu [17460] fixed icpc CodeSelectorFactory filter
3d80275d3f962a812d9c6fbfea792d05ebf3ffdf 2020-01-23 10:41:53 +0100 thomashu [17805] added TkgSch private field, make use of private fields on import
5f3744b3fcab22fb42ca470fba782a466ab089bf 2020-01-20 13:34:49 +0100 thomashu [17873] added patient card info to tarmed xml and updated veka info
61c80804ba2d3dac3e13ef09ed2657be81cb8ca6 2020-01-14 10:10:06 +0100 thomashu [17805] add optional desc private field to emediplan for blue medication
c626187af369405a666f7a41c56aa337bf754268 2020-01-10 14:37:57 +0100 thomashu [17805] emediplan use D for posology and add desc field for blackboxed
3189732cd8188bcd5849a98e2c76e4fd81a111a1 2020-01-10 12:48:51 +0100 Marco Descher Update gitlab build badge link
0888517fe096e3b8006f3e641372c93e13a23ffd 2020-01-09 13:53:11 +0100 thomashu [17805] always use TT element for emediplan posology
237885ee3ecc68a72766735478d122f2f697980e 2020-01-08 13:08:01 +0100 thomashu [17711] added optional URIResolver to IFormattedOutput implementations
178a4352573e33ff75865c67d4e5ae96ed65fbfc 2020-01-07 16:45:20 +0100 thomashu [17711] add salutation attribute to person based on gender
804e9363ccc5b04b28faf4d2cd5e941cf5710e89 2020-01-04 12:03:41 +0100 thomashu [17453] fixed saving databinding values of artikelstammitem properties
462d6aef80260b8c4f29f916478170d721bf7149 2019-12-09 12:25:34 +0100 Marco Descher [9918] Adapt KassenbuchDruckDialog
853a0c5c3705721415834132d437d7f1c76db051 2019-12-09 10:13:06 +0100 slogic-sa [9918] CoreHub.actUser soll nicht Anwender sondern IUser sein (#210)
8421204a91875c3e5c23d766f95e116a548e9d49 2019-12-06 13:15:43 +0100 thomashu [17370] fixed getting external of DefaultFileCommPartner anon sub class
9c6027e0f6612a0c0079139ea7edc1707ea2e335 2019-12-06 12:51:01 +0100 thomashu [17370] added logging if external program is not executable
d8f341425a4a508f3c2994acd6aaab72202eb796 2019-12-06 11:41:41 +0100 thomashu [17370] added logging if external program is not executable
029f81f11c90f892380252f1063839b06fbeb139 2019-12-06 11:11:46 +0100 thomashu [17370] added logging if external program is not executable
82f5e9186eb5084f2ce28b35be21501ce7641f96 2019-12-06 10:13:16 +0100 thomashu [17370] added logging if external program is not executable
e1bc7927cb9e89e1fd90cc34f0bf5a24017ed53d 2019-12-06 10:06:54 +0100 thomashu [17370] added slf4j logging to GDTOutputHandler
79e7536b65fd6e060dfa5e951bf1ed7d911a9c8e 2019-12-05 16:25:22 +0100 thomashu [14587] get po patient from patient view selection for gdt commands
d56441d1550505ebb64e94d1c5a377a8ab6d7f40 2019-12-05 16:19:45 +0100 thomashu [17357] added handler program type, made it useable in gdt defaultfilecp
a170c80302104d58bfd13b005e6c3fad032b4a4e 2019-12-04 15:16:42 +0100 thomashu [16426] update to new ehc release including tests
7aff5d8241e3450d860c8c26dfa12868f8bf31f3 2019-12-04 13:43:48 +0100 thomashu [17297] added as pdf command to parallel agenda of agenda view
12c11bef378fec5b5569dba0f23ece5f93e88ef8 2019-11-28 16:22:18 +0100 thomashu [17267] fixed optional ssn in tarmed insurance element
a7dbaeb1a79cfd7d1dec050aaf987df2e4a3bc24 2019-11-28 08:52:40 +0100 thomashu [17281] fixed moved IPeriod import
e7ad3ed4d023bee3ec9043e4f9d14c41e4598a09 2019-11-27 16:33:12 +0100 thomashu [17281] fixed handling of moved periods in loaded cache
1caaf69db3b8c481c2ae803ce2bee6aaa5242b48 2019-11-27 13:20:48 +0100 Marco Descher [15553] Remove ERROR OSGI in ch.elexis.omnivore.data
d03b9102c5668f13ee45c58556417197b166190c 2019-11-27 13:10:35 +0100 thomashu [17288] fixed visibleWhen expression of agenda parallel popup menu
390a8101d1f9d3baf3fffdb477d4bd5d0ba7160f 2019-11-27 08:23:02 +0100 Marco Descher [15553] javax/persistence/criteria/Selection at artikelstamm.VersionUtil
ed117334b4b34b4ab4d8f1297e7134e885c98cda 2019-11-27 08:21:00 +0100 Marco Descher [15553] com/google/gson/GsonBuilder not found in EMediplanServiceImpl
97f1bbcf49277f54167d5926e0964730edb1262b 2019-11-26 15:39:44 +0100 thomashu [14587] fixed NPE in artikelstamm DetailDisplay
a4c83391345aee1dd6ad05a4eca4e73ee5541310 2019-11-25 16:58:52 +0100 thomashu [17267] add ssn attribute with all laws not optional with ivg and mvg
413bcabce00c239736a438bd152e7930ad53f8f5 2019-11-19 15:07:28 +0100 thomashu [15795] fixed BluemedicationPropertyTester and visible when config
81c3dcd8a1e7607a3baab898bb5dfbb637c5adcb 2019-11-19 11:24:32 +0100 thomashu [17171] reworked setting mandator trust center info on RechnungsPrefs
0740904a154b651d2fa681a54515275b38bc8e56 2019-11-15 12:21:39 +0100 Niklaus Giger [14789] Accept non-exisiting directory in text templator
9a5ddc34c5483ff772d6786a50963117c30380e3 2019-11-15 11:46:54 +0100 Niklaus Giger [17173] Fix translation of meshare Aerztekasse
6b1c194bd55d68cc950e704370fa9f433f512d31 2019-11-15 11:41:37 +0100 Niklaus Giger [17172] Resize Kassenbuch icon and load it at startup
da0222dccf696568b8c5efa2eeacce3a849e8eaa 2019-11-15 09:32:53 +0100 Marco Descher [17027] IEncounterServiceTest#transferToCoverage add kvg only test case
f645887322741998f80ada195014b762cc9d94ec 2019-11-14 17:24:25 +0100 Niklaus Giger [17063] Fix translation for responsible doctor
a7ccb9bf0b71ccf052a4b0cecaaea4f755ff5172 2019-11-14 15:55:05 +0100 Niklaus Giger [17160] Load ch.itmed.fop.printing on activation
11c5f74caa17aaf598c9679b9e85f12629d7243c 2019-11-13 16:46:17 +0100 Marco Descher [17027] arzttarife IEncounterServiceTest
1375197844dfe24bdd84a2ed0bf92feb09f4cedb 2019-11-13 10:53:43 +0100 thomashu [15795] changed IPrescriptionBuilder usage
5f2d405f4e47b3731a18dbe49c18f63a3c4246bf 2019-11-13 09:13:43 +0100 Marco Descher [17027] XMLExporterServices#buildServices hint NPE line
b49fcbb7ab35b718d596d6c7c4720282125afea0 2019-11-12 16:07:49 +0100 Marco Descher [17027] Fix ArzttarifeTest, add billingSystems KVG/UVG
d5ad021667c501b11bc09ab9a597e3c46b0f98b7 2019-11-12 15:52:35 +0100 Marco Descher [17027] Fix ArzttarifeTest, remove import
99a9c4d792db03848d0e44fd0857cf8a3e066db9 2019-11-12 13:57:05 +0100 Marco Descher [17027] Fix ArzttarifeTest
ffc050cef8b9f7d53a14252a3e43ab86dea84266 2019-11-12 12:40:06 +0100 Niklaus Giger [14788] Remove unused Gemfile(.lock)
0d0d6976211df18cc2847f3e2886d1daf093e4c6 2019-11-12 12:36:19 +0100 Niklaus Giger [17116] Kassenbuch fehlte
f29ca6a90a936c170be7eb9f73ba7f8372ca89f0 2019-11-12 08:34:56 +0100 Marco Descher [17109] IGDTCommunicationPartner skip if none found for directory
7fc1013e08c24ca08d71933f3ca1f619e5fa559a 2019-11-12 08:42:16 +0100 Marco Descher [17109] GDTCommPartnerCollector log CoreException
38ba4833e1f48ae06967f6104afc459bde2a8892 2019-11-11 16:35:15 +0100 thomashu [15795] added workaround setting prescription date to twice
fd8a73aa9d4af27d5303874aa156ba4dba05b58a 2019-11-11 15:20:49 +0100 thomashu [15795] updates due to eclipselink target update
faeaf15e9522607263b155bd4d22db69d3f98a81 2019-11-11 14:25:31 +0100 thomashu [15795] remove double set prescription stop workaround
be27161c233addab3768b901cea8029fb4924ec1 2019-11-11 13:49:23 +0100 thomashu [15795] double set date until on DirectImportHandler prescription stop
9a18ec9865fbec7a76abbc32468752a7af2320b6 2019-11-11 13:00:45 +0100 thomashu [15795] use updated IMedicationService stopPrescription method
cbbf2019b84c2d3ea015aed15a9be4e7b10db6ed 2019-11-11 10:24:02 +0100 thomashu [17086] updated dependencies of agenda ui and emediplan
9de1db18aec5c94df02ba1f0280c1396409883de 2019-11-08 11:18:36 +0100 thomashu [15795] use MedicationService to stop active patient medication
907b40c9d33afdbb5860bc7bc7083783578efbe2 2019-11-08 10:51:37 +0100 thomashu [15795] save and update changed medication in batch
20ad7d0eecdedf37c8f4e63b54bc175f8a5dbcff 2019-11-08 10:02:53 +0100 thomashu [15795] make sure stopped medication is not visible
7b305667d90321ee12ae66796909815b402b3d6d 2019-11-07 09:46:50 +0100 thomashu [15795] ignore case of selected IDocumentHandle on bluemedication upload
27cca48b359f17c947ef1102c19d2b3e2bb71cf1 2019-11-07 09:45:53 +0100 thomashu [15795] fixed saving changes when stopping current prescriptions
ae11aee46c8063f4b2460b87be66453593ec5782 2019-11-07 09:10:27 +0100 thomashu [17057] change ArtikelstammItem price calculation
0a02511103c46f3a7c9b1ea549d5b9da81df88d6 2019-11-07 09:00:27 +0100 thomashu [17057] never return null on ArtikelstammItem get price
1c1304459388cd963443efe6b0ffb7f69b998d27 2019-11-04 15:02:16 +0100 thomashu [14587] fixed VersionUtil for version entry with null dscr value
eed7cbb760d46ffbaf87e103118ce9a92546d328 2019-11-04 10:06:46 +0100 thomashu [16648] moved ExtInfoHandler to AbstractIdModelAdapter, fixed tests
23738ab2cd2b5dd54178bc2b9ef2777f45ffe27c 2019-11-01 10:36:30 +0100 thomashu [14587] batch saving of changed artikelstamm items on update
64225d608055bb337ac511984a20d2df9262169e 2019-10-29 09:00:23 +0100 slogic-sa [14982] Einstellungsseite enthält ungültige Werte (#209)
2e3cf03b9d1069da271b98c23056b635bc842304 2019-10-28 12:37:57 +0100 thomashu [15795] updated parsing of ErrorResult from blue medication service
b7608bc591384c85d7cc03db4c5a56a6212a3075 2019-10-24 17:49:34 +0200 thomashu [16897] set resource of termin on open existing from TerminListeView
bf7ca7667340ab7427743f9686a471516d6d40de 2019-10-23 10:35:12 +0200 thomashu [16896] changed fixed value of complementary to cents
d5f7c1953ad961a00202c78e5d8050b8b02d7e2a 2019-10-22 13:13:01 +0200 thomashu [16896] added complementary sub services with text and fixed value
554c6b3d2e098562badeff8978cbffa9acd884b3 2019-10-17 09:16:54 +0200 slogic-sa [16616] org.iatrix - missing classpath (#208)
0b7e0fedb6cd5971c4e720aae4b762a7a41c8578 2019-10-15 13:13:10 +0200 Marco Descher [16648] Try to fix Arzttarife test, show full stacktraces
56d4cc212a2b8683af601ef1c923b90a42f0a339 2019-10-15 13:02:38 +0200 Marco Descher [16648] Try to fix Arzttarife test
8410528184f6ca9971dd70039b969a020fdebd18 2019-10-15 11:45:24 +0200 Marco Descher [16648] Load NoPo#Mandator after finishing setup of PO#Mandant
37395dce26965f05ed8f947da4cf4bc1cbab4919 2019-10-14 16:25:42 +0200 Marco Descher [16647] Trigger rebuild through source changes
8d87c94787f85509e33479bae60d089a8ce07bb1 2019-10-14 16:12:30 +0200 Marco Descher [16646] Trigger rebuild through source changes
dd85e715034c85613445313501449ef7207751d0 2019-10-03 14:21:09 +0200 thomashu Merge remote-tracking branch 'origin/master' into f11106
2ce0284aaf61bf398c045c9857e93e4e549c54b7 2019-10-03 14:10:05 +0200 thomashu [15795] updated bluemedication error handling of 400 code
922fbbb11c913df7e0f22f12dda3038b99463ffe 2019-09-30 18:34:39 +0200 thomashu [15795] updated bluemedication error handling and api client
e78082aeaedf35a6b6b45e51cd8e29e396bdc3ee 2019-09-30 14:21:20 +0200 thomashu [15795] added handling of in reserve posology flag of emediplan
2bb8994b4378d5d1c676173d8218b9d810207ba3 2019-09-26 10:39:26 +0200 thomashu Merge remote-tracking branch 'origin/master' into f11106
b6960ca5abb15587397aa35ca8245da76a23c483 2019-09-25 11:21:59 +0200 thomashu added labbit device integration
75674fe0c6de6192d42ced7ecc43cdc5e789da6e 2019-09-25 10:41:30 +0200 thomashu [15758] updated impfplan with ImpfplanSchweiz2019
883a4bea15b7d8df86e410aa1447759bbb2724b9 2019-09-20 15:15:00 +0200 thomashu [16430] update test pom xmls and launch configurations
9a82f55735fd941ca118a7c3dd16da47405fba59 2019-09-18 15:20:46 +0200 thomashu [15795] test if all prescriptions have valid eMediplan id before upload
a908a2d62377bf3a08500f429c5d181feba71918 2019-09-18 15:19:05 +0200 thomashu [15795] use pharmacode for non swiss GTIN articles
ed9c9c521dad2b917be68321b254fca6ce70c77b 2019-09-17 12:53:52 +0200 Marco Descher [16338] Use bcprov from orbit, fix medshare.commons
d242b97056281a90eef151d424fc9dc6bc90d2f9 2019-09-17 10:35:58 +0200 Marco Descher [16338] Switch bcprov from 1.63.0 to 1.55.0
08414764201ccad1c99940bc5916e5938dedeb9d 2019-09-16 18:16:12 +0200 thomashu [16371] use article vaccination test method
b72bef99207131e816af2c3f76207c3167cf9fdb 2019-09-11 15:07:54 +0200 Niklaus Giger Add localizedName to billing systems (#205)
82ab141f1302c5c750ee86642d6877c65907db55 2019-09-11 13:51:01 +0200 thomashu [14587] ported blue medication bundles
5c701dc4302062682437bfca17315f718d7cf5fb 2019-09-11 13:50:30 +0200 thomashu [14587] updated TarmedLimitationTest
661f765ef5470e51e909d69b6e6e79f3ac20398f 2019-09-11 13:15:57 +0200 thomashu Merge remote-tracking branch 'origin/master' into f11106
392a5cc85e1eeb4afccf275bf19f73fdcee10d77 2019-09-11 11:04:11 +0200 thomashu [15795] always use embed mode for showing blue medication web site
815728181bacf64aec9e1b657d9e89ef8bd76c2c 2019-09-09 15:58:25 +0200 thomashu [15795] added upload progress dialog
b8279acda5c8d40a1402ec8820d8d3395ab28577 2019-09-09 15:44:58 +0200 thomashu [15795] updated direct import handler to stop all active medication
e65d8947123559048245fa9553e35e01b5ffae2f 2019-09-09 15:08:08 +0200 thomashu [15795] fixed import of medication with decimals in posology
01557c9646856e72b4b306621997bbf8e597f859 2019-09-09 15:07:13 +0200 thomashu [15795][16304] fixed import selection, added dbg save emediplan json
acc4446c1f34ff76bb168bbfca343f578c902803 2019-09-05 18:43:58 +0200 thomashu [15795] updated bluemedication direct import merged emediplan
4890656d73c05f59dfc1daa483fb9de35ae071e6 2019-09-05 16:50:00 +0200 thomashu [15795] moved bluemedication from emediplan to a separate feature
37b13f431327dc6051182fa57b06a26518a9fa72 2019-09-04 09:41:51 +0200 thomashu [15162] port changes from defaultParallel to switchParallel
3b07b2696b79fa8ea15b8dbcf22995e4e5c7444b 2019-09-04 09:24:30 +0200 slogic-sa [15162] Anzeigen von Terminen in Parallel (#204)
36a335ce04f48c351e8f2f434bd2174a26878aa5 2019-09-02 15:16:33 +0200 thomashu [15842] added getMap to WithExtInfo sub classes
ef42a6d1e101ce20c36543746306009250a28277 2019-09-02 08:43:38 +0200 slogic-sa [15830] Java 11 und docbox (#202)
f811ccc080c06ceedd1d3bc0e9ed67acc13cab35 2019-08-30 11:28:48 +0200 d-roesch [5728] Add user doc for plug-in ch.itmed.fop.printing (#203)
dddec36388320e0fe3622768af88fd3c0318456a 2019-08-30 09:52:39 +0200 thomashu [16232] added check if tarmed type is not null
890e2ea8ab240825ed0f7ca2d52940c333d0c418 2019-08-29 12:48:07 +0200 thomashu [15795] added use blue medication import option with emediplan upload
3d0163839652f4314bc06b944ca692e4759afafc 2019-08-27 13:57:48 +0200 thomashu [14587] updated TarmedOptifierTest clearKons method with refresh
41650ae1b05b6d472b40812bba8bbf187041fb59 2019-08-26 18:11:03 +0200 slogic-sa [10716] Änderungswünsche FIRE - cfgparam (#201)
1f3b301045f32acf297e79f77d890715e3c0a6a9 2019-08-26 16:42:23 +0200 thomashu [15847] fixed filters of OmnivoreView
502c8f870eb7ed95fb8d42206b09e5caf5d54913 2019-08-26 16:16:50 +0200 thomashu [15839] fixed deleting category of doc handle
c79dac710d91656eb4de7d60ea68784fbed08d11 2019-08-26 16:05:35 +0200 thomashu [15838] fixed renaming category of doc handle
ead15735c182c0019d4e40e9a053875920f3cd92 2019-08-26 15:26:43 +0200 thomashu [15836] fixed setting keywords of doc handle
ee5aa946c02760b97face63434d76afd330f8bbe 2019-08-26 14:53:51 +0200 slogic-sa [14973] Inbox: Omnivore importierte Dokumente sollen angezeigt werden (#200)
256de89855e0ac13ae88df55112e3574d86c1286 2019-08-26 13:35:34 +0200 thomashu [15832] save changes of omnivore FileImportDialog
02feec470f6a3cfa71edd47c3932fe8fe6531239 2019-08-26 13:34:41 +0200 thomashu [11323] use getEntityMarkDirty in omnivore model adapters set methods
c0861892dbc7ed9b72260bd4222e423bd706e093 2019-08-22 16:04:49 +0200 thomashu [15824] changed period limitation check from mandant to rechnungssteller
9c5000fbe006e6eea587087139c9fa3c50ba5718 2019-08-22 13:38:53 +0200 thomashu [15230] updated to api definition 1.2.0
c545d24d61fcbc59cef009aaee5c1ca685dafb2d 2019-08-22 12:47:55 +0200 thomashu [15230] added workaround for HIN rest access, updated base path
0eac0aa625e2c3a40cb68cb0d771d25d9019227e 2019-08-21 08:35:45 +0200 slogic-sa [15553] Multiple exceptions fresh install Nopo Java 11 (#199)
7a84de0644d06676bcffc8192e3351d651ebd968 2019-08-19 15:33:13 +0200 thomashu [15533] fixed export of fractional billables
94c41ff1d5d432b561d6f42d334f64d48861f1ef 2019-08-19 13:58:26 +0200 thomashu Merge remote-tracking branch 'origin/master' into f11106
ce9ee028ede3f65e33ccec679ec2115ed30ff08d 2019-08-16 11:27:01 +0200 thomashu [15230] changed blue medication rest base path urls
29bdbbe094137b6cfb804fe478057cf834468628 2019-08-13 10:58:04 +0200 thomashu [15645] added workaround for vacdoc upload to meineimpfungen
e0862b638cf686ae60284e52336342fa8f228ee2 2019-08-08 14:07:31 +0200 d-roesch [5728] IT-Med Medi-Print plugin (#196)
e3b63b462cf5c064e814ea24b21ebe1bc82deefe 2019-08-01 10:58:51 +0200 thomashu [15645] improved error logging on cda upload to meineimpfungen
cd5033db4dc249e117d1fa4dbe2c3c9ad990569b 2019-08-01 10:21:35 +0200 slogic-sa [15614] Mehrseitiger Impflisten Ausdruck (#198)
4caa1f9fbc6b1eb940f38e5ab29fb52b6c079484 2019-07-30 12:11:12 +0200 thomashu [15624] added icd10 model dependency to diagnosecodes
97fdf0231503de22671be4efcacbe52fcbd8e797 2019-07-25 17:51:57 +0200 Niklaus Giger [15471] Fix travis-ci build. Use xvfb, openjdk3, matrix
cad240c13ab4660b5ad9486f9cecc3108d04ef1c 2019-07-25 13:40:13 +0200 Niklaus Giger [15471] Fix travis-ci build. Use xvfb, openjdk3
cd2e85b6d737ca07bef9b5f4b4457c2386de5548 2019-07-25 13:14:44 +0200 Niklaus Giger [15471] Set environment variable git.target.branch to TRAVIS_BRANCH
bad115bec995b0347946d9ea4b50117e27d88950 2019-07-25 13:11:44 +0200 Niklaus Giger [15471] Set environment variable git.target.branch for travis-ci
83925165589ff138b0789d572f31b71e0828fac0 2019-07-23 10:37:36 +0200 slogic-sa [15579] Medikationsliste: Bemerkungen (#197)
f397fa2293d2e3ff75c4841111a65ed288187771 2019-07-16 08:34:36 +0200 Marco Descher [15553] Fix artikelstamm for java 11
114703a5ffb542e3c08d9ffc884dd51e2d0cc007 2019-07-15 14:23:23 +0200 thomashu [15533] fixed setting quantity on tarmed xml bill
db97f2e9e071395a7af13bfeeb9514fa974618cd 2019-07-15 14:12:36 +0200 thomashu [15533] updated handling of fractions on tarmed xml bill
964097599fb816292ceff2e145cd91b25cbeea2e 2019-07-12 13:43:45 +0200 thomashu [15506] changes due to dirty state fo AbstractIdModelAdapter
0df01af06f9f6bc23cb6df5654cb1702c92dc3c1 2019-07-11 15:08:53 +0200 thomashu [14587] fixed artikelstamm open importer reference in extension point
6360c60740ef763d8f247093914f6c11ff76a43c 2019-07-08 16:25:27 +0200 thomashu [15488] added check for existing vaccinations to import wizard
7a00e7ac75877f9b6dc12dfa131d528af240eb73 2019-07-08 12:15:41 +0200 thomashu [15488] added DownloadMeineImpfungenHandler, updated ehc test launch cfg
99d9ca531c07d6dff8e029ab6a2cdcc271eaf865 2019-07-03 22:09:56 +0200 slogic-sa [15402] Perspektive "Schwarzes Brett" unbrauchbar (#195)
3759212be6b715d3aa75b588b5413830ec6f3493 2019-07-03 16:16:53 +0200 thomashu Merge remote-tracking branch 'origin/master' into f11106
0851cce38b95ba54b60dc6bb2bacd31334b01170 2019-07-02 10:53:36 +0200 thomashu [15230] added preference page and download parameter mode embed
6a99aa16c0015d2f73a3536b3a2536b6fad4c392 2019-07-01 14:10:44 +0200 thomashu [15199] return null if no tarmed service for current context found
3e3e3081fd7f3f0160b5a9d9650182dc9a8bd1d7 2019-07-01 13:50:44 +0200 slogic-sa [15429] TarmedLeistungen vor der Verrechnung für die Kons anpassen (#194)
d84966e9f7a7c8ad87d882e0615311ec677cac7a 2019-06-28 12:44:35 +0200 thomashu [14973] change ignore icon to delete image
67caaceb7a1c8cf4076699a56f47114644092204 2019-06-28 10:21:10 +0200 slogic-sa [14973] Inbox: ins Omnivore importierte Dokumente anzeigen (#193)
8072774aeffe8bc98f00485692613c83710c36a0 2019-06-27 16:07:10 +0200 thomashu [15199] added TarmedVerrechenbarAdjuster to be implemented
59f126fbbf5a293e14c5b1c042af722d85432d89 2019-06-27 14:46:34 +0200 thomashu [15230] updated emediplan feature doc with bluemedication
590154a13482111be80899ee2fd7d5a23fb69eb6 2019-06-27 13:05:01 +0200 thomashu [15230] added downloading result of previously uploaded dochandle
ff88562903143378b6550d66fadd3f6070f55ca9 2019-06-25 14:46:20 +0200 thomashu [15230] fixed blue medication url, and uploadable tester
56df6834e7a1d7aed1d34e7ddfd9a648d309480f 2019-06-25 14:19:15 +0200 thomashu [15230] fixed lib build properties
608a961cadb3e6082725b778da5d301ebda34b94 2019-06-24 15:28:28 +0200 thomashu [15361] always update copy information of xml bill
91cc8cb920b491498eea35d18a8aeb35ebb8098b 2019-06-23 16:33:02 +0200 thomashu [14587] fixed TarmedRequirements xid domain id access, ArzttarifeTests
294985f1af2c9544f7956e0b0f6d6247625a4d31 2019-06-21 12:44:35 +0200 thomashu [14587] added loaded obj limit to artikelstamm content provider
54e1c4107162d83ff47733dcb6947c1e7deaae75 2019-06-21 09:27:42 +0200 Marco Descher [5075] Make MsgDetailDialog non modal
a7e0d4e7648912e3e37e5813608d7cc4939d1dde 2019-06-19 15:22:29 +0200 slogic-sa [15156] Artikelstamm add to Leistung NPE (#189)
ae4b6bf40b68ae8e840f6a528d68a0107b76d0cd 2019-06-18 15:11:29 +0200 thomashu [14587] fixed TarmedValidDateFilter and TarmedLeistung getServiceTyp
8763a59f62ce29fe0cc57dae3cea407a51332eca 2019-06-18 11:16:32 +0200 DavidGutknecht [10878] Ch.novcom.mednet.elexis (#188)
8267eadd763dd0baf6f0a18db9f888be7be0ece6 2019-06-17 16:40:55 +0200 thomashu [14587] fixed icpc build properties
3c99cbbe98a8b17888f029f490f3b7086e9fa447 2019-06-17 15:13:23 +0200 thomashu [14587] updated TarmedCodeSelectorContentProvider using named queries
84e4e4c9dcb2358390e046a89804c524ec5ad599 2019-06-17 14:37:56 +0200 thomashu [14587] fixed tarmed code selector query, update ICD10ModelServiceHolder
f920105b12d5db2870b57694df94a0f0946e45d2 2019-06-15 17:47:14 +0200 slogic-sa [15156] ReferenceDataImporter to NoPo (#187)
175b528f62ef9da7470a04b7ab84dd21e94251ac 2019-06-13 19:21:56 +0200 thomashu [14463][15074] Use com.google.gson not com.google.code.gson
3c5968aa67bd675e66e2275e8bc64ca2654b5198 2019-06-13 19:07:48 +0200 thomashu [14463][15074] Use com.google.gson not com.google.code.gson
9f75ec5ef4fd7f6449e5002d1f163e2858c32959 2019-06-13 17:52:12 +0200 slogic-sa [15156] NoPo startup issues - DefaultHlParser and unused services (#186)
f69cc35334e10658e3567d422985b40af9f9cc3b 2019-06-12 14:37:09 +0200 thomashu [15230] added BlueMedication upload to omnivore direct view
1e275fd124dd440f52ef9ed04dd4b080b63dab3e 2019-06-11 17:47:17 +0200 Niklaus Giger [15074] Fix typo in docbox Terminvereinbarun
772fc0b07748761831028fd95d8f23175432846f 2019-06-11 11:05:40 +0200 Marco Descher [15255] EAL2009 add to favorites action
c64fbf61e36245edfe499e88425ebd3bd2b26cf0 2019-06-07 13:16:23 +0200 thomashu [15230] added BlueMedication upload to omnivore view
ce31ef51f1903de121248a54fcf3b7922d34ceec 2019-06-07 13:15:13 +0200 thomashu [15230] updated BlueMedicationService with new swagger client
be01d9cc71f9cb98d2402dbfbd31170a76c671fe 2019-06-06 17:16:11 +0200 thomashu [14358] fixed emediplan TestData context access
9a5eef4edea2bdc554122b641906bdef0a5d88c3 2019-06-06 15:53:30 +0200 thomashu [14358] changed active selection in context from named to typed
3b0ebc39f5043c149dc71600bfa745558c351a6c 2019-06-06 13:44:42 +0200 thomashu [15230] set OmnivoreView viewer as selection provider
38e52506fdc73aa9b3cb541b7d68b42d7e9ffe3a 2019-06-06 13:43:55 +0200 thomashu [15244] [15230] added tests for previous changes
df30a92ca04c267b2a5825b05af773675a01340e 2019-06-06 13:42:26 +0200 thomashu [15244] changed Medicament NbPack field from float to int
f881abb1304079c9aae405afa6187861a5ab920c 2019-06-06 13:41:05 +0200 thomashu [15230] started BlueMedicationService impl using swagger client
0f5e410c9a84af325154faecc52f5a613f5ade46 2019-06-04 11:48:58 +0200 thomashu [14358] updated UPDATE event inject annotated methods
c0582e39c94c6863243c6bd8d2a098bbc34bc73f 2019-05-29 17:47:23 +0200 slogic-sa [15216] HL7 Universalimporter - Auswahl Omnivore-Kategorie (#185)
4f899b2e5cf9c8636fa9e588a6a76872dd4ae80f 2019-05-28 17:19:45 +0200 thomashu Merge remote-tracking branch 'origin/master' into f11106
17f095911a81741c58a995168d74714338a7fb18 2019-05-28 11:08:46 +0200 Marco Descher [15207] Allow non-awender and null sender strings
2a30286ea398cf9b5a196b8cf9c6a8f6c9a58907 2019-05-28 10:40:03 +0200 Marco Descher [15208] Sort message receiver alphanumerically
e0596289bf2227d32d3fe886064748717e0b2920 2019-05-24 11:15:39 +0200 thomashu [15076] updated omnivoredirect
6655817b4545ce198e537ec1ab4877ef21baeda1 2019-05-22 10:41:21 +0200 Marco Descher [14463] Update pom.xml dependencies to gson
fa44d2cf986313235a385bd69edae0726084b63c 2019-05-16 10:04:56 +0200 thomashu [15076] updated store to string service implementations
2347a32a9e91484528e9326673348d73d200e2e2 2019-05-15 14:45:52 +0200 slogic-sa [15156] IAppointmentService Implementierung der Methoden (#184)
da96f8b6daec9ac7f476bc4600d5244af19c2345 2019-05-13 10:00:06 +0200 Marco Descher [11355] Make at.medevit.ch.artikelstamm again compatible to Java >8
558d136063ef3cffd1c77ccfdb64a10a7a6fae69 2019-05-11 11:53:04 +0200 thomashu [15076] updated model service with id and store to string methods
8266b5d189fffb827c4e6d86dc0a29e917719170 2019-05-10 13:54:05 +0200 Marco Descher [11355] Prepare artikelstamm.model in f11106
a9b0335028a087989a4f3b7e196ddbe4f984c933 2019-05-09 14:05:51 +0200 Marco Descher [14358] Remove IArticleService
fa73b09824ce076c47d4b36a5ca1928a59cfb2da 2019-05-07 14:40:46 +0200 Marco Descher Fix ch.labortarif.model.VersionUtil
fa48ab94dfba6115b6930ea0bdc520724abecff4 2019-05-06 17:55:06 +0200 thomashu [14587] reworked Xid handling using IXidService
48956cb871ba5ebc427fe0600d10fa4b52ebdce3 2019-05-06 10:12:56 +0200 Marco Descher [15076] Fix OSGI-INF DS for omnivore.data
fc54b654c36dc57b93fc2c013c12eea7952008fa 2019-05-06 10:00:23 +0200 Marco Descher [15076] Artikelstamm: Move MargePreference to non-ui
e4b72945ba872f408c6e0160f74fae0affc01dbb 2019-05-02 20:49:29 +0200 thomashu [14587] added loadFromStringWithIdPart to IStoreToStringContribution
b68f06fb142e184735d3f612e79e7ab24f4e9d6b 2019-05-02 13:08:26 +0200 Marco Descher [10716] FIRE parse combined bp value sys/dia
9cb11025f00f356e53ec2ea0fc78d395600c4aaf 2019-04-30 15:15:37 +0200 thomashu [15091] fixed AlleLeistungenRoh rows initialization
8ac8b20c18e787b4831fa9b7ad9b2ead7a90908f 2019-04-30 14:29:27 +0200 Marco Descher [15093] Remove non-required dependencies in c.e.omnivore
fdeaa2ae36155e60c129bfa1b16dce6890b18163 2019-04-30 14:29:27 +0200 Marco Descher [15093] Remove non-required dependencies in c.e.omnivore
6b736590ff8d9590db453a23b108bb4b063e44f7 2019-04-30 13:30:56 +0200 Marco Descher [15093] Refactor omnivore, fix ch.gbp.elexis.cst
630535e99215f685fb9b46bce7b8cca22dff73c6 2019-04-30 13:27:12 +0200 Marco Descher [15093] Refactor omnivore
dcc85858ac300d7a8e48a5ab3a8ffcc5b77ad14b 2019-04-29 11:08:21 +0200 Niklaus Giger [15074] Fix action tooltip in docbox
f4d3366395fb493fc3ceff84b1bb78c2ee985d7e 2019-04-26 10:15:48 +0200 thomashu [15053] add pat id for creating XDM file and updated sending via Outbox
ecbe12617d038a70c3f0cd13d656a72b6ccd7d7f 2019-04-25 20:17:41 +0200 thomashu [14587] updated IQuery implementations due to core changes
a86c4bba2409733e05a1fac11e2ed39915abf245 2019-04-24 19:01:53 +0200 thomashu [14966] added import of diagnose txt files from diag sub directory
4e5d7b50290a986deb2789dc2e777dcab479dec2 2019-04-23 14:43:04 +0200 Marco Descher [14358] Fix tarmed.model.test
17490c1c96885f5dd76d5bcc7aef854cc91f12c8 2019-04-23 14:35:11 +0200 Marco Descher [14358] Fix tarmed.model.test
adb095078684d6d0250c26b9c8aa220643aef01a 2019-04-23 14:30:47 +0200 Marco Descher [14358] Fix arzttarife.test
511ee5d24a8e5dfc2f4642131eaf44b20b6ea794 2019-04-23 12:45:10 +0200 Marco Descher Merge branch 'f11106' of https://github.com/elexis/elexis-3-base.git into f11106
8860520ed0396c932c4f98dde7741d40a80389a3 2019-04-23 12:44:56 +0200 Marco Descher [14358] Tycho -> v1.4.0, enable tarmed.model.tests
fb908ea15b980ea2704e165e4aea0937fa85a87a 2019-04-23 12:14:20 +0200 thomashu removed duplicate tarmed model extension
c8eac2ee89a5c06972cc380f235a86bb0bc68adc 2019-04-23 10:25:01 +0200 Marco Descher Activate ch.arzttarife.test
78756a2ab161b5008dd8f0742588fe2f870f99cb 2019-04-23 09:22:56 +0200 Marco Descher [14358] Try to fix arzttarife.test
78981b63abcfde8baac76c7fa47b95b45dac2ad9 2019-04-19 11:31:42 +0200 Marco Descher [14358] Add fix arzttarife.test to tests/pom.xml
66fbc502ff9406922f97c2e0950d691bd7fc5241 2019-04-19 11:03:29 +0200 Marco Descher [14358] Try to fix arzttarife.test, add assert
16ca165c67ced611fb0c63ecf89164788c274c08 2019-04-19 10:05:40 +0200 thomashu fixed arzttarife importer merge, updated importer tests
5f14afdd0dd9102b5b91806288c2f553f984f79b 2019-04-19 09:28:12 +0200 Marco Descher merge with master
5018298d87765992d607f4b0fea4176e6df842d4 2019-04-19 09:09:57 +0200 Marco Descher Merge remote-tracking branch 'origin/master' into f11106
37121f8411795ddd314baf9024ee72e03822f6bd 2019-04-18 14:55:04 +0200 Marco Descher Remove non-existant tests
0c84c7894889abdd9986928de492514087810b3e 2019-04-18 14:48:19 +0200 Marco Descher Ignore failing viollier_v2.test
623d252233ef3ca0bbbfe0ac977cddd6a0a7a775 2019-04-18 14:41:41 +0200 Marco Descher Ignore arzttarife.test
b2a843f9b4827696fc2e57860866be1b372a3f8a 2019-04-18 14:35:09 +0200 Marco Descher [14358] Try to fix arzttarife.test for maven
aa094391288c0b9ce69e9a75b36bb981c14c5e3f 2019-04-18 14:29:22 +0200 Marco Descher [14358] Try to fix arzttarife.test for maven
dee6777e12238282c700ec18f8bc6dde95b08a3b 2019-04-17 22:59:18 +0200 Marco Descher [14358] Fix /pom.xml resolves
7b24fd38cf8cec3cfec50ee89623cf9ac1029bef 2019-04-17 22:53:22 +0200 Marco Descher [14358] Add laborder.lg1 to bundles/pom.xml
b638bc4edbcec26410e899204b6bc81e3cb39959 2019-04-17 22:51:55 +0200 Marco Descher [14358] Add laborder.lg1 to features/pom.xml
450e8c670bddc027c36eeafa49ea05592a151b73 2019-04-17 22:49:29 +0200 Marco Descher [14358] Add aeskulap.core|ui to bundles/pom.xml
055f16c1a82ec6391964f75844089d529ecd4500 2019-04-17 22:47:31 +0200 Marco Descher [14358] Add aeskulap.feature to features/pom.xml
fe25c42dac6cf004e327a4c48979e62104bdfed0 2019-04-17 22:44:42 +0200 Marco Descher [14358] Add ch.elexis.base.ch.icd10 to bundles/pom.xml
042ac2c3133488e630b1211aac9a226109d1a19f 2019-04-17 22:41:59 +0200 Marco Descher [14358] Add ch.elexis.icpc.model to bundles/pom.xml
5b98506b6beeed1d74224934609d23e4536a7f1f 2019-04-17 22:38:03 +0200 Marco Descher [14358] pom.xml Re-add elexis-3-base bundles, features, tests
c3746f3af8feb96f1a3e37174acd2f4bf454f56a 2019-04-16 18:35:59 +0200 thomashu [15021] fixed tarmed chapter import and service import with long names
788eb0bc4987a9210c2d57da151f3b529e96f675 2019-04-16 12:37:15 +0200 thomashu [14587] moved arzttarife importer classes
8a97e800aca193dab89328ce464df3cf45ac00f4 2019-04-16 12:30:01 +0200 Marco Descher [14587] Multiple fixes after move of PersistenceHandler
f8010c55bd5074371233737bf74f1c8124e599b5 2019-04-16 11:30:44 +0200 Marco Descher [14587] Fix hl7.allg after move of PersistenceHandler
a65f4ac6df8d58f2c6ee6d88e0638da47b996e47 2019-04-12 22:12:55 +0200 Niklaus Giger [14803] Kassenbuch uses CDateTime
a2b60f0f708af0d206ba8622315f382fd5c76e5e 2019-04-10 11:57:50 +0200 Niklaus Giger [14971] Add migration KG Iatrix Diagnosen -> Patientendetail
b37e15b4f5d5f38141a5c2def0ecb8dd6f2c8e46 2019-04-11 20:09:44 +0200 thomashu [14587] updated arzttarife importer injection
fd4ad025611aa140fee57bb1a245dcd973a107a6 2019-04-11 20:00:06 +0200 thomashu [14587] added missing model bundles to feature
e8b50f884dab6be25500e7c935d33afc8b9b0043 2019-04-11 19:05:38 +0200 thomashu [14587] added some bundles, updated many bundles, removed some bundles
7afdd4dd24038b1bc0fd687c0636b7093658cebc 2019-04-11 11:47:42 +0200 Marco Descher [14946] Move c.e.c.ui.imp.div.PersistenceHandler to non ui bundle
4039f2b2a8bc0eb3e6389336a324eba252eeb49a 2019-04-09 17:42:05 +0200 thomashu Merge remote-tracking branch 'origin/master' into f11106
1962d20b927079696ed8679844dd30f7b4e3bf24 2019-04-09 17:36:22 +0200 thomashu [14587] updated tarmed model
ca79a511c2e761cddc1200fb1ce0054a82060310 2019-04-09 16:17:47 +0200 thomashu [14587] updated diagnosecodes, migel and some lab importers
16e72c6327ec89331fe9bd9713ab40d9964cec85 2019-04-08 10:43:11 +0200 Marco Descher [14991] Invoice#remarks -> Invoice#internalRemarks
0dc5da8dc448cd2f249dd06cce17f284b717955b 2019-04-02 22:38:50 +0200 thomashu [14587] added ticode code element and store to string contribution
c66e2fbd0eeb5ad8584fe49385e5ba83f02c8119 2019-04-02 22:37:01 +0200 thomashu [14587] updated arzttarife test, run XMLExporter tests
ce9302b9d48bab2f2fab6454c48666560c4bbc2c 2019-04-02 11:33:53 +0200 thomashu [14587] added clear cache method to model services
9843bbe5a03c3abe627f8728e6a2b91b7b948ce4 2019-04-02 11:32:50 +0200 thomashu [14587] updated arzttarife tests with importer tests
6b27bec0f04d06cebf1e52d88a4321775876deac 2019-04-01 15:23:12 +0200 Marco Descher [10716] Deactivate surefire test, needs more work on it
7e6674783b67f12c621fbc65a326f2fac893a859 2019-04-01 14:54:49 +0200 Marco Descher [10716] Fix FIRE Test version
08208d8a8facbc75765df946834bb3f23122d723 2019-04-01 14:49:04 +0200 Marco Descher [10716] FIRE add vital sign tests, fix diastolic value, more logging
8d4f3d6e15d05b961fc14f2602c3adf5c032c7bf 2019-04-01 12:24:25 +0200 thomashu [14966] updated csv index of file import
37a3eb6cb975279769b45c53b7a978d07d053281 2019-03-30 14:29:24 +0100 thomashu [14974] skip letter document and file import if patient can not be found
3737e76926c806fa5e43534efcfc123b5dc9d1e6 2019-03-29 16:42:06 +0100 Niklaus Giger [14748] Add Kassenbuch to elexis-3-base
721928855f36c41cb0b1f843c9a64da8e9f51f71 2019-03-29 09:41:27 +0100 thomashu [14966] added importing documents and files from aeskulap directory
d2b6715a15ed746311acc87f152743c6570495af 2019-03-28 14:26:34 +0100 Marco Descher Add base.ch.feature.group to maven build
2752147a262f4fc5bae89ac008a0e3ad0f0f0045 2019-03-28 13:40:52 +0100 thomashu [14924] allow custom articles on emediplan creation
150d3788818fdf6409a76078eed4f7f07962629d 2019-03-27 17:57:17 +0100 thomashu [14587] reworked arzttarife model tests, updates to wzw and others
05d083103b00333c8cd9ec30e17dbb9ed1e140e4 2019-03-25 12:57:52 +0100 thomashu [14587] removed old medicament bundles medikamente and bag
6e7a1be19b86be506afe274722ae9b40cc297755 2019-03-24 22:50:17 +0100 slogic-sa [14958] ICPC2 Importer für Referenzdatenimport bereitstellen (#182)
df069a2a15949e5372a269d01a185a349d27a731 2019-03-21 16:02:04 +0100 thomashu [14587] updated vaccination bundle
e1593465e6cd9f529424bd1854901a03d2daef60 2019-03-21 16:01:19 +0100 thomashu [14587] updated ArtikelstammCodeSelectorFactory for vaccination bundle
7951a69b29064470e1e6d7fb48e387c86064b658 2019-03-21 12:52:14 +0100 thomashu [14957] test if InboxView has valid viewer before update
1c6d785d779452c33648a4d9bc24854c59e7df83 2019-03-21 12:21:20 +0100 thomashu [14587] updated ArtikelstammImporter
c8c67b50671780372567230f53c37588c121570d 2019-03-18 21:39:12 +0100 thomashu [14587] updated medikamente bag
37d55a216555f622259b100f06aca933d04c65fb 2019-03-18 21:38:50 +0100 thomashu [14587] updated emediplan core and ui
307b5f17449b49be9a1e6cd24749d6a996af315d 2019-03-18 14:55:12 +0100 thomas [14951] height changes to text boxes of ESR printing
d79e2a0c93644927ef0ecf96ab27561fba899e58 2019-03-18 13:50:53 +0100 thomashu [14587] updated artikelstamm based vacdoc import
3076f42e987d30015122fb1d224093814415aec7 2019-03-18 13:30:18 +0100 thomashu [14587] updated web agenda ui
ea045db558fd6a80320ccb66178ac82e18eaf226 2019-03-18 13:25:33 +0100 thomashu Merge remote-tracking branch 'origin/master' into f11106
4d9e813d04da97fb7b2705d1baf469c315bcfcba 2019-03-18 13:24:20 +0100 thomashu [14587] fixed agenda ui
13bc6be332a03977d41fec052c980d2951fc04c1 2019-03-15 13:46:25 +0100 thomashu [14587] removed artikelstamm common tests
c479753bcf6ef19b80344af9f9a82ec7e194059f 2019-03-15 13:45:41 +0100 thomashu [14587] removed medcalendar
1becf26ddccfa171f6ed7d2210403755e066cb21 2019-03-15 13:42:31 +0100 thomashu [14587] updated ArtikelstammImporter and related classes
2f93e6eacbb363946731c15149e61041aaf92f82 2019-03-14 13:26:18 +0100 thomashu [14919] usability update of ImportEMediplanDialog
2d2431bcb84c53f05af445c91e327a7555a68f8f 2019-03-11 13:43:12 +0100 thomashu Merge remote-tracking branch 'origin/master' into f11106
724e13747da1b24f95f8dd040995ee57f1e87ac8 2019-03-09 16:45:40 +0100 thomashu [14587] updated arzt tarife and labor tarif bundles
7cad7004ebd6815e0119af2f913130a0db0a3e7f 2019-03-06 14:09:23 +0100 thomashu [14587] updated code selectors and detail displays
c5027899cba65e7b3a408447ff0c9935ce219271 2019-03-01 12:51:25 +0100 thomashu [14587] update arzttarife and labortarif removed po
6cc401d209fa6c6fa1032ce178abda45ff155c53 2019-01-31 14:33:10 +0100 thomashu [14435] start adding Sysmex UC-1000
79f5229734ad6383a86bbb1ef878ee8337d24998 2019-02-26 21:31:48 +0100 thomashu [14587] reworked arzttarife model test, still failing tests
1a849cbb334566107a68bf837db1f624ba96f867 2019-02-26 21:20:38 +0100 thomashu [14587] updated arzttarife model and importers
297572f0b5b1b9d57ae3dd16a9f6e06346cc2905 2019-02-25 13:30:09 +0100 slogic-sa [14902] Problem beim verschieben eines Termins aus der Agenda Web via (#179)
5cc9f9fcf223917e3566185202648c6335b0f318 2019-02-21 12:50:49 +0100 thomashu [14587] fixed dependency imports of labortarif model
0e90fe3ab9c0977e05dd4f3f5dd325e4d4bba6d4 2019-02-21 11:40:19 +0100 Marco Descher [14501] TarmedLeistungTest additional asserts
5c9538a350a00946ff52d10eb4e068c5c27cb8b4 2019-02-19 13:32:29 +0100 thomashu [14587] updated ch ebanking ui code
7d678bc3f59c7f0212f8e962c1aa4b06832a0926 2019-02-19 11:29:27 +0100 thomashu added service component package import
5ed307d3225c302b6f10e92d1b399603ef8b88ee 2019-02-18 15:07:59 +0100 Marco Descher [14501] Add maven nature
3ca54b725a85e13f67ec03129bc81714943254fa 2019-02-18 14:55:01 +0100 Marco Descher Fix test naming
9d6893fa11965e0b6f1f58906c1d5ed3a51ed178 2019-02-18 14:52:32 +0100 Marco Descher [14501] Add labortarif.model to build, remove package dependency
8ae08962ee66dda1e887fe2bafa87bf43b6e6c32 2019-02-18 08:21:22 +0100 slogic-sa [14887] Performance Analyse Agenda (#178)
a6e7649c8bd489b5c9402009315f19646890274d 2019-02-15 21:25:03 +0100 thomashu [14587] switch to c.e.base.ch.labortarif.model, and update code ui
afdcc39eb314c0b88a32a62f92d6dce214c8d1a9 2019-02-15 16:16:01 +0100 Niklaus Giger [14880] Fix multiple GTINs found
7e43f6d6e34f0611324dd29f812a435ca75f7f7f 2019-02-13 11:25:52 +0100 slogic-sa [14875] Web Agenda zeigt keine Termine an (#177)
ab6dd7afcbadb03acc1262c4ebe0b774d7b7c9f0 2019-02-10 18:56:51 +0100 Niklaus Giger [14883] Fix Impfplan for PostgreSQL
44852446af803d39e73b10768e4ff87ca7579e63 2019-02-06 12:30:17 +0100 thomashu [14587] added setting DetailDisplay with selection of selector
7a3cdeda363e54adcb0774a5eea0cab0ec107077 2019-02-05 16:22:10 +0100 Niklaus Giger [14857] Bump Version
a0b5729f949178a36d39bd7436441e39ec33f1e2 2019-02-05 10:57:05 +0100 thomashu [14587] updated ArtikelstammCodeSelectorFactory filters and loading
e2ef2049946395aa99152d803a1be26e021a93b8 2019-02-01 16:33:47 +0100 thomashu [14587] updated artikelstamm ui, work in progress
63d77fdad069c946eee5ad23f5f177c09b1eb3df 2019-01-28 20:54:40 +0100 Niklaus Giger [14857] Add print button
0d18448ee56bb7f55b27faae87811b29f47c0065 2019-01-28 20:53:32 +0100 Niklaus Giger [14857] Fix handling preferences with full path
d679a6c2310414730ed9bf8fc580e63927215be6 2019-01-28 15:51:33 +0100 Niklaus Giger [14863] Add icons/camera.png to Molemax build
8f861b76d376422c22699f4cf9c78d185dfcf3f9 2019-01-28 15:13:45 +0100 Niklaus Giger [14857] Preferences restore/use default values
84ebeee8076e306e1ecdd526aa8cc23d153be596 2019-01-28 10:05:38 +0100 Niklaus Giger [14857] Fix handling preferences with tilde
180019e69934fb422990708adf73206ecf240f3d 2019-01-25 13:50:04 +0100 thomashu Merge remote-tracking branch 'origin/master' into f11106
5241251c42dac392cd01ea0098579ef1a03679e9 2019-01-25 11:04:06 +0100 Niklaus Giger [14832] Fix Bank/Postkonto in RechnungsPrefs
1a2dd60091f6e8f1d6e52b8e8b291fd04f3eb841 2019-01-25 09:57:49 +0100 thomashu [14587] updated ArtikelstammModelService
d6f7d3f16d87a29e6f72798ba778873c890a2ed6 2019-01-24 15:09:28 +0100 Marco Descher [11355] Fix error message in artikelstamm.elexis.common#DetailDisplay
d6b9331a77290fa99519927681cb22c3a0be3224 2019-01-24 13:40:43 +0100 Marco Descher [11355] Compatibility to Java >8, Target update to 2018-09 (#176)
f6873a2537ef7051ab39f466e500cbce42d9fb5c 2019-01-24 13:22:56 +0100 Niklaus Giger [14846] Do not blackbox for oddb2xml NonPharma items with saledcd = I
fed1045e4ab64681ade20dbd4115950458f708ae 2019-01-23 19:59:57 +0100 DavidGutknecht Ch.novcom.mednet.elexis - new icons (#175)
f1f1d340274f1a8d4bf253e6992aae56a36e46c9 2019-01-22 12:42:53 +0100 Niklaus Giger Revert "[14800] Fix importer when ARTIKELSTAMM_CH exists, but is empty"
f9b11232902c4d709ae6262b5f5a6a87b31eda07 2019-01-17 13:49:26 +0100 thomashu [14811] added osgi service annotations package import
e681c327134ecf4fe4d5dbf03cf41244610b5a2e 2019-01-17 13:21:11 +0100 thomashu [14811] updated externe_dokumente omnivore import
b7b205e91e56054cce1036f21ce075c7f5836d78 2019-01-17 12:52:39 +0100 thomashu [14813] fixed epha interaction web link
91017af786cd907d6277e97a8e46820270c30d51 2019-01-17 12:39:46 +0100 thomashu [14811] added import to omnivore for externe_dokumente
2e853fdfb35d7e26b2fe98755d8e785089bab695 2019-01-15 19:19:38 +0100 thomas [14810] used fixed isDeleted from PersistentObject for Termin
fe91cf6ee727487e3d18cebaa8fb3b24ee4f8f42 2019-01-15 09:54:43 +0100 Niklaus Giger [14745] Added backward compatible version of performImport
e75a499e7cdfa1fb7212e7afc785d8fe2dd26cd1 2019-01-07 17:44:25 +0100 Niklaus Giger [14745] Artikelstamm import only Pharma or NonPharma
383beff854891eeaf7d33250506bc8578a123572 2019-01-10 22:30:34 +0100 Marco Descher [14501] Fix build.properties forc.e.b.ch.arzttarife
e897a6662f9e4b0d33a4d8e84673484b8b0e5247 2019-01-09 12:32:20 +0100 Niklaus Giger [14800] Fix importer when ARTIKELSTAMM_CH exists, but is empty
a3848634086ff48377d027313fdbfdef7fc9985c 2019-01-08 12:49:29 +0100 Marco Descher Fix missing name for commands
b21910ba738a5ad836953653b2e0e94240732819 2019-01-05 09:55:01 +0100 DavidGutknecht [10878] Ch.novcom.mednet.elexis (#173)
546bdd6b9a8fc17fb375661c1463ffcc5305d9e8 2018-12-21 10:25:12 +0100 d-roesch [5728] Use command in TerminDialog print logic (#172)
375b7194a79d2edd894398fa5b27df02efe48364 2018-12-19 20:51:36 +0100 Niklaus Giger [14774] Fix missing translation for medshare mediport
4f8b5601c4c81f8782054cd33e674a4fd88e6b37 2018-12-18 11:17:24 +0100 thomashu [14632] added agenda load events function to heartbeat
e6804fb9e72df020bd74bb7e8047b129a5b2e999 2018-12-17 23:11:00 +0100 thomas [14632] updated agenda load events function only reloading changes
c54fd6bbd952f57df20ea32b11c18d76561dccf0 2018-12-12 10:28:13 +0100 Niklaus Giger [9664] Use 3.8 as version for master branch
964f412f3f84a06e4b71108d13939babf36d12b6 2018-10-30 11:12:42 +0100 Marco Descher [14501] Multiple updates
7b46f2e6e04a80538340203797e8d46b8779d9c4 2018-10-30 10:02:22 +0100 Marco Descher [14501] enhance testing
fec12548cf68cca5fac5ff6c8811cbf4857dee7b 2018-10-29 14:58:58 +0100 Marco Descher [14501] refactor for better readability
e213d86077e1b3037885a1b4d9413c888370f1c6 2018-10-29 14:32:02 +0100 Marco Descher [14501] missing save
1179079e784634d27222dd7485e1ea9136ff9216 2018-10-29 14:16:15 +0100 Marco Descher [14501] TarmedBillingTests multiple fixes
f1321c4001101bdae38bf851cae901103eb81688 2018-10-25 15:11:51 +0200 Marco Descher Merge branch 'f11106' of https://github.com/elexis/elexis-3-base.git into f11106
bf0f0f56961cc8ad2db58b4b2e9aab51075b30a4 2018-10-25 15:11:40 +0200 Marco Descher [14501] TarmedBillingTests start
b3a5051a95122e75cb143e8a258966367afc1d72 2018-10-25 15:05:46 +0200 thomashu [11323] changed query parameter handling
2728c42a1932a589e5880111b63cc2f58f2bc169 2018-10-25 14:31:20 +0200 Marco Descher [14501] TarmedLimitation#getVerrechnetByCoverageAndCode
05c5c62f101975406e4f39da7495364deb7da513 2018-10-25 14:22:58 +0200 Marco Descher [14501] More Tests
72ad387ac3c48c95c12e940a9d8f967d2a98d916 2018-10-25 10:16:10 +0200 thomashu [14501] updated test launch and fixed AllTestsSuite file names
c7b5681a4aac60cec193fb74afe8687b6632f3e6 2018-10-25 10:11:08 +0200 Marco Descher [14501] Activate more tests
5bc81b003fb8af7c09128fa4bebea249766709fe 2018-10-25 09:52:34 +0200 Marco Descher [14501] Activate more tests
74f17b87791bfc7135b6427d894674329df32683 2018-10-25 08:30:15 +0200 Marco Descher [14501] Fix date handling, activate more tests
b7bbd59608b4cc75e81186d952e3cbaee8e0dd57 2018-10-24 22:33:09 +0200 Marco Descher [14501] Fix loading TarmedExtension#limits
946309b1abb04dea72f7bb685f65cd2da1b3b16a 2018-10-24 15:26:31 +0200 Marco Descher [14501] Activate some TarmedOptifierTests
4db1dbf142de46beeb76805f9c4dcd8bafd43d42 2018-10-24 15:08:55 +0200 Marco Descher [14501] Activate some TarmedOptifierTests
ebfadff1194c3e12ef13bc5aa568234a5d3c8a77 2018-10-23 16:26:11 +0200 Marco Descher [14501] TarmedOptifier port (wip)
f6806039cba68d81f2448ef088bcacd1a7695256 2018-10-22 15:30:41 +0200 Marco Descher [14501] TarmedExclusive
492ed1eb024f5a15163daea5dd8b6f9e0766380c 2018-10-22 15:25:47 +0200 Marco Descher [14501] TarmedDefinitionen#NamedQueries
bf506c819d04b454fa76ed05941bc72803870b5e 2018-10-22 14:57:18 +0200 Marco Descher [14501] TarmedLeistung#parent
e014bcbdb5b3b4b7a8e9c4f92431c0f1e3fbed72 2018-10-22 14:31:04 +0200 Marco Descher [14501] TarmedLeistung#extension
705e9d31602774233ce44fce65029ca96289a2a4 2018-10-22 13:40:47 +0200 Marco Descher [14501] c.e.b.ch.arzttarife.model initial checkin
9ba87fdacd6f5dfad1b5ae7ded109545ed5de7b8 2018-10-11 21:11:33 +0200 Marco Descher [14501] include ticode
f6210d0675a6039550528cd147d17b1847260140 2018-10-11 20:21:03 +0200 Marco Descher [14501] Artikelstamm billing
4e603855dd0553ce0054491c0cb8610c77a13bb7 2018-10-11 13:24:19 +0200 Marco Descher [14501] ArtikelstammTests#loadFromCodeElement/StoreToString
8151e3bd63dd59a2122eda100fe39061b4e4f90a 2018-10-11 12:29:58 +0200 Marco Descher [14501] add artikelstamm p2
23a05e849a681eb2d73102ffde2b2f1ffc5a5ade 2018-10-11 12:24:41 +0200 Marco Descher [14501] add artikelstamm p2
e23bbd891453e63a6fc40a6539ed1b6a568eedc6 2018-10-11 12:21:00 +0200 Marco Descher [14501] add artikelstamm p2
c315b4e60566cf787c052e8d4ff21df302bb8050 2018-10-11 12:19:27 +0200 Marco Descher [14501] add artikelstamm p2
d5310f735a9241f9fa58d15c2b1d4c7b7ba741e3 2018-10-11 12:16:55 +0200 Marco Descher [14501] uncomment p2
0e8fc603402bb4e5513739901160cdc27b83ff5b 2018-10-11 11:28:25 +0200 Marco Descher [14501] uncomment features
787ed0fe54c580b23b2d143efc8e5646b045e08e 2018-10-11 10:32:52 +0200 Marco Descher [14501] Artikelstamm initial commit, uncomment builds
d47518dc59217bc57f884bc6cb8feee3a28e53a8 2018-10-10 16:43:31 +0200 Marco Descher [14501] Refactor OmnivoreModelService
f84ba67d252a47a0b69906b9804700637f4fd255 2018-10-10 14:49:22 +0200 thomashu [14587] add omnivore model service
2f83d8b422bf90e2b4be20fafe0634d268520105 2018-07-05 15:01:03 +0200 thomashu Merge remote-tracking branch 'origin/master' into f11106
a02264fd7ee5286ab172b0c80847975fbdebbbc7 2018-06-08 13:07:28 +0200 thomas [11322] moved interfaces
62f7b5b4f44b54cd2d939128be69a62413df77f3 2018-05-24 10:37:10 +0200 thomas Merge remote-tracking branch 'origin/master' into f11106
14c9e40fd21d2172bc4b05ab3efdc0ba35970341 2018-05-23 11:26:33 +0200 thomas [11459] updated handling of Eigenartikel with code 406
5204c7f6fce2cda1defe5195ec356087b966cbb6 2018-05-22 17:33:50 +0200 thomas [11454] added file move after import to synlab importer
08dbb97ef0bf5c3b7e84a837641411d7fef8a856 2018-05-22 15:27:31 +0200 thomas [11450] removed Konsutlation selection on agenda Termin selection
4d58c47b12ab724ace8779e00930fe020bc260ae 2018-05-18 13:54:37 +0200 DavidGutknecht Ch.novcom.mednet.elexis - Improved (#150)
a40fc610079ce00dabaa02c366c087ef4f898cbb 2018-05-16 15:20:24 +0200 Marco Descher [5694] Assign a contact to a calendar area
e1e01410c6e3fd1cf6be1203d5ac391be8956959 2018-05-16 15:28:09 +0200 thomas [11322] udpates due to interface refactoring
0558490c61bcc37ec45778194d0e7f0c26b31b13 2018-05-16 11:08:36 +0200 thomas Merge branch 'master' into f11106
16edccef2c4f3a5739c416ef03727c81f5354375 2018-04-28 09:21:18 +0200 thomashu [11322] update to moved core interfaces
112 commits between origin/3.6 (2018.06.21) and origin/3.7 (2018.12.11)
-----------------------------------------------------------------------
number changes by authors are
38: thomashu
28: Marco Descher
28: Niklaus Giger
10: Txomin Astrain
6: thomas
2: d-roesch
-----------------------------------------------------------------------
877931e47436a9001686426470b0fa1825a2ef73 2018-12-11 11:32:55 +0100 thomas [14649] [11331] reworked switch mode on agenda view and set font on init
9a4a9f8c2a493301e88969c565a2b34c6f32c416 2018-12-10 13:08:17 +0100 Txomin Astrain [14491] Label changes in eMediplan added l10n (#167)
779faea2ef37252ad2d88e73d675671f122687f3 2018-12-07 22:58:34 +0100 Niklaus Giger Merge pull request #171 from jamda/f1-14491
68da6b3f4d010bf9d4528482b0ed7f1647538374 2018-12-07 22:22:05 +0100 Niklaus Giger [14491] Use and log messwerte_v2.xml from getWritableUserDir
61216821cfad744fa05bb553af9c8714470e28cb 2018-12-07 21:37:47 +0100 Niklaus Giger [14491] Hilotec.Messwerte.v2: Fix tooltips. Use messwerte_v2.xml
a3f4291d736b64c4e61777c44a577b305034939b 2018-12-07 17:39:04 +0100 Txomin Astrain [14491] View Dashboard msgs change
b24d83b12dd9e1dda28ac929ea045c139ec964da 2018-12-07 17:36:34 +0100 Niklaus Giger Merge pull request #170 from jamda/f1-14491
f3855178860eef3ef613407ad3a6c4362b299aee 2018-12-07 17:30:49 +0100 Niklaus Giger [9664] Fix copyright/description/category/license for various features
faa8cda805ff5035b3a9cc09ba2ca6e05876e726 2018-12-07 17:24:55 +0100 Txomin Astrain [14491] View Notizen msg change
b06fda0b64c6aef5437e20ddc72cd287e94ad807 2018-12-07 17:06:48 +0100 Txomin Astrain [14491] Briefauswahl labels and names i18n
c78a199978f5f69c8bf8580c28303cb564f56f91 2018-12-06 18:15:48 +0100 Niklaus Giger [14658] eMediplan needs fop wrapper (#157) (#165)
f777b30e2d37a6639966e2ee3dc6cd511fb302e9 2018-12-06 09:27:13 +0100 Marco Descher [14622] TerminDialog add phone enhanced label on creation
9b00cc6b587eeca20d1ad4dcc626c0fd863ba626 2018-12-04 15:16:55 +0100 Niklaus Giger [9093] Update changelog
ebac4626671b609400c8d1a0ceb89b55b8ff1527 2018-12-04 13:27:29 +0100 thomas [11331] set configured agenda font on focus
3acaf94520ece1c17caaf02161a8d54059737521 2018-12-04 08:47:04 +0100 Marco Descher [14735] Allow change order of appointment types and status in pref page
e07a6158ac553bee2b3a1e11fc2c466ed9205860 2018-12-02 10:47:18 +0100 Txomin Astrain [14718] Kleine typo in Agenda (#168)
429e7e0f2e13769281957af9201fc8708d6fdc10 2018-11-30 14:49:43 +0100 thomashu [14725] fixed messages of bildanzeige
03ffc80004ae58a3c03aa17e5f0a12390e48ded6 2018-11-30 14:43:58 +0100 thomashu [14725] fixed messages of privatnotizen
e4a43180805320c9f02e97d8bca552bbd7f58a2e 2018-11-30 14:12:34 +0100 thomashu [1352] allow multi selection for drag of omnivore documents
b0e2a8727403b3feb4b3999d7880d25431193463 2018-11-30 12:31:54 +0100 Marco Descher [14721] Allowing re-ordering of agenda areas in preference page
2d75ce410cef679781ea71f51823d4f79696d4d2 2018-11-29 12:47:14 +0100 thomashu [11373] changed teamw lab import to hl7 multi file parser
2e602cd81d6fbbd702953474ed59e2d4cb7a0136 2018-11-28 09:50:05 +0100 thomashu [14338] reworked automatic billing
712643fe88971e384b059345772c60c2ae15cc9a 2018-11-27 15:37:38 +0100 thomashu [14338] added automatic billing on omnivore drag and drop and import
c70b48b327c70f255c13934ae3a0d341192de136 2018-11-27 14:42:19 +0100 Marco Descher [14700] Fix invoice:insurance value for XMLExporterTiers
028f86ab5f12d8cadf9093ba9dfdcc31172b91e9 2018-11-27 14:28:37 +0100 Marco Descher [14700] Fix addressat for XML44Printer
6b290bb8978e7abddb260742c0f4c5ccf03625d1 2018-11-27 08:54:59 +0100 Marco Descher [14700] Fix invoice:guarantor value in XMLExporter
16cda535e4d995b362131812ee09ad94d8e30907 2018-11-21 16:58:56 +0100 thomas [14647] added move and insert context menu actions to parallel agenda
1f37c4ac38f95c145ecd6890a976bcdf31689587 2018-11-19 10:33:06 +0100 Marco Descher [10716] ICPC updates for name, startDate and sticker initialization
f183e8f8dfc64980ad7ec4378f9e725417375bd6 2018-11-14 10:02:26 +0100 thomashu [14655] fixed NPE on CSV export of null values
ef4b2359a9e47298aaffd3c5a7431925d0793548 2018-11-08 10:30:11 +0100 Niklaus Giger [9664] Update ruby gemfile.lock
1de3f8741711f3fa7c28347481a10ec95e7f29cb 2018-11-08 10:28:34 +0100 Niklaus Giger [9664] wiki_pull imported fixed from wiki.elexis.info
52f73ac44055f8160641b0c22059cca93b0b1ade 2018-11-08 10:17:54 +0100 Marco Descher [14632] PersistentObject#differential
2a6d14c08389e47de7f73557b43caee3efb269a0 2018-11-08 09:48:05 +0100 Txomin Astrain [14491] UI Veränderung Outbox (#166)
52eabd5e68a2a21fa7e2ed8bb8b3071a8e22c8bb 2018-11-06 14:34:43 +0100 Niklaus Giger Revert "[14382] Don't allow special chars like ':' in title"
1383a68980d7584d234b0ceb23244d6d93b1eb7d 2018-11-06 10:04:44 +0100 thomashu [14657] use tarif type 312 for physio if billed on a KVG case
09ec734b7259dbb1a124870e57bc63f7a8b37bcf 2018-11-05 14:23:09 +0100 thomashu [14649] added AgendaView combining parallel and week
e50fa5e19dd88775a22ea6cb55eba6dec5668cab 2018-10-31 08:00:30 +0100 Txomin Astrain [14491] Added internationalization of Inbox plugin (#164)
e9cfd5c124dd19d7a64aa39a9a340bfff51cdf68 2018-10-29 15:23:32 +0100 thomashu [14605] fixed vertical scroll of VaccinationComposite
f7974f4b2ada64c10526bb7dcb5d7fed626e6d85 2018-10-29 12:09:13 +0100 thomashu [14615] added labororder.lg1 plugin and feature
95d69ec6f7cd56fe63ce0f083be2e61c33dbe885 2018-10-27 16:13:32 +0200 Marco Descher [14622] TerminDialog show phone contact info for patient
08d01ad533de9aacd084a1e1cd51c23f707ef194 2018-10-24 14:25:08 +0200 thomashu [14611] fixed docbox agenda sync deleting from wrong area
7affeb40e56f9ab29fd48e646f510147432e6c32 2018-10-15 10:30:20 +0200 Marco Descher [14592] ArtikelstammItems are overwritten due to identical pharmacode
00e1703d9fd2aeec5239ea4afcb1ceecb545f061 2018-10-10 14:09:50 +0200 thomashu [14583] updated ehc to current snapshot, update tests, update outbox xdm
91538e8559e6c69830d98fec0fd730d2b883345f 2018-10-08 09:42:03 +0200 thomashu [14575] handle null row results in QueryLabelProvider
72e78c4b4faa34c2ecc0f076df5bc76e2ee16c61 2018-09-27 14:48:55 +0200 thomashu [14524] skip group exclusion checks for same service
d3df723b7c70d90e7e4807b5bb17247aacefb628 2018-09-25 16:23:55 +0200 d-roesch [14517] Fix Bundle-Classpath and build properties of ch.itmed.lmz.risch.laborder (#163)
e7f9c479f2aff1be1d26d2b9c92546b871745dce 2018-09-25 08:55:55 +0200 d-roesch [14517] LMZ DR Risch LabOrder plugin and feature (#162)
8a83318e0b344bac926243d65aaafa2021adb3d4 2018-09-24 15:28:28 +0200 thomashu [14518] on limit to period check only use services valid on cons date
b2ca47877430ae29b1a1eb4d7f3db62b31c8638d 2018-09-24 14:24:02 +0200 thomashu [14518] skip tarmed group kumulation test for additional services
1f9cc1272fd3154dce01d8b3fe48bb821a413a8a 2018-09-14 10:47:18 +0200 thomashu [9535] removed unused poi imports
a3bb72b60d44c3e456708f6693d279e65d1b2b59 2018-09-05 14:22:45 +0200 Marco Descher [14449] ArtikelstammImporter references: show warning only if necessary
a28d31fc466df5761f057a598259ae0f42c32382 2018-08-30 21:20:47 +0200 Niklaus Giger [9664] wiki_pull imported fixed from wiki.elexis.info
6960ab6bbd97254705425f8101881ba93ab083d3 2018-08-24 16:49:23 +0200 Niklaus Giger [9664] Update Gemfile.lock
e0031b4fd9a5ba5a22944adad3463029a2235406 2018-08-23 22:17:20 +0200 Txomin Astrain [14392] Kleine korrekturen #3
9625872fbfd97cfbc6d84c4b3c204312e99743cd 2018-08-23 21:29:19 +0200 Txomin Astrain [14392] Kleine korrekturen #2
415c66645c141700ec79984a3327fa85701c28be 2018-08-23 20:58:30 +0200 Txomin Astrain [14392] Kleine korrekturen
07016974329a201196fc849b2483fce642569426 2018-08-23 12:48:47 +0200 Niklaus Giger [14382] Don't allow special chars like ':' in title
96559b887225869fdda6e08f49edb80452533346 2018-08-22 13:12:53 +0200 Niklaus Giger [14382] Replace chars like : before openening a file
e0a9854008daa12f285682fdf5b4f1d01c82b8e8 2018-08-22 10:51:14 +0200 Marco Descher [11378] Make order of already ordered items configurable
a2f777ac4e8c27702b4467b1d5ea33058f5a7a5e 2018-08-21 13:00:25 +0200 Niklaus Giger [14381] Allow opening two files with the same name
3f922721601bcc0cdd0ab160ffffc9f4a8137070 2018-08-21 09:30:55 +0200 Marco Descher [14383] #156 Agenda Tabelle bei Neu-Installation nicht korrekt
f94b8346cc04fdfd92a0350f475c42026e1a934c 2018-08-20 16:46:51 +0200 Niklaus Giger [14347] Changes in pharmatype must be considered while importing
6a193dc1045144d13bbd5a9d74b1889e63bb9ada 2018-08-16 15:14:33 +0200 Niklaus Giger [14342] Fix Viollier import tests
859ec244deaad17f511191d132a20d17ebdd4f6b 2018-08-16 10:44:55 +0200 Niklaus Giger [14342] Fix Hilotec messwerte import tests
69d86f79550cd8a7426bc81cc253b006281de253 2018-08-16 10:03:51 +0200 Niklaus Giger [14342] Fix Viollier import tests
a6327fc8c263d226f2ec8ecef53f5e39950b99e3 2018-08-15 20:48:52 +0200 Niklaus Giger [14361] Add missing properties for archie views
daeb49d3a098553529b3569469950ecd45beccd6 2018-08-15 20:18:37 +0200 Niklaus Giger [14369] Handle case of title with extenstion
b052dddf6888b5daac0090a4ebc0d5d9c845adae 2018-08-13 15:24:28 +0200 Marco Descher [14363] Opportunistic patch for TerminDialog#collisionErrorLevel
dc614e65d433e8bfaf5abe70d0031e59550d5c47 2018-08-10 12:17:30 +0200 Niklaus Giger [14335] Use title for omnivore drag/open
ce91341c4ca98d2a3633e31c31ec1e568d8062a0 2018-08-10 10:57:58 +0200 thomashu [14363] web agenda double click and base agenda use CollisionErrorLevel
ab95cd68f94eba4a8994b18ef16b5bdd8914b5dc 2018-08-10 09:45:29 +0200 Niklaus Giger [9664] Symbolic name did not match project name
77f85ea84f20505da99c8739abdbadf15812df4f 2018-08-09 21:53:10 +0200 thomashu [14348] articles from SL list always return code 402
05f45813a8f71f670df719e1b77a00ca007b592f 2018-08-09 09:50:21 +0200 thomashu [5872] do not add fax to telcom without phone
4f3a35e08d2effd006cccf583f75004430aff16d 2018-08-08 13:46:36 +0200 thomashu [11143] add referrer to xml bill, zsr and ean attributes are optional
b93615d0be0a0c1d229f4a249f6ad87fdddc249d 2018-07-30 14:01:28 +0200 thomashu [14321] use copy of list to update element in ArtikelstammFlatDataLoader
cdb6c0d506d951d5a221fc720495182f98259537 2018-07-26 18:36:02 +0200 Niklaus Giger [9098] Fixed plugin properties for teamw and analytica
ab1237121757d4832e2ffa5d2284b6ab77b38109 2018-07-26 15:22:52 +0200 thomashu [11635] document store is not optional
fe8de238b0ffce0372f4073445852ce8628e8d71 2018-07-26 15:01:28 +0200 thomashu [11635] disable all events, do not deactivate inbox element providers
4cc434f1c0ed16805dd88e36166b6857debf0ffb 2018-07-26 14:59:55 +0200 thomashu [11635] immediate start omnivore document store available
f2f8c916c1ff59ffc9f7da50e35d16e689649983 2018-07-26 14:14:29 +0200 thomashu [11635] deactivate inbox element providers before import
ecefd1ca284e3c5242d46b6c283c222d082a3941 2018-07-26 14:11:56 +0200 thomashu [11635] added possibility to deactivate inbox element providers
23630fa6149a70cfa19bf0e83f7d74d7b6dcbbcf 2018-07-25 18:51:29 +0200 thomashu [11635] added aeskulap importer feature to base p2 site
a6cc0afe005748d6252072e68fdd770628337342 2018-07-25 18:42:30 +0200 thomashu [11635] added missing services dependency
6047b3ff7fa26261901832168d2fc33259768894 2018-07-25 18:33:49 +0200 thomashu [11635] added storeid property to OmnivoreDocumentStore
0224b5b2d032c31fb254ff67dc08fd815c9a2201 2018-07-25 18:33:02 +0200 thomashu [11635] added aeskulap importer plugins and feature
8b773cf659bbbb620575b75c457e6290ea71cc7e 2018-07-23 12:09:02 +0200 Marco Descher [10716] Catch stopped medications without consultation in FIRE export
a5cd4f9e202e8921994efdf13016c63b14746204 2018-07-19 16:23:23 +0200 thomashu [10813] changed hl7 allg to core importer MultiFileParser to move file
0c8e4fa5c1e87bd91094e83e7b83c04b321e80a9 2018-07-19 14:37:53 +0200 thomashu [14331] skip tarmed block kumulation test for additional services
464ee22e7ebf7811cbb7c6a66d7d1d633940b4b1 2018-07-19 14:10:50 +0200 thomashu [11378] show ordered state in artikelstamm selector
9837b75e3cc7ed170e3aaa72e4f264417d103eb2 2018-07-19 10:51:18 +0200 Marco Descher [14327] XMLExporter use Fall#getTiersType
56a578ba7d1cbe18afd630641225c4a283eaabf6 2018-07-12 13:14:44 +0200 thomashu [11575] added validation of context for IHL7Message, and show missing
3247f5b834dd082ac4888cb62549c60343ef1243 2018-07-11 13:51:47 +0200 thomashu [11639] escape replacement string on templator text findOrReplace
4d7cf612d09bf0a44238a7b597ab629dbc53b632 2018-07-09 13:38:50 +0200 Marco Descher [11595] Remove TarmedRequirements#INSURANCE
dc003e18006cdaa8e66c5544320312f05f454515 2018-07-09 13:32:22 +0200 Marco Descher [11595] Multiple corrections to fetch insurance from fall.getCostBearer
4bcc4947cc249c6b9fa9a20486dfa06dbd55020d 2018-07-09 13:13:41 +0200 Marco Descher [11592] viollier.v2 skip omnivore dependent test
0dc3e8d733983e9eaa1702bf6517af8860fecac7 2018-07-09 13:04:54 +0200 Marco Descher [11592] More info for failing viollier2 test
f5338a1fbf8f2a5205b78d9dd4e4c5fce3762f23 2018-07-09 12:40:48 +0200 Marco Descher [11592] Activate viollier.v2 tests
c35dd589eab6fc239260f949ce8218d77668d1e6 2018-06-23 19:03:59 +0200 Niklaus Giger [11540] Use smaller, clearer omnivore icon
d11053290d6aa37cc3b6239cfa8e9a86c6597c50 2018-07-04 13:11:26 +0200 Marco Descher [11584] XMLExporterTiers fetch TP cost bearer requirement new format
c5789752fc8517d8561342fb1df3f630cd89127f 2018-07-04 11:19:04 +0200 Marco Descher [11584] EZPrinter fetch TP cost bearer requirement from new format
2f434764c2cc779fee3d996c665d359b2872b0b9 2018-07-02 08:55:06 +0200 Niklaus Giger [9098] Readded tooltip/description/label for plugin[_*].properties
bcb3bea95ee98ab44a4167c95a0a3faa3940fa33 2018-06-29 16:24:32 +0200 Niklaus Giger [9664] Updated KG-Iatrix launch configuration
9aec4f5582ab66566be660fa03566458f3956beb 2018-06-29 16:15:28 +0200 Niklaus Giger [9664] Fix ch.unibe.iam.scg.archie.samples
0fe0b4ccf8c2f855d4eb9d91dc5ae51b26e405ff 2018-06-28 14:53:00 +0200 Marco Descher [9664] Fix build errors/warnings
feb1591b593bb81b612bb649c1f542af4aac2871 2018-06-28 14:48:05 +0200 Marco Descher [11478] Fix NPE warning
815e8c414e05f1109800568cbcfd0aa00a20cce3 2018-06-27 13:45:30 +0200 thomas [11555] changed forget slot to mouse move with page pos week and debug
426755997d888476e17b8ed5b6802ef98e8f047c 2018-06-27 13:30:54 +0200 thomas [11555] changed forget slot to mouse move with page pos
8987745284c062fe20682f6850cb6f88896498e7 2018-06-26 10:03:50 +0200 Marco Descher [11214] Mediport-Plugin wrong buildGarantor #131
f808a7588ab77436397bb63cab930871fc351773 2018-06-26 09:57:06 +0200 Marco Descher [10716] Add docId to pseudo consultations for stopped medications
96e2cf95b4aa1c489597fcc9bacfc56cca164ec0 2018-06-26 08:16:46 +0200 Marco Descher [11543] Remove 3.2 db migration code
8fa23f3cd1d04e9bd0cd323ec4614f6995b215b9 2018-06-25 10:47:54 +0200 thomas added log and display message if an error occurs importing hl7 file
260c7409803b7cf24eea6f2e037afdccecd8f451 2018-06-22 11:07:58 +0200 thomashu [11397] added check for isDisposed
69 commits between origin/3.5 (2018.03.08) and origin/3.6 (2018.06.21)
----------------------------------------------------------------------
number changes by authors are
24: thomashu
16: Niklaus Giger
14: thomas
12: Marco Descher
3: DavidGutknecht
----------------------------------------------------------------------
93b33822ea38032258bf5816aff3e03ccf43f5a9 2018-06-21 16:44:10 +0200 DavidGutknecht Ch.novcom.mednet.elexis (#154)
6377590d5a9ae4b824fadce64fe90fd3a6cafd76 2018-06-21 16:08:15 +0200 Niklaus Giger [9093] Updated Changelog
8ae2eb455405adee4fedde55aadda09707acd6fc 2018-06-20 14:59:42 +0200 thomashu [11379] fixed display event without title to include description
96897c75f4032354ca5f2e31563f62164626c58d 2018-06-20 13:43:21 +0200 Marco Descher [10586] Enforce selection of alternative category on delete
7f1b5b100e1c84a901cf72b3551baa4698446e83 2018-06-20 12:43:08 +0200 Niklaus Giger [10355] Sprechende Dateinamen in Omnivore (#153)
ecab5ba852e26dc4dae2ac2126ba635009894b10 2018-06-19 15:40:11 +0200 thomas [11478] reworked hl7 message ExportMessageHandler char encoding
0cc3f311d240608282b65af30add106180511114 2018-06-19 14:51:51 +0200 Niklaus Giger [11496] Fix NPE in MessungenUebersichtV21.setCurPatient
f61615504fada7d8364729b0cd0b59665b846ccc 2018-06-19 12:35:11 +0200 Marco Descher Fix NPE warning in CstResultPart
66a36e607a29e62dd1a361ec447fb55177de4348 2018-06-19 10:02:35 +0200 Niklaus Giger [11516] Fix translation for Archie views
230d3a2bd858a4b1ad36a78246d359624f597b50 2018-06-18 14:02:18 +0200 Marco Descher [9901] Validate Artikelstamm-References in Leistungsblock aft upd
f3d7253c183aac11e410cdd2445a7dc6b52be824 2018-06-14 17:43:54 +0200 Niklaus Giger [9098] Updated message*properties (format analog RBE)
844389b7fc82ac4fc0de46199a59b719a80f9be5 2018-06-14 16:56:18 +0200 Niklaus Giger [9098] Updated plugin*properties
adb843c01c483c05c0ad41d1aeb74baad99ea0ac 2018-06-14 11:33:37 +0200 Niklaus Giger [9098] Squashed all commits for french translation (#152)
8ab6aa5680fb7605d4c7d4e5cc215682c2406394 2018-06-13 15:31:08 +0200 thomas [11478] fixed hl7 message feature id
b0fea79c5826d68829ba07ddbc3d38f0d85547c5 2018-06-13 15:28:06 +0200 thomas [11478] fixed hl7 message ui build.properties
34b8a67910232e2d5f3a36c1956f02be845f872e 2018-06-13 15:12:07 +0200 thomas [11478] fixed hl7 message dependencies and added feature to update site
f5d8cdc099fbfac16308b8111c447933487023af 2018-06-13 14:59:57 +0200 thomas [11478] added hl7 message feature and bundles
850f49b53ee2b46404f319aab52a66be2c017045 2018-06-11 11:06:58 +0200 Marco Descher [10716] Basic shortlist implementation
d76eb3fc5ef9f90ab188051de399daf9e7fc4aab 2018-06-11 10:01:58 +0200 Marco Descher [10716] Allow Drag and Drop for Encounters view
8c8744ed60ab6032d8a85b0e81faa3e3eb050da3 2018-06-11 09:26:22 +0200 Marco Descher [10716] Fix GridData cannot be cast to FillData error
ede65df320634335592f42cafa5f4b4b6144393a 2018-06-06 17:00:15 +0200 thomas [11481] update tarmed selector on kons fall change
3e491b342f998e83e86dfca6788353a0d530dbc8 2018-06-04 12:32:52 +0200 Marco Descher [6650] Provide dbcheck maintenance code
4623848a07862f8b4b60be9e670c39e6b5bf28a2 2018-05-23 11:26:33 +0200 thomas [11459] updated handling of Eigenartikel with code 406
99e687ffa343b79931823fa42b2bbe6db6f1d34a 2018-05-22 17:33:50 +0200 thomas [11454] added file move after import to synlab importer
935a69ced662c66792c32ffc36b0d6dc316ecd9c 2018-05-22 15:27:31 +0200 thomas [11450] removed Konsutlation selection on agenda Termin selection
2c42e404e2001457013b7d55d808e81f17d1be4e 2018-05-18 13:54:37 +0200 DavidGutknecht Ch.novcom.mednet.elexis - Improved (#150)
e4d96a86b003666b216d323b30cb751e115c0faa 2018-05-16 15:20:24 +0200 Marco Descher [5694] Assign a contact to a calendar area
584ec373c5fd02337cde36087d3b6e91d5897acc 2018-05-14 11:54:24 +0200 thomas [11372] changed tarmed group duration limit to periods
4f4e9decea2e04b4d6b81e8aecdb8913e5891930 2018-05-09 18:37:38 +0200 thomas [11339] reworked physio importer, and ui for incremental imports
e04dcc41ae9ac4050bbbde5337f55e413f0ad120 2018-05-09 10:52:02 +0200 Marco Descher [6105] [11356] BillingSystem refactoring, InvoiceList search update
a061b528a675ff6891b447360062958c477b1143 2018-05-08 16:00:54 +0200 thomas [11354] updated migel import for april 18 csv
a04e0a1a4fd572b6703354414c0bb78278053848 2018-05-07 17:08:49 +0200 thomas [11372] changed tarmed service duration limit to periods
d7f5155e097a0c6ebbb29e5797142900f6c62c57 2018-05-03 16:43:08 +0200 thomas [11355] updated java modules in classpath
73486d590b4255b8641cdd41648a5b554b993e63 2018-05-02 17:44:46 +0200 thomashu [11325] web agenda events do not display time, added description
d77bf7f4d272df83afa110f110fbe7ce0855b37d 2018-05-02 14:21:44 +0200 thomashu [11324] added swiss medic medicament web search toolbar contribution
31ae674455b5e6c7b285fc4af89c946d371d2682 2018-04-30 14:22:21 +0200 thomashu [11324] updated swiss medic medicament web search
8c3c4d166856dbe8a0e1850ca09bf21daa7357e7 2018-04-30 13:13:08 +0200 thomashu [11327] added additional right border for event status display
7c89d8f98e93fa6b14d82f6d01fcd109fb27d022 2018-04-30 11:07:27 +0200 thomashu [11328] reworked sorting of search result on TerminDialog
acd4f0f79f0f2e5ea11cb629ccb8197fc04b6968 2018-04-30 10:54:38 +0200 thomashu [11326] try to center agenda auto scroll
0b6d029846797d99cd06c5489b67ff287a9c4037 2018-04-30 10:21:07 +0200 thomashu [11321] added refresh button to parallel and week agenda view
74e8ba28513b9a373801ce7a19a5cf6e3c334d52 2018-04-24 16:14:15 +0200 thomashu [11299] added sorting appointments on appointment card print
edabb8ba288e50949042aff84f360785e62cbce3 2018-04-23 14:45:07 +0200 thomashu [11298] fixed displaying flat omnivore view
6b4d8a38b44a1de0d4054d152f962396b80ff43d 2018-04-17 17:59:11 +0200 thomashu [10521] moved AgendaGross save column sizes to viewer dispose listener
4bcc5e899f6a670f3075c08dcf60f5d3dd41a54f 2018-04-17 17:58:09 +0200 thomashu [10521] updated BaseAgendaView and sub classes
d5f460e3549787bfc7a55490b84c4294e777b7b0 2018-04-17 17:57:14 +0200 thomashu [10521] updated OmnivoreView
53b2526d2d4e0423844e9d7beaeabe301f84306c 2018-04-17 14:14:33 +0200 thomashu [11254] use mandant information and not biller for provider element
e67299b60c63daf8521194350cb55dac3afe0956 2018-04-17 13:24:05 +0200 thomashu [11197] fixed guarantor contact for non patient guarantor
c583b112dc173b78c9f67df05764e1c1af5c23ca 2018-04-11 16:18:42 +0200 thomashu [11213] added CollisionErrorLevel to TerminDialog
d447bd60e9862528033ec7da1b7802056dd3adc7 2018-04-09 08:43:38 +0200 Marco Descher [10716] Set consType = 7 for medi stop pseudo consultations
f649f132574c188443fa1f9e0dc014793e919a35 2018-04-06 12:46:37 +0200 DavidGutknecht Fixed a missing library in the mednet plugin MANIFEST (#149)
303a4e7957301816f5a0adaa1f52a60537cd1a33 2018-04-05 17:28:41 +0200 thomashu [11195] scroll to now on web agenda is now optional
11ef8f2a48ca407939319741d702a4af855ef20d 2018-04-04 13:20:51 +0200 thomashu [11191] fixed ArtikelstammItem getKosten
2d547190256eeb9a2a6b80436643f3df31d314ad 2018-03-27 12:43:04 +0200 Niklaus Giger [9098] Add tests for getting localized strings in connect plugins
1f2d4308e6bd6fa77f7b9831854b8dbf9690e13b 2018-03-26 18:08:33 +0200 Niklaus Giger [10919] Added test for GTIN 14 chars
77247f60ca51dbaaa64e85f0230d4f1eaec2b011 2018-03-21 15:39:11 +0100 thomashu [11120] moved practitioner AL scaling info back to scale_factor_mt
f3cb1e6012306e42e7ea6ba1fcf1ce88aac2c4e0 2018-03-21 14:34:10 +0100 thomashu [11107] added handling of tarif 590 complementary articles to tarned xml
943f9d5f53903deda9a28ba8ebd8d31af60157d9 2018-03-16 16:18:54 +0100 Niklaus Giger [11094] Ignore .polyglot.build.properties when calculating git timestamps
364ec0a3b1b37b15b5ce2849397ab3839da07b0d 2018-03-16 13:41:11 +0100 thomashu [10998] display day limits same as events on web agenda
4818578209d29165974c85f1b521db750563567f 2018-03-15 18:26:08 +0100 thomashu [10998] added loading cache to web agenda
62879a02247f4dfbbffacb4ac406ffcf3247dab8 2018-03-15 13:29:00 +0100 thomashu [10998] updated qtip lib and fixed qtip closing issues
a37764facdb4dbd1114bd06187525b21f9c55087 2018-03-14 15:23:41 +0100 Marco Descher [11013] Fix partial package dispensation price calculation
0b106ff235ee5e925908f35034f1db37bbdcb639 2018-03-13 18:42:37 +0100 Niklaus Giger [11020] Fix Query NPE when patient has no Fall
ceafec63cd22a3612950b422e0d9c9996175fd8c 2018-03-13 17:53:25 +0100 Niklaus Giger [11020] Fix NPE when patient has no Fall
166a9c93dea71d9fbcd8720cd3c06589eee30434 2018-03-12 15:00:00 +0100 Marco Descher [10998] Slow web agenda appointment population
6a81e5fb080bb309789d1d053598507f05758192 2018-03-09 15:23:26 +0100 Niklaus Giger Merge branch 'master' of github.com:elexis/elexis-3-base
3f999f419f028d5206ef367f3b5d2865cb73ddcd 2018-03-09 14:43:27 +0100 thomashu [10991] fixed tarmed side limit check
8bfbd2fc09f3ef266e1071ee3fbfd7e16cd461c4 2018-03-09 13:16:39 +0100 Niklaus Giger [4208] Manual merge of b4208 into master
d710dc49f641ef5c907138020a4ce48c9835204e 2018-03-08 17:26:46 +0100 Niklaus Giger [10986] Remove unused nonElexisP2variant from pom.xml
fc759417e00f2b3ad24fee3b672079ac9070673c 2018-03-08 16:45:49 +0100 Niklaus Giger [10986] Bumped version of master pom.xml to 3.6.0
168 commits between origin/3.4 (2017.11.27) and origin/3.5 (2018.03.08)
-----------------------------------------------------------------------
number changes by authors are
77: Niklaus Giger
56: thomashu
16: sazgin
16: Marco Descher
2: DavidGutknecht
1: Bugra Ergin
-----------------------------------------------------------------------
835190e2f5912e1338337fa16893023a43cd86f1 2018-03-08 08:36:51 +0100 Marco Descher [9901] Loading of ArtikelstammItem on multiple GTINS docu
72426250be55352c37233a4b8a02569f85723c09 2018-03-07 10:17:50 +0100 thomashu [10930] use verrechnet with same validfrom date on coverage limit checks
fbb926a86c8179aa896918028f6f2980ec603d62 2018-03-01 08:26:12 +0100 Marco Descher [9901] Loading of ArtikelstammItem on multiple GTINS
eedb7cd4c14fc7ca29c071c82ab5f576d7f3b671 2018-02-27 10:41:55 +0100 thomashu [10885] fixed tarmed amount limit if side is required #138
28f2b23fbea138085abd94cfdb379d9a3ea69500 2018-02-27 07:34:57 +0100 DavidGutknecht [10878] Ch.novcom.mednet.elexis (#137)
ede8830c8f28fa5d348ffde43f8a32b2ea5f7607 2018-02-26 11:09:13 +0100 thomashu [10879] fixed resetting amount on limit fail is done by TarmedOptifier
5a66f03447f4025e0ac4daac94e909c4f1b63f54 2018-02-26 09:14:38 +0100 DavidGutknecht [10878] Ch.novcom.mednet.elexis initial checkin (#127)
60e6ffaee5e9f04cec605bfa08de21d5dce86b70 2018-02-23 10:38:45 +0100 thomashu [10659] added AL_SCALINGFACTOR and AL_NOTSCALED to TarmedOptifierTest
51679f1b54fbafe108aed691a16b54800ac6377d 2018-02-22 16:10:33 +0100 thomashu [10814] removed feature dependencies
3459bd99dabf87c1ad099d0b623bd795676ac9d2 2018-02-22 10:28:39 +0100 Marco Descher [10716] FIRE Adaptations stickerToMC, insurer information
16c6d6c867f4400bad7ddb23193c508974fc6fdb 2018-02-21 14:49:52 +0100 Marco Descher [10716] FIRE Adaptations patNr, dateF2017, mediStop
84c41302b1922443e040bab078602dcc36c21df9 2018-02-20 14:10:42 +0100 thomashu [10812] added hierarchy information to tarmed detail (#134)
c5e1a7acaca35164b6005ccca7d3a32e5ce767d7 2018-02-19 16:36:04 +0100 thomashu [10659] multiply external_mt factor to unit_mt on tarmed bills
dec07c97972f9896eb579c44862c87ffd3825bd1 2018-02-19 15:16:58 +0100 thomashu [10717] decrement amount or delete if tarmed limitation check fails
cf3f2cb037bdef1b405a898da58a7c56627deb20 2018-02-16 10:59:09 +0100 Marco Descher [10822] Fix NoSuchMethodError
1e031ab6a3fb5712257244f1301f5f80e3e672c4 2018-02-15 17:48:34 +0100 thomashu [10812] fixed detail display of tarmed exclusions and inclusions (#134)
108135b6ecc9baf8b46b1034f0216a043f7de421 2018-02-15 16:17:19 +0100 thomashu [10812] fixed detail display of tarmed interpretation and limits (#134)
30ffd322777a9c21a8d9796992a3859e4da75e30 2018-02-14 16:13:06 +0100 thomashu [10785] add tarmed side to exclusions, and context to TarmedOptifier
0e6547c8b40265b563882ab59a53b9e37f85a27b 2018-02-14 14:32:33 +0100 Marco Descher [10796] Move Kontakt.XID definitions to XIDConstants
f99a9350e88eb2bfccee0231f9b45d340a9baae0 2018-02-12 18:49:47 +0100 Niklaus Giger [10713] Do not save konsText if user is not author
f1bc6d18e4f5049abbfda67284fbfe2f6dd93450 2018-02-09 14:03:05 +0100 thomashu [10659] moved practitioner AL scaling info to external_factor_mt
e1075eb923173baf782ebcfd8aa8d348f5f81b0c 2018-02-08 22:34:39 +0100 Niklaus Giger [10587] Run only medindex unit test
b30691bf544231681e212d85e6d600a316699aac 2018-02-08 20:11:34 +0100 Niklaus Giger [10587] UnitTest + small correction for medindex import
bf2ebe5c8a300c8079f71727ab9bb573333dc46b 2018-02-08 13:02:53 +0100 thomashu [10659] add non scaled AL info, if practitioner AL scaling is performed
58158a4e89df66922d3b025102e9b6f0b693bab7 2018-02-08 10:45:34 +0100 Niklaus Giger [10295] PKG_SIZE is set correctly via setVerpackungseinheit
7952f67c00569282773f5de5dcfda0d3d98e80b7 2018-02-07 11:53:47 +0100 thomashu [10561] added time to tarmed invoice request_date attribute
157e202ba6385bcf7744ce1e39b323e0cb28ba36 2018-02-06 21:22:52 +0100 Niklaus Giger [10608] Improve logging
c153fe171e25f8a9b4b6277d05c56540bd8bda3b 2018-02-06 21:10:02 +0100 Niklaus Giger [10608] Fix NPE. Update testing doc
4ce4a254fbce91eb08ff227fb8897731c6c497d3 2018-02-06 21:00:36 +0100 Niklaus Giger [10608] Select correct patient when JournalView gets visible
b40e868054ec7f980f4086f589d177af0d82180c 2018-02-05 08:23:05 +0100 Marco Descher [10602] Remove MANIFEST.MF entry for OSGI-INF/ehcservice.xml
314cfc303879f6c063510652a227e141de71c7e1 2018-02-01 23:47:10 +0100 Niklaus Giger [10295] Fix blackboxing error introduced with overriding PKG_SIZE
9cf1793e3054b6b5cca25e2e7e6321df736e16f8 2018-02-01 22:03:13 +0100 Niklaus Giger [10295] Trace version/origin/date of imported artikelstamm
526caa4349bcf79528a9fc819690052088740fe8 2018-02-01 20:05:07 +0100 thomashu [10561] removed textplugin complementary printer, prepared fop printing
5923865b15eb2dfd9b5b6b1ebac47b6d2f9c4a32 2018-02-01 18:50:54 +0100 Niklaus Giger [10295] Trace blackboxing in ArtikelstammImport
2f33b4c7d2a06476f9726da462d6b3f79873e12f 2018-01-28 12:32:21 +0100 Niklaus Giger [10499] Fall filtern läuft wieder für Iatrix Konsultationen
1e7e26f61ef814c8fa63b0931019052b301fd7b3 2018-01-27 19:19:21 +0100 Niklaus Giger [10506] Save konsText when isDirty() or when textChange()
1697930f8b22147f8b40603478f4acff5d661c44 2018-01-30 08:28:12 +0100 Niklaus Giger [10295] Ensure that pharmacodes are always 7 digits long when importing (#129)
1dac5a55e7e894ef7ecddcd9fb3c90eb700c8786 2018-01-29 15:26:58 +0100 thomashu [10520] fixed import of name and category line
3b6157211a7dd2e8ab0ff19857c4585c9eb37de7 2018-01-29 13:51:17 +0100 Bugra Ergin (#126) com.hilotec.opendocument, ArchivKG IllegalArgumentException in cleanUp method, Illegal thread access bug
ef7de96ae89e8b5c18c6ac6c95e66a9f8f8afff1 2018-01-29 12:23:28 +0100 Niklaus Giger Revert "Merge branch 'master' of github.com:elexis/elexis-3-base into b4208"
19c17875f1b9e95cba1268f6828156ce98eba71f 2018-01-29 12:20:59 +0100 Niklaus Giger Revert "[4208] Moved some new files to the correct subdirectory"
f134413ec268933777367e87bd185a62f8e9ba87 2018-01-27 12:44:36 +0100 Niklaus Giger [4208] Moved some new files to the correct subdirectory
52468a1cb3740ce552907f02d20cc2a4d1252e47 2018-01-27 11:24:38 +0100 Niklaus Giger Merge branch 'master' of github.com:elexis/elexis-3-base into b4208
740d06349ceab0a6d700ea94eda69665f73cb7a9 2018-01-27 10:50:21 +0100 Niklaus Giger [10323] Fire EVENT_UPDATE after selecting another version of the konstext
8a8927bed583276bc0c17ac9b1d69f3695b55658 2018-01-25 18:35:27 +0100 thomashu [10520] updated MiGelImporter, reading csv only
72d9bd0fbad4d350976c49739f1e170842d3f2a6 2018-01-25 18:33:17 +0100 thomashu [10518] added setting PathologicDescription to MesswerteView
4af18788fecfe3a176320fb6f23ab8c14949782a 2018-01-25 18:17:24 +0100 Niklaus Giger [10506] Fire EVENT_UPDATE after changing kons date
0579033bd598ed124e779c1cba4f2416ff128f58 2018-01-25 18:08:42 +0100 Niklaus Giger [10323] fire EVENT_UPDATE after changing konsText
75979d353f20b337cf133e6332c9cc9031bfa333 2018-01-22 12:23:10 +0100 thomashu [10383] set AL to TP if Verrechent price was manually set
2d524065332e610d454595c164c777c7d4768dc4 2018-01-22 10:52:16 +0100 thomashu updated osgi service bind methods
323d5162b13151cfe800552410077864a1041b86 2018-01-19 18:24:28 +0100 Niklaus Giger [10324] Fix NPE when actKons == null. SetFocus on SELECT
8e1eff1051748920c44c2f0121d00ec1d9ec9f8d 2018-01-19 18:18:34 +0100 Niklaus Giger [10324] Fix NPE in log
0837653c893cea5ad4dd819a9a09f7b9f37c2dbd 2018-01-19 17:12:13 +0100 Niklaus Giger [10324] Add updateKonsProblems and fix EVENT_UPDATE
a3c03b6581397b87a44974fff9f1ee747f196730 2018-01-19 14:45:35 +0100 Niklaus Giger [10324] Improve logging with length of changed konsText
6fe581808e290578624689dc482526d7fd1e2997 2018-01-19 13:52:05 +0100 Niklaus Giger [10322] Update konsVerrechnung on EVENT_UPDATE
a1ed35fffc5722ff01701f3f9a31c80c83364e11 2018-01-19 10:10:17 +0100 Marco Descher [10329] Consider missing dateOfBirth in TarmedOptifier#checkAge
03250bc4bbd63f746185580675e62982100e9c2b 2018-01-18 17:39:31 +0100 Niklaus Giger [10296] Fix possible NPE
5e74f234b2f0e6197295e07bf18ec16efe894419 2018-01-18 17:01:37 +0100 Niklaus Giger [10296] Fix two NPE
2b5da19318c3418c18668f60914ff6a1ccb06f47 2018-01-18 16:35:29 +0100 Niklaus Giger [10296] Niemals eine neue Kons erstellen
7d6b6e63fe501494a7c1f706acfaa4cfa9348c84 2018-01-18 16:35:02 +0100 Niklaus Giger [10296] Konstext korrekt setzen nach Editieren von Problemen
b9f64250a279aef2a4b3bc23b71428ceef1e0d80 2018-01-16 07:54:29 +0100 Marco Descher (#124) Move BlackboxFilterAction medelexis-3 -> elexis-3-base
4e3b7e4c088261ac63ffdbc532b48785db8bde8e 2018-01-15 17:51:18 +0100 thomashu [10014] fixed getting AL and TL from Verrechnet if set as Double
6374a6906e21ed7dba6b008363ff10a2ca3970b9 2018-01-14 21:04:27 +0100 Niklaus Giger [9975] Fix check for editable consultations
0bd07f29a6834e7259174810f7dc3cf0af7588f8 2018-01-14 20:53:07 +0100 Niklaus Giger [9975] Introduce (non-functional) change Author for konsText
a75a9a5e722e7f23563f3e42dae8af398e9c4002 2018-01-14 20:38:27 +0100 Niklaus Giger [9975] Do not create new kons. Delete kons only of today
13764768fcc051ffd01eb6db7e099fb34c106fb8 2018-01-13 17:11:27 +0100 Niklaus Giger Merge remote-tracking branch 'origin/master' into b4208
3c8a99e6ebe044faf588c641201383dcb47a14f8 2018-01-12 16:15:14 +0100 Marco Descher [9902] Port of server-identifed TarmedGroup NPE
e05650632fae485641dbf71c87087a4e602adc44 2018-01-12 15:47:31 +0100 thomashu [9957] fixed tarmed import of chapters linked to old parent chaapters
090870284c8544b6370e589c646c34b9b56c16d6 2018-01-12 14:51:35 +0100 Niklaus Giger [9921] Reworked synchronistion to use actPat/actKons
798b6d20766d70e5ccc8a615815b5921b858d4e6 2018-01-12 14:48:19 +0100 Niklaus Giger [9921] Suppress show actKons in lower part of JournalView
a125b8361cb6ee2b7aa363cf371dda5c174bdca9 2018-01-12 14:37:09 +0100 Niklaus Giger [9921] Add helpers for checking consistency
dc2a80b95ad474ecb89c38b6c8cfa74951e65fc3 2018-01-12 11:11:17 +0100 thomashu [9958] added PhysioCodeElementService, enables usage in block
7cc5ad2c52a58ebe1104e217dbeed4cb6341e473 2018-01-11 18:45:28 +0100 Niklaus Giger [9921] Fix error in activation of ProblemTable
72cba6c4bd610669a2f0d5e87fedc32c6af7790c 2018-01-11 18:34:46 +0100 Niklaus Giger [9921] Correctly initialize highlightColor
9c0f2009253a0bdc66af86166ae8d0066e905b0d 2018-01-11 17:25:51 +0100 Niklaus Giger [9798] Compare labels not IDs to check for mandant
bc20ff47f9f90757dd75869b8b64ab7d830af6f2 2018-01-11 15:00:01 +0100 Niklaus Giger [9798] Check for user not mandant to change konstext
5e7ad9085eb0625ab73cf48cfae4a6f778829ff4 2018-01-11 13:48:24 +0100 Niklaus Giger [9773] Fix InboxWatcher if too many open files under Linux (#123)
38b2eacdf7183df74622d686487521c1a87ddf48 2018-01-11 13:18:12 +0100 thomashu [9769] added memento for sash weights to AgendaGross
d35d4a5af6d4fcec71d8f30b3de184d7095c63fa 2018-01-11 13:08:41 +0100 Marco Descher [9902] Fix potential NPE in TarmedLimitation#getDuringStartDate
dfb294daa7c257c111e1a87f4ce8d3d4ed6c4667 2018-01-11 11:03:09 +0100 Niklaus Giger Merge remote-tracking branch 'origin' into b4208
23af094868665d63d7f60ae03119c499c9cff2d3 2018-01-11 09:32:15 +0100 Niklaus Giger [9909] Fix security warning (#226)
d55e5ddf3b45e33b30df5b9eb5038bc43d30d8c0 2018-01-11 09:16:49 +0100 Marco Descher [9912] Use user label for Termin#ErstelltVon not Anwender label
942849c550a88366144ca682041c1e8bbfeaef69 2018-01-10 19:20:52 +0100 thomashu [9902] fix limitation duration checks, using the service from date
c7f6487c5129b4b740ac0ec93358b1a6699240f3 2018-01-10 12:01:36 +0100 thomashu [9872] added test for valid age calculation relative to cons date
b9f3f067511e739fed032f2055bad15c5902bb88 2018-01-10 12:01:05 +0100 thomashu [9872] fixed valid age calculation relative to cons date
1e8a2eb132249bc0eef0c8357832236d934fb88b 2018-01-09 17:33:35 +0100 thomashu [9769] changed AgendaGross from DatePicker to DateTime widget
8e50c1a74cafccbc6a40da99555c29c9a125ebc1 2018-01-08 14:01:01 +0100 Marco Descher (#118) TextTemplator fails in 3.4 via rgwch
6872cea2db075d475739c821cf5b561ef4cf8391 2018-01-08 09:39:49 +0100 thomashu [9809] added icd10 code element service, enables usage in block
51f5c2a757914f943074e56060ea0f5f728c7be5 2018-01-07 17:20:57 +0100 Niklaus Giger [9798] Only creator of kons may change the konstext
9b2fdfab2be83e1260a5f26d8dfdbabff8f81362 2018-01-05 14:43:59 +0100 thomashu [9680] fixed EAL import with newer xls
a6fded609d3d14290348d99a645aa0c9b65f76f6 2018-01-05 09:58:44 +0100 thomashu [9711] added migel code element service, enables usage in block
c7c6774e8921cf0b80e8692757409f35c3fe43e7 2018-01-04 20:45:12 +0100 Niklaus Giger [9716] Ctrl-S for Konstext + update version
2ad25a1ade25d3eb0147e25efd94a7d710085a21 2018-01-04 16:53:02 +0100 Niklaus Giger [9640] Select correct new kons if EVENT_DESELECTED
a2c3b59dc1583b1a64be6fce1b9231e600ebafdb 2018-01-04 15:00:18 +0100 Niklaus Giger [9682] Avoid loop for showUnableToSaveKons. Fix switching kons
e952e15eb5f4b6f27a8d1bccaa5dc1cf69b918f2 2018-01-03 20:28:54 +0100 thomashu [9668] fixed tarmed AL scaling for practitioner
a819bdcb2c4ad68fe52da6c462b4b3d2d10bc5df 2018-01-02 17:26:46 +0100 thomashu [8728] added bill printer for complementary services
0224422241974371a80d0d4a0d22ed2456f545fb 2018-01-05 09:58:44 +0100 thomashu [9711] added migel code element service, enables usage in block
85e550771cd1e8100921297f53444958b082e682 2018-01-04 20:45:12 +0100 Niklaus Giger [9716] Ctrl-S for Konstext + update version
15a210e3a2a0f78aaecdb46b25a5f9a3030c93e7 2018-01-04 16:53:02 +0100 Niklaus Giger [9640] Select correct new kons if EVENT_DESELECTED
d1ada939f683cf1713009fb85e2e7730c94be4aa 2018-01-04 15:00:18 +0100 Niklaus Giger [9682] Avoid loop for showUnableToSaveKons. Fix switching kons
404e20921a7997475a144c635fd7a2cd54d73ede 2018-01-03 20:28:54 +0100 thomashu [9668] fixed tarmed AL scaling for practitioner
810065b6e51949a98c74a17102aed0b5a3cf3682 2018-01-02 17:26:46 +0100 thomashu [8728] added bill printer for complementary services
1a91f8942bb33694a6ca8e6c7ae10925133c29f4 2017-12-29 21:50:14 +0100 Niklaus Giger Merge remote-tracking branch 'origin/master' into b4208
a1c6a11502c415b8f11f2d21d167f51917ecac7f 2017-12-29 21:34:17 +0100 Niklaus Giger [9555] Trace and fix reason for showUnableToSaveKons
3894b22f97c84674b8349dcc5c7a6272496cf136 2017-12-29 20:38:48 +0100 Niklaus Giger [9598] Updating a problem refreshed patient correctly
535728a19523548169594b4a964349c9391d71e7 2017-12-29 19:12:39 +0100 thomashu [9593] updated filter verrechnet codeelment ID used as code
35e1ed8d908fc41a9d23f96189f477ad24a413a1 2017-12-29 18:56:44 +0100 thomashu [9593] filter verrechnet codeelment ID used as code from tarmed xml
4c6c3b3bc974c01f3873c8abb96fcfe36a7a7751 2017-12-29 16:14:59 +0100 Niklaus Giger [9555] Fixed error which resulted in showUnableToSaveKons
75b82752777c48bcb7bdeba92c2585b247fc3e80 2017-12-29 16:14:59 +0100 Niklaus Giger [9555] Fixed error which resulted in showUnableToSaveKons
6a7103988c2ef1db0e1b35553be069e10cb4078c 2017-12-29 16:00:16 +0100 Niklaus Giger Merge remote-tracking branch 'origin/master' into b4208
f8bef5e23a498a8a2bbdb167d7eb63e9ffce591e 2017-12-29 13:32:00 +0100 Niklaus Giger [9548] Do not react on DESELECTED patient. Logs uniq
f23e687ae39c145ec8eafc02edab406a8371175e 2017-12-28 17:52:59 +0100 thomashu [9571] remove stock migration for legacy articles
6e0a1c7553c46ac0d3d44fa81b2f63d39149f5e4 2017-12-22 17:47:36 +0100 sazgin [8529] Lagerbestand importieren (Format Zur Rose) (#116)
feff6590976b375010ccbafb4321eae5c8b82a7e 2017-12-22 11:10:40 +0100 thomashu [9533] added workaround fixing tarmed limit session coverage combination
4f685f2190c16948a2c241ddc2098a636a7ccf73 2017-12-21 17:34:04 +0100 Niklaus Giger [5507] Do not distribute sources anymore. Avoids install problems
9a0ddd64336981556c5490d6470f1422dc1aa149 2017-12-21 17:34:04 +0100 Niklaus Giger [5507] Do not distribute sources anymore. Avoids install problems
16975d8e6db4f7732d59a2c817591ab9f3beb11d 2017-12-21 13:15:05 +0100 thomashu [9519] enabled termin creation on free termin double click
49993338702f5d9c715036dda76263ee4b9d12d6 2017-12-20 16:11:08 +0100 Niklaus Giger [9275] don't react on empty konstext
abafb472e7cedd7a4096e65582905eadf30e4f30 2017-12-20 16:09:25 +0100 Niklaus Giger [9275] display added/changed drugs
eb892e5e1008d9e2dd58ed4121202b493a2025cf 2017-12-21 11:33:45 +0100 sazgin [9501] Update 3.4 verwirft Einstellungen zu Omnivore und GDT (#115)
f616347ba35fc3dd4f37e988ed61bbe89fd864c6 2017-12-20 15:54:53 +0100 sazgin [9501] Update 3.4 verwirft Einstellungen zu Omnivore (#113) (#114)
c4f7d9c5d1e41808e7be63e7856c84363978a179 2017-12-21 11:33:45 +0100 sazgin [9501] Update 3.4 verwirft Einstellungen zu Omnivore und GDT (#115)
ad7a67938fa96a4404c5e0b975052b0e22aa8814 2017-12-20 16:29:06 +0100 Niklaus Giger [9257] Adapt category.xml to new feature versions
396b25cff698d9192e42343063fe3720b3290ac4 2017-12-20 16:11:08 +0100 Niklaus Giger [9275] don't react on empty konstext
befa5d0c5f969f437c30d21b9c3c396161576a0c 2017-12-20 16:09:25 +0100 Niklaus Giger [9275] display added/changed drugs
fdc391e78be909512345c66798b3213523ad2978 2017-12-20 15:54:53 +0100 sazgin [9501] Update 3.4 verwirft Einstellungen zu Omnivore (#113) (#114)
cba746b58edeaeeb8c4d7f908f93944a5d5294d3 2017-12-20 14:54:58 +0100 thomashu [9492] added complementary code element service
ad5e74524820c305967d28cb4dd0a936e0f37518 2017-12-20 14:22:18 +0100 Niklaus Giger [9257] Updated all features to 100
3b7e1e36c336b79d01f90a7214f3b4ee584cbcad 2017-12-20 12:52:13 +0100 sazgin [9501] Update 3.4 verwirft Einstellungen zu Omnivore (#113)
c757b2657f62a8fa83cf2b4333a527f9c67c862e 2017-12-18 13:26:29 +0100 thomashu #111 fixed TarmedExtension SQL create script
66322ab6ec9c6d0de9a2bbb5303dfb294c84db11 2017-12-18 11:27:46 +0100 thomashu [2206] fixed drag and drop of tarmed for services without digni quali
c8b71477c8aa7f019a1430dec7d07ca67ce739c1 2017-12-20 12:52:13 +0100 sazgin [9501] Update 3.4 verwirft Einstellungen zu Omnivore (#113)
8d74585fdb3b9a017bf041bd97671a18b5eddd2c 2017-12-18 21:48:19 +0100 thomashu [9257] additional base repo features version update missing feature
cee758c91e4f126a9d3b28a83ed24e728429619c 2017-12-18 21:24:55 +0100 thomashu [9257] additional base repo features version update missing feature
eedd4c9d04449c386609e883511f65ff09e4c197 2017-12-18 21:11:24 +0100 thomashu [9257] additional base repo features version update due to 5015
13220aaf5ee83b48fdf4ff3a080a5c10851aa2aa 2017-12-18 18:12:50 +0100 sazgin [9257] base repo features version update (#112)
c249d3d93d44bb3e16cd58e2e34770bde2c47d16 2017-12-18 13:26:29 +0100 thomashu #111 fixed TarmedExtension SQL create script
a2c97d3fdfa9e1cfc60883d7d0bd2334d4d41b49 2017-12-18 11:27:46 +0100 thomashu [2206] fixed drag and drop of tarmed for services without digni quali
efdd41a55b5cb79c27d485e57ef9e47c38bb32cf 2017-12-08 17:47:33 +0100 Niklaus Giger [4208] Fix passing show.eclipse.log and elexis.ui.test.vmargs to unit tests
a7db61592a73f49c8841f8b389d34932108d9195 2017-12-08 17:46:52 +0100 Niklaus Giger [4208] Minimize Travis-CI build
31b7e610eee8c93d7df69a808a0ef9fe7560c745 2017-12-08 16:39:50 +0100 Niklaus Giger [4208] Added forgotten bundles|features/pom.xml
84e3d8c23504731f583ce442de8b3edef3ee097f 2017-12-08 16:30:53 +0100 Niklaus Giger [4208] master pom without m2e, javadoc, etc
120677621e9319b9acd676d78e0a505a9d733f1c 2017-12-08 16:30:06 +0100 Niklaus Giger [4208] Add two pom.xml for tests
69af1a16e02028c252928f73e36ccdc9f236c051 2017-12-08 14:50:08 +0100 Niklaus Giger [4208] Migrate to pomless build
b579b96c87e6eee9eff8769a3d5c018e60827604 2017-12-15 08:53:34 +0100 Marco Descher [9203] Raise ch.elexis.agenda.feature version to 3.2
68f33a92f020cc8c1ec65ae6260303c9b3bc85f7 2017-12-14 22:07:43 +0100 Niklaus Giger [9182] Verrechnet was not updated
fa6e62f88c72fc4d4fe6bed7e11cc74cff671bf1 2017-12-14 21:41:53 +0100 Niklaus Giger [9181] setKons always with pat/kons, as kons may be null
6ac87c9141a6fa598ee571d4a9649fda9a8fe95b 2017-12-14 17:34:55 +0100 thomashu [9222] relocated and updated tarmed bills electronically mandant setting
50bb4e3ec05c1e120e1263423890225cad663f90 2017-12-14 15:25:28 +0100 thomashu [9212] fixed invalid tarmed parent ids on import
ba177cb827e50749ca29bebbec6a5018900bd4e5 2017-12-14 12:15:33 +0100 thomashu [9206] fixed NPE on patient change with open hilotec views
cebd5250fa75a6a3432160ab1a1638b87c4a182d 2017-12-14 10:19:43 +0100 Marco Descher [9203] Set emf.ecore.xmi in feature from included to dependent
1c7bc7fa9782008fd9d7c28c56029887a59232f4 2017-12-07 18:30:57 +0100 sazgin [4833] Additional FIRE Adaptations (#109)
db6872182601545962a4a21f20b9168bd9833156 2017-12-06 18:08:57 +0100 thomashu [9158] reworked checking if law is available in the imported tarmed data
6396b66fd5bd8f1d754aa3d1f477dff62b347bf5 2017-12-06 17:47:50 +0100 thomashu [9158] fixed service text on valid date for tarmed import
04549c20062ef7d42d682a8b3f760e32675f3543 2017-12-06 17:26:42 +0100 thomashu [9158] fixed law on tarmed getForCode method
41f202b7046955dbc6f4cf11c832d0d0767643be 2017-12-06 13:04:18 +0100 sazgin [8853] Vaccinations error (#108)
8b242ae6db3b6ad71395e9148ef157fc6b586704 2017-12-05 14:44:32 +0100 sazgin [9141] EInlesen der SL-Liste führt zu Probleme bei PostgreSQL (#107)
985f7f16bc78b7c771b62a1f4155ab90c18d4a29 2017-12-05 11:31:52 +0100 sazgin [9141] Error reading SL List (#106)
3c5ab2611e9a0716afaa22670c3590a1f0a7567a 2017-12-04 15:13:45 +0100 thomashu [9101] added skipping of block exclusives test for special tarmed blocks
c2a7bc146235e6a594351ac3b0f0f1c2cc252de2 2017-12-01 22:06:10 +0100 Niklaus Giger [9064] Fix problem redisplaying KonsList
4dec50d7da75c87370649c9dcabf4d56c8b14c7d 2017-12-01 20:29:30 +0100 Niklaus Giger [9064] Refactor to highlightActKons and setPatient
9ebcd0477c6ffcda12a0455d5da96ef28051306e 2017-11-30 20:53:28 +0100 Niklaus Giger [9065] Add patient title, react correctly on becoming visible
9e17d91e7f11d9ddae7f0c2471c78703ca16f5b7 2017-11-30 20:53:20 +0100 Niklaus Giger [9065] Correct tarmed verrechenbar
178d444568c56fa24e29861a7f8ab07d950cd634 2017-11-30 08:06:54 +0100 Marco Descher [9051] Fix TarmedOptifierTest#testSetBezug on server side
dbe93d8d505b409164210f4abcc2f492dae7f1dc 2017-11-29 21:48:02 +0100 sazgin [4833] Provide diagnosis via FIRE
6697cb67fb1bd607dd3a0dd0c0d1cad64cb10ee6 2017-11-29 21:45:47 +0100 sazgin [9119] Rechnungen im Status "fehlerhaft" trotz Übermittlung
62d1dd70bb5a3eeab40fc68044ade4ed9994793a 2017-11-29 12:33:34 +0100 sazgin [9103] camt Datei kann in 3.1.8 nicht eingelesen werden (#103)
1f0657853fff55b80982053c0085bcdbc2242d9e 2017-11-29 11:19:16 +0100 sazgin [9079] Performance der Rechnungs Auswertungen (#102)
68 commits between origin/3.3 (2017.08.31) and origin/3.4 (2017.11.27)
----------------------------------------------------------------------
number changes by authors are
27: thomashu
17: Marco Descher
13: sazgin
11: Niklaus Giger
----------------------------------------------------------------------
6735d9ea4c89b57542cdd71ea52a566197a511cb 2017-11-27 19:41:54 +0100 Niklaus Giger [9093] Updated Changelog
56946ffd21881ee018176e9f541778a7d8d0471e 2017-11-24 14:44:11 +0100 thomashu [8802] removed old dataset, added block exclusive tests
879db174e2e3dfd4a9e425d4d89768344b2024f7 2017-11-24 13:18:05 +0100 Niklaus Giger [9093] Move master pom to 3.4.0
63659374485cfc9acfc599009df6a3107e2ab2d2 2017-11-24 09:36:57 +0100 thomashu [8802] added new dataset id for tarmed v34, support version per law
b47e80bcf0ba2a1a6e5849570e91a1dafe8ae5f4 2017-11-23 15:19:36 +0100 thomashu [8802] changed duration limitations to per patient
5ca420fe7b1af858cc7ad54d74044e8ec7ee2638 2017-11-23 10:17:55 +0100 thomashu [8802] merged changes from f8802, for tarmed 1.09
28838ecc7d85af999bf208f60f585331f90cbc7a 2017-11-23 08:28:43 +0100 Niklaus Giger [9086] Overview handle new patient without kons
7e97a5f21658c0cc47f4ecd97333c448e0d46245 2017-11-21 16:01:13 +0100 sazgin [4833] Anpassung FIRE-Schnittstelle (#101)
ac738ed4ed4cbfbe5fa1dbf14c3e0276cd4450f3 2017-11-20 21:18:04 +0100 Niklaus Giger [9065] iatrix loggt alle eeli_pat/kons. Fix changing to patient
d2b81110bd03e56eee49f0e15adc2323d533d398 2017-11-17 12:32:36 +0100 Niklaus Giger [5507] Updated Gem dependencies to use new elexis-wiki-interface
e75b92843f02410077a506d3663a98e106806539 2017-11-17 07:50:41 +0100 sazgin [8792] View ESR - Sortierung nach RN-Nummer (#99)
3f08f780b1934a237e9f4682fb050b53515d9a3d 2017-11-16 20:04:50 +0100 sazgin [5996] ESR View Import does not refresh (#100)
3a8f6ee85b3efce6dc5964d775e88b1006aea1fa 2017-11-16 17:27:33 +0100 thomashu [8802] udpated IcpcImporter use of AccessWrapper
d403ce3e35890ab252709a5fe2adebee3e032b7e 2017-11-16 16:24:28 +0100 thomashu [8802] udpated TarmedReferenceDataImporter use of AccessWrapper
7809f9dea6bb25282a411e500210728abe7ac36f 2017-11-16 12:15:27 +0100 Niklaus Giger [9052] Remove obsolete de.fhdo.elexis.perspective
2754bf23a307c76168c6533694be0755bbbddc32 2017-11-15 14:01:03 +0100 Marco Descher Javadoc
8d823d783c4b2348a7e3393d1d7c623c8e430804 2017-11-14 12:58:19 +0100 Marco Descher [8945] Set better artikelstamm version for null version on import
db4e4b4cc6aed8f6e955a9de932ba78f69be18ff 2017-11-10 14:40:44 +0100 Niklaus Giger [8916] Fix launching KG-Iatrix
a32d84f5a4e07f598810bee6a82f84caecf0674d 2017-11-10 12:59:29 +0100 Marco Descher [8786] Refactor PersistentObject#add_remove_Sticker
1fe36066b41a473ddc9c03f9684dd42bab26f19d 2017-11-09 13:44:37 +0100 Marco Descher [6793] Move IDiagnose to ch.elexis.core.model
44a305476116b1288225460e1025b082eaabbc40 2017-11-03 12:30:56 +0100 sazgin [4833] Anpassung FIRE-Schnittstelle (#98)
db9d59e20511a44365c1c4db14b34f40883826ef 2017-11-03 10:57:33 +0100 thomashu [5059] fixed incremental messwert migration, and component access
aaff24ec57cee617e9527022410838d16b04b70d 2017-11-02 15:27:19 +0100 thomashu Merge remote-tracking branch 'origin/master' into f5059
839694bc6f58494ff3ffb45341aeebb0e987ddb2 2017-11-01 10:51:40 +0100 thomashu [5059] [8706] moved migration to befunde
53000f8053ef3442afe572b9f4b129acee96dae2 2017-10-25 15:45:58 +0200 sazgin [5902] Kopie Drag&Drop von Terminen in der neuen Agenda (#95)
e65bcf3842e5e088c3c1706a7b0618987ca032cb 2017-10-25 15:35:05 +0200 sazgin [5009] Makros - Verhalten bei Fehler (Regression gegenüber 2.1.7.1) (#97)
1f1b19f0f76e4c3e4f41d02f7f4eef8624ee2222 2017-10-25 15:34:31 +0200 sazgin [8684] E3.1.7 Invalid Thread Access bei Anwenderwechsel (#96)
115f8b38043882936e8de0bb4ca6bbf6e89d8c54 2017-10-23 11:40:22 +0200 thomashu [8796] added separate tarif code for medi with indication
b644abe5c52c1a59f74d2955c56a801964ddf20f 2017-10-23 11:40:22 +0200 thomashu [8796] added separate tarif code for medi with indication
cf41c03bbf7f26c948c7be456166c0dff63f6f6b 2017-10-16 15:33:06 +0200 thomashu [5059] added clinical LOINC codes for vital signs
5784f49f0ce847d3a8bf73234fc716eea2ae4095 2017-10-11 15:09:50 +0200 Niklaus Giger [5507] Updated readme for new branches
0ad50ff29dac9c8721e65b63ce112eb892448b9a 2017-10-10 11:39:27 +0200 sazgin [5581] ESR V11 wird durch ISO 20022 abgelöst (#94)
2320ee383ae3a036ae10c422d22070c8eee2aec0 2017-10-09 10:42:51 +0200 sazgin observation coding support loinc (#93)
426508696625339a36db239c56422712eee12f70 2017-10-02 08:48:09 +0200 Marco Descher [5984] Merge Invoice-Correction (#91)
5c5c550a04edb86b6550bcae79f682389578510b 2017-09-22 12:42:44 +0200 Niklaus Giger [8680] View Iatrix Overview added
ea8dd3996790fcae716743969464145969dc880b 2017-09-28 17:46:05 +0200 sazgin [5581] ESR V11 wird durch ISO 20022 abgelöst (XML im camt.054) (#90)
a5f0940cb3f52c108bd3c958416df897be9ea30e 2017-09-26 13:54:32 +0200 thomashu [8686] added ehc pix test with EPD-RU
08a0638c662a304c7fc53ef069dc0f3209b4b1cc 2017-09-15 14:23:22 +0200 thomashu [5119] fixed printing multiple private bills
310758540e0972f2b2430ce6bc5290ed9bd0cf3f 2017-09-15 11:27:25 +0200 Marco Descher [7702] Fix problem on opensource artikelstamm import
316850e3a0aae43feb746fa2421b8fe08e9ad850 2017-09-15 10:46:10 +0200 Niklaus Giger [8650] require BUILD_DATETIME and DATA_SOURCE in Artikelstamm.xml (#88)
94ec000594670971df39699c31c0dfe42026cff4 2017-09-15 10:16:12 +0200 thomashu [8551] fixed loadTermin of docbox again
68b9dd8fe2264ad82a08fa3756389c179c290447 2017-09-15 09:54:19 +0200 Marco Descher [8652] Fix ArtikelstammImporter#inactivateNBBI for Postgres
e75573a1e8304c4120ad30d815e3df2d758d4d90 2017-09-15 07:41:43 +0200 Marco Descher [8648] Prevent NPE in ArtikelstammItem#getDeductible
05b1b08fc9dc150de28b5b3c7e0383ebdf32e1af 2017-09-14 15:54:32 +0200 thomashu [6861] added check if tarmed reference info has been imported
46a2e26065fa6a81f16921f976017288c9f804bd 2017-09-14 14:12:51 +0200 Marco Descher [8636] NPE on ArtikelstammImporter keep overriden value
d407d921013a6bcde1c638d85a1766788e52a8b1 2017-09-14 14:05:44 +0200 thomashu [8551] fixed copy paste error on DocboxTermin exists check
7a00d5690acfc60bb1c40cb0bf7601ae79f58511 2017-09-13 15:59:38 +0200 Marco Descher [5543][5542] Store public price overrides, and do not overwrite
774142e18bb5a780da1b68db43af1a1e29b44289 2017-09-13 15:50:53 +0200 thomashu [8612] initialize variables for update of existing tarmed xml
3ece70bd4b1803063cbea398e8b7e065e5359d10 2017-09-13 15:46:39 +0200 Marco Descher [5543][5542] Store public price overrides, and do not overwrite
b82fbbbbf6bea7cc70b1dcfa44c277da35d69a52 2017-09-13 09:35:44 +0200 sazgin [6859] Agenda neu kleine Anpassungen (#87)
11b1830cbc90dcdd6027ce809f3255019b596788 2017-09-12 16:30:15 +0200 thomashu [8612] update intermediate EAN on every tarmed bill output
53ce57e65f0bc21d1f584216aa6225f85c0a9cbe 2017-09-12 15:05:08 +0200 thomashu [6861] updated setting bezug on billing of tarmed
dd4bbaae06842c04efb5b02bd54e1d817d3370db 2017-09-12 15:02:57 +0200 thomashu [8555] reworked tarmed import of chapters, hierarchy, groups and blocks
5263a4c2741a443d5b784cc3176cb3f7058e412a 2017-09-12 14:12:59 +0200 Marco Descher Merge branch 'master' of https://github.com/elexis/elexis-3-base
0779453df4e6154eb4c12bc0bf47e4c3e832b538 2017-09-12 14:12:28 +0200 Marco Descher [6143] Add build info on webhook call
907f3e32d751ac72d7e91ffa583115fbc123d261 2017-09-12 13:10:45 +0200 sazgin [6844] Parallelimport von Stammdaten verhindern (#86)
51421325df307dd1038a110e8714ccddff1a4e6a 2017-09-11 15:30:53 +0200 thomashu added debug logs for intermediate ean on tarmed xml output
2dc0d75f7cb678fb638cb8f37dc38e7d748b27d7 2017-09-11 14:53:45 +0200 Marco Descher [6143] Fix upload location
a3c232ca33fe513ddb4c158e8381e2c2f71993b8 2017-09-11 14:01:58 +0200 Marco Descher [6143] Fix export not a valid identifier
af400a2e9191444d9b39b7d22bee561e255d86b8 2017-09-11 13:51:54 +0200 Marco Descher [6143] Switch build structure to one stage, use webhook
2068e4c8e8bf8501bba1737ae7ba91e79d800d3d 2017-09-08 16:10:42 +0200 sazgin [6859] Agenda neu kleine Anpassungen (#85)
d12cc85ea8bf446796f96545357c88dab04768a5 2017-09-08 15:09:44 +0200 Marco Descher [6143] gitlab pipeline pick up [bf]\d.* branches
b37555e2c9c7b3d7cacde6337a01ad065ccc60f5 2017-09-08 11:19:37 +0200 thomashu [6861] reworked search for possible master on billing of tarmed
57349edbbce5c69e2a757c36d46d6a703de423f1 2017-09-07 17:47:18 +0200 thomashu [6861] fixed setting bezug on billing of tarmed
81713461d2b885ace609d6cd51f65af41e0b2da3 2017-09-07 10:09:54 +0200 thomashu [5119] fixed privatrechnung print using esr template
de3d9394dacfdc2331f9bf44c702e0763cb997cf 2017-09-05 16:42:00 +0200 thomashu [8555] updated tarmed importer, added hierarchy, groups and blocks
70d413320631920da4c5de45d213589a8dd9c9ff 2017-09-07 13:05:00 +0200 Niklaus Giger [8575] Added travis for OracleJDK8 and run unit tests
53ca5a0e2076099b3cde5c04e8c7f3655fd6d61c 2017-09-05 09:56:23 +0200 thomashu [8551] added additional Termin exists check to DocboxTermin
85 commits between release/3.2.0b30 (2017.06.14) and origin/3.3 (2017.08.31)
----------------------------------------------------------------------------
number changes by authors are
30: thomashu
26: Marco Descher
18: sazgin
11: Niklaus Giger
----------------------------------------------------------------------------
908bd527d433f1e28fd6e7e417f39d0ea5065099 2017-08-31 16:20:20 +0200 sazgin [7822] [7823] E3.3 Elexis Coolbar, FastView (#83)
79412efa49b0916b9872b1f7f6d17b1d26ef8bc3 2017-08-30 16:22:48 +0200 thomashu [6594] fixed assigned device of master data id component
af554f00ac11d810fbf4a5d407ca207c6c4c6717 2017-08-30 14:49:19 +0200 thomashu [6594] added patient master data id component to docbox cda documents
ecdc37cf90171af42d41fab53a19f5e2e5a3dfd7 2017-08-30 12:40:36 +0200 Marco Descher [6820] Add cards.png
2a56b005d389c592fd10a32e10514152727ecd2a 2017-08-28 15:57:20 +0200 Marco Descher [7725] Add missing BlackBoxReason#getByInteger for 9, add docu
87864d11225b82997c0e100515eeb6e6179729de 2017-08-25 08:33:20 +0200 Marco Descher [6851] Fix exception opening GDT Protokoll view
e3bb1529f4c12612f2a8cd50829f0e2c75799b2e 2017-08-24 18:06:19 +0200 thomashu [6847] reworked meineimpfungen service
19f43d82a870bd867965ff9f83f423adcfaec18f 2017-08-24 18:59:12 +0200 sazgin [6131] XDM_Outbox_inbox (#82)
f707e5b099500ad58e93519146f62a5625b90bb8 2017-08-23 16:00:39 +0200 Marco Descher [6143] Include git.branch in pom.xml and .gitlab-ci.yml
8c42bed086ebac3ab80d4fe400e508845102bfe3 2017-08-23 15:21:32 +0200 Marco Descher Merge branch 'master' of https://github.com/elexis/elexis-3-base
abcc9853ad09b76d7992c2f80b871aa6dd0c9d99 2017-08-23 15:21:08 +0200 Marco Descher [6143] Update .gitlab-ci.yml deploy condition
ddf48071b868fcc610f1834802855e1ee6fae7af 2017-08-23 15:07:33 +0200 thomashu [5898] added complementary service system
5184167c9ce56ae29d20dbab57a7d929970b023f 2017-08-23 12:55:10 +0200 Marco Descher [6143] Update p2 location for tycho build
338125a3052a5242d686454687d90f3e3ab0d901 2017-08-23 12:37:18 +0200 sazgin [6808] Perspektive ICPC2: Views können nicht geöffnet werden (#80)
f723726eedb2d1ea4f4ae94eabcbe384871944d3 2017-08-23 10:01:11 +0200 Marco Descher [6143] Change deploy location for gitlab ci
c677bd3201e70fa1bf2242b56cd4fb908edd1f01 2017-08-23 08:04:51 +0200 sazgin [6831] Patientenwechsel - Deadlock in Hilotec KG Perspektive (#81)
523530ea2326b92e04f40bb311ce914ae2fcc5e1 2017-08-22 10:02:24 +0200 Marco Descher [6609] Pull Artikelstamm_v5 changes
fc93acdce1441a804c9187678314c51692759e2d 2017-08-21 15:36:29 +0200 thomashu [5652] manually reverted, see 6814
e86b710efcb23a603b3681baa1c629f1c16d952e 2017-08-21 10:38:46 +0200 thomashu [5581] added new ebanking bundle to base ch feature
11a87974a3a7656947c616aa1b6a15681260f95a 2017-08-21 10:30:34 +0200 sazgin [5581] ESR V11 wird durch ISO 20022 abgelöst (XML im camt.054) (#65)
467d60b440ab03a6bf30100e1306fb6fe99780ce 2017-08-17 13:33:38 +0200 Marco Descher [6609] Add dosage form
f47822e921566310e9d933aa9db58d2885a44a41 2017-08-17 13:22:24 +0200 thomashu [6782] make print at intermediate set able in XMLExporter
fdba61d01e2b55f5e310bd45cd30799e4b4118e8 2017-08-16 16:07:23 +0200 thomashu [6402] added LocalLock and file open test to global inbox file import
f5e0ab65904f2b82ea79478058c75ede18fe9001 2017-08-16 15:23:18 +0200 thomashu [6789] added rsc directory including fonts to build properties
7825f78d9c40e8aaaf1ebd8d834eedd111414428 2017-08-16 14:43:37 +0200 thomashu [6789] fixed fop service font config
ec2a4155da10c8bc87c487c9965737e46b073196 2017-08-14 22:19:14 +0200 thomashu [6131] added outbox bundles to inbox feature and maven build
9d863807f6df9974613bb9140afc1932247bc014 2017-08-14 21:57:22 +0200 thomashu [6131] added outbox command to core documents popup menu
5c49df0840bba7664fafa10bfefabc10ad78c7b0 2017-08-14 18:25:37 +0200 sazgin [6131] XDM Outbox inbox Dokumente Austausch (#79)
bdf47faa61697cf9e6cfaa8f2ed2461edf69a611 2017-08-14 14:32:54 +0200 sazgin [6696] eMediplan Anpassungen nach 1stem Feedback (#74)
8c87be88b17124b8c91aaa214d83371aacde0b99 2017-08-10 13:13:20 +0200 sazgin [6751] NPE beim Erstellen von neuem Röntgen-Eintrag in Perspektive (#78)
a9f6dce5f7b2e32d910d1f8497d2fedd80308d12 2017-08-09 10:49:31 +0200 sazgin [6743] Automatische Verrechnung der Technischen Grundleistung bei (#77)
884872a98191a7a9bb14cd59c332e706abe786c2 2017-08-08 13:04:55 +0200 Marco Descher [6708] color modifications
a95b9a6d95933fc847904d210d232f9f61034cce 2017-08-08 12:35:59 +0200 sazgin [6708] Anpassungen ArtikelstammView (#76)
3b894c232b0481f4f0134cfa148d698d0734bcf6 2017-08-08 08:24:36 +0200 sazgin [6718] Tarmed Zuschlagsposition 04.0620 (#75)
10daafadf0306e2779d9ea8f0b647be7472ced93 2017-08-05 11:00:04 +0200 Niklaus Giger [6686] Log version of KG Iatrix
989d99b0ca523a89ea0ab6107905c1669ca89984 2017-08-02 15:18:36 +0200 Marco Descher [6709] Missing commits
e03c980e6cd00c9af5dc905043f9b7cac1298bd2 2017-08-02 15:13:41 +0200 Marco Descher [6709] Update to artikelstamm_v5
69b1c03f1a84601437f4c036191eb921ad347b72 2017-08-02 13:50:54 +0200 Marco Descher [6709] Remove unnecessary dependency
52fdc681ec57f816f6fd2fa37ec114ffce15c0e9 2017-08-02 13:27:11 +0200 Marco Descher [6709] Move RDUS importer to medelexis repository
9acc39c9bb910891ee83225b892a5729e8cfbfdd 2017-07-28 18:05:34 +0200 thomashu [6682] fixed reminder element index in payload
046f1762719c9595e4d2a6549b76e8c5f7ccc2ca 2017-07-28 17:30:00 +0200 thomashu [6682] fixed reminder element index in payload
fbb491b96ef726a2e7f3fb3008e1d34ac730d888 2017-07-27 11:24:40 +0200 thomashu [6690] added vaccination view scaling if win screen scaling is active
98a787810cb1f609c46c1c011d23c7535963419a 2017-07-26 12:34:24 +0200 sazgin [6690] Impfplan Impfungen mit Datum xx.xx.2000 (#73)
18f8aded0b6edcba1b9164f8efb77887a33b642e 2017-07-25 12:30:48 +0200 thomashu [6321] fixed dependency from ical4j to edu.emory.mathcs.backport
094820010fb37a7a09bed011a927907bce848d95 2017-07-20 13:23:43 +0200 thomashu [6682] fixed reminder for printing tarmed xml 4.0 and 4.4
caeac671ee7e94032fe2b376722529f028820150 2017-07-19 16:10:24 +0200 thomashu [6682] fixed reminder for tarmed xml 4.0 and 4.4
855f52b95b5f4cad4a6ea4fbc965da3a19f81c89 2017-07-18 12:16:01 +0200 thomashu [6580] changes due to DelayableJob removal
eabc0abd8d719e08fd388e9981a25a8bb98177de 2017-07-18 11:09:01 +0200 thomashu [6580] changes due to DelayableJob removal
130c321cf6f6b66242360a86c8b19f9531aaac2a 2017-07-14 17:27:42 +0200 Niklaus Giger [6620] Update problemlist in the middle part after changes via top
f06282e67ab5269c4e350784375b647bf7506e15 2017-07-14 16:44:32 +0200 Niklaus Giger [6604] recognize errors updating kons
e64fe2bb31ead84e12c50a0c04b80146d31a4836 2017-07-14 13:52:05 +0200 sazgin [6490] Import von eMediplan in die Medikationsliste (#71)
0666190efa79d12d5370d3c5a1815f0be0c246ca 2017-07-14 13:25:32 +0200 Niklaus Giger [4833] Update FIRE versions to 3.2.0
d3ebdb8a97c50ebc31fedb1056b2dff5cb1b8e3e 2017-07-14 12:48:56 +0200 thomashu [6657] updated ehc feature version of pom
f92f0b0543dbfcede6551ffbf799019f3248de62 2017-07-14 12:46:09 +0200 thomashu [6657] updated ehc feature version of p2site
95030eb5947d538d7d8af4b080e45869716dc90b 2017-07-14 12:41:31 +0200 thomashu [6657] updated ehc feature and build properties
d2e2fc37394510c8016850313e536c13211e60da 2017-07-13 13:50:21 +0200 Niklaus Giger [4917]Generate repo.properties in master pom.xml
4827f7f094bcaa89a01d221cd78a514b90b24790 2017-07-12 14:26:28 +0200 Marco Descher Merge branch 'master' of https://github.com/elexis/elexis-3-base
eab0a29e692dd53144379725caf72cf3e43ab180 2017-07-12 14:26:11 +0200 Marco Descher Add build status badge
41f1fc1a784823f1b7c478dd8612d5012d253f62 2017-07-12 13:39:54 +0200 Marco Descher [4917] update c.e.base.befunde version
7dadadda47c34d133c675eefe6b9568b80a01e82 2017-07-12 11:59:51 +0200 Marco Descher [4917] Fix BefundePerspektive
f0390fb356b6200063168e1241d75f52da9f81b6 2017-07-12 11:41:48 +0200 thomashu [6647] fixed codesystem code of medicaments for billing
56845b6354f144a951cf14be4d233d728c293194 2017-07-12 11:02:58 +0200 Marco Descher [4917] Wrap build into xvfb-run
8acec7a528bc9c3353d07483bdf1f6ad68c9f51c 2017-07-12 10:59:30 +0200 Marco Descher [4917] gitlab activate tests on maven build
f7a9aba0ffcb7edfe65f65587bb4b318fb88a0a3 2017-07-12 10:53:33 +0200 Marco Descher [4917] Fix .gitlab-ci
f8445ac60e0e2cfb210365a68524102adae46fd8 2017-07-12 10:45:06 +0200 Marco Descher [4917] Trigger medelexis-3-application build
929644f58c350bd912fbb776ad8636720f229e28 2017-07-10 14:42:04 +0200 Marco Descher [4917] Add gitlab CI file
6964904b5ea171e213c5acc5241f24d07cf0be77 2017-07-10 08:10:15 +0200 Marco Descher Create LICENSE
043862ede22271afae27f0c23d06a4f038b1b9eb 2017-07-07 14:54:06 +0200 thomashu [6624] try to fix existing bills without amount_prepaid
4b644d29ee6aa9d1a300d27587670be05025e527 2017-07-07 10:48:55 +0200 thomashu [6624] updated arzttarife test launch config
3ef372471a5fbc108747c11f14964a4b7dcc2217 2017-07-07 10:47:06 +0200 thomashu [6624] fixed tarmed bill output for bills with prepaid amount
f59a9283c744519b548a568d9e2118466a0a3b26 2017-07-06 17:31:48 +0200 Niklaus Giger [4917] Fix typo
1213f3a9473c9ac0c33974fdcb9e313bfc352a06 2017-07-06 17:21:33 +0200 Niklaus Giger [4917] Require project name
c07d91e243da4f2ca184e6dba08e299bbcf80b08 2017-07-06 16:53:02 +0200 Niklaus Giger [4917] Adapt to shorter download
6e5a8ea758e1cfaf493f662e953ea91af94c121c 2017-07-05 08:16:12 +0200 Niklaus Giger [4917] Use http instead of https to avoid Jenkins problems with certificate
cb75c5d0033581e58202a07c70122791f05e5202 2017-07-04 22:15:28 +0200 Niklaus Giger [4917] Added new ch.elexis.base.p2site/install_branch.sh
4aa54b71d15f5aa69d1b4b444385c73b17fa0891 2017-07-04 22:09:40 +0200 Niklaus Giger [4917] Update to use mvn 3.3. Adapt to new target/elexis-3-core
b20f6d65ee1f870391c2311a0eab28e9d3a10faf 2017-07-04 13:37:31 +0200 Marco Descher [4917] Fix ch.elexis.agenda for Neon.3
330c915bc4f3a2c906b59ad322727559c77e41da 2017-07-04 10:05:16 +0200 sazgin [4833] Anpassung FIRE-Schnittstelle (#70)
fb5e78ae66c4cfe460df6d8112672d0611d930f3 2017-07-03 12:01:58 +0200 sazgin [6593] Überarbeitung Agenda Gross Layout (#69)
54bf24ffce5299b2e16139c5d478f3e350b9cc06 2017-07-01 11:32:28 +0200 sazgin [6511] Agenda Gross - Sprung des Fensters verdeckt Einträge (#68)
d35565b7d506efc5adf5cbcb93ab94f425313749 2017-06-30 16:19:47 +0200 thomashu [6586] fixed getting selected vaccination effects for no selection
f8c266301da132e9fe382435868f477319fbb9df 2017-06-30 16:18:28 +0200 thomashu [4394] fixed vaccination layout on patient change
dd3abdbaead5bf55fa2d33769f1d161c45599169 2017-06-30 13:48:51 +0200 sazgin [6569] Omnivore could not create the View (#67)
c096e83efd76945589a53c15afdae23f92a5b688 2017-06-29 16:06:47 +0200 sazgin [4394] Impflistenausdruck (#66)
0195a3a78c5e2af345db6f29e708767520ad0e95 2017-06-27 15:58:08 +0200 thomashu [6545] reworked printing tarmed bills, vat and obligation
38 commits between release/3.2.0.beta28 (2017.05.12) and release/3.2.0b30 (2017.06.14)
--------------------------------------------------------------------------------------
number changes by authors are
14: Niklaus Giger
13: sazgin
9: thomashu
2: Marco Descher
--------------------------------------------------------------------------------------
ceceb2ca2d09ed369f9c30d5ece31714e2bb43fc 2017-06-14 13:12:08 +0200 sazgin [5181] GDT View und Ergänzungen in den Einstellungen - Icons (#64)
fc92fcd6a0d4227d9acb676e61a0bdae92ef25c9 2017-06-13 16:46:47 +0200 sazgin [5986] Gesetzlicher Vertreter bei Tarmedrechnung_EZ (#63)
42140f8931e19be595547e1aa6d96e21e5e70c95 2017-06-12 15:16:25 +0200 thomashu [6298] fixed amount obligation on tarmed bill
21e802402042479b4fb1e119771b657300763b3e 2017-06-12 13:00:17 +0200 sazgin [5054] Inbox - Anzeige nur beim angemeldeten Mandanten (#61)
55b78852916da93c9200db50edd1881b9a570eb7 2017-06-12 09:43:23 +0200 sazgin [6228] eMediplan ausgabe noch nicht korrekt (#62)
07d9b2de5b5f106ccbcc1f19dc0d37301da0e205 2017-06-09 09:21:15 +0200 Marco Descher [5336] Provide outsource dochandles job in omnivore
5e917420389061b3b8018a70309047facfb1a9eb 2017-06-07 19:19:45 +0200 thomashu [5791] changed gson dependency to package import
9bd50d9db93b9a5b526ee73be73de126b3879cab 2017-06-07 18:32:42 +0200 Niklaus Giger [6173] Update Verrechnung if TextMakro was called
127ac660c135be553849e90c1544071ce6064df7 2017-06-07 17:49:14 +0200 Niklaus Giger [6172] Remove focus gained/lost to avoid errors. Fix AutoSave
c47fb4df65a6db8de7f1e511b0f1b55fb497682d 2017-06-07 14:30:32 +0200 sazgin [6156] Eintrag notfall Spalte wechselt zu JUL (#60)
75d78515de7b574f11489aefd8b47f6a34c758da 2017-06-07 14:27:16 +0200 sazgin [6085] Leistungsverrechnung DXA Radiologie (#59)
3759374b4c04f25a303acbee9d085e52157702d6 2017-06-01 20:37:09 +0200 Niklaus Giger [6154]Konsextension laden
13b6504c1851401a2c18945d49caa6a17830f207 2017-06-01 12:34:26 +0200 sazgin [6136] View Artikel/Artikelstamm: Scrollbar (#58)
43aac5c6d93f4790ac9b963f3591226e85de60ce 2017-05-30 17:38:28 +0200 sazgin [5986] Gesetzlicher Vertreter bei Tarmedrechnung_EZ (#54) (#55)
753574279348b0f8e049447cca3483ccc5af9c0b 2017-05-30 11:40:22 +0200 sazgin [5986] Gesetzlicher Vertreter bei Tarmedrechnung_EZ (#54)
34d417d0995deeab24f456860660aa45557de290 2017-05-30 08:34:10 +0200 sazgin [6136] View Artikel/Artikelstamm: Scrollbar (#53)
cf183e1628d8ba3e481ea6967168aa445b09c9d8 2017-05-29 14:08:32 +0200 Marco Descher [5832] ch.elexis.barcode.scanner maven update
500b6f80a97afa537530713a4fdc4d727e7425ed 2017-05-26 17:55:44 +0200 Niklaus Giger [6090]Set correct patient on changes or getting visible
7fc9385455662efe303a6184df6344ef8599dd17 2017-05-26 15:32:29 +0200 Niklaus Giger [6108]Fix sending e-mail from KG Iatrix
c981cbf5533650c71ed030d693b3d7bc36225073 2017-05-24 10:31:17 +0200 sazgin [6126] NPE AT Preferences
00119f755d08ce1cab295f0ded591e7ccf81251f 2017-05-24 13:59:20 +0200 thomashu [5832] added rsc folder to build
5503e5d6980f19433d9fb7b1b3c9c184dbefbdc4 2017-05-24 11:16:41 +0200 thomashu [5989] added export of c.u.i.s.archie.export to access CSVWriter
977e2da500365d6d40cdd38b15bccbf7a0bd59ec 2017-05-24 10:52:57 +0200 thomashu [5832] block non emediplan chunks in barcode listener
0e0f60053a115a08967ef603aa4f4397cc886cd6 2017-05-24 09:42:47 +0200 thomashu [5832] fixed c.e.barcode.scanner feature
b947240d6ef2e8e6ca4d0c1e875248f0a3d80a11 2017-05-24 09:36:16 +0200 thomashu [5832] added maven to barcode scanner project
f659ab3c8827e4738f7ae2a50dbc3ed53e90d36e 2017-05-24 09:35:01 +0200 thomashu [5832] added barcode scanner feature to libs of p2 site
525da466f5d0cd748bce989a92128daff2ad6d43 2017-05-24 09:05:17 +0200 sazgin [5832] eMediplan einlesen (#51)
eaa5408db0624ed1250e8d7b7f974e280caf5bbc 2017-05-17 21:26:20 +0200 Niklaus Giger [6052]Kons is editable if user has AccessControlDefaults.ADMIN_KONS_EDIT_IF_BILLED