| # | Time | Nick | Message |
|---|
| # | 01:47:45 | bencahill_ has quit IRC |
| # | 01:48:20 | bencahill_ has joined #evergreen |
| # | 02:30:56 | Zyph has joined #evergreen |
| # | 02:34:14 | Zyph has quit IRC |
| # | 03:20:40 | pmplett_ has quit IRC |
| # | 03:30:07 | Guest58404 has joined #evergreen |
| # | 03:30:42 | jennam is now known as Guest72517 |
| # | 03:30:48 | Guest58404 is now known as jennam |
| # | 03:31:18 | jennam is now known as Guest83223 |
| # | 03:32:10 | Guest83223 is now known as jennam |
| # | 03:32:11 | Guest72517 has quit IRC |
| # | 03:32:13 | jennam has quit IRC |
| # | 03:32:13 | jennam has joined #evergreen |
| # | 04:09:11 | jennam has quit IRC |
| # | 04:31:52 | jennam has joined #evergreen |
| # | 04:31:56 | jennam has joined #evergreen |
| # | 04:34:32 | Callender has quit IRC |
| # | 04:34:57 | tater has quit IRC |
| # | 04:35:10 | leed has quit IRC |
| # | 04:35:11 | phasefx has quit IRC |
| # | 04:42:16 | phasefx has joined #evergreen |
| # | 04:42:21 | leed has joined #evergreen |
| # | 04:42:35 | tater has joined #evergreen |
| # | 04:49:09 | Callender has joined #evergreen |
| # | 04:53:04 | jennam has quit IRC |
| # | 05:06:11 | jennam has joined #evergreen |
| # | 05:06:17 | jennam has quit IRC |
| # | 05:06:18 | jennam has joined #evergreen |
| # | 05:26:14 | Guest58404 has joined #evergreen |
| # | 05:26:18 | jennam is now known as Guest97499 |
| # | 05:26:22 | Guest58404 is now known as jennam |
| # | 05:26:24 | jennam has joined #evergreen |
| # | 05:29:25 | Guest97499 has quit IRC |
| # | 07:27:42 | pmplett_ has joined #evergreen |
| # | 07:45:40 | shadowspar has quit IRC |
| # | 07:45:46 | shadowspar has joined #evergreen |
| # | 08:07:55 | LBA1 has joined #evergreen |
| # | 08:08:45 | _dkyle_1 has joined #evergreen |
| # | 08:13:50 | _dkyle_ has quit IRC |
| # | 10:16:29 | csharp | ah... 1.6.1 actor.org_unit now has a unique constraint on "name" - this will be interesting since many PINES libraries call their bookmobile units "Bookmobile" |
| # | 11:26:01 | tsbere_ is now known as tsbere |
| # | 11:57:32 | bshum has joined #evergreen |
| # | 11:58:15 | bshum has left #evergreen |
| # | 12:08:21 | dbs | csharp: UPDATE actor.org_unit SET name = shortname || ' ' || name WHERE name = 'Bookmobile'; -- perhaps? |
| # | 12:20:03 | csharp | dbs: ha! thanks, but I already did that the hard way :-P |
| # | 12:20:17 | csharp records the command for later use, though |
| # | 12:21:17 | csharp | this is the price of knowing enough PG SQL to be dangerous, but not enough to be efficient ;-) |
| # | 12:29:58 | tsbere | Another thought would be to use the parent ou's shortname instead of the shortname of the bookmobile |
| # | 12:30:30 | tsbere | I think something like this would do that: UPDATE actor.org_unit SOU SET name=POU.shortname || ' ' || SOU.name FROM actor.org_unit POU WHERE SOU.parent_ou=POU.id AND SOU.name LIKE 'Bookmobile'; |
| # | 12:32:20 | phasefx | is the constraint a good thing? |
| # | 12:32:46 | tsbere | Given that in some places the name is the only thing you get for an identifier, probably |
| # | 12:32:54 | phasefx | and why are we all here on a Saturday? :) |
| # | 12:33:56 | tsbere | Because if I don't check my work email every day for moderation requests on mailing lists I get overloaded. |
| # | 12:34:10 | tsbere | And they are easiest to deal with by remoting into my work computer ;) |
| # | 12:34:29 | phasefx | and no harm in checking IRC while doing that, eh? :) |
| # | 12:34:55 | tsbere | Oh, and I tend to decide to randomly start writing code for my eg projects pretty much any day of the week. |
| # | 12:35:23 | tsbere enjoys figuring out coding problems, in general |
| # | 12:35:55 | phasefx is going to work on a unifying the volume/item creator and the item attribute editor. wife is out of town. "I should be cleaning, though :) |
| # | 12:42:30 | csharp | phasefx: re: the constraint - it is kind of a nuisance and may result in some library pushback - also within the org tree, it's obvious whose "Bookmobile" it is |
| # | 12:42:48 | csharp | do we know why the constraint was added? |
| # | 12:43:10 | phasefx | I don't, but we could try perusing the revision history |
| # | 12:43:34 | csharp | tsbere: totally with you - I think of something and want to start right away, be it Saturday morning or not ;-) |
| # | 12:44:32 | csharp | oh, and that is what I did - system shortname + "Bookmobile" |
| # | 12:45:19 | csharp | which has an amusing effect in the cases of OHOOP and PIED |
| # | 12:45:32 | csharp wonders if that will throw people off |
| # | 12:45:47 | csharp | (Ohoopee and Piedmont systems) |
| # | 12:45:58 | phasefx grumbles over his internet connection |
| # | 12:48:01 | phasefx | csharp: changeset 12455, make org unit name and shortname unique, to avoid mistakes |
| # | 12:48:22 | phasefx | 2 years ago :) |
| # | 12:48:32 | csharp | heh |
| # | 12:49:04 | tsbere | Take note, the org tree is nice, but things like circ matchpoints will only show the name before you go to edit them |
| # | 12:49:49 | phasefx | maybe an interface like that should render the whole org path somewhere when dealing with a specific org |
| # | 12:50:34 | csharp | tsbere: good point |
| # | 12:51:40 | csharp | along that same line, we discovered recently that it's not possible to know on the front end which org_unit owns the current shelving location of an item |
| # | 12:52:47 | csharp | e.g., if you assigned your book a SYS1 location of ADULT and your SYS2 also has a shelving location of ADULT, it's not possible to know which system's ADULT is currently assigned |
| # | 12:52:57 | csharp | it just says "ADULT" |
| # | 12:53:00 | tsbere | yea |
| # | 12:53:26 | r123 has left #evergreen |
| # | 12:54:09 | csharp | and to confuse matters further, if you select the list of shelving locations from the dropdown, *those* are whatever locations are available to the OU that you're currently working from, not the currently assigned location |
| # | 12:54:39 | csharp | would this be considered bug? I've been intending to report it on Launchpad, but didn't know which bucket it should live in? |
| # | 12:54:42 | phasefx | might be useful to also expose the circulate, holdable, and opac visible flags as well, associated with a location. perhaps as a tooltip in some interfaces, or extra columns in others |
| # | 12:57:54 | phasefx | it's suppose to show appropriate locations based on the owning lib, circ lib, and workstation. However, if you're batch editing items, it'll only show the locations that they have in common, library-wise |
| # | 12:58:10 | phasefx | so, bug, if that's not the case |
| # | 13:06:11 | finnapz has joined #evergreen |
| # | 13:10:06 | phasefx | finnapz: howdy |
| # | 15:24:17 | pmplett_ has quit IRC |
| # | 15:57:23 | bshum has joined #evergreen |
| # | 18:19:35 | brendan2_ has joined #evergreen |
| # | 18:19:35 | brendan2 has quit IRC |
| # | 18:19:35 | brendan2_ is now known as brendan2 |
| # | 21:16:44 | brendan2_ has joined #evergreen |
| # | 21:16:46 | brendan2 has quit IRC |
| # | 21:18:08 | brendan2_ is now known as brendan2 |
| # | 21:41:22 | brendan2 has quit IRC |
| # | 21:41:57 | brendan2 has joined #evergreen |
| # | 22:14:44 | brendan2 has quit IRC |
| # | 22:32:13 | brendan2 has joined #evergreen |
| # | 22:38:14 | brendan2 has quit IRC |
| # | 22:38:52 | brendan2 has joined #evergreen |
| # | 22:42:41 | brendan2 has quit IRC |
| # | 22:43:13 | brendan2 has joined #evergreen |
| # | 23:35:46 | bshum has quit IRC |