|
I messed this up. That's what I get for coding on the fly. I was in between writing the code that returned the quantity remaining for an entire order and that for a single line. Let's fix it for a single line: > int remaining = server.getOrder(ordernumber).getQuantityRemaining(); int remaining = server.getOrder(ordernumber).getQuantityRemaining(linenumber); > SELECT SUM(ODQORD) - SUM(OSQSHP) INTO :REMAINING FROM ORDDTL, ORDSHP WHERE > ODORD = :ORDERNUMBER AND ODLINE = :LINENUMBER AND ODORD = OQORD > AND ODLINE = OQLINE SELECT ODQORD - SUM(OSQSHP) INTO :REMAINING FROM ORDDTL, ORDSHP WHERE ODORD = :ORDERNUMBER AND ODLINE = :LINENUMBER AND ODORD = OQORD AND ODLINE = OQLINE > SELECT SUM(ODQORD) - SUM(OSQSHP) + SUM(ORRET) INTO :REMAINING FROM ORDDTL, > ORDSHP, ORDRET WHERE ODORD = :ORDERNUMBER AND ODLINE = > :LINENUMBER AND OQORD > = ODORD AND OQDLINE = ODLINE AND ORORD = ODORD AND ORLINE = ODLINE SELECT ODQORD - SUM(OSQSHP) + SUM(ORRET) INTO :REMAINING FROM ORDDTL, ORDSHP, ORDRET WHERE ODORD = :ORDERNUMBER AND ODLINE = :LINENUMBER AND OQORD = ODORD AND OQDLINE = ODLINE AND ORORD = ODORD AND ORLINE = ODLINE Okay. All better. Back to our regularly scheduled program. Joe
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.