[Koha-bugs] [Bug 21507] Decimal separators issues in patrons payments/fines, simplified

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Nov 13 15:22:29 CET 2019


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

Arthur Suzuki <arthur.suzuki at biblibre.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |arthur.suzuki at biblibre.com

--- Comment #2 from Arthur Suzuki <arthur.suzuki at biblibre.com> ---
Here is a SQL query which helps detecting incoherences in the account lines.

SELECT invoicenumber,
       link.ordernumber,
       items.itemnumber,
       unitprice,
       unitprice_tax_excluded,
       unitprice_tax_included,
       items.price,
       ecost,
       unitprice_tax_excluded/ecost as ratio
 FROM aqorders
      LEFT JOIN aqinvoices
      ON aqinvoices.invoiceid = aqorders.invoiceid
      LEFT JOIN aqorders_items as link
      ON link.ordernumber=aqorders.ordernumber
      LEFT JOIN items
      ON link.itemnumber=items.itemnumber
WHERE unitprice/ecost > 5
   OR unitprice_tax_excluded/ecost > 5
   OR items.price/ecost > 5
ORDER BY ratio DESC;

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list