20-Aug-2009 Joe Hunt
# If account code2 is used in the accounts the report Chart of Accounts gave a bad index and didn't print the code.
$ /gl/includes/gl_db_accounts.inc
+# If setting the delivered items in PO Receive Items to 0 the value is not updated
+$ /purchasing/po_receive_items.php
19-Aug-2009 Joe Hunt
! Change of Quick Entries to use the Tax Types instead, due to complexity using the Tax Groups in EU.
$qty_outstanding = $ln_itm->quantity - $ln_itm->qty_received;
- if ($ln_itm->receive_qty == 0)
+ if (!isset($_POST['Update']) && !isset($_POST['ProcessGoodsReceived']) && $ln_itm->receive_qty == 0)
{ //If no quantites yet input default the balance to be received
$ln_itm->receive_qty = $qty_outstanding;
}