diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-10-31 05:30:57 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-10-31 05:30:57 +0000 |
commit | 50976eed0c12a2cb45944d0818b63a7c65885afb (patch) | |
tree | cfaf09c5d4039fc6bd95131c6d894bf42a8c421f /LedgerSMB | |
parent | aa4852be2023c2bd6cabbaadfadf93789e5d812a (diff) |
1) Fixing bug which hides discount input in POS screen.
2) Fixing bug: Obsolete items show on short parts report
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1829 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB')
-rw-r--r-- | LedgerSMB/IC.pm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/LedgerSMB/IC.pm b/LedgerSMB/IC.pm index 2f06891b..1f016394 100644 --- a/LedgerSMB/IC.pm +++ b/LedgerSMB/IC.pm @@ -1002,16 +1002,19 @@ sub all_parts { ON (p.id = j.parts_id))|; } - if ( $form->{itemstatus} eq 'active' ) { - $where .= " AND p.obsolete = '0'"; - } if ( $form->{itemstatus} eq 'obsolete' ) { $where .= " AND p.obsolete = '1'"; } + else { + # Obsolete items should not show up on onhand, short, or active + # reports --CT + $where .= " AND p.obsolete = '0'"; + } + if ( $form->{itemstatus} eq 'onhand' ) { $where .= " AND p.onhand > 0"; } - if ( $form->{itemstatus} eq 'short' ) { + elsif ( $form->{itemstatus} eq 'short' ) { $where .= " AND p.onhand < p.rop"; } |