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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336
|
"""Widgets dealing with patient demographics."""
#============================================================
# $Source: /sources/gnumed/gnumed/gnumed/client/wxpython/gmDemographicsWidgets.py,v $
# $Id: gmDemographicsWidgets.py,v 1.137.2.3 2008/06/02 14:15:49 ncq Exp $
__version__ = "$Revision: 1.137.2.3 $"
__author__ = "R.Terry, SJ Tan, I Haywood, Carlos Moro <cfmoro1976@yahoo.es>"
__license__ = 'GPL (details at http://www.gnu.org)'
# standard library
import time, string, sys, os, datetime as pyDT, csv, codecs, re as regex
import wx
import wx.wizard
# GNUmed specific
if __name__ == '__main__':
sys.path.insert(0, '../../')
from Gnumed.wxpython import gmPlugin, gmPhraseWheel, gmGuiHelpers, gmDateTimeInput, gmRegetMixin, gmDataMiningWidgets, gmListWidgets, gmEditArea, gmAuthWidgets
from Gnumed.pycommon import gmGuiBroker, gmLog, gmDispatcher, gmSignals, gmCfg, gmI18N, gmMatchProvider, gmPG2, gmTools, gmDateTime, gmShellAPI
from Gnumed.business import gmDemographicRecord, gmPerson
from Gnumed.wxGladeWidgets import wxgGenericAddressEditAreaPnl, wxgPersonContactsManagerPnl, wxgPersonIdentityManagerPnl, wxgNameGenderDOBEditAreaPnl, wxgCommChannelEditAreaPnl, wxgExternalIDEditAreaPnl
# constant defs
_log = gmLog.gmDefLog
_cfg = gmCfg.gmDefCfgFile
try:
_('do-not-translate-but-make-epydoc-happy')
except NameError:
_ = lambda x:x
#============================================================
class cKOrganizerSchedulePnl(gmDataMiningWidgets.cPatientListingPnl):
def __init__(self, *args, **kwargs):
kwargs['message'] = _("Today's KOrganizer appointments ...")
kwargs['button_defs'] = [
{'label': _('Reload'), 'tooltip': _('Reload appointments from KOrganizer')},
{'label': u''},
{'label': u''},
{'label': u''},
{'label': u'KOrganizer', 'tooltip': _('Launch KOrganizer')}
]
gmDataMiningWidgets.cPatientListingPnl.__init__(self, *args, **kwargs)
self.fname = os.path.expanduser(os.path.join('~', '.gnumed', 'tmp', 'korganizer2gnumed.csv'))
self.reload_cmd = 'konsolekalendar --view --export-type csv --export-file %s' % self.fname
#--------------------------------------------------------
def _on_BTN_1_pressed(self, event):
"""Reload appointments from KOrganizer."""
self.reload_appointments()
#--------------------------------------------------------
def _on_BTN_5_pressed(self, event):
"""Reload appointments from KOrganizer."""
gmShellAPI.run_command_in_shell(command = 'korganizer', blocking = False)
#--------------------------------------------------------
def reload_appointments(self):
try: os.remove(self.fname)
except OSError: pass
gmShellAPI.run_command_in_shell(command=self.reload_cmd, blocking=True)
try:
csv_file = codecs.open(self.fname , mode = 'rU', encoding = 'utf8', errors = 'replace')
except IOError:
gmDispatcher.send(signal = u'statustext', msg = _('Cannot access KOrganizer transfer file [%s]') % self.fname, beep = True)
return
csv_lines = gmTools.unicode_csv_reader (
csv_file,
delimiter = ','
)
# start_date, start_time, end_date, end_time, title (patient), ort, comment, UID
self._LCTRL_items.set_columns ([
_('Place'),
_('Start'),
u'',
u'',
_('Patient'),
_('Comment')
])
items = []
data = []
for line in csv_lines:
items.append([line[5], line[0], line[1], line[3], line[4], line[6]])
data.append([line[4], line[7]])
self._LCTRL_items.set_string_items(items = items)
self._LCTRL_items.set_column_widths()
self._LCTRL_items.set_data(data = data)
self._LCTRL_items.patient_key = 0
#--------------------------------------------------------
# notebook plugins API
#--------------------------------------------------------
def repopulate_ui(self):
self.reload_appointments()
#============================================================
def edit_occupation():
pat = gmPerson.gmCurrentPatient()
curr_jobs = pat.get_occupations()
if len(curr_jobs) > 0:
old_job = curr_jobs[0]['l10n_occupation']
update = curr_jobs[0]['modified_when'].strftime('%m/%Y')
else:
old_job = u''
update = u''
msg = _(
'Please enter the primary occupation of the patient.\n'
'\n'
'Currently recorded:\n'
'\n'
' %s (last updated %s)'
) % (old_job, update)
new_job = wx.GetTextFromUser (
message = msg,
caption = _('Editing primary occupation'),
default_value = old_job,
parent = None
)
if new_job.strip() == u'':
return
for job in curr_jobs:
# unlink all but the new job
if job['l10n_occupation'] != new_job:
pat.unlink_occupation(occupation = job['l10n_occupation'])
# and link the new one
pat.link_occupation(occupation = new_job)
#============================================================
def disable_identity(identity=None):
# ask user for assurance
go_ahead = gmGuiHelpers.gm_show_question (
_('Are you sure you really, positively want\n'
'to disable the following patient ?\n'
'\n'
' %s %s %s\n'
' born %s\n'
) % (
identity['firstnames'],
identity['lastnames'],
identity['gender'],
identity['dob']
),
_('Disabling patient')
)
if not go_ahead:
return True
# get admin connection
conn = gmAuthWidgets.get_dbowner_connection (
procedure = _('Disabling patient')
)
# - user cancelled
if conn is False:
return True
# - error
if conn is None:
return False
# now disable patient
gmPG2.run_rw_queries(queries = [{'cmd': u"update dem.identity set deleted=True where pk=%s", 'args': [identity['pk_identity']]}])
return True
#============================================================
# address phrasewheels and widgets
#============================================================
class cPersonAddressesManagerPnl(gmListWidgets.cGenericListManagerPnl):
"""A list for managing a person's addresses.
Does NOT act on/listen to the current patient.
"""
def __init__(self, *args, **kwargs):
try:
self.__identity = kwargs['identity']
del kwargs['identity']
except KeyError:
self.__identity = None
gmListWidgets.cGenericListManagerPnl.__init__(self, *args, **kwargs)
self.new_callback = self._add_address
self.edit_callback = self._edit_address
self.delete_callback = self._del_address
self.refresh_callback = self.refresh
self.__init_ui()
self.refresh()
#--------------------------------------------------------
# external API
#--------------------------------------------------------
def refresh(self, *args, **kwargs):
if self.__identity is None:
self._LCTRL_items.set_string_items()
return
adrs = self.__identity.get_addresses()
self._LCTRL_items.set_string_items (
items = [ [
a['l10n_address_type'],
a['street'],
gmTools.coalesce(a['notes_street'], u''),
a['number'],
gmTools.coalesce(a['subunit'], u''),
a['postcode'],
a['urb'],
gmTools.coalesce(a['suburb'], u''),
a['l10n_state'],
a['l10n_country'],
gmTools.coalesce(a['notes_subunit'], u'')
] for a in adrs
]
)
self._LCTRL_items.set_column_widths()
self._LCTRL_items.set_data(data = adrs)
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __init_ui(self):
self._LCTRL_items.set_columns(columns = [
_('Type'),
_('Street'),
_('Directions'),
_('Number'),
_('Subunit'),
_('Postcode'),
_('Town'),
_('Suburb'),
_('State'),
_('Country'),
_('Comment')
])
#--------------------------------------------------------
def _add_address(self):
ea = cAddressEditAreaPnl(self, -1)
ea.identity = self.__identity
dlg = gmEditArea.cGenericEditAreaDlg(self, -1, edit_area = ea)
dlg.SetTitle(_('Adding new address'))
if dlg.ShowModal() == wx.ID_OK:
return True
return False
#--------------------------------------------------------
def _edit_address(self, address):
ea = cAddressEditAreaPnl(self, -1, address = address)
ea.identity = self.__identity
dlg = gmEditArea.cGenericEditAreaDlg(self, -1, edit_area = ea)
dlg.SetTitle(_('Editing address'))
if dlg.ShowModal() == wx.ID_OK:
# did we add an entirely new address ?
# if so then unlink the old one as implied by "edit"
if ea.address['pk_address'] != address['pk_address']:
self.__identity.unlink_address(address = address)
return True
return False
#--------------------------------------------------------
def _del_address(self, address):
go_ahead = gmGuiHelpers.gm_show_question (
_( 'Are you sure you want to remove this\n'
"address from the patient's addresses ?\n"
'\n'
'The address itself will not be deleted\n'
'but it will no longer be associated with\n'
'this patient.'
),
_('Removing address')
)
if not go_ahead:
return False
self.__identity.unlink_address(address = address)
return True
#--------------------------------------------------------
# properties
#--------------------------------------------------------
def _get_identity(self):
return self.__identity
def _set_identity(self, identity):
self.__identity = identity
self.refresh()
identity = property(_get_identity, _set_identity)
#============================================================
class cPersonContactsManagerPnl(wxgPersonContactsManagerPnl.wxgPersonContactsManagerPnl):
"""A panel for editing contact data for a person.
- provides access to:
- addresses
- communication paths
Does NOT act on/listen to the current patient.
"""
def __init__(self, *args, **kwargs):
wxgPersonContactsManagerPnl.wxgPersonContactsManagerPnl.__init__(self, *args, **kwargs)
self.__identity = None
self.refresh()
#--------------------------------------------------------
# external API
#--------------------------------------------------------
def refresh(self):
self._PNL_addresses.identity = self.__identity
self._PNL_comms.identity = self.__identity
#--------------------------------------------------------
# properties
#--------------------------------------------------------
def _get_identity(self):
return self.__identity
def _set_identity(self, identity):
self.__identity = identity
self.refresh()
identity = property(_get_identity, _set_identity)
#============================================================
class cAddressEditAreaPnl(wxgGenericAddressEditAreaPnl.wxgGenericAddressEditAreaPnl):
"""An edit area for editing/creating an address.
Does NOT act on/listen to the current patient.
"""
def __init__(self, *args, **kwargs):
try:
self.address = kwargs['address']
del kwargs['address']
except KeyError:
self.address = None
wxgGenericAddressEditAreaPnl.wxgGenericAddressEditAreaPnl.__init__(self, *args, **kwargs)
self.identity = None
self.__register_interests()
self.refresh()
#--------------------------------------------------------
# external API
#--------------------------------------------------------
def refresh(self, address = None):
if address is not None:
self.address = address
if self.address is not None:
self._PRW_type.SetText(self.address['l10n_address_type'])
self._PRW_zip.SetText(self.address['postcode'])
self._PRW_street.SetText(self.address['street'], data = self.address['street'])
self._TCTRL_notes_street.SetValue(gmTools.coalesce(self.address['notes_street'], ''))
self._TCTRL_number.SetValue(self.address['number'])
self._TCTRL_subunit.SetValue(gmTools.coalesce(self.address['subunit'], ''))
self._PRW_suburb.SetText(gmTools.coalesce(self.address['suburb'], ''))
self._PRW_urb.SetText(self.address['urb'], data = self.address['urb'])
self._PRW_state.SetText(self.address['l10n_state'], data = self.address['code_state'])
self._PRW_country.SetText(self.address['l10n_country'], data = self.address['code_country'])
self._TCTRL_notes_subunit.SetValue(gmTools.coalesce(self.address['notes_subunit'], ''))
# FIXME: clear fields
# else:
# pass
#--------------------------------------------------------
def save(self):
"""Links address to patient, creating new address if necessary"""
if not self.__valid_for_save():
return False
# link address to patient
adr = self.identity.link_address (
number = self._TCTRL_number.GetValue().strip(),
street = self._PRW_street.GetValue().strip(),
postcode = self._PRW_zip.GetValue().strip(),
urb = self._PRW_urb.GetValue().strip(),
state = self._PRW_state.GetData(),
country = self._PRW_country.GetData(),
subunit = gmTools.none_if(self._TCTRL_subunit.GetValue().strip(), u''),
suburb = gmTools.none_if(self._PRW_suburb.GetValue().strip(), u''),
id_type = self._PRW_type.GetData()
)
notes = self._TCTRL_notes_street.GetValue().strip()
if notes != u'':
adr['notes_street'] = notes
notes = self._TCTRL_notes_subunit.GetValue().strip()
if notes != u'':
adr['notes_subunit'] = notes
adr.save_payload()
self.address = adr
return True
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def __register_interests(self):
self._PRW_zip.add_callback_on_lose_focus(self._on_zip_set)
self._PRW_country.add_callback_on_lose_focus(self._on_country_set)
#--------------------------------------------------------
def _on_zip_set(self):
"""Set the street, town, state and country according to entered zip code."""
zip_code = self._PRW_zip.GetValue()
if zip_code.strip() == u'':
self._PRW_street.unset_context(context = u'zip')
self._PRW_urb.unset_context(context = u'zip')
self._PRW_state.unset_context(context = u'zip')
self._PRW_country.unset_context(context = u'zip')
else:
self._PRW_street.set_context(context = u'zip', val = zip_code)
self._PRW_urb.set_context(context = u'zip', val = zip_code)
self._PRW_state.set_context(context = u'zip', val = zip_code)
self._PRW_country.set_context(context = u'zip', val = zip_code)
#--------------------------------------------------------
def _on_country_set(self):
"""Set the states according to entered country."""
country = self._PRW_country.GetData()
if country is None:
self._PRW_state.unset_context(context = 'country')
else:
self._PRW_state.set_context(context = 'country', val = country)
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __valid_for_save(self):
required_fields = (
self._PRW_type,
self._PRW_zip,
self._PRW_street,
self._TCTRL_number,
self._PRW_urb,
self._PRW_state,
self._PRW_country
)
# validate required fields
is_any_field_filled = False
for field in required_fields:
if len(field.GetValue().strip()) > 0:
is_any_field_filled = True
field.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
field.Refresh()
continue
if is_any_field_filled:
field.SetBackgroundColour('pink')
field.SetFocus()
field.Refresh()
gmGuiHelpers.gm_show_error (
_('Address details must be filled in completely or not at all.'),
_('Saving contact data')
)
return False
return True
#============================================================
class cAddressPhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = u"""
select * from (
(select
pk_address,
(street || ' ' || number || coalesce(' (' || subunit || ')', '') || ', '
|| urb || coalesce(' (' || suburb || ')', '')
|| coalesce(', ' || notes_street, '')
|| coalesce(', ' || notes_subunit, '')
) as address
from
dem.v_address
where
street %(fragment_condition)s
) union (
select
pk_address,
(street || ' ' || number || coalesce(' (' || subunit || ')', '') || ', '
|| urb || coalesce(' (' || suburb || ')', '')
|| coalesce(', ' || notes_street, '')
|| coalesce(', ' || notes_subunit, '')
) as address
from
dem.v_address
where
postcode_street %(fragment_condition)s
) union (
select
pk_address,
(street || ' ' || number || coalesce(' (' || subunit || ')', '') || ', '
|| urb || coalesce(' (' || suburb || ')', '')
|| coalesce(', ' || notes_street, '')
|| coalesce(', ' || notes_subunit, '')
) as address
from
dem.v_address
where
postcode_urb %(fragment_condition)s
)
) as union_result
order by union_result.address limit 50"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(2, 4, 6)
# mp.setWordSeparators(separators=u'[ \t]+')
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.matcher = mp
self.SetToolTipString(_('Select an address by postcode or street name.'))
self.selection_only = True
#============================================================
class cAddressTypePhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = u"""
select id, type from ((
select id, _(name) as type, 1 as rank
from dem.address_type
where _(name) %(fragment_condition)s
) union (
select id, name as type, 2 as rank
from dem.address_type
where name %(fragment_condition)s
)) as ur
order by
ur.rank, ur.type
"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(1, 2, 4)
mp.setWordSeparators(separators=u'[ \t]+')
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.matcher = mp
self.SetToolTipString(_('Select the type of address.'))
# self.capitalisation_mode = gmTools.CAPS_FIRST
self.selection_only = True
#--------------------------------------------------------
# def GetData(self, can_create=False):
# if self.data is None:
# if can_create:
# self.data = gmMedDoc.create_document_type(self.GetValue().strip())['pk_doc_type'] # FIXME: error handling
# return self.data
#============================================================
class cStateSelectionPhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
context = {
u'ctxt_country_name': {
u'where_part': u'and l10n_country ilike %(country_name)s or country ilike %(country_name)s',
u'placeholder': u'country_name'
},
u'ctxt_zip': {
u'where_part': u'and zip ilike %(zip)s',
u'placeholder': u'zip'
},
u'ctxt_country_code': {
u'where_part': u'and country in (select code from dem.country where _(name) ilike %(country_name)s or name ilike %(country_name)s)',
u'placeholder': u'country_name'
}
}
query = u"""
select code, name from (
select distinct on (code, name) code, name, rank from (
-- 1: find states based on name, context: zip and country name
select
code_state as code, state as name, 1 as rank
from dem.v_zip2data
where
state %(fragment_condition)s
%(ctxt_country_name)s
%(ctxt_zip)s
union all
-- 2: find states based on code, context: zip and country name
select
code_state as code, state as name, 2 as rank
from dem.v_zip2data
where
code_state %(fragment_condition)s
%(ctxt_country_name)s
%(ctxt_zip)s
union all
-- 3: find states based on name, context: country
select
code as code, name as name, 3 as rank
from dem.state
where
name %(fragment_condition)s
%(ctxt_country_code)s
union all
-- 4: find states based on code, context: country
select
code as code, name as name, 3 as rank
from dem.state
where
code %(fragment_condition)s
%(ctxt_country_code)s
) as q2
) as q1 order by rank, name limit 50"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query, context=context)
mp.setThresholds(2, 5, 6)
mp.setWordSeparators(separators=u'[ \t]+')
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.unset_context(context = u'zip')
self.unset_context(context = u'country_name')
self.matcher = mp
self.SetToolTipString(_("Select a state/region/province/territory."))
self.capitalisation_mode = gmTools.CAPS_FIRST
self.selection_only = True
#============================================================
class cZipcodePhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
# FIXME: add possible context
query = u"""
(select distinct postcode, postcode from dem.street where postcode %(fragment_condition)s limit 20)
union
(select distinct postcode, postcode from dem.urb where postcode %(fragment_condition)s limit 20)"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(2, 3, 15)
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.SetToolTipString(_("Type or select a zip code (postcode)."))
self.matcher = mp
#============================================================
class cStreetPhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
context = {
u'ctxt_zip': {
u'where_part': u'and zip ilike %(zip)s',
u'placeholder': u'zip'
}
}
query = u"""
select s1, s2 from (
select distinct on (s1, s2) s1, s2, rank from (
select
street as s1, street as s2, 1 as rank
from dem.v_zip2data
where
street %(fragment_condition)s
%(ctxt_zip)s
union all
select
name as s1, name as s2, 2 as rank
from dem.street
where
name %(fragment_condition)s
) as q2
) as q1 order by rank, s2 limit 50"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query, context=context)
mp.setThresholds(3, 5, 8)
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.unset_context(context = u'zip')
self.SetToolTipString(_('Type or select a street.'))
self.capitalisation_mode = gmTools.CAPS_FIRST
self.matcher = mp
#============================================================
class cSuburbPhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = """
select distinct on (suburb) suburb, suburb
from dem.street
where suburb %(fragment_condition)s
order by suburb
limit 50
"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(2, 3, 6)
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.SetToolTipString(_('Type or select the suburb.'))
self.capitalisation_mode = gmTools.CAPS_FIRST
self.matcher = mp
#============================================================
class cUrbPhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
context = {
u'ctxt_zip': {
u'where_part': u'and zip ilike %(zip)s',
u'placeholder': u'zip'
}
}
query = u"""
select u1, u2 from (
select distinct on (u1,u2) u1, u2, rank from (
select
urb as u1, urb as u2, 1 as rank
from dem.v_zip2data
where
urb %(fragment_condition)s
%(ctxt_zip)s
union all
select
name as u1, name as u2, 2 as rank
from dem.urb
where
name %(fragment_condition)s
) as q2
) as q1 order by rank, u2 limit 50"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query, context=context)
mp.setThresholds(3, 5, 7)
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.unset_context(context = u'zip')
self.SetToolTipString(_('Type or select a city/town/village/dwelling.'))
self.capitalisation_mode = gmTools.CAPS_FIRST
self.matcher = mp
#============================================================
class cCountryPhraseWheel(gmPhraseWheel.cPhraseWheel):
# FIXME: default in config
def __init__(self, *args, **kwargs):
context = {
u'ctxt_zip': {
u'where_part': u'and zip ilike %(zip)s',
u'placeholder': u'zip'
}
}
query = u"""
select code, name from (
select distinct on (code, name) code, name, rank from (
-- localized to user
select
code_country as code, l10n_country as name, 1 as rank
from dem.v_zip2data
where
l10n_country %(fragment_condition)s
%(ctxt_zip)s
union all
select
code as code, _(name) as name, 2 as rank
from dem.country
where
_(name) %(fragment_condition)s
union all
-- non-localized
select
code_country as code, country as name, 3 as rank
from dem.v_zip2data
where
country %(fragment_condition)s
%(ctxt_zip)s
union all
select
code as code, name as name, 4 as rank
from dem.country
where
name %(fragment_condition)s
) as q2
) as q1 order by rank, name limit 25"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query, context=context)
mp.setThresholds(2, 5, 9)
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.unset_context(context = u'zip')
self.SetToolTipString(_('Type or select a country.'))
self.capitalisation_mode = gmTools.CAPS_FIRST
self.selection_only = True
self.matcher = mp
#============================================================
# communications channel related widgets
#============================================================
class cCommChannelTypePhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = u"""
select pk, type from ((
select pk, _(description) as type, 1 as rank
from dem.enum_comm_types
where _(description) %(fragment_condition)s
) union (
select pk, description as type, 2 as rank
from dem.enum_comm_types
where description %(fragment_condition)s
)) as ur
order by
ur.rank, ur.type
"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(1, 2, 4)
mp.setWordSeparators(separators=u'[ \t]+')
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.matcher = mp
self.SetToolTipString(_('Select the type of communications channel.'))
self.selection_only = True
#------------------------------------------------------------
class cCommChannelEditAreaPnl(wxgCommChannelEditAreaPnl.wxgCommChannelEditAreaPnl):
"""An edit area for editing/creating a comms channel.
Does NOT act on/listen to the current patient.
"""
def __init__(self, *args, **kwargs):
try:
self.channel = kwargs['comm_channel']
del kwargs['comm_channel']
except KeyError:
self.channel = None
wxgCommChannelEditAreaPnl.wxgCommChannelEditAreaPnl.__init__(self, *args, **kwargs)
self.identity = None
self.refresh()
#--------------------------------------------------------
# external API
#--------------------------------------------------------
def refresh(self, comm_channel = None):
if comm_channel is not None:
self.channel = comm_channel
if self.channel is not None:
self._PRW_type.SetText(self.channel['l10n_comm_type'])
self._TCTRL_url.SetValue(self.channel['url'])
self._PRW_address.SetData(data = self.channel['pk_address'])
self._CHBOX_confidential.SetValue(self.channel['is_confidential'])
# FIXME: clear fields
# else:
# pass
#--------------------------------------------------------
def save(self):
"""Links comm channel to patient."""
if not self.__valid_for_save():
return False
self.identity.link_comm_channel (
pk_channel_type = self._PRW_type.GetData(),
url = self._TCTRL_url.GetValue().strip(),
is_confidential = self._CHBOX_confidential.GetValue(),
pk_address = self._PRW_address.GetData()
)
return True
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __valid_for_save(self):
no_errors = True
if self._PRW_type.GetData() is None:
self._PRW_type.SetBackgroundColour('pink')
self._PRW_type.SetFocus()
self._PRW_type.Refresh()
no_errors = False
else:
self._PRW_type.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
self._PRW_type.Refresh()
if self._TCTRL_url.GetValue().strip() == u'':
self._TCTRL_url.SetBackgroundColour('pink')
self._TCTRL_url.SetFocus()
self._TCTRL_url.Refresh()
no_errors = False
else:
self._TCTRL_url.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
self._TCTRL_url.Refresh()
return no_errors
#------------------------------------------------------------
class cPersonCommsManagerPnl(gmListWidgets.cGenericListManagerPnl):
"""A list for managing a person's comm channels.
Does NOT act on/listen to the current patient.
"""
def __init__(self, *args, **kwargs):
try:
self.__identity = kwargs['identity']
del kwargs['identity']
except KeyError:
self.__identity = None
gmListWidgets.cGenericListManagerPnl.__init__(self, *args, **kwargs)
self.new_callback = self._add_comm
# self.edit_callback = self._edit_comm
self.delete_callback = self._del_comm
self.refresh_callback = self.refresh
self.__init_ui()
self.refresh()
#--------------------------------------------------------
# external API
#--------------------------------------------------------
def refresh(self, *args, **kwargs):
if self.__identity is None:
self._LCTRL_items.set_string_items()
return
comms = self.__identity.get_comm_channels()
self._LCTRL_items.set_string_items (
items = [ [ gmTools.bool2str(c['is_confidential'], u'X', u''), c['l10n_comm_type'], c['url'] ] for c in comms ]
)
self._LCTRL_items.set_column_widths()
self._LCTRL_items.set_data(data = comms)
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __init_ui(self):
self._LCTRL_items.set_columns(columns = [
_('confidential'),
_('Type'),
_('URL')
])
#--------------------------------------------------------
def _add_comm(self):
ea = cCommChannelEditAreaPnl(self, -1)
ea.identity = self.__identity
dlg = gmEditArea.cGenericEditAreaDlg(self, -1, edit_area = ea)
dlg.SetTitle(_('Adding new communications channel'))
if dlg.ShowModal() == wx.ID_OK:
return True
return False
#--------------------------------------------------------
def _edit_comm(self, comm_channel):
ea = cCommChannelEditAreaPnl(self, -1, comm_channel = comm_channel)
ea.identity = self.__identity
dlg = gmEditArea.cGenericEditAreaDlg(self, -1, edit_area = ea)
dlg.SetTitle(_('Editing communications channel'))
if dlg.ShowModal() == wx.ID_OK:
return True
return False
#--------------------------------------------------------
def _del_comm(self, comm):
go_ahead = gmGuiHelpers.gm_show_question (
_( 'Are you sure this patient can no longer\n'
"be contacted via this channel ?"
),
_('Removing communication channel')
)
if not go_ahead:
return False
self.__identity.unlink_comm_channel(comm_channel = comm)
return True
#--------------------------------------------------------
# properties
#--------------------------------------------------------
def _get_identity(self):
return self.__identity
def _set_identity(self, identity):
self.__identity = identity
self.refresh()
identity = property(_get_identity, _set_identity)
#============================================================
# identity widgets
#============================================================
# phrasewheels
#------------------------------------------------------------
class cLastnamePhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = u"select distinct lastnames, lastnames from dem.names where lastnames %(fragment_condition)s order by lastnames limit 25"
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(3, 5, 9)
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.SetToolTipString(_("Type or select a last name (family name/surname)."))
self.capitalisation_mode = gmTools.CAPS_NAMES
self.matcher = mp
#------------------------------------------------------------
class cFirstnamePhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = u"""
(select distinct firstnames, firstnames from dem.names where firstnames %(fragment_condition)s order by firstnames limit 20)
union
(select distinct name, name from dem.name_gender_map where name %(fragment_condition)s order by name limit 20)"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(3, 5, 9)
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.SetToolTipString(_("Type or select a first name (forename/Christian name/given name)."))
self.capitalisation_mode = gmTools.CAPS_NAMES
self.matcher = mp
#------------------------------------------------------------
class cNicknamePhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = u"""
(select distinct preferred, preferred from dem.names where preferred %(fragment_condition)s order by preferred limit 20)
union
(select distinct firstnames, firstnames from dem.names where firstnames %(fragment_condition)s order by firstnames limit 20)
union
(select distinct name, name from dem.name_gender_map where name %(fragment_condition)s order by name limit 20)"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(3, 5, 9)
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.SetToolTipString(_("Type or select an alias (nick name, preferred name, call name, warrior name, artist name)."))
# nicknames CAN start with lower case !
#self.capitalisation_mode = gmTools.CAPS_NAMES
self.matcher = mp
#------------------------------------------------------------
class cTitlePhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = u"select distinct title, title from dem.identity where title %(fragment_condition)s"
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(1, 3, 9)
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.SetToolTipString(_("Type or select a title. Note that the title applies to the person, not to a particular name !"))
self.matcher = mp
#------------------------------------------------------------
class cGenderSelectionPhraseWheel(gmPhraseWheel.cPhraseWheel):
"""Let user select a gender."""
_gender_map = None
def __init__(self, *args, **kwargs):
if cGenderSelectionPhraseWheel._gender_map is None:
cmd = u"""
select tag, l10n_label, sort_weight
from dem.v_gender_labels
order by sort_weight desc"""
rows, idx = gmPG2.run_ro_queries(queries = [{'cmd': cmd}], get_col_idx=True)
cGenderSelectionPhraseWheel._gender_map = {}
for gender in rows:
cGenderSelectionPhraseWheel._gender_map[gender[idx['tag']]] = {
'data': gender[idx['tag']],
'label': gender[idx['l10n_label']],
'weight': gender[idx['sort_weight']]
}
mp = gmMatchProvider.cMatchProvider_FixedList(aSeq = cGenderSelectionPhraseWheel._gender_map.values())
mp.setThresholds(1, 1, 3)
gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs)
self.selection_only = True
self.matcher = mp
self.picklist_delay = 50
#------------------------------------------------------------
class cOccupationPhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = u"select distinct name, _(name) from dem.occupation where _(name) %(fragment_condition)s"
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(1, 3, 5)
gmPhraseWheel.cPhraseWheel.__init__ (
self,
*args,
**kwargs
)
self.SetToolTipString(_("Type or select an occupation."))
self.capitalisation_mode = gmTools.CAPS_FIRST
self.matcher = mp
#------------------------------------------------------------
class cExternalIDTypePhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = u"""
select distinct pk, (name || coalesce(' (%s ' || issuer || ')', '')) as label
from dem.enum_ext_id_types
where name %%(fragment_condition)s
order by label limit 25""" % _('issued by')
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(1, 3, 5)
gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs)
self.SetToolTipString(_("Enter or select a type for the external ID."))
self.matcher = mp
#------------------------------------------------------------
class cExternalIDIssuerPhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
query = u"""
select distinct issuer, issuer
from dem.enum_ext_id_types
where issuer %(fragment_condition)s
order by issuer limit 25"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries=query)
mp.setThresholds(1, 3, 5)
gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs)
self.SetToolTipString(_("Type or select an occupation."))
self.capitalisation_mode = gmTools.CAPS_FIRST
self.matcher = mp
#------------------------------------------------------------
# edit areas
#------------------------------------------------------------
class cExternalIDEditAreaPnl(wxgExternalIDEditAreaPnl.wxgExternalIDEditAreaPnl):
"""An edit area for editing/creating external IDs.
Does NOT act on/listen to the current patient.
"""
def __init__(self, *args, **kwargs):
try:
self.ext_id = kwargs['external_id']
del kwargs['external_id']
except:
self.ext_id = None
wxgExternalIDEditAreaPnl.wxgExternalIDEditAreaPnl.__init__(self, *args, **kwargs)
self.identity = None
self.__register_events()
self.refresh()
#--------------------------------------------------------
# external API
#--------------------------------------------------------
def refresh(self, ext_id=None):
if ext_id is not None:
self.ext_id = ext_id
if self.ext_id is not None:
self._PRW_type.SetText(value = self.ext_id['name'], data = self.ext_id['pk_type'])
self._TCTRL_value.SetValue(self.ext_id['value'])
self._PRW_issuer.SetText(self.ext_id['issuer'])
self._TCTRL_comment.SetValue(gmTools.coalesce(self.ext_id['comment'], u''))
# FIXME: clear fields
# else:
# pass
#--------------------------------------------------------
def save(self):
if not self.__valid_for_save():
return False
# strip out " (issued by ...)" added by phrasewheel
type = regex.split(' \(%s .+\)$' % _('issued by'), self._PRW_type.GetValue().strip(), 1)[0]
# add new external ID
if self.ext_id is None:
self.identity.add_external_id (
id_type = type,
id_value = self._TCTRL_value.GetValue().strip(),
issuer = gmTools.none_if(self._PRW_issuer.GetValue().strip(), u''),
comment = gmTools.none_if(self._TCTRL_comment.GetValue().strip(), u'')
)
# edit old external ID
else:
self.identity.update_external_id (
pk_id = self.ext_id['pk_id'],
type = type,
value = self._TCTRL_value.GetValue().strip(),
issuer = gmTools.none_if(self._PRW_issuer.GetValue().strip(), u''),
comment = gmTools.none_if(self._TCTRL_comment.GetValue().strip(), u'')
)
return True
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __register_events(self):
self._PRW_type.add_callback_on_lose_focus(self._on_type_set)
#--------------------------------------------------------
def _on_type_set(self):
"""Set the issuer according to the selected type.
Matches are fetched from existing records in backend.
"""
pk_curr_type = self._PRW_type.GetData()
if pk_curr_type is None:
return True
rows, idx = gmPG2.run_ro_queries(queries = [{
'cmd': u"select issuer from dem.enum_ext_id_types where pk = %s",
'args': [pk_curr_type]
}])
if len(rows) == 0:
return True
wx.CallAfter(self._PRW_issuer.SetText, rows[0][0])
return True
#--------------------------------------------------------
def __valid_for_save(self):
no_errors = True
if self._PRW_type.GetData() is None:
self._PRW_type.SetBackgroundColour('pink')
self._PRW_type.SetFocus()
self._PRW_type.Refresh()
no_errors = False
else:
self._PRW_type.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
self._PRW_type.Refresh()
if self._TCTRL_value.GetValue().strip() == u'':
self._TCTRL_value.SetBackgroundColour('pink')
self._TCTRL_value.SetFocus()
self._TCTRL_value.Refresh()
no_errors = False
else:
self._TCTRL_value.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
self._TCTRL_value.Refresh()
return no_errors
#------------------------------------------------------------
class cNameGenderDOBEditAreaPnl(wxgNameGenderDOBEditAreaPnl.wxgNameGenderDOBEditAreaPnl):
"""An edit area for editing/creating name/gender/dob.
Does NOT act on/listen to the current patient.
"""
def __init__(self, *args, **kwargs):
self.__name = kwargs['name']
del kwargs['name']
self.__identity = gmPerson.cIdentity(aPK_obj = self.__name['pk_identity'])
wxgNameGenderDOBEditAreaPnl.wxgNameGenderDOBEditAreaPnl.__init__(self, *args, **kwargs)
self.__register_interests()
self.refresh()
#--------------------------------------------------------
# external API
#--------------------------------------------------------
def refresh(self):
if self.__name is None:
return
self._PRW_title.SetText(gmTools.coalesce(self.__name['title'], u''))
self._PRW_firstname.SetText(self.__name['firstnames'])
self._PRW_lastname.SetText(self.__name['lastnames'])
self._PRW_nick.SetText(gmTools.coalesce(self.__name['preferred'], u''))
dob = self.__identity['dob']
self._PRW_dob.SetText(value = dob.strftime('%Y-%m-%d %H:%M'), data = dob)
self._PRW_gender.SetData(self.__name['gender'])
self._CHBOX_active.SetValue(self.__name['active_name'])
self._TCTRL_comment.SetValue(gmTools.coalesce(self.__name['comment'], u''))
# FIXME: clear fields
# else:
# pass
#--------------------------------------------------------
def save(self):
if not self.__valid_for_save():
return False
self.__identity['gender'] = self._PRW_gender.GetData()
self.__identity['dob'] = self._PRW_dob.GetData().get_pydt()
self.__identity['title'] = gmTools.none_if(self._PRW_title.GetValue().strip(), u'')
self.__identity.save_payload()
active = self._CHBOX_active.GetValue()
first = self._PRW_firstname.GetValue().strip()
last = self._PRW_lastname.GetValue().strip()
old_nick = self.__name['preferred']
# is it a new name ?
old_name = self.__name['firstnames'] + self.__name['lastnames']
if (first + last) != old_name:
self.__name = self.__identity.add_name(first, last, active)
self.__name['active_name'] = active
self.__name['preferred'] = gmTools.none_if(self._PRW_nick.GetValue().strip(), u'')
self.__name['comment'] = gmTools.none_if(self._TCTRL_comment.GetValue().strip(), u'')
self.__name.save_payload()
return True
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def __register_interests(self):
self._PRW_firstname.add_callback_on_lose_focus(self._on_name_set)
#--------------------------------------------------------
def _on_name_set(self):
"""Set the gender according to entered firstname.
Matches are fetched from existing records in backend.
"""
firstname = self._PRW_firstname.GetValue().strip()
if firstname == u'':
return True
rows, idx = gmPG2.run_ro_queries(queries = [{
'cmd': u"select gender from dem.name_gender_map where name ilike %s",
'args': [firstname]
}])
if len(rows) == 0:
return True
wx.CallAfter(self._PRW_gender.SetData, rows[0][0])
return True
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __valid_for_save(self):
error_found = True
if self._PRW_gender.GetData() is None:
self._PRW_gender.SetBackgroundColour('pink')
self._PRW_gender.Refresh()
self._PRW_gender.SetFocus()
error_found = False
else:
self._PRW_gender.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
self._PRW_gender.Refresh()
if not self._PRW_dob.is_valid_timestamp():
val = self._PRW_dob.GetValue().strip()
gmDispatcher.send(signal = u'statustext', msg = _('Cannot parse <%s> into proper timestamp.') % val)
self._PRW_dob.SetBackgroundColour('pink')
self._PRW_dob.Refresh()
self._PRW_dob.SetFocus()
error_found = False
else:
self._PRW_dob.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
self._PRW_dob.Refresh()
if self._PRW_lastname.GetValue().strip() == u'':
self._PRW_lastname.SetBackgroundColour('pink')
self._PRW_lastname.Refresh()
self._PRW_lastname.SetFocus()
error_found = False
else:
self._PRW_lastname.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
self._PRW_lastname.Refresh()
if self._PRW_firstname.GetValue().strip() == u'':
self._PRW_firstname.SetBackgroundColour('pink')
self._PRW_firstname.Refresh()
self._PRW_firstname.SetFocus()
error_found = False
else:
self._PRW_firstname.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
self._PRW_firstname.Refresh()
return error_found
#------------------------------------------------------------
# list manager
#------------------------------------------------------------
class cPersonNamesManagerPnl(gmListWidgets.cGenericListManagerPnl):
"""A list for managing a person's names.
Does NOT act on/listen to the current patient.
"""
def __init__(self, *args, **kwargs):
try:
self.__identity = kwargs['identity']
del kwargs['identity']
except KeyError:
self.__identity = None
gmListWidgets.cGenericListManagerPnl.__init__(self, *args, **kwargs)
self.new_callback = self._add_name
self.edit_callback = self._edit_name
self.delete_callback = self._del_name
self.refresh_callback = self.refresh
self.__init_ui()
self.refresh()
#--------------------------------------------------------
# external API
#--------------------------------------------------------
def refresh(self, *args, **kwargs):
if self.__identity is None:
self._LCTRL_items.set_string_items()
return
names = self.__identity.get_names()
self._LCTRL_items.set_string_items (
items = [ [
gmTools.bool2str(n['active_name'], 'X', ''),
gmTools.coalesce(n['title'], gmPerson.map_gender2salutation(n['gender'])),
n['lastnames'],
n['firstnames'],
gmTools.coalesce(n['preferred'], u''),
gmTools.coalesce(n['comment'], u'')
] for n in names ]
)
self._LCTRL_items.set_column_widths()
self._LCTRL_items.set_data(data = names)
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __init_ui(self):
self._LCTRL_items.set_columns(columns = [
_('Active'),
_('Title'),
_('Lastname'),
_('Firstname'),
_('Preferred Name'),
_('Comment')
])
#--------------------------------------------------------
def _add_name(self):
ea = cNameGenderDOBEditAreaPnl(self, -1, name = self.__identity.get_active_name())
dlg = gmEditArea.cGenericEditAreaDlg(self, -1, edit_area = ea)
dlg.SetTitle(_('Adding new name'))
if dlg.ShowModal() == wx.ID_OK:
dlg.Destroy()
return True
dlg.Destroy()
return False
#--------------------------------------------------------
def _edit_name(self, name):
ea = cNameGenderDOBEditAreaPnl(self, -1, name = name)
dlg = gmEditArea.cGenericEditAreaDlg(self, -1, edit_area = ea)
dlg.SetTitle(_('Editing name'))
if dlg.ShowModal() == wx.ID_OK:
dlg.Destroy()
return True
dlg.Destroy()
return False
#--------------------------------------------------------
def _del_name(self, name):
go_ahead = gmGuiHelpers.gm_show_question (
_( 'It is often advisable to keep old names around and\n'
'just create a new "currently active" name.\n'
'\n'
'This allows finding the patient by both the old\n'
'and the new name (think before/after marriage).\n'
'\n'
'Do you still want to really delete\n'
"this name from the patient ?"
),
_('Deleting name')
)
if not go_ahead:
return False
self.__identity.delete_name(name = name)
return True
#--------------------------------------------------------
# properties
#--------------------------------------------------------
def _get_identity(self):
return self.__identity
def _set_identity(self, identity):
self.__identity = identity
self.refresh()
identity = property(_get_identity, _set_identity)
#------------------------------------------------------------
class cPersonIDsManagerPnl(gmListWidgets.cGenericListManagerPnl):
"""A list for managing a person's external IDs.
Does NOT act on/listen to the current patient.
"""
def __init__(self, *args, **kwargs):
try:
self.__identity = kwargs['identity']
del kwargs['identity']
except KeyError:
self.__identity = None
gmListWidgets.cGenericListManagerPnl.__init__(self, *args, **kwargs)
self.new_callback = self._add_id
self.edit_callback = self._edit_id
self.delete_callback = self._del_id
self.refresh_callback = self.refresh
self.__init_ui()
self.refresh()
#--------------------------------------------------------
# external API
#--------------------------------------------------------
def refresh(self, *args, **kwargs):
if self.__identity is None:
self._LCTRL_items.set_string_items()
return
ids = self.__identity.get_external_ids()
self._LCTRL_items.set_string_items (
items = [ [
i['name'],
i['value'],
gmTools.coalesce(i['issuer'], u''),
i['context'],
gmTools.coalesce(i['comment'], u'')
] for i in ids
]
)
self._LCTRL_items.set_column_widths()
self._LCTRL_items.set_data(data = ids)
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __init_ui(self):
self._LCTRL_items.set_columns(columns = [
_('ID type'),
_('Value'),
_('Issuer'),
_('Context'),
_('Comment')
])
#--------------------------------------------------------
def _add_id(self):
ea = cExternalIDEditAreaPnl(self, -1)
ea.identity = self.__identity
dlg = gmEditArea.cGenericEditAreaDlg(self, -1, edit_area = ea)
dlg.SetTitle(_('Adding new external ID'))
if dlg.ShowModal() == wx.ID_OK:
dlg.Destroy()
return True
dlg.Destroy()
return False
#--------------------------------------------------------
def _edit_id(self, ext_id):
ea = cExternalIDEditAreaPnl(self, -1, external_id = ext_id)
ea.identity = self.__identity
dlg = gmEditArea.cGenericEditAreaDlg(self, -1, edit_area = ea)
dlg.SetTitle(_('Editing external ID'))
if dlg.ShowModal() == wx.ID_OK:
dlg.Destroy()
return True
dlg.Destroy()
return False
#--------------------------------------------------------
def _del_id(self, ext_id):
go_ahead = gmGuiHelpers.gm_show_question (
_( 'Do you really want to delete this\n'
'external ID from the patient ?'),
_('Deleting external ID')
)
if not go_ahead:
return False
self.__identity.delete_external_id(pk_ext_id = ext_id['pk_id'])
return True
#--------------------------------------------------------
# properties
#--------------------------------------------------------
def _get_identity(self):
return self.__identity
def _set_identity(self, identity):
self.__identity = identity
self.refresh()
identity = property(_get_identity, _set_identity)
#------------------------------------------------------------
# integrated panels
#------------------------------------------------------------
class cPersonIdentityManagerPnl(wxgPersonIdentityManagerPnl.wxgPersonIdentityManagerPnl):
"""A panel for editing identity data for a person.
- provides access to:
- name
- external IDs
Does NOT act on/listen to the current patient.
"""
def __init__(self, *args, **kwargs):
wxgPersonIdentityManagerPnl.wxgPersonIdentityManagerPnl.__init__(self, *args, **kwargs)
self.__identity = None
self.refresh()
#--------------------------------------------------------
# external API
#--------------------------------------------------------
def refresh(self):
self._PNL_names.identity = self.__identity
self._PNL_ids.identity = self.__identity
#--------------------------------------------------------
# properties
#--------------------------------------------------------
def _get_identity(self):
return self.__identity
def _set_identity(self, identity):
self.__identity = identity
self.refresh()
identity = property(_get_identity, _set_identity)
#============================================================
# new-patient wizard classes
#============================================================
class cBasicPatDetailsPage(wx.wizard.WizardPageSimple):
"""
Wizard page for entering patient's basic demographic information
"""
form_fields = (
'firstnames', 'lastnames', 'nick', 'dob', 'gender', 'title', 'occupation',
'address_number', 'zip_code', 'street', 'town', 'state', 'country', 'phone'
)
def __init__(self, parent, title):
"""
Creates a new instance of BasicPatDetailsPage
@param parent - The parent widget
@type parent - A wx.Window instance
@param tile - The title of the page
@type title - A StringType instance
"""
wx.wizard.WizardPageSimple.__init__(self, parent) #, bitmap = gmGuiHelpers.gm_icon(_('oneperson'))
self.__title = title
self.__do_layout()
self.__register_interests()
#--------------------------------------------------------
def __do_layout(self):
PNL_form = wx.Panel(self, -1)
# last name
STT_lastname = wx.StaticText(PNL_form, -1, _('Last name'))
STT_lastname.SetForegroundColour('red')
self.PRW_lastname = cLastnamePhraseWheel(parent = PNL_form, id = -1)
self.PRW_lastname.SetToolTipString(_('Required: lastname (family name)'))
# first name
STT_firstname = wx.StaticText(PNL_form, -1, _('First name'))
STT_firstname.SetForegroundColour('red')
self.PRW_firstname = cFirstnamePhraseWheel(parent = PNL_form, id = -1)
self.PRW_firstname.SetToolTipString(_('Required: surname/given name/first name'))
# nickname
STT_nick = wx.StaticText(PNL_form, -1, _('Nick name'))
self.PRW_nick = cNicknamePhraseWheel(parent = PNL_form, id = -1)
# DOB
STT_dob = wx.StaticText(PNL_form, -1, _('Date of birth'))
STT_dob.SetForegroundColour('red')
self.PRW_dob = gmDateTimeInput.cFuzzyTimestampInput(parent = PNL_form, id = -1)
self.PRW_dob.SetToolTipString(_("Required: date of birth, if unknown or aliasing wanted then invent one"))
# gender
STT_gender = wx.StaticText(PNL_form, -1, _('Gender'))
STT_gender.SetForegroundColour('red')
self.PRW_gender = cGenderSelectionPhraseWheel(parent = PNL_form, id=-1)
self.PRW_gender.SetToolTipString(_("Required: gender of patient"))
# title
STT_title = wx.StaticText(PNL_form, -1, _('Title'))
self.PRW_title = cTitlePhraseWheel(parent = PNL_form, id = -1)
# zip code
STT_zip_code = wx.StaticText(PNL_form, -1, _('Zip code'))
self.PRW_zip_code = cZipcodePhraseWheel(parent = PNL_form, id = -1)
self.PRW_zip_code.SetToolTipString(_("primary/home address: zip code/postcode"))
# street
STT_street = wx.StaticText(PNL_form, -1, _('Street'))
self.PRW_street = cStreetPhraseWheel(parent = PNL_form, id = -1)
self.PRW_street.SetToolTipString(_("primary/home address: name of street"))
# address number
STT_address_number = wx.StaticText(PNL_form, -1, _('Number'))
self.TTC_address_number = wx.TextCtrl(PNL_form, -1)
self.TTC_address_number.SetToolTipString(_("primary/home address: address number"))
# town
STT_town = wx.StaticText(PNL_form, -1, _('Town'))
self.PRW_town = cUrbPhraseWheel(parent = PNL_form, id = -1)
self.PRW_town.SetToolTipString(_("primary/home address: town/village/dwelling/city/etc."))
# state
STT_state = wx.StaticText(PNL_form, -1, _('State'))
self.PRW_state = cStateSelectionPhraseWheel(parent=PNL_form, id=-1)
self.PRW_state.SetToolTipString(_("primary/home address: state"))
# country
STT_country = wx.StaticText(PNL_form, -1, _('Country'))
self.PRW_country = cCountryPhraseWheel(parent = PNL_form, id = -1)
self.PRW_country.SetToolTipString(_("primary/home address: country"))
# phone
STT_phone = wx.StaticText(PNL_form, -1, _('Phone'))
self.TTC_phone = wx.TextCtrl(PNL_form, -1)
self.TTC_phone.SetToolTipString(_("phone number at home"))
# occupation
STT_occupation = wx.StaticText(PNL_form, -1, _('Occupation'))
self.PRW_occupation = cOccupationPhraseWheel(parent = PNL_form, id = -1)
# form main validator
self.form_DTD = cFormDTD(fields = self.__class__.form_fields)
PNL_form.SetValidator(cBasicPatDetailsPageValidator(dtd = self.form_DTD))
# layout input widgets
SZR_input = wx.FlexGridSizer(cols = 2, rows = 15, vgap = 4, hgap = 4)
SZR_input.AddGrowableCol(1)
SZR_input.Add(STT_lastname, 0, wx.SHAPED)
SZR_input.Add(self.PRW_lastname, 1, wx.EXPAND)
SZR_input.Add(STT_firstname, 0, wx.SHAPED)
SZR_input.Add(self.PRW_firstname, 1, wx.EXPAND)
SZR_input.Add(STT_nick, 0, wx.SHAPED)
SZR_input.Add(self.PRW_nick, 1, wx.EXPAND)
SZR_input.Add(STT_dob, 0, wx.SHAPED)
SZR_input.Add(self.PRW_dob, 1, wx.EXPAND)
SZR_input.Add(STT_gender, 0, wx.SHAPED)
SZR_input.Add(self.PRW_gender, 1, wx.EXPAND)
SZR_input.Add(STT_title, 0, wx.SHAPED)
SZR_input.Add(self.PRW_title, 1, wx.EXPAND)
SZR_input.Add(STT_zip_code, 0, wx.SHAPED)
SZR_input.Add(self.PRW_zip_code, 1, wx.EXPAND)
SZR_input.Add(STT_street, 0, wx.SHAPED)
SZR_input.Add(self.PRW_street, 1, wx.EXPAND)
SZR_input.Add(STT_address_number, 0, wx.SHAPED)
SZR_input.Add(self.TTC_address_number, 1, wx.EXPAND)
SZR_input.Add(STT_town, 0, wx.SHAPED)
SZR_input.Add(self.PRW_town, 1, wx.EXPAND)
SZR_input.Add(STT_state, 0, wx.SHAPED)
SZR_input.Add(self.PRW_state, 1, wx.EXPAND)
SZR_input.Add(STT_country, 0, wx.SHAPED)
SZR_input.Add(self.PRW_country, 1, wx.EXPAND)
SZR_input.Add(STT_phone, 0, wx.SHAPED)
SZR_input.Add(self.TTC_phone, 1, wx.EXPAND)
SZR_input.Add(STT_occupation, 0, wx.SHAPED)
SZR_input.Add(self.PRW_occupation, 1, wx.EXPAND)
PNL_form.SetSizerAndFit(SZR_input)
# layout page
SZR_main = gmGuiHelpers.makePageTitle(self, self.__title)
SZR_main.Add(PNL_form, 1, wx.EXPAND)
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def __register_interests(self):
self.PRW_firstname.add_callback_on_lose_focus(self.on_name_set)
self.PRW_country.add_callback_on_selection(self.on_country_selected)
self.PRW_zip_code.add_callback_on_lose_focus(self.on_zip_set)
#--------------------------------------------------------
def on_country_selected(self, data):
"""Set the states according to entered country."""
self.PRW_state.set_context(context=u'country', val=data)
return True
#--------------------------------------------------------
def on_name_set(self):
"""Set the gender according to entered firstname.
Matches are fetched from existing records in backend.
"""
firstname = self.PRW_firstname.GetValue().strip()
rows, idx = gmPG2.run_ro_queries(queries = [{
'cmd': u"select gender from dem.name_gender_map where name ilike %s",
'args': [firstname]
}])
if len(rows) == 0:
return True
wx.CallAfter(self.PRW_gender.SetData, rows[0][0])
return True
#--------------------------------------------------------
def on_zip_set(self):
"""Set the street, town, state and country according to entered zip code."""
zip_code = self.PRW_zip_code.GetValue().strip()
self.PRW_street.set_context(context=u'zip', val=zip_code)
self.PRW_town.set_context(context=u'zip', val=zip_code)
self.PRW_state.set_context(context=u'zip', val=zip_code)
self.PRW_country.set_context(context=u'zip', val=zip_code)
return True
#============================================================
class cNewPatientWizard(wx.wizard.Wizard):
"""
Wizard to create a new patient.
TODO:
- write pages for different "themes" of patient creation
- make it configurable which pages are loaded
- make available sets of pages that apply to a country
- make loading of some pages depend upon values in earlier pages, eg
when the patient is female and older than 13 include a page about
"female" data (number of kids etc)
FIXME: use: wizard.FindWindowById(wx.ID_FORWARD).Disable()
"""
#--------------------------------------------------------
def __init__(self, parent, title = _('Register new person'), subtitle = _('Basic demographic details') ):
"""
Creates a new instance of NewPatientWizard
@param parent - The parent widget
@type parent - A wx.Window instance
"""
id_wiz = wx.NewId()
wx.wizard.Wizard.__init__(self, parent, id_wiz, title) #images.getWizTest1Bitmap()
self.SetExtraStyle(wx.WS_EX_VALIDATE_RECURSIVELY)
self.__subtitle = subtitle
self.__do_layout()
#--------------------------------------------------------
def RunWizard(self, activate=False):
"""Create new patient.
activate, too, if told to do so (and patient successfully created)
"""
if not wx.wizard.Wizard.RunWizard(self, self.basic_pat_details):
return False
# retrieve DTD and create patient
ident = create_identity_from_dtd(dtd = self.basic_pat_details.form_DTD)
update_identity_from_dtd(identity = ident, dtd = self.basic_pat_details.form_DTD)
link_contacts_from_dtd(identity = ident, dtd = self.basic_pat_details.form_DTD)
link_occupation_from_dtd(identity = ident, dtd = self.basic_pat_details.form_DTD)
if activate:
gmPerson.set_active_patient(patient = ident)
return ident
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __do_layout(self):
"""Arrange widgets.
"""
# Create the wizard pages
self.basic_pat_details = cBasicPatDetailsPage(self, self.__subtitle )
self.FitToPage(self.basic_pat_details)
#============================================================
class cBasicPatDetailsPageValidator(wx.PyValidator):
"""
This validator is used to ensure that the user has entered all
the required conditional values in the page (eg., to properly
create an address, all the related fields must be filled).
"""
#--------------------------------------------------------
def __init__(self, dtd):
"""
Validator initialization.
@param dtd The object containing the data model.
@type dtd A cFormDTD instance
"""
# initialize parent class
wx.PyValidator.__init__(self)
# validator's storage object
self.form_DTD = dtd
#--------------------------------------------------------
def Clone(self):
"""
Standard cloner.
Note that every validator must implement the Clone() method.
"""
return cBasicPatDetailsPageValidator(dtd = self.form_DTD) # FIXME: probably need new instance of DTD ?
#--------------------------------------------------------
def Validate(self, parent = None):
"""
Validate the contents of the given text control.
"""
_pnl_form = self.GetWindow().GetParent()
error = False
# name fields
if _pnl_form.PRW_lastname.GetValue().strip() == '':
error = True
gmDispatcher.send(signal = 'statustext', msg = _('Must enter lastname.'))
_pnl_form.PRW_lastname.SetBackgroundColour('pink')
_pnl_form.PRW_lastname.Refresh()
else:
_pnl_form.PRW_lastname.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
_pnl_form.PRW_lastname.Refresh()
if _pnl_form.PRW_firstname.GetValue().strip() == '':
error = True
gmDispatcher.send(signal = 'statustext', msg = _('Must enter first name.'))
_pnl_form.PRW_firstname.SetBackgroundColour('pink')
_pnl_form.PRW_firstname.Refresh()
else:
_pnl_form.PRW_firstname.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
_pnl_form.PRW_firstname.Refresh()
# gender
if _pnl_form.PRW_gender.GetData() is None:
error = True
gmDispatcher.send(signal = 'statustext', msg = _('Must select gender.'))
_pnl_form.PRW_gender.SetBackgroundColour('pink')
_pnl_form.PRW_gender.Refresh()
else:
_pnl_form.PRW_gender.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
_pnl_form.PRW_gender.Refresh()
# dob validation
if not _pnl_form.PRW_dob.is_valid_timestamp():
error = True
msg = _('Cannot parse <%s> into proper timestamp.') % _pnl_form.PRW_dob.GetValue()
gmDispatcher.send(signal = 'statustext', msg = msg)
_pnl_form.PRW_dob.SetBackgroundColour('pink')
_pnl_form.PRW_dob.Refresh()
else:
_pnl_form.PRW_dob.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
_pnl_form.PRW_dob.Refresh()
# address
is_any_field_filled = False
address_fields = (
_pnl_form.TTC_address_number,
_pnl_form.PRW_zip_code,
_pnl_form.PRW_street,
_pnl_form.PRW_town
)
for field in address_fields:
if field.GetValue().strip() != '':
is_any_field_filled = True
field.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
field.Refresh()
continue
if is_any_field_filled:
error = True
msg = _('To properly create an address, all the related fields must be filled in.')
gmGuiHelpers.gm_show_error(msg, _('Required fields'), gmLog.lErr)
field.SetBackgroundColour('pink')
field.SetFocus()
field.Refresh()
address_fields = (
_pnl_form.PRW_state,
_pnl_form.PRW_country
)
for field in address_fields:
if field.GetData() is not None:
is_any_field_filled = True
field.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
field.Refresh()
continue
if is_any_field_filled:
error = True
msg = _('To properly create an address, all the related fields must be filled in.')
gmGuiHelpers.gm_show_error(msg, _('Required fields'), gmLog.lErr)
field.SetBackgroundColour('pink')
field.SetFocus()
field.Refresh()
return (not error)
#--------------------------------------------------------
def TransferToWindow(self):
"""
Transfer data from validator to window.
The default implementation returns False, indicating that an error
occurred. We simply return True, as we don't do any data transfer.
"""
_pnl_form = self.GetWindow().GetParent()
# fill in controls with values from self.form_DTD
_pnl_form.PRW_gender.SetData(self.form_DTD['gender'])
_pnl_form.PRW_dob.SetText(self.form_DTD['dob'])
_pnl_form.PRW_lastname.SetText(self.form_DTD['lastnames'])
_pnl_form.PRW_firstname.SetText(self.form_DTD['firstnames'])
_pnl_form.PRW_title.SetText(self.form_DTD['title'])
_pnl_form.PRW_nick.SetText(self.form_DTD['nick'])
_pnl_form.PRW_occupation.SetText(self.form_DTD['occupation'])
_pnl_form.TTC_address_number.SetValue(self.form_DTD['address_number'])
_pnl_form.PRW_street.SetText(self.form_DTD['street'])
_pnl_form.PRW_zip_code.SetText(self.form_DTD['zip_code'])
_pnl_form.PRW_town.SetText(self.form_DTD['town'])
_pnl_form.PRW_state.SetData(self.form_DTD['state'])
_pnl_form.PRW_country.SetData(self.form_DTD['country'])
_pnl_form.TTC_phone.SetValue(self.form_DTD['phone'])
return True # Prevent wxDialog from complaining.
#--------------------------------------------------------
def TransferFromWindow(self):
"""
Transfer data from window to validator.
The default implementation returns False, indicating that an error
occurred. We simply return True, as we don't do any data transfer.
"""
# FIXME: should be called automatically
if not self.GetWindow().GetParent().Validate():
return False
try:
_pnl_form = self.GetWindow().GetParent()
# fill in self.form_DTD with values from controls
self.form_DTD['gender'] = _pnl_form.PRW_gender.GetData()
self.form_DTD['dob'] = _pnl_form.PRW_dob.GetData()
self.form_DTD['lastnames'] = _pnl_form.PRW_lastname.GetValue()
self.form_DTD['firstnames'] = _pnl_form.PRW_firstname.GetValue()
self.form_DTD['title'] = _pnl_form.PRW_title.GetValue()
self.form_DTD['nick'] = _pnl_form.PRW_nick.GetValue()
self.form_DTD['occupation'] = _pnl_form.PRW_occupation.GetValue()
self.form_DTD['address_number'] = _pnl_form.TTC_address_number.GetValue()
self.form_DTD['street'] = _pnl_form.PRW_street.GetValue()
self.form_DTD['zip_code'] = _pnl_form.PRW_zip_code.GetValue()
self.form_DTD['town'] = _pnl_form.PRW_town.GetValue()
self.form_DTD['state'] = _pnl_form.PRW_state.GetData()
self.form_DTD['country'] = _pnl_form.PRW_country.GetData()
self.form_DTD['phone'] = _pnl_form.TTC_phone.GetValue()
except:
return False
return True
#============================================================
class cFormDTD:
"""
Simple Data Transfer Dictionary class to make easy the trasfer of
data between the form (view) and the business logic.
Maybe later consider turning this into a standard dict by
{}.fromkeys([key, key, ...], default) when it becomes clear that
we really don't need the added potential of a full-fledged class.
"""
def __init__(self, fields):
"""
Initialize the DTD with the supplied field names.
@param fields The names of the fields.
@type fields A TupleType instance.
"""
self.data = {}
for a_field in fields:
self.data[a_field] = ''
def __getitem__(self, attribute):
"""
Retrieve the value of the given attribute (key)
@param attribute The attribute (key) to retrieve its value for.
@type attribute a StringType instance.
"""
if not self.data[attribute]:
return ''
return self.data[attribute]
def __setitem__(self, attribute, value):
"""
Set the value of a given attribute (key).
@param attribute The attribute (key) to set its value for.
@type attribute a StringType instance.
@param avaluee The value to set.
@rtpe attribute a StringType instance.
"""
self.data[attribute] = value
def __str__(self):
"""
Print string representation of the DTD object.
"""
return str(self.data)
#============================================================
# patient demographics editing classes
#============================================================
class cPersonDemographicsEditorNb(wx.Notebook):
"""Notebook displaying demographics editing pages:
- Identity
- Contacts (addresses, phone numbers, etc)
Does NOT act on/listen to the current patient.
"""
#--------------------------------------------------------
def __init__(self, parent, id):
wx.Notebook.__init__ (
self,
parent = parent,
id = id,
style = wx.NB_TOP | wx.NB_MULTILINE | wx.NO_BORDER,
name = self.__class__.__name__
)
self.__identity = None
self.__do_layout()
self.SetSelection(0)
#--------------------------------------------------------
# public API
#--------------------------------------------------------
def refresh(self):
"""Populate fields in pages with data from model."""
for page_idx in range(self.GetPageCount()):
page = self.GetPage(page_idx)
page.identity = self.__identity
return True
#--------------------------------------------------------
# internal API
#--------------------------------------------------------
def __do_layout(self):
"""Build patient edition notebook pages."""
# identity page
new_page = cPersonIdentityManagerPnl(self, -1)
new_page.identity = self.__identity
self.AddPage (
page = new_page,
text = _('Identity'),
select = True
)
# contacts page
new_page = cPersonContactsManagerPnl(self, -1)
new_page.identity = self.__identity
self.AddPage (
page = new_page,
text = _('Contacts'),
select = False
)
#--------------------------------------------------------
# properties
#--------------------------------------------------------
def _get_identity(self):
return self.__identity
def _set_identity(self, identity):
self.__identity = identity
identity = property(_get_identity, _set_identity)
#============================================================
# FIXME: support multiple occupations
# FIXME: redo with wxGlade
class cPatOccupationsPanel(wx.Panel):
"""Page containing patient occupations edition fields.
"""
def __init__(self, parent, id, ident=None):
"""
Creates a new instance of BasicPatDetailsPage
@param parent - The parent widget
@type parent - A wx.Window instance
@param id - The widget id
@type id - An integer
"""
wx.Panel.__init__(self, parent, id)
self.__ident = ident
self.__do_layout()
#--------------------------------------------------------
def __do_layout(self):
PNL_form = wx.Panel(self, -1)
# occupation
STT_occupation = wx.StaticText(PNL_form, -1, _('Occupation'))
self.PRW_occupation = cOccupationPhraseWheel(parent = PNL_form, id = -1)
self.PRW_occupation.SetToolTipString(_("primary occupation of the patient"))
# known since
STT_occupation_updated = wx.StaticText(PNL_form, -1, _('Last updated'))
self.TTC_occupation_updated = wx.TextCtrl(PNL_form, -1, style = wx.TE_READONLY)
# layout input widgets
SZR_input = wx.FlexGridSizer(cols = 2, rows = 5, vgap = 4, hgap = 4)
SZR_input.AddGrowableCol(1)
SZR_input.Add(STT_occupation, 0, wx.SHAPED)
SZR_input.Add(self.PRW_occupation, 1, wx.EXPAND)
SZR_input.Add(STT_occupation_updated, 0, wx.SHAPED)
SZR_input.Add(self.TTC_occupation_updated, 1, wx.EXPAND)
PNL_form.SetSizerAndFit(SZR_input)
# layout page
SZR_main = wx.BoxSizer(wx.VERTICAL)
SZR_main.Add(PNL_form, 1, wx.EXPAND)
self.SetSizer(SZR_main)
#--------------------------------------------------------
def set_identity(self, identity):
return self.refresh(identity=identity)
#--------------------------------------------------------
def refresh(self, identity=None):
if identity is not None:
self.__ident = identity
jobs = self.__ident.get_occupations()
if len(jobs) > 0:
self.PRW_occupation.SetText(jobs[0]['l10n_occupation'])
self.TTC_occupation_updated.SetValue(jobs[0]['modified_when'].strftime('%m/%Y'))
return True
#--------------------------------------------------------
def save(self):
if self.PRW_occupation.IsModified():
new_job = self.PRW_occupation.GetValue().strip()
jobs = self.__ident.get_occupations()
for job in jobs:
if job['l10n_occupation'] == new_job:
continue
self.__ident.unlink_occupation(occupation = job['l10n_occupation'])
self.__ident.link_occupation(occupation = new_job)
return True
#============================================================
class cNotebookedPatEditionPanel(wx.Panel, gmRegetMixin.cRegetOnPaintMixin):
"""Patient demographics plugin for main notebook.
Hosts another notebook with pages for Identity, Contacts, etc.
Acts on/listens to the currently active patient.
"""
#--------------------------------------------------------
def __init__(self, parent, id):
wx.Panel.__init__ (self, parent = parent, id = id, style = wx.NO_BORDER)
gmRegetMixin.cRegetOnPaintMixin.__init__(self)
self.__do_layout()
self.__register_interests()
#--------------------------------------------------------
# public API
#--------------------------------------------------------
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __do_layout(self):
"""Arrange widgets."""
self.__patient_notebook = cPersonDemographicsEditorNb(self, -1)
szr_main = wx.BoxSizer(wx.VERTICAL)
szr_main.Add(self.__patient_notebook, 1, wx.EXPAND)
self.SetSizerAndFit(szr_main)
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def __register_interests(self):
gmDispatcher.connect(signal = u'pre_patient_selection', receiver = self._on_pre_patient_selection)
gmDispatcher.connect(signal = u'post_patient_selection', receiver = self._on_post_patient_selection)
#--------------------------------------------------------
def _on_pre_patient_selection(self):
self._schedule_data_reget()
#--------------------------------------------------------
def _on_post_patient_selection(self):
self._schedule_data_reget()
#--------------------------------------------------------
# reget mixin API
#--------------------------------------------------------
def _populate_with_data(self):
"""Populate fields in pages with data from model."""
pat = gmPerson.gmCurrentPatient()
if pat.is_connected():
self.__patient_notebook.identity = pat
else:
self.__patient_notebook.identity = None
self.__patient_notebook.refresh()
return True
#============================================================
def create_identity_from_dtd(dtd=None):
"""
Register a new patient, given the data supplied in the
Data Transfer Dictionary object.
@param basic_details_DTD Data Transfer Dictionary encapsulating all the
supplied data.
@type basic_details_DTD A cFormDTD instance.
"""
new_identity = gmPerson.create_identity (
gender = dtd['gender'],
dob = dtd['dob'].get_pydt(),
lastnames = dtd['lastnames'],
firstnames = dtd['firstnames']
)
if new_identity is None:
_log.Log(gmLog.lErr, 'cannot create identity from %s' % str(dtd))
return None
_log.Log(gmLog.lData, 'identity created: %s' % new_identity)
return new_identity
#============================================================
def update_identity_from_dtd(identity, dtd=None):
"""
Update patient details with data supplied by
Data Transfer Dictionary object.
@param basic_details_DTD Data Transfer Dictionary encapsulating all the
supplied data.
@type basic_details_DTD A cFormDTD instance.
"""
# identity
if identity['gender'] != dtd['gender']:
identity['gender'] = dtd['gender']
if identity['dob'] != dtd['dob'].get_pydt():
identity['dob'] = dtd['dob'].get_pydt()
if len(dtd['title']) > 0 and identity['title'] != dtd['title']:
identity['title'] = dtd['title']
# FIXME: error checking
# FIXME: we need a trigger to update the values of the
# view, identity['keys'], eg. lastnames and firstnames
# are not refreshed.
identity.save_payload()
# names
# FIXME: proper handling of "active"
if identity['firstnames'] != dtd['firstnames'] or identity['lastnames'] != dtd['lastnames']:
identity.add_name(firstnames = dtd['firstnames'], lastnames = dtd['lastnames'], active = True)
# nickname
if len(dtd['nick']) > 0 and identity['preferred'] != dtd['nick']:
identity.set_nickname(nickname = dtd['nick'])
return True
#============================================================
def link_contacts_from_dtd(identity, dtd=None):
"""
Update patient details with data supplied by
Data Transfer Dictionary object.
@param basic_details_DTD Data Transfer Dictionary encapsulating all the
supplied data.
@type basic_details_DTD A cFormDTD instance.
"""
lng = len (
dtd['address_number'].strip() +
dtd['street'].strip() +
dtd['zip_code'].strip() +
dtd['town'].strip() +
dtd['state'].strip() +
dtd['country'].strip()
)
if lng > 5:
# FIXME: support address type
success = identity.link_address (
number = dtd['address_number'].strip(),
street = dtd['street'].strip(),
postcode = dtd['zip_code'].strip(),
urb = dtd['town'].strip(),
state = dtd['state'].strip(),
country = dtd['country'].strip()
)
if not success:
gmDispatcher.send(signal='statustext', msg = _('Cannot update patient address.'))
else:
gmDispatcher.send(signal='statustext', msg = _('Cannot add patient address. Missing fields.'))
if len(dtd['phone']) > 0:
identity.link_comm_channel (
comm_medium = 'homephone',
url = dtd['phone'],
is_confidential = False
)
# FIXME: error checking
# identity.save_payload()
return True
#============================================================
def link_occupation_from_dtd(identity, dtd=None):
"""
Update patient details with data supplied by
Data Transfer Dictionary object.
@param basic_details_DTD Data Transfer Dictionary encapsulating all the
supplied data.
@type basic_details_DTD A cFormDTD instance.
"""
identity.link_occupation(occupation = dtd['occupation'])
return True
#============================================================
class TestWizardPanel(wx.Panel):
"""
Utility class to test the new patient wizard.
"""
#--------------------------------------------------------
def __init__(self, parent, id):
"""
Create a new instance of TestPanel.
@param parent The parent widget
@type parent A wx.Window instance
"""
wx.Panel.__init__(self, parent, id)
wizard = cNewPatientWizard(self)
print wizard.RunWizard()
#============================================================
if __name__ == "__main__":
_log.SetAllLogLevels(gmLog.lData)
#--------------------------------------------------------
def test_zipcode_prw():
app = wx.PyWidgetTester(size = (200, 50))
pw = cZipcodePhraseWheel(app.frame, -1)
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_state_prw():
app = wx.PyWidgetTester(size = (200, 50))
pw = cStateSelectionPhraseWheel(app.frame, -1)
# pw.set_context(context = u'zip', val = u'04318')
# pw.set_context(context = u'country', val = u'Deutschland')
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_suburb_prw():
app = wx.PyWidgetTester(size = (200, 50))
pw = cSuburbPhraseWheel(app.frame, -1)
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_address_type_prw():
app = wx.PyWidgetTester(size = (200, 50))
pw = cAddressTypePhraseWheel(app.frame, -1)
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_address_prw():
app = wx.PyWidgetTester(size = (200, 50))
pw = cAddressPhraseWheel(app.frame, -1)
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_street_prw():
app = wx.PyWidgetTester(size = (200, 50))
pw = cStreetPhraseWheel(app.frame, -1)
# pw.set_context(context = u'zip', val = u'04318')
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_organizer_pnl():
app = wx.PyWidgetTester(size = (600, 400))
app.SetWidget(cKOrganizerSchedulePnl)
app.MainLoop()
#--------------------------------------------------------
def test_person_names_pnl():
app = wx.PyWidgetTester(size = (600, 400))
widget = cPersonNamesManagerPnl(app.frame, -1)
widget.identity = activate_patient()
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_person_ids_pnl():
app = wx.PyWidgetTester(size = (600, 400))
widget = cPersonIDsManagerPnl(app.frame, -1)
widget.identity = activate_patient()
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_pat_ids_pnl():
app = wx.PyWidgetTester(size = (600, 400))
widget = cPersonIdentityManagerPnl(app.frame, -1)
widget.identity = activate_patient()
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_name_ea_pnl():
app = wx.PyWidgetTester(size = (600, 400))
app.SetWidget(cNameGenderDOBEditAreaPnl, name = activate_patient().get_active_name())
app.MainLoop()
#--------------------------------------------------------
def test_address_ea_pnl():
app = wx.PyWidgetTester(size = (600, 400))
app.SetWidget(cAddressEditAreaPnl, address = gmDemographicRecord.cAddress(aPK_obj = 1))
app.MainLoop()
#--------------------------------------------------------
def test_person_adrs_pnl():
app = wx.PyWidgetTester(size = (600, 400))
widget = cPersonAddressesManagerPnl(app.frame, -1)
widget.identity = activate_patient()
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_person_comms_pnl():
app = wx.PyWidgetTester(size = (600, 400))
widget = cPersonCommsManagerPnl(app.frame, -1)
widget.identity = activate_patient()
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_pat_contacts_pnl():
app = wx.PyWidgetTester(size = (600, 400))
widget = cPersonContactsManagerPnl(app.frame, -1)
widget.identity = activate_patient()
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def test_cPersonDemographicsEditorNb():
app = wx.PyWidgetTester(size = (600, 400))
widget = cPersonDemographicsEditorNb(app.frame, -1)
widget.identity = activate_patient()
widget.refresh()
app.frame.Show(True)
app.MainLoop()
#--------------------------------------------------------
def activate_patient():
patient = gmPerson.ask_for_patient()
if patient is None:
print "No patient. Exiting gracefully..."
sys.exit(0)
gmPerson.set_active_patient(patient=patient)
return patient
#--------------------------------------------------------
if len(sys.argv) > 1 and sys.argv[1] == 'test':
gmI18N.activate_locale()
gmI18N.install_domain(domain='gnumed')
gmPG2.get_connection()
# a = cFormDTD(fields = cBasicPatDetailsPage.form_fields)
# app = wx.PyWidgetTester(size = (400, 300))
# app.SetWidget(cNotebookedPatEditionPanel, -1)
# app.SetWidget(TestWizardPanel, -1)
# app.frame.Show(True)
# app.MainLoop()
# phrasewheels
# test_zipcode_prw()
# test_state_prw()
# test_street_prw()
# test_organizer_pnl()
#test_address_type_prw()
#test_suburb_prw()
test_address_prw()
# contacts related widgets
#test_address_ea_pnl()
#test_person_adrs_pnl()
#test_person_comms_pnl()
#test_pat_contacts_pnl()
# identity related widgets
#test_person_names_pnl()
#test_person_ids_pnl()
#test_pat_ids_pnl()
#test_name_ea_pnl()
#test_cPersonDemographicsEditorNb()
#============================================================
# $Log: gmDemographicsWidgets.py,v $
# Revision 1.137.2.3 2008/06/02 14:15:49 ncq
# - properly validate new-patient contact data
#
# Revision 1.137.2.2 2008/02/21 18:10:26 ncq
# - somewhat tighten check on patient address
#
# Revision 1.137.2.1 2008/01/14 13:20:04 ncq
# - don't crash if korganizer2gnumed.csv isn't there
#
# Revision 1.137 2007/12/06 10:46:05 ncq
# - improve external ID type phrasewheel
# - in edit area on setting ext id type pre-set corresponding issuer if any
#
# Revision 1.136 2007/12/06 08:41:31 ncq
# - improve address display
# - better layout
# - external ID phrasewheels and edit area
#
# Revision 1.135 2007/12/04 18:37:15 ncq
# - edit_occupation()
# - cleanup
#
# Revision 1.134 2007/12/04 16:16:27 ncq
# - use gmAuthWidgets
#
# Revision 1.133 2007/12/03 20:44:14 ncq
# - use delete_name()
#
# Revision 1.132 2007/12/02 21:00:45 ncq
# - cAddressPhraseWheel
# - cCommChannelTypePhraseWheel
# - cCommChannelEditAreaPnl
# - use thereof
# - more tests
#
# Revision 1.131 2007/12/02 11:35:19 ncq
# - in edit unlink old address if new one created
#
# Revision 1.130 2007/11/28 22:35:58 ncq
# - make empty == None == NULL on nick/title/comment
#
# Revision 1.129 2007/11/28 14:00:10 ncq
# - fix a few typos
# - set titles on generic edit areas
#
# Revision 1.128 2007/11/28 11:56:13 ncq
# - comments/wording improved, cleanup
# - name/gender/dob edit area and use in person identity panel/notebook plugin
# - more tests
#
# Revision 1.127 2007/11/17 16:36:59 ncq
# - cPersonAddressesManagerPnl
# - cPersonContactsManagerPnl
# - cPersonCommsManagerPnl
# - cAddressEditAreaPnl
# - cAddressTypePhraseWheel
# - cSuburbPhraseWheel
# - more tests
#
# Revision 1.126 2007/08/28 14:18:12 ncq
# - no more gm_statustext()
#
# Revision 1.125 2007/08/12 00:09:07 ncq
# - no more gmSignals.py
#
# Revision 1.124 2007/07/22 09:04:44 ncq
# - tmp/ now in .gnumed/
#
# Revision 1.123 2007/07/10 20:28:36 ncq
# - consolidate install_domain() args
#
# Revision 1.122 2007/07/09 12:42:48 ncq
# - KOrganizer panel
#
# Revision 1.121 2007/07/03 16:00:12 ncq
# - nickname MAY start with lower case
#
# Revision 1.120 2007/05/21 22:30:12 ncq
# - cleanup
# - don't try to store empty address in link_contacts_from_dtd()
#
# Revision 1.119 2007/05/14 13:11:24 ncq
# - use statustext() signal
#
# Revision 1.118 2007/04/02 18:39:52 ncq
# - gmFuzzyTimestamp -> gmDateTime
#
# Revision 1.117 2007/03/31 21:34:11 ncq
# - use gmPerson.set_active_patient()
#
# Revision 1.116 2007/02/22 17:41:13 ncq
# - adjust to gmPerson changes
#
# Revision 1.115 2007/02/17 13:59:20 ncq
# - honor entered occupation in new patient wizard
#
# Revision 1.114 2007/02/06 13:43:40 ncq
# - no more aDelay in __init__()
#
# Revision 1.113 2007/02/05 12:15:23 ncq
# - no more aMatchProvider/selection_only in cPhraseWheel.__init__()
#
# Revision 1.112 2007/02/04 15:52:10 ncq
# - set proper CAPS modes on phrasewheels
# - use SetText()
# - remove HSCROLL/VSCROLL so we run on Mac
#
# Revision 1.111 2006/11/28 20:43:26 ncq
# - remove lots of debugging prints
#
# Revision 1.110 2006/11/26 14:23:09 ncq
# - add cOccupationPhraseWheel and use it
# - display last modified on occupation entry
#
# Revision 1.109 2006/11/24 10:01:31 ncq
# - gm_beep_statustext() -> gm_statustext()
#
# Revision 1.108 2006/11/20 16:01:35 ncq
# - use gmTools.coalesce()
# - some SetValue() -> SetData() fixes
# - massively cleanup demographics edit notebook and consolidate save
# logic, remove validator use as it was more pain than gain
# - we now do not lower() inside strings anymore
# - we now take a lot of care not to invalidate the DOB
#
# Revision 1.107 2006/11/07 23:53:30 ncq
# - be ever more careful in handling DOBs, use get_pydt() on fuzzy timestamps
#
# Revision 1.106 2006/11/06 12:51:53 ncq
# - a few u''s
# - actually need to *pass* context to match providers, too
# - adjust a few thresholds
# - improved test suite
#
# Revision 1.105 2006/11/06 10:28:49 ncq
# - zipcode/street/urb/country/lastname/firstname/nickname/title phrasewheels
# - use them
#
# Revision 1.104 2006/11/05 17:55:33 ncq
# - dtd['dob'] already is a timestamp
#
# Revision 1.103 2006/11/05 16:18:29 ncq
# - cleanup, _() handling in test mode, sys.path handling in CVS mode
# - add cStateSelectionPhraseWheel and use it
# - try being more careful in contacts/identity editing such as not
# to change gender/state/dob behind the back of the user
#
# Revision 1.102 2006/10/31 12:38:30 ncq
# - stop improper capitalize_first()
# - more gmPG -> gmPG2
# - remove get_name_gender_map()
#
# Revision 1.101 2006/10/25 07:46:44 ncq
# - Format() -> strftime() since datetime.datetime does not have .Format()
#
# Revision 1.100 2006/10/24 13:21:53 ncq
# - gmPG -> gmPG2
# - cMatchProvider_SQL2() does not need service name anymore
#
# Revision 1.99 2006/08/10 07:19:05 ncq
# - remove import of gmPatientHolder
#
# Revision 1.98 2006/08/01 22:03:18 ncq
# - cleanup
# - add disable_identity()
#
# Revision 1.97 2006/07/21 21:34:04 ncq
# - proper header/subheader for new *person* wizard (not *patient*)
#
# Revision 1.96 2006/07/19 20:29:50 ncq
# - import cleanup
#
# Revision 1.95 2006/07/04 14:12:48 ncq
# - add some phrasewheel sanity LIMITs
# - use gender phrasewheel in pat modify, too
#
# Revision 1.94 2006/06/28 22:15:01 ncq
# - make cGenderSelectionPhraseWheel self-sufficient and use it, too
#
# Revision 1.93 2006/06/28 14:09:17 ncq
# - more cleanup
# - add cGenderSelectionPhraseWheel() and start using it
#
# Revision 1.92 2006/06/20 10:04:40 ncq
# - removed reams of crufty code
#
# Revision 1.91 2006/06/20 09:42:42 ncq
# - cTextObjectValidator -> cTextWidgetValidator
# - add custom invalid message to text widget validator
# - variable renaming, cleanup
# - fix demographics validation
#
# Revision 1.90 2006/06/15 15:37:55 ncq
# - properly handle DOB in new-patient wizard
#
# Revision 1.89 2006/06/12 18:31:31 ncq
# - must create *patient* not person from new patient wizard
# if to be activated as patient :-)
#
# Revision 1.88 2006/06/09 14:40:24 ncq
# - use fuzzy.timestamp for create_identity()
#
# Revision 1.87 2006/06/05 21:33:03 ncq
# - Sebastian is too good at finding bugs, so fix them:
# - proper queries for new-patient wizard phrasewheels
# - properly validate timestamps
#
# Revision 1.86 2006/06/04 22:23:03 ncq
# - consistently use l10n_country
#
# Revision 1.85 2006/06/04 21:38:49 ncq
# - make state red as it's mandatory
#
# Revision 1.84 2006/06/04 21:31:44 ncq
# - allow characters in phone URL
#
# Revision 1.83 2006/06/04 21:16:27 ncq
# - fix missing dem. prefixes
#
# Revision 1.82 2006/05/28 20:49:44 ncq
# - gmDateInput -> cFuzzyTimestampInput
#
# Revision 1.81 2006/05/15 13:35:59 ncq
# - signal cleanup:
# - activating_patient -> pre_patient_selection
# - patient_selected -> post_patient_selection
#
# Revision 1.80 2006/05/14 21:44:22 ncq
# - add get_workplace() to gmPerson.gmCurrentProvider and make use thereof
# - remove use of gmWhoAmI.py
#
# Revision 1.79 2006/05/12 12:18:11 ncq
# - whoami -> whereami cleanup
# - use gmCurrentProvider()
#
# Revision 1.78 2006/05/04 09:49:20 ncq
# - get_clinical_record() -> get_emr()
# - adjust to changes in set_active_patient()
# - need explicit set_active_patient() after ask_for_patient() if wanted
#
# Revision 1.77 2006/01/18 14:14:39 sjtan
#
# make reusable
#
# Revision 1.76 2006/01/10 14:22:24 sjtan
#
# movement to schema dem
#
# Revision 1.75 2006/01/09 10:46:18 ncq
# - yet more schema quals
#
# Revision 1.74 2006/01/07 17:52:38 ncq
# - several schema qualifications
#
# Revision 1.73 2005/10/19 09:12:40 ncq
# - cleanup
#
# Revision 1.72 2005/10/09 08:10:22 ihaywood
# ok, re-order the address widgets "the hard way" so tab-traversal works correctly.
#
# minor bugfixes so saving address actually works now
#
# Revision 1.71 2005/10/09 02:19:40 ihaywood
# the address widget now has the appropriate widget order and behaviour for australia
# when os.environ["LANG"] == 'en_AU' (is their a more graceful way of doing this?)
#
# Remember our postcodes work very differently.
#
# Revision 1.70 2005/09/28 21:27:30 ncq
# - a lot of wx2.6-ification
#
# Revision 1.69 2005/09/28 19:47:01 ncq
# - runs until login dialog
#
# Revision 1.68 2005/09/28 15:57:48 ncq
# - a whole bunch of wx.Foo -> wx.Foo
#
# Revision 1.67 2005/09/27 20:44:58 ncq
# - wx.wx* -> wx.*
#
# Revision 1.66 2005/09/26 18:01:50 ncq
# - use proper way to import wx26 vs wx2.4
# - note: THIS WILL BREAK RUNNING THE CLIENT IN SOME PLACES
# - time for fixup
#
# Revision 1.65 2005/09/25 17:30:58 ncq
# - revert back to wx2.4 style import awaiting "proper" wx2.6 importing
#
# Revision 1.64 2005/09/25 01:00:47 ihaywood
# bugfixes
#
# remember 2.6 uses "import wx" not "from wxPython import wx"
# removed not null constraint on clin_encounter.rfe as has no value on instantiation
# client doesn't try to set clin_encounter.description as it doesn't exist anymore
#
# Revision 1.63 2005/09/24 09:17:27 ncq
# - some wx2.6 compatibility fixes
#
# Revision 1.62 2005/09/12 15:09:00 ncq
# - make first tab display first in demographics editor
#
# Revision 1.61 2005/09/04 07:29:53 ncq
# - allow phrasewheeling states by abbreviation in new-patient wizard
#
# Revision 1.60 2005/08/14 15:36:54 ncq
# - fix phrasewheel queries for country matching
#
# Revision 1.59 2005/08/08 08:08:35 ncq
# - cleanup
#
# Revision 1.58 2005/07/31 14:48:44 ncq
# - catch exceptions in TransferToWindow
#
# Revision 1.57 2005/07/24 18:54:18 ncq
# - cleanup
#
# Revision 1.56 2005/07/04 11:26:50 ncq
# - re-enable auto-setting gender from firstname, and speed it up, too
#
# Revision 1.55 2005/07/02 18:20:22 ncq
# - allow English input of country as well, regardless of locale
#
# Revision 1.54 2005/06/29 15:03:32 ncq
# - some cleanup
#
# Revision 1.53 2005/06/28 14:38:21 cfmoro
# Integration fixes
#
# Revision 1.52 2005/06/28 14:12:55 cfmoro
# Integration in space fixes
#
# Revision 1.51 2005/06/28 13:11:05 cfmoro
# Fixed bug: when updating patient details the dob was converted from date to str type
#
# Revision 1.50 2005/06/14 19:51:27 cfmoro
# auto zip in patient wizard and minor cleanups
#
# Revision 1.49 2005/06/14 00:34:14 cfmoro
# Matcher provider queries revisited
#
# Revision 1.48 2005/06/13 01:18:24 cfmoro
# Improved input system support by zip, country
#
# Revision 1.47 2005/06/12 22:12:35 ncq
# - prepare for staged (constrained) queries in demographics
#
# Revision 1.46 2005/06/10 23:22:43 ncq
# - SQL2 match provider now requires query *list*
#
# Revision 1.45 2005/06/09 01:56:41 cfmoro
# Initial code on zip -> (auto) address
#
# Revision 1.44 2005/06/09 00:26:07 cfmoro
# PhraseWheels in patient editor. Tons of cleanups and validator fixes
#
# Revision 1.43 2005/06/08 22:03:02 cfmoro
# Restored phrasewheel gender in wizard
#
# Revision 1.42 2005/06/08 01:25:42 cfmoro
# PRW in wizards state and country. Validator fixes
#
# Revision 1.41 2005/06/04 10:17:51 ncq
# - cleanup, cSmartCombo, some comments
#
# Revision 1.40 2005/06/03 15:50:38 cfmoro
# State and country combos y patient edition
#
# Revision 1.39 2005/06/03 13:37:45 cfmoro
# States and country combo selection. SmartCombo revamped. Passing country and state codes instead of names
#
# Revision 1.38 2005/06/03 00:56:19 cfmoro
# Validate dob in patient wizard
#
# Revision 1.37 2005/06/03 00:37:33 cfmoro
# Validate dob in patient identity page
#
# Revision 1.36 2005/06/03 00:01:41 cfmoro
# Key fixes in new patient wizard
#
# Revision 1.35 2005/06/02 23:49:21 cfmoro
# Gender use SmartCombo, several fixes
#
# Revision 1.34 2005/06/02 23:26:41 cfmoro
# Name auto-selection in new patient wizard
#
# Revision 1.33 2005/06/02 12:17:25 cfmoro
# Auto select gender according to firstname
#
# Revision 1.32 2005/05/28 12:18:01 cfmoro
# Capitalize name, street, etc
#
# Revision 1.31 2005/05/28 12:00:53 cfmoro
# Trigger FIXME to reflect changes in v_basic_person
#
# Revision 1.30 2005/05/28 11:45:19 cfmoro
# Retrieve names from identity cache, so refreshing will be reflected
#
# Revision 1.29 2005/05/25 23:03:02 cfmoro
# Minor fixes
#
# Revision 1.28 2005/05/24 19:57:14 ncq
# - cleanup
# - make cNotebookedPatEditionPanel a gmRegetMixin child instead of cPatEditionNotebook
#
# Revision 1.27 2005/05/23 12:01:08 cfmoro
# Create/update comms
#
# Revision 1.26 2005/05/23 11:16:18 cfmoro
# More cleanups and test functional fixes
#
# Revision 1.25 2005/05/23 09:20:37 cfmoro
# More cleaning up
#
# Revision 1.24 2005/05/22 22:12:06 ncq
# - cleaning up patient edition notebook
#
# Revision 1.23 2005/05/19 16:06:50 ncq
# - just silly cleanup, as usual
#
# Revision 1.22 2005/05/19 15:25:53 cfmoro
# Initial logic to update patient details. Needs fixing.
#
# Revision 1.21 2005/05/17 15:09:28 cfmoro
# Reloading values from backend in repopulate to properly reflect patient activated
#
# Revision 1.20 2005/05/17 14:56:02 cfmoro
# Restore values from model to window action function
#
# Revision 1.19 2005/05/17 14:41:36 cfmoro
# Notebooked patient editor initial code
#
# Revision 1.18 2005/05/17 08:04:28 ncq
# - some cleanup
#
# Revision 1.17 2005/05/14 14:56:41 ncq
# - add Carlos' DTD code
# - numerous fixes/robustification
# move occupation down based on user feedback
#
# Revision 1.16 2005/05/05 06:25:56 ncq
# - cleanup, remove _() in log statements
# - re-ordering in new patient wizard due to user feedback
# - add <activate> to RunWizard(): if true activate patient after creation
#
# Revision 1.15 2005/04/30 20:31:03 ncq
# - first-/lastname were switched around when saving identity into backend
#
# Revision 1.14 2005/04/28 19:21:18 cfmoro
# zip code streamlining
#
# Revision 1.13 2005/04/28 16:58:45 cfmoro
# Removed fixme, was dued to log buffer
#
# Revision 1.12 2005/04/28 16:24:47 cfmoro
# Remove last references to town zip code
#
# Revision 1.11 2005/04/28 16:21:17 cfmoro
# Leave town zip code out and street zip code optional as in schema
#
# Revision 1.10 2005/04/25 21:22:17 ncq
# - some cleanup
# - make cNewPatientWizard inherit directly from wxWizard as it should IMO
#
# Revision 1.9 2005/04/25 16:59:11 cfmoro
# Implemented patient creation. Added conditional validator
#
# Revision 1.8 2005/04/25 08:29:24 ncq
# - combobox items must be strings
#
# Revision 1.7 2005/04/23 06:34:11 cfmoro
# Added address number and street zip code missing fields
#
# Revision 1.6 2005/04/18 19:19:54 ncq
# - wrong field order in some match providers
#
# Revision 1.5 2005/04/14 18:26:19 ncq
# - turn gender input into phrase wheel with fixed list
# - some cleanup
#
# Revision 1.4 2005/04/14 08:53:56 ncq
# - cIdentity moved
# - improved tooltips and phrasewheel thresholds
#
# Revision 1.3 2005/04/12 18:49:04 cfmoro
# Added missing fields and matcher providers
#
# Revision 1.2 2005/04/12 16:18:00 ncq
# - match firstnames against name_gender_map, too
#
# Revision 1.1 2005/04/11 18:09:55 ncq
# - offers demographic widgets
#
# Revision 1.62 2005/04/11 18:03:32 ncq
# - attach some match providers to first new-patient wizard page
#
# Revision 1.61 2005/04/10 12:09:17 cfmoro
# GUI implementation of the first-basic (wizard) page for patient details input
#
# Revision 1.60 2005/03/20 17:49:45 ncq
# - improve split window handling, cleanup
#
# Revision 1.59 2005/03/06 09:21:08 ihaywood
# stole a couple of icons from Richard's demo code
#
# Revision 1.58 2005/03/06 08:17:02 ihaywood
# forms: back to the old way, with support for LaTeX tables
#
# business objects now support generic linked tables, demographics
# uses them to the same functionality as before (loading, no saving)
# They may have no use outside of demographics, but saves much code already.
#
# Revision 1.57 2005/02/22 10:21:33 ihaywood
# new patient
#
# Revision 1.56 2005/02/20 10:45:49 sjtan
#
# kwargs syntax error.
#
# Revision 1.55 2005/02/20 10:15:16 ihaywood
# some tidying up
#
# Revision 1.54 2005/02/20 09:46:08 ihaywood
# demographics module with load a patient with no exceptions
#
# Revision 1.53 2005/02/18 11:16:41 ihaywood
# new demographics UI code won't crash the whole client now ;-)
# still needs much work
# RichardSpace working
#
# Revision 1.52 2005/02/03 20:19:16 ncq
# - get_demographic_record() -> get_identity()
#
# Revision 1.51 2005/02/01 10:16:07 ihaywood
# refactoring of gmDemographicRecord and follow-on changes as discussed.
#
# gmTopPanel moves to gmHorstSpace
# gmRichardSpace added -- example code at present, haven't even run it myself
# (waiting on some icon .pngs from Richard)
#
# Revision 1.50 2005/01/31 10:37:26 ncq
# - gmPatient.py -> gmPerson.py
#
# Revision 1.49 2004/12/18 13:45:51 sjtan
#
# removed timer.
#
# Revision 1.48 2004/10/20 11:20:10 sjtan
# restore imports.
#
# Revision 1.47 2004/10/19 21:34:25 sjtan
# dir is direction, and this is checked
#
# Revision 1.46 2004/10/19 21:29:25 sjtan
# remove division by zero problem, statement occurs later after check for non-zero.
#
# Revision 1.45 2004/10/17 23:49:21 sjtan
#
# the timer autoscroll idea.
#
# Revision 1.44 2004/10/17 22:26:42 sjtan
#
# split window new look Richard's demographics ( his eye for gui design is better
# than most of ours). Rollback if vote no.
#
# Revision 1.43 2004/10/16 22:42:12 sjtan
#
# script for unitesting; guard for unit tests where unit uses gmPhraseWheel; fixup where version of wxPython doesn't allow
# a child widget to be multiply inserted (gmDemographics) ; try block for later versions of wxWidgets that might fail
# the Add (.. w,h, ... ) because expecting Add(.. (w,h) ...)
#
# Revision 1.42 2004/09/10 10:51:14 ncq
# - improve previous checkin comment
#
# Revision 1.41 2004/09/10 10:41:38 ncq
# - remove dead import
# - lots of cleanup (whitespace, indention, style, local vars instead of instance globals)
# - remove an extra sizer, waste less space
# - translate strings
# - from wxPython.wx import * -> from wxPython import wx
# Why ? Because we can then do a simple replace wx. -> wx. for 2.5 code.
#
# Revision 1.40 2004/08/24 14:29:58 ncq
# - some cleanup, not there yet, though
#
# Revision 1.39 2004/08/23 10:25:36 ncq
# - Richards work, removed pat photo, store column sizes
#
# Revision 1.38 2004/08/20 13:34:48 ncq
# - getFirstMatchingDBSet() -> getDBParam()
#
# Revision 1.37 2004/08/18 08:15:21 ncq
# - check if column size for patient list is missing
#
# Revision 1.36 2004/08/16 13:32:19 ncq
# - rework of GUI layout by R.Terry
# - save patient list column width from right click popup menu
#
# Revision 1.35 2004/07/30 13:43:33 sjtan
#
# update import
#
# Revision 1.34 2004/07/26 12:04:44 sjtan
#
# character level immediate validation , as per Richard's suggestions.
#
# Revision 1.33 2004/07/20 01:01:46 ihaywood
# changing a patients name works again.
# Name searching has been changed to query on names rather than v_basic_person.
# This is so the old (inactive) names are still visible to the search.
# This is so when Mary Smith gets married, we can still find her under Smith.
# [In Australia this odd tradition is still the norm, even female doctors
# have their medical registration documents updated]
#
# SOAPTextCtrl now has popups, but the cursor vanishes (?)
#
# Revision 1.32 2004/07/18 20:30:53 ncq
# - wxPython.true/false -> Python.True/False as Python tells us to do
#
# Revision 1.31 2004/06/30 15:09:47 shilbert
# - more wxMAC fixes
#
# Revision 1.30 2004/06/29 22:48:47 shilbert
# - one more wxMAC fix
#
# Revision 1.29 2004/06/27 13:42:26 ncq
# - further Mac fixes - maybe 2.5 issues ?
#
# Revision 1.28 2004/06/23 21:26:28 ncq
# - kill dead code, fixup for Mac
#
# Revision 1.27 2004/06/20 17:28:34 ncq
# - The Great Butchering begins
# - remove dead plugin code
# - rescue binoculars xpm to artworks/
#
# Revision 1.26 2004/06/17 11:43:12 ihaywood
# Some minor bugfixes.
# My first experiments with wxGlade
# changed gmPhraseWheel so the match provider can be added after instantiation
# (as wxGlade can't do this itself)
#
# Revision 1.25 2004/06/13 22:31:48 ncq
# - gb['main.toolbar'] -> gb['main.top_panel']
# - self.internal_name() -> self.__class__.__name__
# - remove set_widget_reference()
# - cleanup
# - fix lazy load in _on_patient_selected()
# - fix lazy load in ReceiveFocus()
# - use self._widget in self.GetWidget()
# - override populate_with_data()
# - use gb['main.notebook.raised_plugin']
#
# Revision 1.24 2004/05/27 13:40:22 ihaywood
# more work on referrals, still not there yet
#
# Revision 1.23 2004/05/25 16:18:12 sjtan
#
# move methods for postcode -> urb interaction to gmDemographics so gmContacts can use it.
#
# Revision 1.22 2004/05/25 16:00:34 sjtan
#
# move common urb/postcode collaboration to business class.
#
# Revision 1.21 2004/05/23 11:13:59 sjtan
#
# some data fields not in self.input_fields , so exclude them
#
# Revision 1.20 2004/05/19 11:16:09 sjtan
#
# allow selecting the postcode for restricting the urb's picklist, and resetting
# the postcode for unrestricting the urb picklist.
#
# Revision 1.19 2004/03/27 04:37:01 ihaywood
# lnk_person2address now lnk_person_org_address
# sundry bugfixes
#
# Revision 1.18 2004/03/25 11:03:23 ncq
# - getActiveName -> get_names
#
# Revision 1.17 2004/03/15 15:43:17 ncq
# - cleanup imports
#
# Revision 1.16 2004/03/09 07:34:51 ihaywood
# reactivating plugins
#
# Revision 1.15 2004/03/04 11:19:05 ncq
# - put a comment as to where to handle result from setCOB
#
# Revision 1.14 2004/03/03 23:53:22 ihaywood
# GUI now supports external IDs,
# Demographics GUI now ALPHA (feature-complete w.r.t. version 1.0)
# but happy to consider cosmetic changes
#
# Revision 1.13 2004/03/03 05:24:01 ihaywood
# patient photograph support
#
# Revision 1.12 2004/03/02 23:57:59 ihaywood
# Support for full range of backend genders
#
# Revision 1.11 2004/03/02 10:21:10 ihaywood
# gmDemographics now supports comm channels, occupation,
# country of birth and martial status
#
# Revision 1.10 2004/02/25 09:46:21 ncq
# - import from pycommon now, not python-common
#
# Revision 1.9 2004/02/18 06:30:30 ihaywood
# Demographics editor now can delete addresses
# Contacts back up on screen.
#
# Revision 1.8 2004/01/18 21:49:18 ncq
# - comment out debugging code
#
# Revision 1.7 2004/01/04 09:33:32 ihaywood
# minor bugfixes, can now create new patients, but doesn't update properly
#
# Revision 1.6 2003/11/22 14:47:24 ncq
# - use addName instead of setActiveName
#
# Revision 1.5 2003/11/22 12:29:16 sjtan
#
# minor debugging; remove _newPatient flag attribute conflict with method name newPatient.
#
# Revision 1.4 2003/11/20 02:14:42 sjtan
#
# use global module function getPostcodeByUrbId() , and renamed MP_urb_by_zip.
#
# Revision 1.3 2003/11/19 23:11:58 sjtan
#
# using local time tuple conversion function; mxDateTime object sometimes can't convert to int.
# Changed to global module.getAddressTypes(). To decide: mechanism for postcode update when
# suburb selected ( not back via gmDemographicRecord.getPostcodeForUrbId(), ? via linked PhraseWheel matchers ?)
#
# Revision 1.2 2003/11/18 16:46:02 ncq
# - sync with method name changes
#
# Revision 1.1 2003/11/17 11:04:34 sjtan
#
# added.
#
# Revision 1.1 2003/10/23 06:02:40 sjtan
#
# manual edit areas modelled after r.terry's specs.
#
# Revision 1.26 2003/04/28 12:14:40 ncq
# - use .internal_name()
#
# Revision 1.25 2003/04/25 11:15:58 ncq
# cleanup
#
# Revision 1.24 2003/04/05 00:39:23 ncq
# - "patient" is now "clinical", changed all the references
#
# Revision 1.23 2003/04/04 20:52:44 ncq
# - start disentanglement with top pane:
# - remove patient search/age/allergies/patient details
#
# Revision 1.22 2003/03/29 18:27:14 ncq
# - make age/allergies read-only, cleanup
#
# Revision 1.21 2003/03/29 13:50:09 ncq
# - adapt to new "top row" panel
#
# Revision 1.20 2003/03/28 16:43:12 ncq
# - some cleanup in preparation of inserting the patient searcher
#
# Revision 1.19 2003/02/09 23:42:50 ncq
# - date time conversion to age string does not work, set to 20 for now, fix soon
#
# Revision 1.18 2003/02/09 12:05:02 sjtan
#
#
# wx.BasePlugin is unnecessarily specific.
#
# Revision 1.17 2003/02/09 11:57:42 ncq
# - cleanup, cvs keywords
#
# old change log:
# 10.06.2002 rterry initial implementation, untested
# 30.07.2002 rterry images put in file
|