https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23981

David Nind <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Depends on|                            |42603
           Keywords|                            |release-notes-needed
                 CC|                            |[email protected]

--- Comment #10 from David Nind <[email protected]> ---
For main you need to apply bug 42603 - Cannot 'receive selected' because of
typo in variable name, otherwise you can't receive order in step 8. Have added
this as a dependency.

Testing notes (using KTD)
=========================

I listed out all the details before and after the patch for each step, to show
the workings for each step.

Step 2 - Order entry (Accounting details section)
-------------------------------------------------

No change before and after the patch:

Vendor price: 10.99 --> 10.99 (no change)
Tax rate: 0% --> 0% (no change)
Discount: 0% --> 0% (no change)
Retail price: 12.99 --> 12.99 (no change)
Replacement cost: 15.99 --> 15.99 (no change)
Budgeted cost: 10.99 --> 10.99 (no change)
Total: 10.99 --> 10.99 (no change)
Actual cost: 18.99 --> 18.99 (no change)

Step 3 - Confirmed (Orders list for the basket)
-----------------------------------------------

- Before the patch the 'Budgeted cost tax exc.' and 'Budgeted cost tax inc.'
both show as 12.99
- After the patch the 'Budgeted cost tax exc.' and 'Budgeted cost tax inc.'
both show as 10.99

Step 5 - Confirmed
------------------

Before the patch:

SELECT ecost, ecost_tax_excluded, ecost_tax_included FROM aqorders WHERE
basketno = 1;
+-------+--------------------+--------------------+
| ecost | ecost_tax_excluded | ecost_tax_included |
+-------+--------------------+--------------------+
| 10.99 |          12.990000 |          12.990000 |
+-------+--------------------+--------------------+
1 row in set (0.001 sec)

After the patch:

SELECT ecost, ecost_tax_excluded, ecost_tax_included FROM aqorders WHERE
basketno = 1;
+-------+--------------------+--------------------+
| ecost | ecost_tax_excluded | ecost_tax_included |
+-------+--------------------+--------------------+
| 10.99 |          10.990000 |          10.990000 |
+-------+--------------------+--------------------+
1 row in set (0.000 sec)

Step 6 - Confirmed
------------------

- Before the patch "Estimated cost per unit" for the fund shows as 12.99
- After the patch "Estimated cost per unit" for the fund shows as 10.99

Step 8 - Confirmed
------------------

- Before the patch "Order cost" shows as 10.99
- After the patch "Order cost" shows as 10.99

Step 9 - Confirmed
------------------

- Retail price: 12.99 --> 12.99 (no change)
- Replacement price: 15.99 --> 15.99 (no change)
- Budgeted cost: 12.99 --> 10.99 (CHANGE)
- Actual cost: 18.99 --> 18.99 (no change)

Step 10 - Confirmed
-------------------

Already received table:
- Replacement price: 15.99 --> 15.99 (no change)
- Est cost: 12.99 --> 10.99 (CHANGE)
- Actual cost: 18.99 --> 18.99 (no change)
- Total: 18.99 --> 18.99 (no change)

Acquisitions home page, all available funds section:
- Spent (for fund): 18.99 > 18.99 (no change)


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42603
[Bug 42603] Cannot 'receive selected' because of typo in variable name
-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to