diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-08-16 20:56:10 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-08-16 20:56:10 +0000 |
commit | 57617cdf31a98a34f46f717749b677a4e84f3868 (patch) | |
tree | e15945e82cd0b4edcb0ab108a7f5d662bb41c634 /LedgerSMB/IC.pm | |
parent | 6091d96e247809aea9cb09ac0086f624a50d1b67 (diff) |
* Fixing price matrix logic (1897245)
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@2270 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB/IC.pm')
-rwxr-xr-x | LedgerSMB/IC.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LedgerSMB/IC.pm b/LedgerSMB/IC.pm index 09bc0177..8cfabdb2 100755 --- a/LedgerSMB/IC.pm +++ b/LedgerSMB/IC.pm @@ -543,7 +543,7 @@ sub save { $form->parse_amount( $myconfig, $form->{"${_}_$i"} ); } - if ( $form->{"customerprice_$i"} ) { + if ( $form->{"customerprice_$i"} || $form->{"pricebreak_$i"} ) { ( $null, $customer_id ) = split /--/, $form->{"customer_$i"}; $customer_id *= 1; |