Summary: | When ordering from a staged file, if funds are populated per item order level fund should not be required | ||
---|---|---|---|
Product: | Koha | Reporter: | Nick Clemens (kidclamp) <nick> |
Component: | Acquisitions | Assignee: | Nick Clemens (kidclamp) <nick> |
Status: | CLOSED FIXED | QA Contact: | Testopia <testopia> |
Severity: | blocker | ||
Priority: | P5 - low | CC: | andrew, fridolin.somers, jonathan.druart, kyle, lucas, martin.renvoize, mfuerst, oleonard |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Bug Depends on: | 20830, 22734 | ||
Bug Blocks: | 33939 | ||
Attachments: |
Bug 22802: Check item funds, order funds, and default funds when ordering from a file
Orders to test with, using default funds Bug 22802: Check item funds, order funds, and default funds when ordering from a file Bug 22802: Check item funds, order funds, and default funds when ordering from a file |
Description
Nick Clemens (kidclamp)
2019-04-29 12:34:41 UTC
This is not trivial at all and I have no idea how to fix it easily before the release. I would opt to revert bug 22734 if no fix is provided here. Created attachment 89744 [details] [review] Bug 22802: Check item funds, order funds, and default funds when ordering from a file This patch tries to centralise the logic of order funds requirements into a single routine. If propogates defaults down into items/order as necessary, it also prevents unsetting lower values if a default is set. To test: 1 - Populate 'MarcItemFieldsToOrder' 2 - Add to a basket from a file 3 - Use a file containing some item records with funds defined or not 4 - Confirm if all items have funds defined, you can order 5 - Confirm that setting the default for an order populates items and you can order 6 - Confirm that setting the default for all orders populates items if present/ order if not 7 - Confirm that if defaults are set the lower levels cannot be unset 8 - Try various settings and confirm all work as expected Created attachment 89745 [details]
Orders to test with, using default funds
Created attachment 89791 [details] [review] Bug 22802: Check item funds, order funds, and default funds when ordering from a file This patch tries to centralise the logic of order funds requirements into a single routine. If propogates defaults down into items/order as necessary, it also prevents unsetting lower values if a default is set. To test: 1 - Populate 'MarcItemFieldsToOrder' 2 - Add to a basket from a file 3 - Use a file containing some item records with funds defined or not 4 - Confirm if all items have funds defined, you can order 5 - Confirm that setting the default for an order populates items and you can order 6 - Confirm that setting the default for all orders populates items if present/ order if not 7 - Confirm that if defaults are set the lower levels cannot be unset 8 - Try various settings and confirm all work as expected Signed-off-by: Liz Rea <wizzyrea@gmail.com> Created attachment 90035 [details] [review] Bug 22802: Check item funds, order funds, and default funds when ordering from a file This patch tries to centralise the logic of order funds requirements into a single routine. If propogates defaults down into items/order as necessary, it also prevents unsetting lower values if a default is set. To test: 1 - Populate 'MarcItemFieldsToOrder' 2 - Add to a basket from a file 3 - Use a file containing some item records with funds defined or not 4 - Confirm if all items have funds defined, you can order 5 - Confirm that setting the default for an order populates items and you can order 6 - Confirm that setting the default for all orders populates items if present/ order if not 7 - Confirm that if defaults are set the lower levels cannot be unset 8 - Try various settings and confirm all work as expected Signed-off-by: Liz Rea <wizzyrea@gmail.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Not the cleanest implementation ever, but it does work well and is sufficiently commented to understand.. It would be nice to see some selenium tests in a followup next cycle. PQA Awesome work all! Pushed to master for 19.05 I'm not entirely sure if we need a port of this or not for 18.11.x series, but I don't feel confident I can deliver on in time to 18.11.06 I'm afraid.. deferring to next rmaint (sorry Frido) (In reply to Martin Renvoize from comment #8) > I'm not entirely sure if we need a port of this or not for 18.11.x series, > but I don't feel confident I can deliver on in time to 18.11.06 I'm afraid.. > deferring to next rmaint (sorry Frido) The two easiest paths here I think are: 1 - Back 22743 and apply this on top - that gets things in line with master 2 - revert 20830 - this removes the problematic code that causes this Something wrong from this patch: > Add orders from MARC file > "show inactive funds" is not checked > expand the order div to see the details You see Fund: Select a fund (will use default if set) > Check "show inactive funds" You see Select a fund (will populate orders/items if set) > Uncheck "show inactive funds" You see Select a fund (will populate orders/items if set) I have no idea what it means but it's not consistent. |