From dc3e7c05f12c84168882778b7e2056c3d6996299 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Sun, 31 Jan 2010 16:37:52 +0000 Subject: [PATCH] Bug in Quick Entries with Tax added. --- CHANGELOG.txt | 7 ++++++- includes/ui/ui_view.inc | 5 +++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index dc51227..6f7bf16 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,8 +19,13 @@ Legend: ! -> Note $ -> Affected files -30-Jan-2010 Joe Hunt +31-Jan-2010 Joe Hunt +# Bug in Quick Entries with Tax added. +$ /includes/ui/ui_view.inc + +30-Jan-2010 Joe Hunt/Chaitanya + Added a Balance Sheet drilldown inquiry in Banking and GL. + Contributed by Chatanya. Magnificient! $ /applications/generalledger.php /gl/inquiry/balance_sheet.php (new file) /gl/inquiry/gl_account_inquiry.php diff --git a/includes/ui/ui_view.inc b/includes/ui/ui_view.inc index 5e3a8a1..111f2d7 100644 --- a/includes/ui/ui_view.inc +++ b/includes/ui/ui_view.inc @@ -578,9 +578,10 @@ function display_quick_entries(&$cart, $id, $base, $type, $descr='') if (substr($qe_line['action'],0,1) != 'T') $part = $taxbase; else - $part = $base; + $part = $base/100; $item_tax = get_tax_type($qe_line['dest_id']); - if ($type == QE_SUPPINV && substr($qe_line['action'],0,1) != 'T') + //if ($type == QE_SUPPINV && substr($qe_line['action'],0,1) != 'T') + if ($type == QE_SUPPINV) { $taxgroup = $cart->tax_group_id; $rates = 0; -- 2.30.2