| 02:35:22 | *** TorLye has quit IRC |
| 03:18:23 | *** openmrs_874 has joined #openmrs |
| 03:19:13 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Forum: change the text box "ville" to a list box <http://forum.openmrs.org/viewtopic.php?f=3&t=403#p1397> |
| 03:29:25 | *** openmrs_874 has quit IRC |
| 04:54:29 | *** njero has joined #openmrs |
| 04:54:29 | *** ChanServ sets mode: +v njero |
| 04:55:26 | *** njero has quit IRC |
| 05:01:26 | *** nribeka has quit IRC |
| 05:15:06 | *** nribeka has joined #openmrs |
| 05:43:29 | *** nribeka has quit IRC |
| 05:54:08 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Forum: Re: Transfer HL7 CDA into OpenMRS Database <http://forum.openmrs.org/viewtopic.php?f=11&t=396#p1398> |
| 06:23:32 | *** james_regen has joined #openmrs |
| 06:23:32 | *** ChanServ sets mode: +v james_regen |
| 07:05:56 | *** nribeka has joined #openmrs |
| 07:13:21 | *** bwolfe has joined #openmrs |
| 07:13:21 | *** ChanServ sets mode: +o bwolfe |
| 07:23:29 | *** bwolfe has quit IRC |
| 07:24:23 | *** bwolfe has joined #openmrs |
| 07:24:23 | *** ChanServ sets mode: +o bwolfe |
| 08:01:10 | *** sunbiz has joined #openmrs |
| 08:02:02 | <sunbiz> hey guys !! |
| 08:03:17 | <sunbiz> has any1 else observed that Manage Observations page shows textfield first and then when refreshed shows a button ( textfield is hidden) in FF3 ?? |
| 08:04:05 | <sunbiz> bwolfe: did u happen to look at ticket #1042 ?? |
| 08:08:28 | *** upul has joined #openmrs |
| 08:09:13 | *** sunbiz has left #openmrs |
| 09:07:31 | *** atomicturtle has quit IRC |
| 09:24:53 | *** upul has quit IRC |
| 09:28:56 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Tickets: Ticket #1031 (task closed): Move Patient Identifier validation into a Validator <http://dev.openmrs.org/ticket/1031#comment:4> |
| 09:48:31 | *** TorLye has joined #openmrs |
| 09:54:03 | *** atomicturtle has joined #openmrs |
| 10:48:27 | *** OpenMRSBot has joined #openmrs |
| 10:48:27 | *** ChanServ sets mode: +o OpenMRSBot |
| 11:00:35 | *** atomicturtle has left #openmrs |
| 11:04:36 | *** sprasanna_ has joined #openmrs |
| 11:04:37 | *** sprasanna has quit IRC |
| 11:15:30 | *** maveriick has joined #openmrs |
| 12:32:33 | *** maveriick has quit IRC |
| 13:00:14 | *** sunbiz has joined #openmrs |
| 13:01:06 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Forum: Re: change the text box "ville" to a list box <http://forum.openmrs.org/viewtopic.php?f=3&t=403#p1399> |
| 13:08:33 | <sunbiz> hey guys... any1 want to comment on !ticket 1042 |
| 13:08:40 | <sunbiz> !ticket 1042 |
| 13:08:40 | <OpenMRSBot> sunbiz: Ticket #1042: http://dev.openmrs.org/ticket/1042 |
| 13:41:05 | *** r0bby is now known as r0bbyarrr |
| 14:21:23 | *** sunbiz has quit IRC |
| 15:09:02 | *** sunbiz has joined #openmrs |
| 15:14:50 | *** Keelhaul has joined #openmrs |
| 15:14:50 | *** ChanServ sets mode: +v Keelhaul |
| 15:19:13 | <nribeka> off ... |
| 15:19:14 | <nribeka> :D |
| 15:19:18 | *** nribeka has quit IRC |
| 15:26:34 | *** sunbiz has left #openmrs |
| 15:32:02 | *** james_regen has quit IRC |
| 15:44:15 | <Keelhaul> bwolfe |
| 15:44:25 | <Keelhaul> i require some hiberniate expertise =) |
| 15:44:29 | <Keelhaul> -i |
| 15:44:43 | <bwolfe> I can try |
| 15:44:47 | <Keelhaul> the wiki page says a session.merge() would prevent NonUniqueObjectException |
| 15:45:13 | <Keelhaul> would it be enough to just put it in every saveObject() method? |
| 15:48:40 | <bwolfe> I don't think a merge will save the initial object |
| 15:48:54 | <bwolfe> so if hte object doesn't exist, I'm not certain a merge will work |
| 15:49:14 | <bwolfe> a merge also doesn't update the passed in object |
| 15:49:15 | <bwolfe> so |
| 15:49:20 | <bwolfe> user = new User() |
| 15:49:25 | <bwolfe> saveUser(user) |
| 15:49:31 | <bwolfe> user.getUserId() != null |
| 15:49:39 | <bwolfe> (if you use saveOrUpdate() in the saveUser method) |
| 15:49:41 | <bwolfe> however, |
| 15:49:45 | <bwolfe> user = new User() |
| 15:49:54 | <bwolfe> merge(user) |
| 15:49:57 | <bwolfe> user.getUserId() == null |
| 15:50:07 | <Keelhaul> hm |
| 15:50:22 | <Keelhaul> is there an easy way to avoid nonuniques |
| 15:50:29 | <Keelhaul> besides carefully writing controllers =) |
| 15:57:19 | <bwolfe> Keelhaul: carefully writing controllers |
| 15:57:20 | <bwolfe> :-p |
| 15:58:33 | <Keelhaul> dammit |
| 15:58:47 | <Keelhaul> wheres all that magic when you need it |
| 16:02:09 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Forum: Re: Transfer HL7 CDA into OpenMRS Database <http://forum.openmrs.org/viewtopic.php?f=11&t=396#p1400> |
| 16:21:23 | *** bwolfe has quit IRC |
| 16:50:53 | *** sioraiocht has joined #openmrs |
| 16:50:53 | *** ChanServ sets mode: +v sioraiocht |
| 16:57:46 | *** bwolfe has joined #openmrs |
| 16:57:46 | *** ChanServ sets mode: +o bwolfe |
| 17:47:25 | *** sioraioc_ has joined #openmrs |
| 18:04:19 | *** sioraiocht has quit IRC |
| 19:34:13 | *** sprasanna_ has quit IRC |
| 21:08:08 | *** Keelhaul has quit IRC |
| 22:00:59 | *** bwolfe has quit IRC |
| 23:54:48 | *** maveriick has joined #openmrs |